diff -Nru sumo-1.17.0/build/debian/changelog sumo-1.18.0/build/debian/changelog --- sumo-1.17.0/build/debian/changelog 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/build/debian/changelog 2023-06-28 20:02:17.000000000 +0000 @@ -1,3 +1,21 @@ +sumo (1.17.0-1) focal; urgency=medium + + * new upstream version + + -- Michael Behrisch Tue, 25 Apr 2023 14:06:22 +0200 + +sumo (1.16.0-1) focal; urgency=medium + + * new upstream version + + -- Michael Behrisch Tue, 07 Feb 2023 08:42:45 +0100 + +sumo (1.15.0-1) focal; urgency=medium + + * new upstream version + + -- Michael Behrisch Tue, 08 Nov 2022 08:07:23 +0100 + sumo (1.14.1-2) focal; urgency=medium * new upstream version diff -Nru sumo-1.17.0/build/docker/Dockerfile.ubuntu.git sumo-1.18.0/build/docker/Dockerfile.ubuntu.git --- sumo-1.17.0/build/docker/Dockerfile.ubuntu.git 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/build/docker/Dockerfile.ubuntu.git 2023-06-28 20:02:17.000000000 +0000 @@ -7,13 +7,9 @@ # This Dockerfile installs everything for a full fledged SUMO with all tools runnable. # If you don't need certain features and rather have a smaller container you can comment the unneeded parts below - FROM ubuntu:jammy -#ENV SUMO_HOME=/opt/sumo ENV SUMO_HOME=/usr/share/sumo -#ENV PATH=/opt/sumo/bin:$PATH -#ENV LD_LIBRARY_PATH=/opt/sumo/bin RUN apt-get -y update # basic build dependencies @@ -31,7 +27,7 @@ # packages needed for the docs (some are also listed in docs/web/requirements.txt but we prefer the ubuntu packages) RUN apt-get -y install mkdocs hugo doxygen plantuml graphviz -RUN cd /opt; git clone --recursive https://github.com/eclipse/sumo +RUN cd /opt; git clone --shallow-submodules --single-branch --recursive https://github.com/eclipse/sumo # python packages needed for the tools (the ones where we do not have ubuntu packages) RUN pip3 install -r /opt/sumo/tools/requirements.txt # python packages needed for the docs (the ones where we do not have ubuntu packages) diff -Nru sumo-1.17.0/build/package/sumo.metainfo.xml sumo-1.18.0/build/package/sumo.metainfo.xml --- sumo-1.17.0/build/package/sumo.metainfo.xml 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/build/package/sumo.metainfo.xml 2023-06-28 20:02:17.000000000 +0000 @@ -40,6 +40,7 @@ + diff -Nru sumo-1.17.0/CITATION.cff sumo-1.18.0/CITATION.cff --- sumo-1.17.0/CITATION.cff 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/CITATION.cff 2023-06-28 20:02:17.000000000 +0000 @@ -144,11 +144,11 @@ - simulation - microscopic - traffic -date-released: "2023-04-25" -version: 1.17.0 +date-released: "2023-06-29" +version: 1.18.0 repository-code: "https://github.com/eclipse/sumo" type: software -url: "https://www.eclipse.org/sumo/" +url: "https://www.eclipse.dev/sumo/" identifiers: - description: "The GitHub tag" type: url diff -Nru sumo-1.17.0/CMakeLists.txt sumo-1.18.0/CMakeLists.txt --- sumo-1.17.0/CMakeLists.txt 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/CMakeLists.txt 2023-06-28 20:02:17.000000000 +0000 @@ -5,26 +5,29 @@ # find python by path set(Python_FIND_STRATEGY LOCATION) # Options -option(CHECK_OPTIONAL_LIBS "Try to download / enable all optional libraries (use only EPL clean libraries, if set to false)" true) -option(MULTITHREADED_BUILD "Use all available cores for building (applies to Visual Studio only)" true) -option(PROFILING "Enable output of profiling data (applies to gcc/clang builds only)" false) -option(PPROF "Link the pprof profiler library (applies to gcc/clang builds only)" false) -option(COVERAGE "Enable output of coverage data (applies to gcc/clang builds only)" false) -option(SUMO_UTILS "Enable generation of a shared library for the utility functions for option handling, XML parsing etc." false) -option(FMI "Enable generation of an FMI library for SUMO" true) -option(NETEDIT "Enable build of netedit" true) +option(CHECK_OPTIONAL_LIBS "Try to download / enable all optional libraries (use only EPL clean libraries, if set to false)" ON) +option(MULTITHREADED_BUILD "Use all available cores for building (applies to Visual Studio only)" ON) +option(PROFILING "Enable output of profiling data (applies to gcc/clang builds only)") +option(PPROF "Link the pprof profiler library (applies to gcc/clang builds only)") +option(COVERAGE "Enable output of coverage data (applies to gcc/clang builds only)") +option(SUMO_UTILS "Enable generation of a shared library for the utility functions for option handling, XML parsing etc.") +option(FMI "Enable generation of an FMI library for SUMO" ON) +option(NETEDIT "Enable build of netedit" ON) +option(ENABLE_PYTHON_BINDINGS "Build Python Bindings" ON) +option(ENABLE_JAVA_BINDINGS "Build Java Bindings" ON) +option(ENABLE_CS_BINDINGS "Build C# Bindings") +option(CCACHE_SUPPORT "Enable ccache support if installed" ON) +option(TCMALLOC "Use tcmalloc if installed" ON) set(BINARY_SUFFIX "" CACHE STRING "Append the suffix to every generated binary") set(COMPILE_DEFINITIONS "" CACHE STRING "Macros or defines to add when compiling") -set(CCACHE_SUPPORT ON CACHE BOOL "Enable ccache support if installed") -set(TCMALLOC ON CACHE BOOL "Use tcmalloc if installed") set(PROJECT_NAME "SUMO" CACHE STRING "Project/Solution name") # disable warnings -option(DISABLEWARNING_C5264 "'const' variable is not used" true) -option(DISABLEWARNING_C4355 "'this' : used in base member initializer list" true) -option(DISABLEWARNING_C4266 "'function' : no override available for virtual member function from base 'type'" true) -option(DISABLEWARNING_C4127 "conditional expression is constant" true) -option(DISABLEWARNING_C26495 "'variable' is uninitialized. Always initialize a member variable" true) +option(DISABLEWARNING_C5264 "'const' variable is not used" ON) +option(DISABLEWARNING_C4355 "'this' : used in base member initializer list" ON) +option(DISABLEWARNING_C4266 "'function' : no override available for virtual member function from base 'type'" ON) +option(DISABLEWARNING_C4127 "conditional expression is constant" ON) +option(DISABLEWARNING_C26495 "'variable' is uninitialized. Always initialize a member variable" ON) # Set a default build type if none was specified # you may use -DCMAKE_BUILD_TYPE:STRING=Debug from the command line @@ -40,7 +43,7 @@ endif () project("${PROJECT_NAME}" CXX C) -set(PACKAGE_VERSION "1.17.0") +set(PACKAGE_VERSION "1.18.0") cmake_minimum_required(VERSION 3.4) # Check if libraries have to be found, depending on SUMO_LIBRARIES @@ -94,6 +97,10 @@ set (CLANG_COMPILER True) endif () +# C++14 is needed by Google Test >= 1.13, for all the other parts C++11 should be enough. +# This will silently fall back to C++11 if 14 is not supported by the compiler. +set(CMAKE_CXX_STANDARD 14) + # compiler specific flags if (GNU_COMPILER OR CLANG_COMPILER) # set flags for clang in windows @@ -104,8 +111,8 @@ set(CMAKE_CONFIGURATION_TYPES "Release") set(CMAKE_BUILD_TYPE "Release") else () - #flags for clang and gcc in linux - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -pthread -Wall -pedantic -Wextra") + # flags for clang and gcc in linux + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread -Wall -pedantic -Wextra") endif () if (PROFILING) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pg") @@ -221,6 +228,27 @@ endif() endif() message(STATUS "Found Python: " ${PYTHON_EXECUTABLE}) +if (MSVC AND ENABLE_PYTHON_BINDINGS) + # recheck that the platform of the generator and python matches + execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "import sys; print(sys.maxsize > 2**32)" + OUTPUT_VARIABLE IS_PYTHON64 OUTPUT_STRIP_TRAILING_WHITESPACE) + if (${CMAKE_MODULE_LINKER_FLAGS} STREQUAL "/machine:x64") + if (${IS_PYTHON64} STREQUAL "False") + message(STATUS "Did not find Python 64 bit. Please set PYTHON_EXECUTABLE, PYTHON_INCLUDE_DIR and PYTHON_LIBRARY manually.") + set(PYTHON_INCLUDE_DIRS "") + endif() + else() + if (${IS_PYTHON64} STREQUAL "True") + message(STATUS "Did not find Python 32 bit. Please set PYTHON_EXECUTABLE, PYTHON_INCLUDE_DIR and PYTHON_LIBRARY manually.") + set(PYTHON_INCLUDE_DIRS "") + endif() + endif() + if (NOT PYTHON_DEBUG_LIBRARY AND "${CMAKE_BUILD_TYPE}" STREQUAL "Debug") + message(STATUS "Did not find Python debug library. Please reinstall your Python and enable the Python debug libraries in the installer.") + set(PYTHON_INCLUDE_DIRS "") + endif() +endif() + execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "import setuptools" RESULT_VARIABLE PYTHON_SETUPTOOLS_MISSING ERROR_QUIET) execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "import build; import pip; build.__version__" RESULT_VARIABLE PYTHON_BUILD_MISSING ERROR_QUIET) @@ -518,9 +546,9 @@ if (NOT ${PYTHON_SETUPTOOLS_MISSING}) set(TOOLS_DIR "${CMAKE_SOURCE_DIR}/tools") if (${PYTHON_BUILD_MISSING}) - install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE} ${TOOLS_DIR}/build/setup-sumolib.py clean --all install --root=\$ENV{DESTDIR}/ --prefix=${CMAKE_INSTALL_PREFIX} --optimize=1)" + install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE} build/setup-sumolib.py clean --all install --root=\$ENV{DESTDIR}/ --prefix=${CMAKE_INSTALL_PREFIX} --optimize=1 WORKING_DIRECTORY ${TOOLS_DIR})" COMPONENT pysumolib) - install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE} ${TOOLS_DIR}/build/setup-traci.py clean --all install --root=\$ENV{DESTDIR}/ --prefix=${CMAKE_INSTALL_PREFIX} --optimize=1)" + install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE} build/setup-traci.py clean --all install --root=\$ENV{DESTDIR}/ --prefix=${CMAKE_INSTALL_PREFIX} --optimize=1 WORKING_DIRECTORY ${TOOLS_DIR})" COMPONENT pytraci) else () install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE} ./build/version.py ./build/setup-sumolib.py ./setup.py COMMAND ${PYTHON_EXECUTABLE} -m pip install --root=\$ENV{DESTDIR}/ --prefix=${CMAKE_INSTALL_PREFIX} . WORKING_DIRECTORY ${TOOLS_DIR})" @@ -598,7 +626,7 @@ get_filename_component(JAVA_BIN ${Java_JAVAC_EXECUTABLE} DIRECTORY) get_filename_component(JAVA_HOME ${JAVA_BIN} DIRECTORY) set(MVN_COMMAND_PREFIX ${CMAKE_COMMAND} -E env JAVA_HOME=${JAVA_HOME}) - set(MVN_REPO "-Dmaven.repo.local=${CMAKE_BINARY_DIR}/m2") +# set(MVN_REPO "-Dmaven.repo.local=${CMAKE_BINARY_DIR}/m2") endif () add_custom_target(traas COMMAND ${MVN_COMMAND_PREFIX} ${MVN_EXECUTABLE} ${MVN_REPO} --batch-mode -f tools/contributed/traas/pom.xml clean install diff -Nru sumo-1.17.0/CONTRIBUTING.md sumo-1.18.0/CONTRIBUTING.md --- sumo-1.17.0/CONTRIBUTING.md 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/CONTRIBUTING.md 2023-06-28 20:02:17.000000000 +0000 @@ -12,7 +12,7 @@ calculation. SUMO can be enhanced with custom models and it provides various APIs to remotely control and influence the simulation. -* https://eclipse.org/sumo +* https://eclipse.dev/sumo ## Developer resources diff -Nru sumo-1.17.0/data/po/de_gui.po sumo-1.18.0/data/po/de_gui.po --- sumo-1.17.0/data/po/de_gui.po 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/po/de_gui.po 2023-06-28 20:02:17.000000000 +0000 @@ -7,340 +7,340 @@ msgstr "" "Project-Id-Version: sumo\n" "Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" -"POT-Creation-Date: 2023-04-15 12:21+0200\n" -"PO-Revision-Date: 2023-04-14 07:26+0000\n" +"POT-Creation-Date: 2023-06-15 09:59+0200\n" +"PO-Revision-Date: 2023-06-16 08:47+0000\n" "Last-Translator: Mirko Barthauer \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.17-dev\n" +"X-Generator: Weblate 4.18.1-dev\n" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:292 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:295 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2208 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2209 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2211 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:507 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:510 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:513 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1558 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1559 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1560 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:292 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:295 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2218 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2219 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2221 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:513 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:516 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:519 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1567 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1568 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1569 msgid "N/A" msgstr "Nicht verfügbar" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:292 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:507 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:292 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:513 msgid "Original coordinate (before coordinate transformation in netconvert)" msgstr "Originalkoordinate (vor der Koordinatentransformation in netconvert)" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:295 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:510 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:295 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:516 msgid "Network coordinate" msgstr "Netzwerkkoordinate" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:323 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:528 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:323 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:534 msgid "Ready." msgstr "Fertig." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:444 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1322 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:444 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1329 msgid "&File" msgstr "&Datei" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:446 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:200 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:446 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:200 msgid "New Window" msgstr "Neues &Fenster" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:446 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:446 msgid "Open a new sumo-gui window." msgstr "Öffne sumo-gui in einem neuen Fenster." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:450 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:450 msgid "&Open Simulation..." msgstr "Ö&ffne Simulation..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:450 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:450 msgid "Open a simulation (Configuration file)." msgstr "Öffne eine Simulation (Konfigurationsdatei)." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:453 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:453 msgid "Open &Network..." msgstr "&Netz öffnen..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:453 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:453 msgid "Open a network." msgstr "Öffne ein Netz." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:456 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:456 msgid "Open Shapes " msgstr "Sh&apes laden " -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:456 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:456 msgid "Load POIs and Polygons for visualization." msgstr "Lade POI und Polygone zur Visualisierung." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:459 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:459 msgid "Open EdgeData " msgstr "Lade &EdgeData " -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:459 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:459 msgid "Load edge related data for visualization." msgstr "Lade kantenbezogene Daten zur Visualisierung." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:462 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1009 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:256 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:462 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1015 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:256 msgid "&Reload" msgstr "Neu &laden" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:462 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:462 msgid "Reloads the simulation / the network." msgstr "Lädt die Simulation / das Netz erneut." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:465 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:465 msgid "Quick-Reload" msgstr "Erneut laden (Schnellmodus)" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:465 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:465 msgid "Reloads the simulation (but not network)." msgstr "Lädt die Simulation erneut (aber nicht das Netz)." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:469 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:469 msgid "Save Configuration" msgstr "&Konfigurationsdatei speichern" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:469 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:469 msgid "Save current options as a configuration file." msgstr "Speichert die aktuellen Optionen in einer Konfigurationsdatei." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:472 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:300 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:91 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:87 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:88 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:472 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:300 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:95 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:95 msgid "Close" msgstr "Schließen" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:472 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:472 msgid "Close the simulation." msgstr "Schließe die Simulation." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:480 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1343 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:480 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1350 msgid "&Quit" msgstr "&Beenden" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:480 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1343 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:480 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1350 msgid "Quit the Application." msgstr "Beende die Anwendung." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:489 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1357 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:489 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1364 msgid "&Edit" msgstr "&Bearbeiten" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:491 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:491 msgid "Edit Selected..." msgstr "&Auswahl bearbeiten..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:491 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:491 msgid "Opens a dialog for editing the list of selected items." msgstr "Öffnet einen Dialog, um die Objektauswahl zu bearbeiten." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:494 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:494 msgid "Select lanes which allow..." msgstr "&Fahrstreifen auswählen welche ... erlauben" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:494 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:494 msgid "Opens a menu for selecting a vehicle class by which to selected lanes." msgstr "" "Öffnet ein Menu, um für eine Fahrzeugklasse freigegebene Fahrstreifen " "auszuwählen." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:498 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:498 msgid "Edit Breakpoints" msgstr "&Unterbrechungspunkte bearbeiten" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:498 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:498 msgid "Opens a dialog for editing breakpoints." msgstr "Öffnet einen Dialog, um die Unterbrechungspunkte zu bearbeiten." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:501 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1268 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:501 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1302 msgid "Edit Visualisation" msgstr "&Darstellung bearbeiten" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:501 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1268 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:501 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1302 msgid "Opens a dialog for editing visualization settings." msgstr "Öffnet einen Dialog, um die Darstellungseinstellungen zu bearbeiten." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:504 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1271 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:124 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:1587 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1305 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:124 +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:1596 msgid "Edit Viewport" msgstr "An&sichtsbereich bearbeiten" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:504 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1271 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1305 msgid "Opens a dialog for editing viewing area, zoom and rotation." msgstr "" "Öffnet einen Dialog, um den Ansichtsbereich, dessen Drehung und Zoom zu " "verändern." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:508 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:508 msgid "Open network in netedit" msgstr "&Netz in netedit öffnen" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:508 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:508 msgid "Opens current network in NETEDIT." msgstr "Öffnet das aktuelle Netz in netedit." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:515 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:515 msgid "&Settings" msgstr "&Einstellungen" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:517 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:53 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:517 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:53 msgid "Application Settings" msgstr "&Anwendungseinstellungen" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:517 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:517 msgid "Open a Dialog for Application Settings editing." msgstr "Öffnet einen Dialog, um die Anwendungseinstellungen zu bearbeiten." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:520 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:520 msgid "Gaming Mode\tCtrl+G\tToggle gaming mode on/off." msgstr "&Spielmodus\t\tCtrl+G\t\tWechsle in den Spielmodus / verlasse diesen." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:523 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:523 msgid "Full Screen Mode" msgstr "&Vollbildmodus" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:523 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:523 msgid "Toggle full screen mode on/off." msgstr "Schalte Vollbildmodus an/aus." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:527 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1393 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:527 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1400 msgid "&Locate" msgstr "F&inden" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:529 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1314 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1945 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1348 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1979 msgid "&Junctions" msgstr "&Knotenpunkte" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:529 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:529 msgid "Open a Dialog for Locating a Junction." msgstr "Öffnet einen Dialog, um einen Knotenpunkt zu finden." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:532 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1319 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1948 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1353 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1982 msgid "&Edges" msgstr "K&anten" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:532 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:532 msgid "Open a Dialog for Locating an Edge." msgstr "Öffnet einen Dialog, um eine Kante zu finden." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:535 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1374 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1954 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:535 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1408 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1988 msgid "&Vehicles" msgstr "&Fahrzeuge" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:535 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:535 msgid "Open a Dialog for Locating a Vehicle." msgstr "Öffnet einen Dialog, um ein Fahrzeug zu finden." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:538 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1379 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1957 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:538 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1413 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1991 msgid "&Persons" msgstr "&Personen" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:538 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:538 msgid "Open a Dialog for Locating a Person." msgstr "Öffnet einen Dialog, um eine Person zu finden." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:541 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:541 msgid "&Container" msgstr "&Container" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:541 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:541 msgid "Open a Dialog for Locating a Container." msgstr "Öffnet einen Dialog, um einen Container zu finden." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:544 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1966 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:544 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2000 msgid "&TLS" msgstr "&LSA" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:544 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:544 msgid "Open a Dialog for Locating a Traffic Light." msgstr "Öffnet einen Dialog, um eine Lichtsignalanlage zu finden." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:547 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:604 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1969 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:547 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:630 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2003 msgid "&Additional" msgstr "&Zusätzliche Elemente" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:547 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:547 msgid "Open a Dialog for Locating an Additional Structure." msgstr "Öffnet einen Dialog, um zusätzliche Elemente zu finden." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:550 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1972 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:550 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2006 msgid "P&oI" msgstr "P&oI" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:550 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:550 msgid "Open a Dialog for Locating a Point of Interest." msgstr "Öffnet einen Dialog, um ein Point of Interest (POI) zu finden." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:553 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1975 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:553 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2009 msgid "Po&lygon" msgstr "Po&lygon" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:553 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:553 msgid "Open a Dialog for Locating a Polygon." msgstr "Öffnet einen Dialog, um ein Polygon zu finden." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:557 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:557 msgid "Show Internal Structures" msgstr "Interne Strukturen anzeigen" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:557 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:557 msgid "Show internal junctions and streets in locator dialog." msgstr "Interne Knotenpunkte und Kanten im Finden-Dialog anzeigen." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:560 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:560 msgid "Show Parking Vehicles" msgstr "Parkende Fahrzeuge anzeigen" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:560 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:560 msgid "Show parking vehicles in locator dialog." msgstr "Parkende Fahrzeuge im Finden-Dialog anzeigen." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:564 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:564 msgid "Show vehicles outside the road network" msgstr "Außerhalb des Netzes befindende Fahrzeuge anzeigen" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:564 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:564 msgid "" "Show vehicles that are teleporting or driving remote-controlled outside the " "road network in locator dialog." @@ -348,254 +348,252 @@ "Zeige teleportierte und ferngesteuerte Fahrzeuge, die sich außerhalb des " "Netzes befinden, im Finden-Dialog." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:570 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:570 msgid "Simulation" msgstr "&Simulation" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:572 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:90 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:89 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:277 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:572 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:373 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:90 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:93 msgid "Run" msgstr "&Ausführen" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:572 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:572 msgid "Start/ Resume the simulation." msgstr "Simulation beginnen / fortführen." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:575 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:575 msgctxt "Simulation" msgid "Stop" msgstr "Halt" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:575 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:575 msgid "Halt the simulation." msgstr "Halte die Simulation an." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:578 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:578 msgid "Step" msgstr "&Schritt" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:578 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:578 msgid "Perform one simulation step." msgstr "Führe einen Simulationsschritt aus." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:581 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:581 msgid "Delay+" msgstr "Verzögerung+" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:581 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:581 msgid "Increase simulation step delay." msgstr "Erhöhe die Verzögerung pro Simulationsschritt." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:583 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:583 msgid "Delay-" msgstr "Verzögerung-" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:583 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:583 msgid "Decrease simulation step delay." msgstr "Reduziere die Verzögerung pro Simulationsschritt." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:585 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:288 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:284 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:281 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:255 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1365 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2876 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:67 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:585 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:289 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:286 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:256 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1393 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2904 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:67 msgid "Save" msgstr "Speichern" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:585 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:585 msgid "Save the current simulation state to a file." msgstr "Speichere den aktuellen Simulationsstand als Datei." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:588 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:287 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:283 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:280 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:73 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:257 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2874 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:65 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:588 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:288 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:285 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:258 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2902 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:65 msgid "Load" msgstr "Laden" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:588 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:588 msgid "Load simulation state for the current network from file." msgstr "Lade einen Simulationsstand für das aktuelle Netz aus einer Datei." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:592 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1458 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1465 msgid "&Window" msgstr "&Fenster" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:593 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:747 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:593 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:747 msgid "Open new view" msgstr "Öffne eine neue Ansicht" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:595 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:750 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:595 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:750 msgid "Open new 3D view" msgstr "Öffne eine neue 3D-Ansicht" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:598 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:598 msgid "Tile &Horizontally" msgstr "&Übereinander anordnen" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:601 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:601 msgid "Tile &Vertically" msgstr "&Nebeneinander anordnen" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:604 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:604 msgid "Cascade" msgstr "&Versetzt anordnen" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:608 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:97 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:100 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:608 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:98 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:100 msgid "&Close" msgstr "&Schließen" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:618 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:618 msgid "&Others..." msgstr "&Weitere..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:622 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2092 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:622 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2126 msgid "Show Status Line" msgstr "Zeige Statuszeile" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:622 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:622 msgid "Toggle the Status Bar on/off." msgstr "Blende die Statuszeile ein/aus." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:625 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2095 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:625 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2129 msgid "Show Message Window" msgstr "Zeige Meldungsfenster" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:625 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2095 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:625 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2129 msgid "Toggle the Message Window on/off." msgstr "Blende das Meldungsfenster ein/aus." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:628 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:628 msgid "Show Simulation Time" msgstr "Zeige Simulationszeit" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:628 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:628 msgid "Toggle the Simulation Time on/off." msgstr "Blende die Simulationszeit ein/aus." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:631 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:631 msgid "Show Simulation Delay" msgstr "Zeige Simulationsverzögerung" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:631 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:631 msgid "Toggle the Simulation Delay Entry on/off." msgstr "Blende die Simulationsverzögerung ein/aus." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:637 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2099 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:637 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2133 msgid "Clear Message Window" msgstr "Leere das Meldungsfenster" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:637 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:637 msgid "Clear the message window." msgstr "Leere das Meldungsfenster." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:644 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1463 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:644 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1470 msgid "&Help" msgstr "&Hilfe" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:646 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2115 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:646 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2149 msgid "&Online Documentation" msgstr "&Online-Dokumentation" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:646 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2115 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:646 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2149 msgid "Open Online documentation." msgstr "Öffne die Online-Dokumentation." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:649 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2118 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:649 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2152 msgid "&Changelog" msgstr "Änderungs&protokoll" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:649 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2118 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:649 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2152 msgid "Open Changelog." msgstr "Öffne das Änderungsprotokoll." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:651 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2120 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:651 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2154 msgid "&Hotkeys" msgstr "&Hotkeys" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:651 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2120 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:651 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2154 msgid "Open Hotkeys." msgstr "Gehe zu Hotkeys." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:653 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2122 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:653 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2156 msgid "&Tutorial" msgstr "&Tutorial" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:653 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2122 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:653 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2156 msgid "Open Tutorial." msgstr "Gehe zu Tutorials." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:655 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2124 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:655 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2158 msgid "&Feedback" msgstr "&Rückmeldung" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:655 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:655 msgid "Open feedback dialog." msgstr "Rückmelde-Dialog öffnen." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:658 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2127 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:658 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2161 msgid "&About" msgstr "Ü&ber" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:658 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:658 msgid "About sumo-gui." msgstr "Über sumo-gui." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:673 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:673 msgid "\tOpen simulation\tOpen a simulation (Configuration file)." msgstr "\tSimulation öffnen\tÖffne eine Simulation (Konfigurationsdatei)." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:675 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:675 msgid "\tOpen network\tOpen a network." msgstr "\tNetz öffnen\tÖffne ein Netz." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:677 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:677 msgid "\tReload\tReloads the simulation / the network." msgstr "\tNeu laden\tLädt die Simulation / das Netz erneut." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:686 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:686 msgid "\tRun\tStart/Resume the loaded simulation." msgstr "\tAusführen\tBeginne oder führe die Simulation fort." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:688 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:688 msgid "\tStop\tHalt the running simulation." msgstr "\tHalt\tHalte die Simulation an." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:690 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:690 msgid "\tStep\tPerform a single simulation step." msgstr "\tSchritt\tFühre einen einzelnen Simulationsschritt aus." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:698 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:698 msgid "" "Time:\tToggle between time formats\tToggle between seconds and hour:minute:" "seconds display." @@ -603,7 +601,7 @@ "Zeit:\tWechsle zwischen Zeitformaten\tWechsle Zeitformat zwischen Sekunden " "und Stunde:Minute:Sekunde." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:712 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:712 msgid "" "Delay (ms):\tDelay per simulated second\tDelay per simulated second. Click " "to toggle between the last two delay values." @@ -612,11 +610,11 @@ "simulierte Sekunde. Wechsle mit Klick zwischen den letzten zwei " "Verzögerungswerten vor und zurück." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:735 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:735 msgid "Scale Traffic:" msgstr "Skaliere Verkehrsaufkommen:" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:735 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:735 msgid "" "Scale traffic from flows and vehicles that are loaded incrementally from " "route files." @@ -624,729 +622,739 @@ "Skaliere das Verkehrsaufkommen von Verkehrsflüssen und Einzelfahrzeugen, die " "stückweise aus Route-Dateien geladen werden." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:747 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:747 msgid "Open a new microscopic view." msgstr "Öffne eine neue mikroskopische Ansicht." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:750 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:750 msgid "Open a new 3D view." msgstr "Öffne eine neue 3D-Ansicht." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:760 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:760 msgid "Waiting Time:" msgstr "Wartezeit:" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:760 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:760 msgid "Time spent waiting accumulated for all vehicles" msgstr "Über alle Fahrzeuge summierte Wartezeit" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:771 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:771 msgid "Time Loss:" msgstr "Verlustzeit:" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:771 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:771 msgid "" "Time lost due to being unable to drive with maximum speed for all vehicles" msgstr "" "Über alle Fahrzeuge summierte Verlustzeit (Zeitdifferenz zur Fahrt mit " "maximaler Geschwindigkeit)" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:782 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:782 msgid "Distance (km):" msgstr "Fahrleistung (km):" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:782 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:782 msgid "Total distance driven by DRT vehicles" msgstr "Fahrleistungssumme über alle DRT-Fahrzeuge" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:793 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:793 msgid "Emergency Vehicle waiting time:" msgstr "Wartezeit von Einsatzfahrzeugen:" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:793 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:793 msgid "Time spent waiting accumulated for emergency vehicles" msgstr "Über alle Einsatzfahrzeuge summierte Wartezeit" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:818 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:150 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:818 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:150 msgid "Cl&ear Recent Networks" msgstr "Chronik der letzten Netze leeren" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:819 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:151 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:819 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:151 msgid "No Recent Networks" msgstr "Keine letzten Netze" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:823 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:155 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:823 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:155 msgid "Recent Networks" msgstr "Letzte Netze" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:841 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:173 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:841 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:173 msgid "Cl&ear Recent Configs" msgstr "Chronik der letzten Konfigurationen leeren" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:842 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:174 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:842 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:174 msgid "No Recent Configs" msgstr "Keine letzten Konfigurationen" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:846 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:178 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:846 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:178 msgid "Recent Configs" msgstr "Letzte Konfigurationen" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:986 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1021 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1058 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:986 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1021 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1058 msgid "Running %." msgstr "Führt % aus." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1068 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1068 msgid "Open Simulation Configuration" msgstr "Öffne Simulationskonfiguration" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1088 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1088 msgid "Open Network" msgstr "Netz öffnen" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1108 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1108 msgid "Open Shapes" msgstr "Shapes laden" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1122 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1150 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4634 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4669 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4704 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4736 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1122 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1150 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4650 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4685 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4720 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4752 #, c-format msgid "Loading of % failed." msgstr "Laden von % fehlgeschlagen." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1139 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1139 msgid "Open EdgeData" msgstr "Lade EdgeData" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1173 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1174 +msgid "Auto-Reloading." +msgstr "Lade erneut (automatisch)." + +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1174 +msgid "TraCI-Loading." +msgstr "Lade (duch TraCI ausgelöst)." + +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1176 msgid "Reloading." msgstr "Lade erneut." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1183 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1187 msgid "Quick-Reloading." msgstr "Lade erneut (Schnellmodus)." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1193 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1081 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1197 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1087 msgid "Already loading!" msgstr "Lädt bereits!" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1205 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1209 msgid "Save SUMO Configuration" msgstr "Speichere Simulationskonfiguration" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1220 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1224 msgid "Configuration saved to %." msgstr "Konfiguration wurde in % gespeichert." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1222 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1226 msgid "Could not save configuration to %." msgstr "Konnte die Konfiguration nicht in % speichern." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1278 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1304 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2134 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1282 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1308 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2144 msgid "No simulation loaded!" msgstr "Keine Simulation geladen!" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1320 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1324 msgid "Save Simulation State" msgstr "Speichere Simulationsstand" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1334 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1338 msgid "Simulation state saved to '%'." msgstr "Simulationsstand in '%' gespeichert." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1342 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1346 msgid "Load Simulation State" msgstr "Lade Simulationsstand" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1354 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1358 msgid "State loaded from '%'." msgstr "Stand von '%' geladen." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1356 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1360 msgid "Failed to load state from '%' (%)." msgstr "Laden des Stands aus '%' fehlgeschlagen (%)." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1813 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1817 #, c-format msgid "Loading of '%' failed!" msgstr "Laden von '%' fehlgeschlagen!" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1827 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1831 #, c-format msgid "'%' loaded." msgstr "'%' geladen." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2027 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2031 +msgid "Simulation ended at time: %. (%)" +msgstr "Simulation zur Zeit % (%) beendet" + +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2037 msgid "Simulation ended" msgstr "Simulation beendet" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2125 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2135 msgid "Loading '%'." msgstr "Lade '%'." -#: /home/micha/programming/sumo/src/gui/GUILoadThread.cpp:206 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2288 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2290 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2291 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2292 +msgid "seconds" +msgstr "Sekunden" + +#: D:\Repos\sumo/src\gui\GUILoadThread.cpp:206 msgid "Could not load edgedata-files '%'" msgstr "Konnte edgedata-Dateien '%' nicht laden" -#: /home/micha/programming/sumo/src/gui/GUIRunThread.cpp:100 -#: /home/micha/programming/sumo/src/gui/GUIRunThread.cpp:106 +#: D:\Repos\sumo/src\gui\GUIRunThread.cpp:100 +#: D:\Repos\sumo/src\gui\GUIRunThread.cpp:106 msgid "Quitting (on error)." msgstr "Abbruch wegen Fehler." -#: /home/micha/programming/sumo/src/gui/GUIRunThread.cpp:265 +#: D:\Repos\sumo/src\gui\GUIRunThread.cpp:265 msgid "Simulation started with time: %." msgstr "Die Simulation hat zur Zeit % begonnen." -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:142 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:448 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:142 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:455 msgid "Save Snapshot" msgstr "Speichere Snapshot" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:167 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:468 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:167 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:475 msgid "No file extension was specified - saving Snapshot as PNG." msgstr "Keine Dateiendung angegeben - speichere Snapshot als PNG." -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:173 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:475 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:173 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:482 msgid "Saving failed." msgstr "Speichern fehlgeschlagen." -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:175 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:479 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:175 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:486 msgid "Snapshot successfully saved!" msgstr "Snapshot erfolgreich gespeichert!" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:219 -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:268 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:219 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:268 msgid "Unknown Message ID in onCmdLocate" msgstr "Unbekannte Nachrichten ID in onCmdLocate" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:233 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:505 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:233 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:512 msgid "Junction Chooser" msgstr "Knotenpunktauswahl" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:237 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:513 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:237 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:520 msgid "Edge Chooser" msgstr "Kantenauswahl" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:241 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:529 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:87 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:241 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:536 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:87 msgid "Vehicle Chooser" msgstr "Fahrzeugauswahl" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:245 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:576 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:245 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:583 msgid "Person Chooser" msgstr "Personenauswahl" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:249 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:249 msgid "Container Chooser" msgstr "Containerauswahl" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:253 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:253 msgid "Traffic Lights Chooser" msgstr "LSA-Auswahl" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:257 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:257 msgid "Additional Objects Chooser" msgstr "Auswahl weiterer Objekte" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:261 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:655 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:261 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:667 msgid "POI Chooser" msgstr "Pol-Auswahl" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:265 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:265 msgid "Polygon Chooser" msgstr "Polygonauswahl" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:269 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:269 msgid "phase names" msgstr "Phasenbezeichnungen" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:272 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:272 msgid "detectors" msgstr "Detektoren" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:273 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:273 msgid "conditions" msgstr "Bedingungen" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:336 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:336 msgid "Overflow in time computation occurred." msgstr "Überlauf bei der Zeitberechnung aufgetreten." -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:114 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:332 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:114 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:334 msgid "Locate Junctions" msgstr "Knotenpunkte finden" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:114 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:114 msgid "Locate a junction within the network." -msgstr "" +msgstr "Findet einen Knotenpunkt im Netz." -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:119 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:336 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:119 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:338 msgid "Locate Edges" msgstr "Kanten finden" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:119 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:119 msgid "Locate an edge within the network." -msgstr "" +msgstr "Findet eine Kante im Netz." -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:124 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:344 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:124 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:346 msgid "Locate Vehicles" msgstr "Fahrzeuge finden" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:124 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:124 msgid "Locate a vehicle within the network." -msgstr "" +msgstr "Findet ein Fahrzeug im Netz." -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:129 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:348 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:129 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:350 msgid "Locate Persons" msgstr "Personen finden" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:129 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:129 msgid "Locate a person within the network." -msgstr "" +msgstr "Findet eine Person im Netz." -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:134 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:134 msgid "Locate Container" -msgstr "" +msgstr "Container finden" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:134 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:134 msgid "Locate a container within the network." -msgstr "" +msgstr "Findet einen Container im Netz." -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:139 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:367 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:139 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:369 msgid "Locate TLS" msgstr "LSA finden" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:139 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:139 msgid "Locate a tls within the network." -msgstr "" +msgstr "Findet eine LSA im Netz." -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:144 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:371 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:144 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:373 msgid "Locate Additional" msgstr "Weitere Elemente finden" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:144 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:144 msgid "Locate an additional structure within the network." -msgstr "" +msgstr "Findet eine weitere Struktur im Netz." -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:149 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:375 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:149 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:377 msgid "Locate PoI" msgstr "PoI finden" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:149 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:149 msgid "Locate a PoI within the network." -msgstr "" +msgstr "Findet ein PoI im Netz." -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:154 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:379 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:154 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:381 msgid "Locate Polygon" msgstr "Polygone finden" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:154 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:154 msgid "Locate a Polygon within the network." -msgstr "" +msgstr "Findet ein Polygon im Netz." -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AboutSUMO.cpp:69 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:58 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_HallOfFame.cpp:57 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:415 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:411 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:408 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:234 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:247 -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:285 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:384 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:559 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:298 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:487 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:96 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:173 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:280 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AboutSUMO.cpp:69 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:58 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_HallOfFame.cpp:57 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:416 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:413 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:408 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:375 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:380 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:298 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:487 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:97 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:173 msgid "OK" msgstr "OK" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:62 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:62 msgid "Quit on Simulation End" msgstr "Programm nach Simulation beenden" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:64 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:64 msgid "Autostart Simulation on Load and Reload" msgstr "Simulation nach dem (erneuten) Laden automatisch starten" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:66 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:66 msgid "Reload Simulation after finish (Demo mode)" msgstr "Simulation nach dem Ende erneut laden (Demomodus)" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:68 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:68 msgid "Locate elements when clicking on messages" msgstr "Klicke auf die Meldung, um das Element im Netz zu finden" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:74 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:74 msgid "Breakpoint offset when clicking on time message" msgstr "Unterbrechungspunktversatz bei Klick auf Zeitmeldung" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:98 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:98 msgid "Allow Textures" msgstr "Texturen zulassen" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:101 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:76 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:133 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:995 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2352 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:101 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:76 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:133 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:995 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2354 msgid "&OK" msgstr "&OK" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:102 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:64 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:72 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:639 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:390 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:134 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:996 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2353 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:102 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:72 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:639 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:390 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:134 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:996 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2355 msgid "&Cancel" msgstr "&Abbrechen" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:69 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:69 msgid "Breakpoints Editor" msgstr "Unterbrechungspunkteeditor" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:89 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:90 msgid "&Load" msgstr "&Laden" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:91 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:92 msgid "&Save" msgstr "&Speichern" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:94 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:95 msgid "Clea&r" msgstr "L&eeren" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:126 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2391 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2397 msgid "Time" msgstr "Zeit" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:141 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:142 msgid "Load Breakpoints" msgstr "Lade Unterbrechungspunkte" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:162 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:163 msgid "Save Breakpoints" msgstr "Speichere Unterbrechungspunkte" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:172 -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:155 -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:258 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:240 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1102 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1183 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:173 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:155 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:258 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:240 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1102 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1183 msgid "Storing failed!" msgstr "Speichern fehlgeschlagen!" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:241 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:244 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:242 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:245 msgid "Time format error" msgstr "Zeitformatfehler" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:46 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:46 msgid "- General problem solving" msgstr "- Lösung allgemeiner Probleme" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:50 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:50 msgid "- Sumo-user mailing list" msgstr "- Sumo-Benutzer Mailingliste" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:54 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:54 msgid "- Send us an Email" msgstr "- Sende uns eine Email" -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_InductionLoop.cpp:55 -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_InductionLoop.cpp:59 -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_TrafficLight.cpp:56 -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_TrafficLight.cpp:60 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_InductionLoop.cpp:55 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_InductionLoop.cpp:59 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_TrafficLight.cpp:56 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_TrafficLight.cpp:60 #, c-format msgid "Hotkey '%' is not supported" msgstr "Hotkey '%' wird nicht unterstützt" -#: /home/micha/programming/sumo/src/guisim/GUIBaseVehicle.cpp:300 +#: D:\Repos\sumo/src\guisim\GUIBaseVehicle.cpp:300 msgid "GUI-triggered stop not implemented for meso" msgstr "Über GUI ausgelöster Halt in meso nicht implementiert" -#: /home/micha/programming/sumo/src/guisim/GUIBaseVehicle.cpp:876 -#: /home/micha/programming/sumo/src/guisim/GUIVehicle.cpp:668 +#: D:\Repos\sumo/src\guisim\GUIBaseVehicle.cpp:876 +#: D:\Repos\sumo/src\guisim\GUIVehicle.cpp:663 msgid "Vehicle parameter '%' key '%' is not a number for vehicle '%'." msgstr "" "Fahrzeugparameter '%' (Schlüssel '%') von Fahrzeug '%' kann nicht als Zahl " "interpretiert werden." -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:326 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:326 msgid "Network size exceeds 1 Lightyear. Please reconsider your inputs.\n" msgstr "Netz größer als ein Lichtjahr. Bitte die Eingabedaten prüfen.\n" -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:666 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:666 msgid "Trying to set data value for the unknown edge '%'." msgstr "Versuche Wert für die unbekannte Kante '%' zu setzen." -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:690 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:690 msgid "" "Trying to set data value for the unknown relation from edge '%' to edge '%'." msgstr "" "Versuche Wert für die unbekannte Beziehung zwischen Kante '%' und '%' zu " "setzen." -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:708 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:708 msgid "No data defined after simulation begin time." msgstr "Keine Daten mit Zeitbezug nach dem Simulationsbeginn definiert." -#: /home/micha/programming/sumo/src/guisim_main.cpp:57 +#: D:\Repos\sumo/src\guisim_main.cpp:57 msgid "GUI version of the microscopic, multi-modal traffic simulation SUMO." msgstr "" "Grafische Version der mikroskopischen, multimodalen Verkehrssimulation SUMO." -#: /home/micha/programming/sumo/src/guisim_main.cpp:77 -#: /home/micha/programming/sumo/src/netedit/netedit_main.cpp:81 +#: D:\Repos\sumo/src\guisim_main.cpp:77 +#: D:\Repos\sumo/src\netedit\netedit_main.cpp:81 msgid "This system has no OpenGL support. Exiting." msgstr "Dieses System unterstützt OpenGL nicht. Abbruch." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:468 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:469 msgid "A microscopic, multi-modal traffic simulation." msgstr "" "Grafische Version der mikroskopischen, multimodalen Verkehrssimulation SUMO." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:510 msgid "Recomputing" msgstr "Erneute Berechnung" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:510 msgid "Recomputing is needed" msgstr "Erneute Berechnung notwendig" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:513 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:519 msgid "Test coordinate" msgstr "Test-Koordinate" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:827 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:850 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:833 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:856 msgid "loading TLS Programs from '" msgstr "Lädt LSA-Programme aus '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:892 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:898 msgid "Loaded edge types from '" msgstr "Kantentypen geladen aus '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:894 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:927 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:900 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:933 msgid "load edgeTypes" msgstr "Lade Kantentypen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:925 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:931 msgid "Reloaded edge types from '" msgstr "Kantentypen erneut geladen aus '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:982 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:988 msgid "Reloading netedit config file '" msgstr "Lädt netedit-Konfigurationsdatei erneut aus '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:986 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:992 msgid "Reloading sumo config file '" msgstr "Lädt sumo-Konfigurationsdatei erneut aus '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:990 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1051 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:996 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1057 msgid "Reloading network file '" msgstr "Lädt Netzdatei erneut aus '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1006 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1012 msgid "&Reload Netedit config" msgstr "Netedit-Konfiguration erneut laden" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1007 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1013 msgid "&Reload Sumo config" msgstr "Sumo-Konfiguration erneut laden" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1008 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1014 msgid "&Reload Network" msgstr "Netz erneut laden" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1253 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1260 msgid "Loading of '" msgstr "Laden von '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1258 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1265 msgid "'" msgstr "'" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1258 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1265 msgid "' loaded." msgstr "' geladen." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1347 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1354 msgid "&Modes" msgstr "&Modi" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1382 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1389 msgid "L&ock" msgstr "Sperren" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1389 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1396 msgid "&Processing" msgstr "&Operationen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1414 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1421 msgid "&Tools" msgstr "Werkzeuge" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1416 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1423 msgid "Detectors" -msgstr "" +msgstr "Detektoren" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1417 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1424 msgid "Districts" -msgstr "" +msgstr "Bezirke" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1418 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1425 msgid "DRT" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1419 -msgid "Emissions" -msgstr "" +msgstr "Bedarfsorientierter ÖPNV (DRT)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1420 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1427 msgid "CityBrain" -msgstr "" +msgstr "CityBrain" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1421 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1428 msgid "GTFS" -msgstr "" +msgstr "GTFS" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1422 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1429 msgid "Vissim" -msgstr "" +msgstr "Vissim" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1423 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1430 msgid "Visum" -msgstr "" +msgstr "Visum" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1431 msgid "Import" -msgstr "" +msgstr "Importieren" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1425 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1432 msgid "Net" -msgstr "" +msgstr "Netz" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1426 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:673 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2744 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1433 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:699 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2750 msgid "Route" msgstr "Route" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1427 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1434 msgid "Output" msgstr "Ausgabe" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1428 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:227 -msgid "Shapes" -msgstr "Shapes" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1429 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1436 msgid "TLS" msgstr "LSA" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1430 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1437 msgid "Turn-defs" -msgstr "" +msgstr "Abbiegedefinitionen (Turn-defs)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1431 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1438 msgid "Visualization" -msgstr "" +msgstr "Darstellung" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1432 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1439 msgid "XML" -msgstr "" +msgstr "XML" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1519 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1526 msgid "Network computed" msgstr "Netz berechnet" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1523 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1530 msgid "Press F5" msgstr "Drücke F5" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1524 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1531 msgid "Network requires recomputing" msgstr "Das Netz muss neu berechnet werden" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1591 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1600 msgid "Loading console arguments" msgstr "Lädt Kommandozeilenargumente" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1619 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1628 msgid "Creating new network." msgstr "Erstellt ein neues Netz." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1630 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1639 msgid "Trying to load an empty network" msgstr "Das Netz enthält keine Elemente" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1646 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1655 msgid "Loading network file '" msgstr "Lädt Netzdatei '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1658 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1667 msgid "Trying to load an empty configuration" msgstr "Versuche eine leere Konfiguration zu laden" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1674 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1683 msgid "Loading configuration file '" msgstr "Lädt Konfigurationsdatei '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1704 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1713 msgid "Select Import Options" msgstr "Importoptionen auswählen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1710 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1719 msgid "Loading OSM file '" msgstr "Lade OSM-Datei '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1732 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1739 msgid "Recompute with volatile options" msgstr "Mit volatilen Optionen neu berechnen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1733 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1740 msgid "" "Changes produced in the net due a recomputing with volatile options cannot " "be undone. Continue?" @@ -1354,1446 +1362,1470 @@ "Änderungen am Netz durch die Neuberechnung mit volatilen Optionen können " "nicht rückgängig gemacht werden. Trotzdem fortfahren?" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1973 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2033 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1980 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2040 msgid "Running " msgstr "Führt aus " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1996 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2003 msgid "Loading network '" msgstr "Lädt Netz '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1996 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2005 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2003 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2012 msgid "' in SUMO-GUI" msgstr "' in SUMO-GUI" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2005 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2012 msgid "Loading sumo config '" msgstr "Lädt SUMO-Konfiguration '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2317 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2325 msgid "Netedit options" -msgstr "" +msgstr "Netedit-Optionen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2334 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1826 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2342 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1860 msgid "Sumo options" msgstr "Sumo-Optionen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2351 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2359 msgid "Netgenerate options" -msgstr "" +msgstr "Netgenerate-Optionen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2368 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1253 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:102 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2376 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1287 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:103 msgid "Undo" msgstr "Rückgängig" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2400 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1256 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:105 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2408 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1290 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:106 msgid "Redo" msgstr "Wiederherstellen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3072 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3080 msgid "Saving Network failed!" msgstr "Speichern des Netzes fehlgeschlagen!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3078 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3086 msgid "Network saved in '" msgstr "Netz gespeichert in'" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3084 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3092 msgid "Could not save network in '" -msgstr "" +msgstr "Konnte das Netz nicht im folgenden Pfad speichern: '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3130 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3148 msgid "Plain XML saved with prefix '" msgstr "Im \"Plain XML\"-Format gespeichert; Präfix '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3135 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3153 msgid "Saving plain xml failed!" msgstr "Speichern im \"Plain XML\"-Format fehlgeschlagen!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3159 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3177 msgid "Joined junctions saved to '" msgstr "Vereinigte Knoten gespeichert unter '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3164 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3182 msgid "Saving joined junctions failed!" msgstr "Speichern der vereinigten Knoten fehlgeschlagen!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3227 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3245 msgid "Netedit configuration saved in '" msgstr "Netedit-Konfiguration wurde gespeichert unter '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3233 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3251 msgid "Could not save netedit configuration in '" msgstr "" "Konnte die netedit-Konfiguration nicht unter folgendem Pfad speichern: '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3337 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3355 msgid "SUMO configuration saved in '" msgstr "Sumo-Konfiguration gespeichert unter '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3345 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3363 msgid "Could not save SUMO configuration in '" msgstr "" "Konnte die sumo-Konfiguration nicht unter dem folgenden Pfad speichern: '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3399 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3417 msgid "TLS Programs saved in '" msgstr "LSA-Programme unter dem folgenden Pfad gespeichert: '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3422 msgid "Saving TLS Programs failed!" msgstr "Speichern der LSA-Programme fehlgeschlagen!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3447 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3465 msgid "EdgeType saved in '" msgstr "EdgeType gespeichert unter '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3452 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3470 msgid "Saving edgeTypes failed!" msgstr "Speichern der edgeTypes fehlgeschlagen!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3556 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3574 msgid "load additionals from '" msgstr "Lädt weitere Daten aus '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3560 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1304 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3578 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1307 msgid "Loading of additional file failed: " msgstr "Laden weiterer Daten aus der folgenden Datei fehlgeschlagen: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3566 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1306 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3584 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1309 msgid "Loading of additional file sucessfully: " msgstr "Weitere Daten erfolgreich aus der folgenden Datei geladen: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3610 msgid "reloading additionals from '" msgstr "Lädt weitere Daten erneut aus '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3597 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3615 msgid "Reloading of additional file failed: " msgstr "" "Erneutes Laden von weiteren Daten aus der folgenden Datei fehlgeschlagen: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3640 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3658 msgid "Additionals saved in '" msgstr "Weitere Daten gespeichert unter '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3650 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3667 msgid "Saving additionals failed!" -msgstr "" +msgstr "Speichern der weiteren Elemente fehlgeschlagen!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3720 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4659 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4662 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3737 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4675 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4678 msgid "loading demand elements from '" msgstr "Lädt Nachfrageelemente aus '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3724 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1315 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3741 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1318 msgid "Loading of route file failed: " msgstr "Laden der folgenden Route-Datei fehlgeschlagen: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3730 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1317 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3747 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1320 msgid "Loading of route file sucessfully: " msgstr "Folgende Route-Datei wurde erfolgreich geladen: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3761 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3778 msgid "Reloading of route file failed: " msgstr "Erneutes Laden der folgenden Route-Datei fehlgeschlagen: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3802 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3819 msgid "Demand elements saved in '" msgstr "Nachfrageelemente gespeichert unter '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3812 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3828 msgid "Saving demand elements failed!" -msgstr "" +msgstr "Speichern der Nachfrageelemente fehlgeschlagen!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3884 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4728 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3900 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4744 msgid "loading data elements from '" msgstr "Lädt Nachfrageelemente aus '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3888 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1326 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3904 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1329 msgid "Loading of data file failed: " msgstr "Laden der Datendatei ist fehlgeschlagen: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3894 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1328 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3910 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1331 msgid "Loading of data file sucessfully: " msgstr "Laden der Datendatei war erfolgreich: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3924 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3940 msgid "reloading data elements from '" msgstr "Neu laden von Datenelementen aus" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3929 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3945 msgid "Reloading of data file failed: " msgstr "Erneutes Laden der Datendatei ist fehlgeschlagen: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3971 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3987 msgid "Data elements saved in '" msgstr "Speicherung der Datenelemente in" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3976 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3992 msgid "Saving data elements failed!" -msgstr "" +msgstr "Speichern der Datenelemente fehlgeschlagen!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4048 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4064 msgid "load meanDatas from '" msgstr "Lädt meanData aus '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4052 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1337 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4068 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1340 msgid "Loading of meandata file failed: " msgstr "Laden der folgenden meanData-Datei fehlgeschlagen: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4058 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4089 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1339 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4074 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4105 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1342 msgid "Loading of meandata file sucessfully: " msgstr "Nachfolgende MeanData-Datei wurde erfolgreich geladen: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4084 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4100 msgid "reloading meanDatas from '" msgstr "Lädt meanData erneut aus '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4128 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4144 msgid "MeanDatas saved in '" msgstr "MeanData gespeichert unter '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4133 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4149 msgid "Saving meanData failed!" -msgstr "" +msgstr "Speichern von meanData-Elementen fehlgeschlagen!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4182 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4198 msgid "Confirm close Network" msgstr "Bestätige Schließen des Netzes" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4183 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4199 msgid "You have unsaved changes in the network." msgstr "Änderungen am Netz wurden noch nicht gespeichert." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4184 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4250 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4294 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4338 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4382 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4200 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4266 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4310 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4354 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4398 msgid "Do you wish to close and discard all changes?" msgstr "Schließen und alle Änderungen verwerfen?" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4248 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4264 msgid "Save additional elements before close" msgstr "Weitere Elemente vor dem Schließen speichern" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4249 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4265 msgid "You have unsaved additional elements." msgstr "Es gibt noch nicht gespeicherte weitere Elemente." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4292 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4308 msgid "Save demand elements before close" msgstr "Nachfrageelemente vor dem Schließen speichern" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4293 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4309 msgid "You have unsaved demand elements." msgstr "Es gibt noch nicht gespeicherte Nachfrageelemente." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4336 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4352 msgid "Save data elements before close" msgstr "Datenelemente vor dem Schließen speichern" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4337 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4353 msgid "You have unsaved data elements." msgstr "Es gibt noch nicht gespeicherte Datenelemente." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4380 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4396 msgid "Save meanData elements before close" msgstr "MeanData-Elemente vor dem Schließen speichern" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4381 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4397 msgid "You have unsaved meanData elements." msgstr "Es gibt noch nicht gespeicherte meanData-Elemente." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4624 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4640 msgid "loading additional elements from '" msgstr "lädt weitere Elemente aus '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4627 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4643 msgid "loading additionals from '" msgstr "lädt weitere Elemente aus '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4694 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4710 msgid "loading meanDatas from '" msgstr "lädt meanData aus '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4697 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4713 msgid "loading meandatas from '" msgstr "lädt meanData aus '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4731 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4747 msgid "Loading data elements from '" msgstr "Laden der Datenelemente aus '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:130 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:130 msgid "nets" msgstr "Netze" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:131 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:131 msgid "configs" msgstr "Konfigurationen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:196 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:196 msgid "&New Network" msgstr "&Neues Netz" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:196 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:196 msgid "Create a new network." msgstr "Erstelle ein neues Netz." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:200 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:200 msgid "Open a new netedit window." msgstr "Öffne ein neues netedit-Fenster." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:204 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:204 msgid "Generate Network" -msgstr "" +msgstr "Netz generieren" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:204 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:204 msgid "Create network using netgenerate." -msgstr "" +msgstr "Erstellt ein Netz mithilfe von netgenerate." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:211 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:211 msgid "Load Netedit config..." msgstr "Netedit-Konfiguration laden..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:211 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:211 msgid "Load a netedit configuration file." msgstr "Lade eine netedit-Konfigurationsdatei." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:215 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:215 msgid "Load Sumo config..." msgstr "Sumo-Konfiguration laden..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:215 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:215 msgid "Load a SUMO configuration file." msgstr "Lade eine sumo-Konfigurationsdatei." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:222 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:222 msgid "&Open Network..." msgstr "Netz ö&ffnen..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:222 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:222 msgid "Open a SUMO network." msgstr "Öffne ein sumo-Netz." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:226 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:226 msgid "Open Netconvert Configura&tion..." msgstr "Netconvert-Konfiguration öffnen..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:226 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:226 msgid "Open a configuration file with NETCONVERT options." msgstr "Öffne eine Konfigurationsdatei mit netconvert-Optionen." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:230 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:230 msgid "Import &Foreign Network..." msgstr "Netz &importieren..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:230 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:230 msgid "Import a foreign network such as OSM." msgstr "Importiere ein Netz aus einem externen Format wie OSM." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:237 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:237 msgid "&Save Network" msgstr "Netz &speichern" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:237 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:237 msgid "Save the network." msgstr "Speichere das Netz." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:241 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:241 msgid "Save Net&work As..." msgstr "Netz speichern unter..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:241 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:241 msgid "Save the network to another file." msgstr "Speichere das Netz in einer anderen Datei." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:245 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:245 msgid "Save Plain XM&L..." msgstr "Als Plain XML speichern..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:245 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:245 msgid "Save a plain XML representation of the network." msgstr "Speichere eine \"Plain XML\"-Abbildung des Netzes." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:249 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:249 msgid "Save &Joined Junctions..." msgstr "Vereinigte Knoten speichern..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:249 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:249 msgid "Save log of joined junctions (allows reproduction of joins)." msgstr "" "Speichere ein Protokoll der vereinigten Knoten, um die Vereinigung " "wiederholen zu können." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:256 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:260 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:256 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:260 msgid "Reload the network." msgstr "Lade das Netz erneut." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:260 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:260 msgid "Reload Network" msgstr "Netz erneut laden" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:267 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:267 msgid "Netedit Config" msgstr "Netedit-Konfiguration" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:271 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:271 msgid "Sumo Config" msgstr "Sumo-Konfiguration" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:275 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:275 msgid "Traffic Lights" msgstr "Lichtsignalanlagen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:279 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:279 msgid "Edge Types" msgstr "Kantentypen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:283 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:283 msgid "Additionals and Shapes" msgstr "Weitere Daten und Shapes" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:287 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:287 msgid "Demand Elements" msgstr "Nachfrageelemente" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:291 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:291 msgid "Data Elements" msgstr "Datenelemente" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:295 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:295 msgid "MeanData Elements" msgstr "MeanData-Elemente" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:300 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:300 msgid "Close the network." msgstr "Schließe das Netz." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:334 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:334 msgid "Save Netedit Config" msgstr "Netedit-Konfiguration speichern" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:334 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:334 msgid "Save netedit configuration file." msgstr "Speichere die netedit-Konfigurationsdatei." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:338 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:338 msgid "Save Netedit Config As..." msgstr "Netedit-Konfiguration speichern unter..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:338 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:338 msgid "Save netedit configuration in a new file." msgstr "Speichere die netedit-Konfiguration in einer neuen Datei." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:344 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:344 msgid "Reload Netedit Config" msgstr "Netedit-Konfiguration erneut laden" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:344 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:344 msgid "Reload netedit configuration." msgstr "Lade die netedit-Konfiguration erneut." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:352 msgid "Save Sumo Config" msgstr "Sumo-Konfiguration speichern" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:352 msgid "Save sumo configuration file." msgstr "Speichere die sumo-Konfigurationsdatei." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:356 msgid "Save Sumo Config As..." msgstr "Sumo-Konfiguration speichern unter..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:356 msgid "Save sumo configuration in a new file." msgstr "Speichere sumo-Konfiguration in einer neuen Datei." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:362 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:362 msgid "Reload Sumo Config" msgstr "Sumo-Konfiguration erneut laden" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:362 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:362 msgid "Reload sumo configuration." msgstr "Lade die sumo-Konfiguration erneut." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:370 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:370 msgid "Load TLS Programs..." msgstr "LSA-Programme laden..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:370 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:370 msgid "Load programs for traffic lights in the current net." msgstr "Lade Programme für Lichtsignalanlagen des aktuellen Netzes." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:376 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:376 msgid "Save TLS Programs" msgstr "LSA-Programme speichern" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:376 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:376 msgid "Save all traffic light programs of the current network." msgstr "Speichere alle Programme von Lichtsignalanlagen des aktuellen Netzes." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:380 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:380 msgid "Save TLS Programs As..." msgstr "LSA-Programme speichern unter..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:380 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:380 msgid "Save all traffic light programs of the current network to another file." msgstr "" "Speichere alle Programme der Lichtsignalanlagen des aktuellen Netzes in " "einer neuen Datei." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:386 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:386 msgid "Reload TLS Programs" msgstr "LSA-Programme erneut laden" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:386 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:386 msgid "Reload TLS Programs." msgstr "Lade LSA-Programme erneut." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:394 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:394 msgid "Load Edge Types..." msgstr "Kantentypen laden..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:394 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:394 msgid "Load edge types in the current net." msgstr "Lade Kantentypen in das aktuelle Netz." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:400 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:400 msgid "Save Edge Types" msgstr "Kantentypen speichern" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:400 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:400 msgid "Save edge types of the current net." msgstr "Speichere Kantentypen des aktuellen Netzes." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:404 msgid "Save Edge Types As..." msgstr "Kantentypen speichern unter..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:404 msgid "Save edge types of the current net to another file." msgstr "Speichere Kantentypen des aktuellen Netzes in einer neuen Datei." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:410 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:410 msgid "Reload edge types" msgstr "Kantentypen erneut laden" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:410 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:410 msgid "Reload edge types." msgstr "Lade Kantentypen erneut." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:418 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:418 msgid "Load Additionals..." msgstr "Weitere Daten laden..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:418 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:418 msgid "Load additionals and shapes." msgstr "Lade weitere Daten und Shapes." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:424 msgid "Save Additionals" msgstr "Weitere Daten speichern" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:424 msgid "Save additionals and shapes." msgstr "Speichere weitere Daten und Shapes." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:428 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:428 msgid "Save Additionals As..." msgstr "Weitere Daten speichern unter..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:428 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:428 msgid "Save additional elements to another file." msgstr "Speichere die weiteren Elemente in einer neuen Datei." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:434 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:434 msgid "Reload Additionals" msgstr "Weitere Daten erneut laden" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:434 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:434 msgid "Reload additionals." msgstr "Neu laden weiterer Daten." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:442 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:442 msgid "Load Demand Elements..." msgstr "Nachfrageelemente laden..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:442 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:442 msgid "Load demand elements." msgstr "Lade Nachfrageelemente." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:448 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:448 msgid "Save Demand Elements" msgstr "Nachfrageelemente speichern" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:448 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:448 msgid "Save demand elements." msgstr "Speichere Nachfrageelemente." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:452 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:452 msgid "Save Demand Elements As..." msgstr "Nachfrageelemente speichern unter..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:452 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:452 msgid "Save demand elements to another file." msgstr "Speichere Nachfrageelemente in einer neuen Datei." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:458 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:458 msgid "Reload Demand Elements" msgstr "Nachfrageelemente erneut laden" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:458 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:458 msgid "Reload demand elements." msgstr "Lade die Nachfrageelemente erneut." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:466 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:466 msgid "Load Data Elements..." msgstr "Datenelemente laden..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:466 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:466 msgid "Load data elements." msgstr "Lade Datenelemente." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:472 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:472 msgid "Save Data Elements" msgstr "Datenelemente speichern" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:472 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:472 msgid "Save data elements." msgstr "Speichere Datenelemente." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:476 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:476 msgid "Save Data Elements As..." msgstr "Datenelemente speichern unter..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:476 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:476 msgid "Save data elements to another file." msgstr "Speichere Datenelemente in einer neuen Datei." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:482 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:482 msgid "Reload Data Elements" msgstr "Datenelemente erneut laden" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:482 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:482 msgid "Reload data elements." msgstr "Lade Datenelemente erneut." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:490 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:490 msgid "Load MeanDatas..." msgstr "Lade meanData..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:490 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:490 msgid "Load meanDatas and shapes." msgstr "Lade meanData und Shapes." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:496 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:496 msgid "Save MeanDatas" msgstr "MeanData speichern" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:496 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:496 msgid "Save meanDatas and shapes." msgstr "Speichere meanData und Shapes." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:500 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:500 msgid "Save MeanDatas As..." msgstr "MeanData speichern unter..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:500 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:500 msgid "Save meanData elements to another file." msgstr "Speichere meanData-Elemente in einer neuen Datei." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:506 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:506 msgid "Reload MeanDatas" msgstr "MeanData erneut laden" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:506 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:506 msgid "Reload meanDatas." msgstr "Lade meanData erneut." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:526 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:526 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2197 +msgid "&Network" +msgstr "&Netz" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:526 +msgid "Supermode network." +msgstr "Netzwerksupermodus." + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2200 +msgid "&Demand" +msgstr "&Nachfrage" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:529 +msgid "Sueprmode demand." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2203 +msgid "&Data" +msgstr "&Daten" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:532 +msgid "Supermode data." +msgstr "Datensupermodus." + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:552 msgid "&Inspect" msgstr "&Prüfung" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:526 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:552 msgid "Inspect elements and change their attributes." msgstr "Überprüfe Elemente und ändere ihre Attribute." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:555 msgid "&Delete" msgstr "&Löschen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:555 msgid "Delete elements." msgstr "Lösche Elemente." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:558 msgid "&Select" msgstr "&Auswählen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:558 msgid "Select elements." msgstr "Wähle Elemente aus." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:589 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:670 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:615 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:696 msgid "&Move" msgstr "&Verschieben" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:589 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:670 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:615 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:696 msgid "Move elements." msgstr "Verschiebe Elemente." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:618 msgid "&Edge" msgstr "&Kante" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:618 msgid "Create junction and edges." msgstr "Erstelle Knotenpunkte und Kanten." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:595 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:621 msgid "&Connection" msgstr "&Verbindung" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:595 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:621 msgid "Modes connections between lanes." msgstr "Modus zur Verbindung von Fahrstreifen verschiedener Kanten." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:598 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:624 msgid "Pro&hibition" msgstr "Ver&bot" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:598 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:624 msgid "Modes connection prohibitions." msgstr "Modus zur Anzeige von Vorfahrtregeln." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:601 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:627 msgid "Modes traffic lights over junctions." msgstr "Modus zur Bearbeitung der Lichtsignalanlagen." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:604 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:630 msgid "Create additional elements." msgstr "Erstelle zusätzliche Elemente." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:607 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:633 msgid "C&rossing" msgstr "Fußgängerfurt" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:607 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:633 msgid "Create crossings between edges." msgstr "Erstelle Fußgängerfurten über Kanten." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:610 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:636 msgid "TA&Z" msgstr "Verkehrsumlegungszonen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:610 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:636 msgid "Create Traffic Assignment Zones." msgstr "Erstelle Verkehrsumlegungszonen." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:613 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:639 msgid "Create Points-Of-Interest and polygons." msgstr "Erstelle PoI und Polygone." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:616 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:642 msgid "&Wire" msgstr "&Oberleitung" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:616 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:642 msgid "Create wires." msgstr "Erstelle Oberleitungen." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:673 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:699 msgid "Create Routes." msgstr "Erstelle Routen." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:676 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:702 msgid "Vehicle" msgstr "Fahrzeug" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:676 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:702 msgid "Create vehicles." msgstr "Erstelle Fahrzeuge." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:679 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:705 msgid "Type" msgstr "Typ" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:679 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:705 msgid "Create types (vehicles, person an containers)." msgstr "Erstelle Typen (Fahrzeuge, Personen und Container)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:682 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:708 +msgid "TypeDistribution" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:708 +msgid "Create type distributions." +msgstr "Erstelle Typenverteilungen." + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:711 msgid "Stop" msgstr "An&halten" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:682 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:711 msgid "Create stops." msgstr "Erstelle Haltepunkte." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:685 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:714 msgid "Person" msgstr "Person" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:685 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:714 msgid "Create persons." msgstr "Erstelle Personen." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:688 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:717 msgid "Person plan" msgstr "Personenplan" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:688 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:717 msgid "Create person plans." msgstr "Erstelle Personenpläne." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:691 -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:179 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:720 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:179 msgid "Container" msgstr "Container" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:691 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:720 msgid "Create containers." msgstr "Erstelle Container." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:694 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:723 msgid "Container plan" msgstr "Containerplan" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:694 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:723 msgid "Create container plans." msgstr "Erstelle Containerpläne." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:729 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:758 msgid "&EdgeData" msgstr "&EdgeData" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:729 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:758 msgid "Create edgeData elements." msgstr "Erstelle Kantendatenelemente." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:732 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:761 msgid "Edge&Relation" msgstr "Kanten&Beziehung" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:732 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:761 msgid "Create edgeRelation elements." msgstr "Erstelle Kantenbeziehungselemente." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:735 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:764 msgid "TA&ZRelation" msgstr "Verkehrsumlegungs&zonenbeziehung" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:735 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:764 msgid "Create TAZRelation elements." msgstr "Erstelle Quelle-Ziel-Beziehungen." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:738 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:767 msgid "&MeanData" msgstr "&MeanData" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:738 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:767 msgid "Create MeanData edge/lanes." msgstr "MeanData für Kanten oder Fahrstreifen anlegen." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:800 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:997 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2316 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2627 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:834 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1031 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2316 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2627 msgid "Show grid" msgstr "Raster anzeigen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:805 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1002 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1137 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2324 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2635 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2922 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:839 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1036 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1171 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2324 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2635 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2922 msgid "Hide junction shape" msgstr "Knotenpunktgeometrie ausblenden" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:810 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:844 msgid "Draw vehicles spread in lane or in depart position" msgstr "" "Zeichne Fahrzeuge über den Fahrstreifen verteilt oder an der Abfahrtsposition" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:815 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1152 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2340 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2944 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:849 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1186 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2340 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2944 msgid "Show demand elements" msgstr "Nachfrageelemente anzeigen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:820 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:854 msgid "Clicking should target lanes" msgstr "Per Klick Fahrstreifen auswählen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:825 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2355 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:859 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2355 msgid "Show connections over junctions" msgstr "Verbindungen über Knotenpunkte zeigen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:830 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2363 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:864 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2363 msgid "Hide connections" msgstr "Verbindungen ausblenden" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:835 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:869 msgid "Show sub-additional elements" msgstr "Zeige Kindelemente der weiteren Elemente" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:840 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2379 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:874 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2379 msgid "Show TAZ elements" msgstr "Zeige Verkehrsumlegungszonen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:845 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:879 msgid "Selecting multiple edges automatically select their junctions" msgstr "" "Bei mehreren ausgewählten Kanten automatisch angrenzende Knotenpunkte mit " "auswählen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:850 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:884 msgid "Clicking should apply state changes to all phases of TLS plan" msgstr "" "Per Klick Statusänderungen auf alle Phasen des Lichtsignalprogramms anwenden" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:855 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:889 msgid "Ask for confirmation before merging junction" msgstr "" "Bitte um eine Bestätigung bevor Knotenpunkte zusammengeführt werden sollen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:860 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:894 msgid "Show bubbles over junctions shapes" msgstr "Zeige Blasen über Knotenpunktgeometrie an" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:865 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:899 msgid "Apply mouse movement to elevation" msgstr "Verändere die Höhe mithilfe der Mausbewegung" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:870 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:904 msgid "Create consecutive edges" msgstr "Erstelle aufeinanderfolgende Kanten" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:875 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:909 msgid "Create an edge in the opposite direction" msgstr "Erstelle eine Kante in der entgegengesetzten Richtung" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1007 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2643 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1041 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2643 msgid "Draw vehicles spread/depart position" msgstr "Zeichne Fahrzeuge an der Abfahrtsposition versetzt" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1012 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1147 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2651 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2937 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1046 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1181 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2651 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2937 msgid "Show shapes" msgstr "Zeige Shapes" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1017 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2659 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1051 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2659 msgid "Show all trips" msgstr "Zeige alle Fahrten" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1022 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2667 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1056 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2667 msgid "Show all person plans" msgstr "Zeige alle Personenpläne" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1027 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2675 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1061 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2675 msgid "Lock selected person" msgstr "Sperre ausgewählte Person" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1032 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1066 msgid "Show all container plans" msgstr "Zeige alle Containerpläne" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1037 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2691 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1071 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2691 msgid "Lock selected container" msgstr "Sperre ausgewählten Container" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1042 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2699 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1076 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2699 msgid "Show non-inspected demand elements" msgstr "Zeige nicht geprüfte Bedarfselemente" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1047 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2707 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1081 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2707 msgid "Show number of overlapped routes" msgstr "Zeige Anzahl an überlappenden Routen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1142 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2930 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1176 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2930 msgid "Show additionals" msgstr "Zeige weitere Daten" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1157 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1191 msgid "Draw TAZRel from center" msgstr "Zeichne Quelle-Ziel-Beziehung vom Zentrum" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1162 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1196 msgid "Draw TAZ fill" msgstr "Zeichne Verkehrsumlegungszonen mit Füllung" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1167 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1201 msgid "Only draw TAZRel from" msgstr "Zeichne nur Quelle-Ziel-Beziehungen aus..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1172 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1206 msgid "Only draw TAZRel to" msgstr "Zeichne nur Quelle-Ziel-Beziehungen nach..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1253 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1287 msgid "Undo the last change." msgstr "Mache die letzte Änderung rückgängig." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1256 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1290 msgid "Redo the last change." msgstr "Stelle die letzte Änderung wieder her." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1259 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1293 msgid "Show undo/redo history" msgstr "Zeige den Verlauf für Rückgängig/Wiederherstellen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1259 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1293 msgid "Open undo/redo history dialog." msgstr "Öffne Dialog für den Verlauf Rückgängig/Wiederherstellen." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1280 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1314 msgid "Clear front element" msgstr "Frontelement zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1280 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1314 msgid "Clear current front element" msgstr "Aktuelles Frontelement zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1289 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1323 msgid "Load additionals in sumo-gui" msgstr "Lade weitere Daten in sumo-gui" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1289 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1323 msgid "Load additionals in sumo-gui." msgstr "Lade weitere Daten in sumo-gui." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1293 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1327 msgid "Load demand in sumo-gui" msgstr "Lade Nachfrage in sumo-gui" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1293 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1327 msgid "Load demand in sumo-gui." msgstr "Lade Nachfrage in sumo-gui." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1297 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1331 msgid "Open in sumo-gui" msgstr "Öffne in sumo-gui" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1297 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1331 msgid "Opens the sumo-gui application with the current network." msgstr "Öffnet die sumo-gui Anwendung mit dem aktuellen Netz." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1324 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1358 msgid "&Lanes" msgstr "&Fahrstreifen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1329 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1363 msgid "&Connections" msgstr "&Verbindungen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1334 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1368 msgid "C&rossings" msgstr "Fußgängerfurten" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1339 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1373 msgid "Walkin&gAreas" msgstr "&Walking Areas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1344 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1378 msgid "&Additionals" msgstr "&Weitere Daten" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1349 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1383 msgid "&TAZs" msgstr "&Verkehrsumlegungszonen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1354 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1388 msgid "&Wires" msgstr "&Oberleitungen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1359 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1393 msgid "&Polygons" msgstr "&Polygone" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1364 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1398 msgid "P&OIs" msgstr "P&ol" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1369 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1403 msgid "&Routes" msgstr "&Routen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1384 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1418 msgid "Person&Trips" msgstr "Personen&fahrten" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1389 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1423 msgid "&Walks" msgstr "&Spaziergänge" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1394 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1428 msgid "Ri&des" msgstr "Fahr&ten" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1399 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1433 msgid "&Containers" msgstr "&Container" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1438 msgid "Tra&nsports" msgstr "Tra&nsporte" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1409 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1443 msgid "Trans&hips" msgstr "Umla&den" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1414 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1448 msgid "Stop&s" msgstr "Halt&e" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1419 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1453 msgid "&EdgeDatas" msgstr "&Kantendaten" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1458 msgid "E&dgeRelDatas" msgstr "K&antenverbindungsdaten" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1429 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1463 msgid "Edge&TAZRel" msgstr "Zuordnung Kante zu Verkehrsumlegungszone" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1437 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1471 msgid "Lock selected elements" msgstr "Sperre ausgewählte Elemente" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1437 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1471 msgid "selected elements" msgstr "ausgewählte Elemente" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1444 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1478 msgid "Lock all elements" msgstr "Sperre alle Elemente" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1444 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1478 msgid "all elements" msgstr "alle Elemente" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1448 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1482 msgid "Unlock all elements" msgstr "Entsperre alle Elemente" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1784 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1818 msgid "Compute Junctions" msgstr "Knotenpunkte berechnen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1784 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1818 msgid "Compute junction shape and logic." msgstr "Berechne Knotenpunktform und Logik." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1821 msgid "Compute Junctions with volatile options" msgstr "Knotenpunkte mit volatilen Optionen berechnen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1821 msgid "Compute junction shape and logic using volatile junctions." msgstr "Berechne Knotenpunktgeometrie und Logik aus volatilen Optionen." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1790 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1824 msgid "Clean Junctions" msgstr "Knotenpunkte bereinigen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1790 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1824 msgid "Remove solitary junctions." msgstr "Entferne alleinstehende Knotenpunkte." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1793 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1827 msgid "Join Selected Junctions" msgstr "Ausgewählte Knotenpunkte vereinigen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1793 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1827 msgid "Join selected junctions into a single junction." msgstr "Vereinige ausgewählte Knotenpunkte zu einem einzigen Knotenpunkt." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1796 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1830 msgid "Clean invalid crossings" msgstr "Ungültige Fußgängerfurten entfernen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1796 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1830 msgid "Clear invalid crossings." msgstr "Entferne ungültige Fußgängerfurten." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1802 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1836 msgid "Recompute Network in Data Mode" msgstr "Berechne Netz im Datenmodus neu" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1808 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1842 msgid "Compute demand" msgstr "Nachfrage berechnen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1808 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1842 msgid "Computes demand elements." msgstr "Berechne Nachfrageelemente." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1811 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1845 msgid "Clean routes" msgstr "Bereinige Routen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1811 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1845 msgid "Removes routes without vehicles." msgstr "Entferne Routen ohne Fahrzeuge." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1814 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1848 msgid "Join routes" msgstr "Verbinde Routen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1814 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1848 msgid "Joins routes with the same edges." msgstr "Verbinde Routen mit den selben Kanten." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1817 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1851 msgid "Adjust person plans" msgstr "Personenpläne anpassen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1817 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1851 msgid "Adjust person plans (start/end positions, arrival positions, etc.)" msgstr "Passe Personenpläne (Start/Endpositionen, Ankunftspositionen, etc.) an" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1820 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1854 msgid "Clean invalid route elements" msgstr "Ungültige Routenelemente entfernen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1820 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1854 msgid "Clear elements with an invalid path (routes, Trips, Flows...)." msgstr "" "Entferne Elemente mit einem ungültigen Pfad (Routen, Fahrten, Flüsse...)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1826 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1860 msgid "Configure sumo Options." msgstr "Konfiguriere sumo-Optionen." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1832 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:53 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1866 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:312 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:61 msgid "Options" msgstr "Optionen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1832 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1866 msgid "Configure netedit Options." msgstr "Konfiguriere netedit-Optionen." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1945 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1979 msgid "Open a dialog for locating a Junction." msgstr "Öffnet einen Dialog zum Auffinden von Knotenpunkten." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1948 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1982 msgid "Open a dialog for locating an Edge." msgstr "Öffnet einen Dialog zum Auffinden einer Kante." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1951 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1985 msgid "&WalkingAreas" msgstr "&WalkingAreas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1951 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1985 msgid "Open a dialog for locating a Walking Area." msgstr "Öffnet einen Dialog, um WalkingArea-Elemente zu finden." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1954 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1988 msgid "Open a dialog for locating a Vehicle." msgstr "Öffnet einen Dialog zum Auffinden von Fahrzeugen." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1957 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1991 msgid "Open a dialog for locating a Person." msgstr "Öffnet einen Dialog zum Auffinden von Personen." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1960 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1994 msgid "&Route" msgstr "&Route" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1960 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1994 msgid "Open a dialog for locating a Route." msgstr "Öffnet einen Dialog zum Auffinden von Routen." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1963 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1997 msgid "&Stops" msgstr "&Haltepunkte" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1963 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1997 msgid "Open a dialog for locating a Stop." msgstr "Öffnet einen Dialog zum Auffinden von Haltepunkten." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1966 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2000 msgid "Open a dialog for locating a Traffic Light." msgstr "Öffnet einen Dialog zum Auffinden einer Lichtsignalanlage." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1969 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2003 msgid "Open a dialog for locating an Additional Structure." msgstr "Öffnet einen Dialog zum Auffinden einer weiteren Struktur." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1972 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2006 msgid "Open a dialog for locating a Point of Interest." msgstr "Öffnet einen Dialog zum Auffinden eines PoI." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1975 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2009 msgid "Open a dialog for locating a Polygon." msgstr "Öffne einen Dialog, um ein Polygon zu finden." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2092 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2126 msgid "Toggle this Status Bar on/off." msgstr "Schalte die Statusleiste an/aus." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2099 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2133 msgid "Clear the Message Window." msgstr "Leere das Meldungsfenster." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2124 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2158 msgid "Open feedback channels." msgstr "Gehe zu Rückmeldemöglichkeiten." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2127 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2161 msgid "About netedit." msgstr "Über netedit." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2163 -msgid "&Network" -msgstr "&Netz" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2163 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2197 msgid "Select network mode." msgstr "Wähle Netzmodus." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2166 -msgid "&Demand" -msgstr "&Nachfrage" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2166 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2200 msgid "Select demand mode." msgstr "Wähle Nachfragemodus." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2169 -msgid "&Data" -msgstr "&Daten" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2169 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2203 msgid "Select data mode." msgstr "Wähle Datenmodus." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2201 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2205 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2238 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2242 msgid "Could not load SUMO configuration '" msgstr "Die folgende SUMO-Konfiguration konnte nicht geladen werden: '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2250 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2254 -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:145 -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:149 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2289 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2293 msgid "Could not load netedit configuration '" msgstr "Die folgende netedit-Konfiguration konnte nicht geladen werden: '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2700 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2739 msgid "Save file as" -msgstr "" +msgstr "Datei speichern unter" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2701 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2705 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2721 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2731 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2746 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2799 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2804 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2815 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2820 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2831 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2836 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2847 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2852 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2863 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2868 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2879 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2884 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2894 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2898 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2740 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2744 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2760 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2770 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2778 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2841 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2846 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2857 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2862 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2873 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2878 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2889 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2894 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2905 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2910 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2921 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2926 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2936 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2940 msgid "XML files (*.xml)" msgstr "XML-Dateien (*.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2702 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2706 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2722 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2732 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2747 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2755 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2771 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2775 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2785 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2789 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2800 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2805 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2816 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2821 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2832 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2837 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2848 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2853 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2864 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2869 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2880 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2885 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2895 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2899 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2741 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2761 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2771 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2779 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2788 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2796 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2812 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2817 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2827 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2831 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2842 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2847 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2858 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2863 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2874 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2879 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2890 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2895 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2906 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2911 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2922 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2927 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2937 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2941 msgid "All files (*)" msgstr "Alle Dateien (*)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2704 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2743 msgid "Open file" -msgstr "" +msgstr "Datei öffnen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2714 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2753 msgid "Save Network file as" msgstr "Netzdatei speichern unter" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2715 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2754 msgid "SUMO Network files (*.net.xml)" msgstr "Sumo-Netzdateien (*.net.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2716 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2755 msgid "SUMO Network files zipped (*.net.xml.gz)" msgstr "Sumo-Netzdateien in Archiv (*.net.xml.gz)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2717 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2756 msgid "" "XML files (*.xml)\n" "All files (*)" @@ -2801,176 +2833,180 @@ "XML-Dateien (*.xml)\n" "Alle Dateien (*)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2719 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2758 msgid "Open Network file" msgstr "Netzdatei öffnen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2720 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2759 msgid "SUMO Network files (*.net.xml,*.net.xml.gz)" msgstr "Sumo-Netzdateien (*.net.xml,*.net.xml.gz)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2729 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2768 msgid "Open NetConvert file" msgstr "Netconvert-Datei öffnen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2730 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2769 msgid "Netconvert files (*.netccfg)" msgstr "Netconvert-Dateien (*.netccfg)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2738 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2777 msgid "Save plain XML as" msgstr "Plain XML speichern unter" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2744 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2785 msgid "Save joined Junctions as" msgstr "Vereinigte Knotenpunkte speichern unter" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2786 msgid "Junction files (*.nod.xml)" msgstr "Knotenpunktdateien (*.nod.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2753 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2794 msgid "Save tool log" -msgstr "" +msgstr "Werkzeugprotokoll speichern" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2754 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2795 msgid "Text file (*.txt)" -msgstr "" +msgstr "Textdatei (*.txt)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2761 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2802 msgid "Open OSM file" msgstr "OSM-Datei öffnen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2762 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2803 msgid "OSM net (*.osm.xml,*.osm)" msgstr "OSM-Netz (*.osm.xml,*.osm)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2769 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2810 msgid "Save netedit Config file as" msgstr "Netedit-Konfigurationsdatei speichern unter" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2770 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2774 -msgid "Netedit Config files (*.neteditcfg)" -msgstr "netedit-Konfigurationsdateien (*.neteditcfg)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2811 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2815 +msgid "Netedit Config files (*.netecfg)" +msgstr "netedit-Konfigurationsdateien (*.netecfg)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2773 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2814 msgid "Open netedit Config file" msgstr "Netedit-Konfigurationsdatei öffnen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2783 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2816 +msgid "Netedit Config files (*.neteditcfg)" +msgstr "netedit-Konfigurationsdateien (*.neteditcfg)" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2825 msgid "Save SUMO Config file as" msgstr "Speichere sumo-Konfigurationsdatei unter" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2784 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2788 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2826 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2830 msgid "SUMO Config files (*.sumocfg)" msgstr "sumo-Konfigurationsdateien (*.sumocfg)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2829 msgid "Open SUMO Config file" msgstr "Sumo-Konfigurationsdatei öffnen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2797 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2839 msgid "Save TLS file as" msgstr "LSA-Datei speichern unter" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2798 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2803 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2840 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2845 msgid "TLS files (*.tll.xml)" msgstr "LSA-Dateien (*.tll.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2802 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2844 msgid "Open TLS file" msgstr "LSA-Datei öffnen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2813 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2855 msgid "Save EdgeType file as" msgstr "Kantentypendatei speichern unter" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2814 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2856 msgid "EdgeType files (*.tll.xml)" msgstr "Kantentypendateien (*.tll.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2818 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2860 msgid "Open EdgeType file" msgstr "Kantentypendatei öffnen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2819 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2861 msgid "EdgeType files (*.typ.xml)" msgstr "Kantentypendateien (*.typ.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2829 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2871 msgid "Save Additionals file as" msgstr "Weitere Daten speichern unter" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2830 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2835 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2872 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2877 msgid "Additional files (*.add.xml)" msgstr "Dateien für weitere Elemente (*.add.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2834 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2876 msgid "Open Additionals file" msgstr "Datei mit weiteren Daten öffnen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2845 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2887 msgid "Save Route file as" msgstr "Routendatei speichern unter" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2846 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2851 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2888 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2893 msgid "Route files (*.rou.xml)" msgstr "Routendateien (*.rou.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2850 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2892 msgid "Open Route file" msgstr "Routendatei öffnen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2861 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2903 msgid "Save Data file as" msgstr "Datendatei speichern unter" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2862 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2867 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2904 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2909 msgid "Data files (*.dat.xml)" msgstr "Datendateien (*.dat.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2866 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2908 msgid "Open Data file" msgstr "Datendatei öffnen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2877 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2919 msgid "Save MeanData file as" msgstr "MeanData-Datei speichern unter" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2878 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2883 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2920 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2925 msgid "Meandata files (*.add.xml)" msgstr "MeanData-Dateien (*.add.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2882 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2924 msgid "Open MeanData file" msgstr "MeanData-Datei öffnen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2893 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2935 msgid "Save options file as" -msgstr "" +msgstr "Optionendatei speichern unter" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2897 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2939 msgid "Open options file" -msgstr "" +msgstr "Optionendatei öffnen" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:95 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:100 #, c-format msgid "Loading of sumo config file '%' failed." msgstr "Laden der sumo-Konfigurationsdatei '%' fehlgeschlagen." -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:108 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:113 #, c-format msgid "Loading of netedit config file '%' failed." msgstr "Laden der netedit-Konfigurationsdatei '%' fehlgeschlagen." -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:117 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:122 msgid "" "Invalid input network option. Load with either sumo/netedit/netconvert " "config or with -new option" @@ -2978,251 +3014,250 @@ "Ungültige Option für Netz-Eingabedaten. Lade entweder mit sumo/netedit/" "netconvert config oder mit der Option -new" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:130 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:136 msgid "Invalid Options. Nothing loaded" msgstr "Ungültige Optionen. Nichts wurde geladen" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:144 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:150 msgid "Could not build projection!" msgstr "Projektion konnte nicht erstellt werden!" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:172 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:178 msgid "Performing initial computation ..." msgstr "Führe erste Berechnung durch..." -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:206 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:212 msgid "Failed to build network." msgstr "Netzaufbau fehlgeschlagen." -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:251 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:257 msgid "Start plain GUI with empty net" msgstr "Öffne Benutzeroberfläche mit einem leeren Netz" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:252 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:258 msgid "Open a SUMO network" msgstr "Sumo-Netz öffnen" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:253 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:259 msgid "Open a configuration file (netedit or netconvert config)" msgstr "Konfigurationsdatei (für netedit oder netconvert) öffnen" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:254 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:260 msgid "Open a SUMO config file" msgstr "Sumo-Konfigurationsdatei öffnen" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:279 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:285 msgid "Load sumo config" msgstr "Sumo-Konfiguration laden" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:283 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:289 msgid "Load additional and shapes descriptions from FILE(s)" msgstr "Weitere Daten und Shapes aus FILE(s) laden" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:287 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:293 msgid "Load demand elements descriptions from FILE(s)" msgstr "Nachfrageelemente aus FILE(s) laden" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:291 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:297 msgid "Load data elements descriptions from FILE(s)" msgstr "Datenelemente aus FILE(s) laden" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:295 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:301 msgid "Load meanData descriptions from FILE(s)" msgstr "MeanData-Definitionen aus FILE(s) laden" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:300 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:306 msgid "File in which TLS Programs must be saved" msgstr "Datei für LSA-Programme" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:303 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:309 msgid "File in which edgeTypes must be saved" msgstr "Datei für Kantentypen" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:309 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:315 msgid "Start netedit with a new network" msgstr "Starte netedit mit einem neuen Netz" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:312 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:318 msgid "Write attribute help to file" -msgstr "Schreibe Attributhilfetext nach Datei" +msgstr "Attributhilfetext in Datei schreiben" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:317 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:323 msgid "Prefix for node naming" msgstr "Präfix für Knotenbezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:320 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:326 msgid "Prefix for edge naming" msgstr "Präfix für Kantenbezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:323 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:329 msgid "Enable edge-infix ()" msgstr "Infix für Kantennamen aktivieren ()" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:328 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:334 msgid "Prefix for busStop naming" msgstr "Präfix für Bushaltepunktbezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:331 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:337 msgid "Prefix for trainStop naming" msgstr "Präfix für Zughaltepunktbezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:334 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:340 msgid "Prefix for containerStop naming" msgstr "Präfix für Container-Haltepunktbezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:337 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:343 msgid "Prefix for chargingStation naming" msgstr "Präfix für Ladepunktbezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:340 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:346 msgid "Prefix for parkingArea naming" msgstr "Präfix für Parkplatzbezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:343 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:349 msgid "Prefix for e1Detector naming" msgstr "Präfix für e1Detector-Bezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:346 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:352 msgid "Prefix for e2Detector naming" msgstr "Präfix für e2Detector-Bezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:349 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:355 msgid "Prefix for e3Detector naming" msgstr "Präfix für e3Detector-Bezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:352 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:358 msgid "Prefix for e1InstantDetector naming" msgstr "Präfix für e1InstantDetector-Bezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:355 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:361 msgid "Prefix for rerouter naming" msgstr "Präfix für Rerouter-Bezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:358 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:364 msgid "Prefix for calibrator naming" msgstr "Präfix für Calibrator-Bezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:361 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:367 msgid "Prefix for routeProbe naming" msgstr "Präfix für routeProbe-Bezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:364 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:370 msgid "Prefix for variable speed sign naming" msgstr "Präfix für Bezeichner der dynamischen Geschwindigkeitsanzeigen" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:367 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:373 msgid "prefix for traction substation naming" msgstr "Präfix für Unterwerkbezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:370 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:376 msgid "Prefix for overhead wire naming" msgstr "Präfix für Oberleitungsbezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:373 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:379 msgid "Prefix for polygon naming" msgstr "Präfix für Polygonbezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:376 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:382 msgid "Prefix for poi naming" msgstr "Präfix für PoI-Bezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:381 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:387 msgid "Prefix for route naming" msgstr "Präfix für Routenbezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:384 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:390 msgid "Prefix for vType naming" msgstr "Präfix für vType-Bezeichnung (Fahrzeugtyp)" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:387 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:393 msgid "Prefix for vehicle naming" msgstr "Präfix für Fahrzeugbezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:390 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:396 msgid "Prefix for trip naming" msgstr "Präfix für Fahrtenbezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:393 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:399 msgid "Prefix for flow naming" msgstr "Präfix für Flussbezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:396 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:402 msgid "Prefix for person naming" msgstr "Präfix für Personenbezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:399 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:405 msgid "Prefix for personFlow naming" msgstr "Präfix für personFlow-Bezeichnung (Personenfluss)" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:402 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:408 msgid "Prefix for container naming" msgstr "Präfix für Containerbezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:405 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:411 msgid "Prefix for containerFlow naming" msgstr "Präfix für containerFlow-Bezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:412 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:418 msgid "Prefix for meanDataEdge naming" msgstr "Präfix für meanData-Bezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:415 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:421 msgid "Prefix for meanDataLane naming" msgstr "Präfix für meanDataLane-Bezeichnung" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:422 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:428 msgid "Disable icons of special lanes" msgstr "Symbole von besonderen Fahrstreifen deaktivieren" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:425 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:431 msgid "Disable textures" msgstr "Texturen deaktivieren" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:428 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:434 msgid "Load visualisation settings from FILE" msgstr "Darstellungseinstellung von FILE laden" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:433 -#, fuzzy +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:439 msgid "Load current viewport from registry" -msgstr "Aktuellen Ansichtsbereich vom Eintrag laden" +msgstr "Aktuellen Ansichtsbereich aus Registry laden" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:436 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:442 msgid "Create initial window with the given x,y size" msgstr "Anfangsfenster mit der angegebenen x,y-Größe erstellen" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:439 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:445 msgid "Create initial window at the given x,y position" msgstr "Anfangsfenster mit der angegebenen x,y-Position erstellen" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:444 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:450 msgid "Enable overlay for screen recognition" msgstr "Überlagerung für die Bildschirmerkennung aktivieren" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:447 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:453 msgid "Enable output messages during GUI-Testing" msgstr "Ausgabemeldungen während der GUI-Testung aktivieren" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:450 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:456 msgid "Enable output messages during GUI-Testing specific of gl functions" msgstr "Aktiviere Ausgabemeldungen während GUI-Test spezifischer GL-Funktionen" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:453 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:459 msgid "Save gui settings in the given settings-output file" msgstr "Darstellungseinstellungen in dieser Ausgabedatei speichern" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:460 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:466 msgid "Defines the begin time in seconds; The simulation starts at this time" msgstr "" "Definiert die Startzeit in Sekunden; Die Simulation beginnt zu diesem " "Zeitpunkt" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:463 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:469 msgid "Defines the end time in seconds; The simulation ends at this time" msgstr "" "Definiert die Endzeit in Sekunden; Die Simulation endet zu diesem Zeitpunkt" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:466 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:472 msgid "" "Length of the default interval length between action points for the car-" "following and lane-change models (in seconds). If not specified, the " @@ -3236,7 +3271,7 @@ "Fahrzeugtyp spezifische Einstellungen setzen die Standardeinstellung außer " "Kraft. Muss ein Vielfaches der Simulationsschrittlänge sein." -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:469 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:475 msgid "" "Select default speed deviation. A negative value implies vClass specific " "defaults (0.1 for the default passenger class" @@ -3245,789 +3280,787 @@ "Fahrzeugklassen-spezifische Standardwerte (0,1 für die Standard-" "Passagierklasse" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:508 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:514 msgid "Failed to reset options." msgstr "Rücksetzung der Optionen fehlgeschlagen." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:370 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:370 msgid "delete junction" msgstr "Knotenpunkt löschen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:412 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:412 msgid "delete edge" msgstr "Kante löschen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:491 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:491 msgid "replace edge" msgstr "Kante ersetzen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:553 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:553 msgid "delete lane" msgstr "Fahrstreifen löschen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:588 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:588 msgid "delete connection" msgstr "Verbindung löschen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:603 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:603 msgid "delete crossing" msgstr "Fußgängerfurt löschen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:621 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:650 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:672 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:685 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:698 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:728 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:621 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:650 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:672 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:685 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:698 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:728 msgid "delete " msgstr "löschen " -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:644 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:644 msgid "Trying to delete a default Vehicle Type" msgstr "Versuche einen Standardfahrzeugtypen zu löschen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:737 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2685 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:737 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2690 msgid "duplicate lane" msgstr "Fahrstreifen duplizieren" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:856 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:856 msgid "split edge" msgstr "Kante auftrennen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:973 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:973 msgid "split edges" msgstr "Kanten auftrennen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:995 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:995 msgid "reverse edge" msgstr "Kante umdrehen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1008 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1012 msgid "add reversed edge" msgstr "Kante in Gegenrichtung hinzufügen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1043 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1046 msgid "merge junctions" msgstr "Knotenpunkte vereinigen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1079 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1082 msgid "select roundabout" msgstr "Kreisverkehr auswählen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1095 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1098 msgid "create roundabout" msgstr "Kreisverkehr erstellen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1273 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1276 msgid "Forced computing junctions with volatile options ..." msgstr "Berechnung der Knotenpunkte mit volatilen Optionen erzwingen..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1275 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1278 msgid "Forced computing junctions ..." msgstr "Erzwinge Berechnung von Knotenpunkten..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1282 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1285 msgid "Computing junctions with volatile options ..." msgstr "Berechne Knotenpunkte mit instabilen Optionen..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1284 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1287 msgid "Computing junctions ..." msgstr "Berechne Knotenpunkte ..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1347 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1350 msgid "Finished computing junctions." msgstr "Berechnung von Knotenpunkten abgeschlossen." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1353 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1356 msgid "Computing demand elements ..." msgstr "Berechne Nachfrageelemente..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1367 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1370 msgid "Finished computing demand elements." msgstr "Berechnung der Nachfragelemente abgeschlossen." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1373 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1376 msgid "Computing data elements ..." msgstr "Berechne Datenelemente ..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1380 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1383 msgid "Finished computing data elements." msgstr "Berechnung der Datenelemente abgeschlossen." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1459 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1462 msgid "Position of joined junction" msgstr "Position des vereinigten Knotenpunkts" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1460 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1463 msgid "" "There is another unselected junction in the same position of joined junction." msgstr "" "An der Position des vereinigten Knotenpunkts gibt es einen weiteren, nicht " "ausgewählten Knotenpunkt." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1461 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1464 msgid "It will be joined with the other selected junctions. Continue?" msgstr "" "Der Knotenpunkt wird mit den anderen ausgewählten vereinigt. Fortfahren?" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1582 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1592 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1585 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1595 msgid "Clear crossings" msgstr "Fußgängerfurten entfernen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1583 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1586 msgid "There are no invalid crossings to remove." msgstr "Es gibt keine ungültigen Fußgängerfurten zu entfernen." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1593 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1596 msgid "Crossings will be cleared. Continue?" msgstr "Fußgängerfurten werden entfernt. Fortfahren?" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1604 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1607 msgid "clear crossings" msgstr "Fußgängerfurten entfernen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1617 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1620 msgid "clear junctions" msgstr "Knotenpunkte entfernen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1646 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1649 msgid "clear unused routes" msgstr "Ungenutzte Routen entfernen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1701 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1704 msgid "merge routes" msgstr "Routen verbinden" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1755 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1758 msgid "adjust person plans" msgstr "Personenpläne anpassen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1795 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1798 msgid "remove invalid demand elements" msgstr "Ungültige Nachfrageelemente entfernen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1810 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1813 msgid "replace junction by geometry" msgstr "Knotenpunkt durch Geometriestützpunkt ersetzen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1855 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1858 msgid "Junction isn't removable" msgstr "Knotenpunt kann nicht entfernt werden" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1867 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1870 msgid "split junction" msgstr "Knotenpunkt auftrennen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1907 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1910 msgid "Could not rename split node to '%'" msgstr "Aufgetrennter Knoten konnte nicht zu '%' unbenannt werden" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1946 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1949 msgid "clear junction connections" msgstr "Verbindungen an Knotenpunkten entfernen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1958 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1961 msgid "reset junction connections" msgstr "Verbindungen an Knotenpunkten zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1969 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1972 msgid "clear additional elements" msgstr "Weitere Elemente entfernen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1982 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1985 msgid "clear demand elements" msgstr "Nachfrageelemente entfernen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1995 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1998 msgid "clear data elements" msgstr "Datenelemente entfernen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2006 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2009 msgid "clear meanData elements" msgstr "MeanData-Elemente entfernen" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2326 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2403 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2331 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2413 msgid "Duplicated ID" msgstr "ID schon vergeben" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2689 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2689 msgid "Network size exceeds 1 Lightyear. Please reconsider your inputs." msgstr "Netz größer als ein Lichtjahr - bitte Eingabedaten überdenken." -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:1461 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:1468 msgid "Default vType doesn't exist" msgstr "Standard-Fahrzeugtyp (vType) existiert nicht" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2478 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2486 msgid "Invalid meanData pointer" msgstr "Ungültiger meanData Pointer" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2739 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2747 msgid "Redo replace in TLS" msgstr "Wiederherstellen: LSA ersetzen" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2753 msgid "Undo replace in TLS" msgstr "Rückgängig: LSA ersetzen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:332 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:334 msgid "Locate a junction within the network. (Shift+J)" msgstr "Finde einen Knotenpunkt im Netz. (Shift+J)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:336 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:338 msgid "Locate an edge within the network. (Shift+E)" msgstr "Finde eine Kante im Netz. (Shift+E)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:340 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:342 msgid "Locate WalkingAreas" msgstr "WalkingAreas finden" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:340 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:342 msgid "Locate a walkingArea within the network. (Shift+W)" msgstr "Finde eine WalkingArea im Netz. (Shift+W)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:344 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:346 msgid "Locate a vehicle within the network. (Shift+V)" msgstr "Finde ein Fahrzeug im Netz. (Shift+V)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:348 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:350 msgid "Locate a person within the network. (Shift+P)" msgstr "Finde eine Person im Netz. (Shift+P)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:354 msgid "Locate Route" msgstr "Routen finden" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:354 msgid "Locate a route within the network. (Shift+R)" msgstr "Finde eine Route im Netz. (Shift+R)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:358 msgid "Locate Stops" msgstr "Halte finden" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:358 msgid "Locate a stop within the network. (Shift+S)" msgstr "Finde einen Halt im Netz. (Shift+S)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:367 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:369 msgid "Locate a tls within the network. (Shift+T)" msgstr "Finde eine LSA im Netz. (Shift+T)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:371 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:373 msgid "Locate an additional structure within the network. (Shift+A)" msgstr "Finde ein weiteres Element im Netz. (Shift+A)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:375 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:377 msgid "Locate a PoI within the network. (Shift+O)" msgstr "Finde ein PoI im Netz. (Shift+O)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:379 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:381 msgid "Locate a Polygon within the network. (Shift+L)" msgstr "Finde ein Polygon im Netz. (Shift+L)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:453 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:455 msgid "Remove from Selected" msgstr "Aus Auswahl entfernen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:455 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:457 msgid "Add to Selected" msgstr "Zur Auswahl hinzufügen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:612 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:614 msgid "GUI-Settings cannot be saved in " msgstr "" "Darstellungseinstellungen konnten nicht in folgender Datei gespeichert " "werden: " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:805 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:807 msgid "Confirm Junction Merger" msgstr "Bestätige die Knotenpunktzusammenlegung" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:806 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:808 msgid "Do you wish to merge junctions '" msgstr "Sollen die folgenden Knotenpunkte zusammengelegt werden: '" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:807 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:205 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:809 msgid "' and '" msgstr "' und '" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:808 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:810 msgid "' will be eliminated and its roads added to '" msgstr "' wird eliminiert und seine Straßen hinzugefügt" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:836 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:838 msgid " requires switch to network mode. Continue?" msgstr " erfordert den Wechsel in den Netzmodus. Fortfahren?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:838 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:840 msgid " requires switch to demand mode. Continue?" msgstr " erfordert den Wechsel in den Nachfragemodus. Fortfahren?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:840 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:842 msgid " requires switch to data mode. Continue?" msgstr " erfordert den Wechsel in den Datenmodus. Fortfahren?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:845 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:847 msgid "Confirm switch mode" msgstr "Moduswechsel bestätigen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1423 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1425 msgid "Cannot delete in this mode" msgstr "In diesem Modus kann nichts gelöscht werden" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1426 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1428 msgid "delete network inspected elements" msgstr "Elemente aus Netz löschen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1434 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1436 msgid "delete network selection" msgstr "Netzauswahl löschen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1442 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1444 msgid "delete demand inspected elements" msgstr "Nachfrageelemente löschen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1450 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1452 msgid "delete demand selection" msgstr "Nachfrageauswahl löschen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1458 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1460 msgid "delete data inspected elements" msgstr "Datenelemente löschen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1466 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1468 msgid "delete data selection" msgstr "Datenauswahl löschen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2101 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2106 msgid "Reverse selected edges" msgstr "Ausgewählte Kanten umdrehen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2108 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2113 msgid "Reverse edge" msgstr "Kante umdrehen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2122 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2127 msgid "Add Reverse edge for selected edges" msgstr "Gegenrichtungskante für die ausgewählten Kanten erstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2129 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2134 msgid "Add reverse edge" msgstr "Gegenrichtungskante hinzufügen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2143 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2148 msgid "Add Reverse disconnected edge for selected edges" msgstr "" "Gegenrichtungskante für die ausgewählten Kanten erstellen (nicht verbinden)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2150 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2155 msgid "Add reverse disconnected edge" msgstr "Gegenrichtungskante hinzufügen (nicht verbinden)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2179 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2184 msgid "reset geometry points" msgstr "Geometriestützpunkte zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2200 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2205 msgid "straighten selected edges" msgstr "Ausgewählte Kanten begradigen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2208 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2213 msgid "straighten edge" msgstr "Kante begradigen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2222 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2227 msgid "smooth selected edges" -msgstr "" +msgstr "ausgewählte Kanten glätten" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2229 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2234 msgid "smooth edge" -msgstr "" +msgstr "Kante glätten" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2243 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2248 msgid "straighten elevation of selected edges" msgstr "Höhe der ausgewählten Kanten begradigen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2250 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2255 msgid "straighten edge elevation" msgstr "Kantenhöhe begradigen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2264 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2269 msgid "smooth elevation of selected edges" msgstr "Höhe der ausgewählten Kanten glätten" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2271 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2276 msgid "smooth edge elevation" msgstr "Kantenhöhe glätten" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2285 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2290 msgid "reset edge lengths" msgstr "Kantenlängen zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2314 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2319 msgid "copy edge template" msgstr "Kantenvorlage kopieren" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2335 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2340 msgid "simplify shapes" msgstr "Shapes vereinfachen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2377 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2382 msgid "close polygon shapes" msgstr "Polygon-Shapes schließen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2408 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2413 msgid "open polygon shapes" msgstr "Polygon-Shapes öffnen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2457 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2462 msgid "select within polygon boundary" msgstr "Innerhalb des Polygonumrisses auswählen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2502 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2507 #, c-format msgid "No lanes around % to attach it" msgstr "Keine Fahrstreifen in der Nähe, um % anzubinden" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2525 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2530 msgid "attach POI into lane" msgstr "PoI an Fahrstreifen anbinden" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2538 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2543 msgid "release POI from lane" msgstr "PoI von Fahrstreifen lösen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2572 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2577 msgid "change edge Geometry Point position" msgstr "Geometriestützpunkt einer Kante verschieben" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2604 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2609 msgid "change polygon Geometry Point position" msgstr "Punkt eines Polygons verschieben" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2624 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2629 msgid "change TAZ Geometry Point position" msgstr "Geometriepunkt einer Verkehrsumlegungszone verschieben" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2648 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2653 msgid "reset end points of selected edges" msgstr "Endpunkte der ausgewählten Kanten zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2659 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2664 msgid "reset end points of edge '" msgstr "Endpunkte der folgenden Kante zurücksetzen: '" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2678 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2683 msgid "duplicate selected lanes" msgstr "Ausgewählte Fahrstreifen duplizieren" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2715 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2720 msgid "reset custom lane shapes" msgstr "benutzerdefinierte Fahrstreifen-Shapes zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2722 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2727 msgid "reset custom lane shape" msgstr "benutzerdefinierten Fahrstreifen-Shape zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2738 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2743 msgid "reset opposite lanes" msgstr "Verknüpfung mit Gegenrichtungsfahrstreifen lösen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2750 msgid "reset opposite lane" msgstr "Verknüpfung mit Gegenrichtungsfahrstreifen lösen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2799 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2804 msgid "select lane reachability" msgstr "Erreichbare Fahrstreifen auswählen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2841 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2846 msgid "Multiple lane in the same edge selected" msgstr "Mehrere Fahrstreifen der gleichen Kante ausgewählt" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2842 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2847 msgid "There are selected lanes that belong to the same edge." msgstr "Es gehören mehrere ausgewählte Fahrstreifen zu der gleichen Kante." -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2843 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2848 msgid "Only one lane per edge will be restricted for " msgstr "" "Nur ein Fahrstreifen pro Kante wird exklusiv der folgenden Fahrzeugklasse " "gewidmet: " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2858 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2866 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2863 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2871 msgid "Set vclass for " msgstr "Fahrzeugklasse setzten für " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2859 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2867 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2940 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2948 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2864 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2872 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2945 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2953 msgid " to selected lanes" msgstr " zu ausgewählten Fahrstreifen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2860 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2941 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2865 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2946 msgid "" "All lanes own already another lane in the same edge with a restriction for " msgstr "" "Alle Fahrstreifen besitzen bereits einen anderen Fahrstreifen in der " "gleichen Kante mit einer Einschränkung für " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2868 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2873 msgid " lanes will be restricted for " msgstr " Fahrstreifen werden eingeschränkt für " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2869 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2874 msgid ". Continue?" msgstr "Fortfahren?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2896 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2901 msgid "restrict lane to " msgstr "Fahrstreifen einschränken zu " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2939 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2947 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2944 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2952 msgid "Add vclass for " msgstr "Fahrzeugklasse hinzufügen für " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2949 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3044 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2954 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3049 msgid " restrictions for " msgstr " Einschränkungen für " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2950 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2955 msgid " will be added. Continue?" msgstr " wird hinzugefügt werden. Fortfahren?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2967 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2972 msgid "add restrictions for " msgstr "Einschränkungen hinzufügen für " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2977 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2982 msgid "add vclass for " msgstr "Fahrzeugklasse hinzufügen für " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3034 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3042 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3072 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3039 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3047 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3077 msgid "Remove vclass for " msgstr "Fahrzeugklasse entfernen für " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3035 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3040 msgid " from selected lanes" msgstr " von ausgewählten Fahrstreifen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3036 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3041 msgid "Selected lanes and edges haven't a restriction for " msgstr "Ausgewählte Fahrstreifen und Kanten haben keine Einschränkung für " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3043 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3048 msgid " in selected lanes" msgstr " in ausgewählten Fahrstreifen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3045 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3050 msgid " will be removed. Continue?" msgstr " wird entfernt. Fortfahren?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3214 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3219 msgid "reset edge endpoints" msgstr "Kantenendpositionen zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3259 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3526 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3561 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3584 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3264 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3531 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3566 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3589 msgid "Grid is still active, press ctrl+g to deactivate" msgstr "Raster ist noch aktiviert, drücke ctrl+g zum Deaktivieren" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3278 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3283 msgid "reset custom junction shapes" msgstr "Benutzerdefinierte Knotenpunkt-Shapes zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3285 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3290 msgid "reset custom junction shape" msgstr "Benutzerdefinierten Knotenpunkt-Shape zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3396 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3401 msgid "clear connections of selected junctions" msgstr "Verbindungen von ausgewählten Knotenpunkten entfernen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3428 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3433 msgid "reset connections of selected junctions" msgstr "Verbindungen von ausgewählten Knotenpunkten zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3452 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3479 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3457 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3484 msgid "add TLS in multiple junctions" msgstr "LSA zu mehreren Knotenpunkten hinzufügen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:5564 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:5579 msgid "Shift + click to create two additionals in the same position" msgstr "" "Shift + click zum erstellen zwei weiterer Daten an der gleichen Position" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:5813 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:5828 msgid "Control + click to create two stop in the same position" msgstr "Control + click zum erstellen von zwei Halten an der gleichen Position" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1467 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1488 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1467 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1488 msgid "moving selection" msgstr "Auswahl verschieben" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1668 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1668 msgid "Selection width:" msgstr "Auswahlbreite:" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1669 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1669 msgid " height:" msgstr " Höhe:" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1670 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1670 msgid " diagonal:" msgstr " Diagonale:" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1834 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1834 msgid "selection using rectangle" msgstr "Auswahl mit Rechteck" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1868 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1868 #, c-format msgid "Invalid windows size-format: %for option 'window-size'" msgstr "Ungültiges Fenstergrößenformat % für die Option 'window-size'" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1946 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1946 msgid "Save NETEDITConfig" msgstr "Netedit-Konfiguration speichern" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1946 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1946 msgid "Save NETEDITConfig. (Ctrl+Shift+E)" msgstr "Netedit-Konfiguration speichern. (Ctrl+Shift+E)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1952 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1952 msgid "Save SumoConfig" msgstr "Speichere sumo-Konfiguration" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1952 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1952 msgid "Save SumoConfig. (Ctrl+Shift+S)" msgstr "Speichere sumo-Konfiguration. (Ctrl+Shift+S)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1958 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1958 msgid "Save network" msgstr "Netz speichern" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1958 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1958 msgid "Save network. (Ctrl+S)" msgstr "Netz speichern. (Ctrl+S)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1966 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1966 msgid "Save individual files" msgstr "Individuelle Dateien speichern" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1966 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1966 msgid "Save individual files." msgstr "Individuelle Dateien speichern." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1972 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1972 msgid "Save additional elements" msgstr "Weitere Daten-Elemente speichern" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1972 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1972 msgid "Save additional elements. (Ctrl+Shift+A)" msgstr "Weitere Daten-Elemente speichern. (Ctrl+Shift+A)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1978 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1978 msgid "Save demand elements" msgstr "Nachfrageelemente speichern" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1978 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1978 msgid "Save demand elements. (Ctrl+Shift+D)" msgstr "Nachfrageelemente speichern. (Ctrl+Shift+D)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1984 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1984 msgid "Save data elements" msgstr "Datenelemente speichern" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1984 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1984 msgid "Save data elements. (Ctrl+Shift+B)" msgstr "Datenelemente speichern. (Ctrl+Shift+B)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1990 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1990 msgid "Save mean data elements" msgstr "MeanData-Elemente speichern" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1990 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1990 msgid "Save mean data elements. (Ctrl+Shift+M)" msgstr "MeanData-Elemente speichern. (Ctrl+Shift+M)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 msgid "Network" msgstr "Netz" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 msgid "Edit network elements" msgstr "Netzelemente bearbeiten" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 msgid "Set mode for edit network elements. (F2)" msgstr "Modus zum Bearbeiten von Netzelementen. (F2)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2067 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2069 msgid "Demand" msgstr "Nachfrage" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 msgid "Edit traffic demand elements" msgstr "Verkehrsnachfrageelemente bearbeiten" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 msgid "Set mode for edit traffic demand. (F3)" msgstr "Modus zum Bearbeiten der Verkehrsnachfrage. (F3)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2211 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2213 msgid "Data" msgstr "Daten" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 msgid "Edit data elements" msgstr "Datenelemente bearbeiten" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 msgid "Set mode for edit data demand. (F4)" msgstr "Modus zum Bearbeiten der Daten. (F4)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2065 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2065 msgid "Mode already selected" msgstr "Modus schon ausgewählt" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2150 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2150 msgid "Network mode already selected" msgstr "Netzmodus schon ausgewählt" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2155 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2155 msgid "Save modifications in TLS before change mode" msgstr "Änderungen der LSA vor dem Moduswechsel speichern" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2200 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2200 msgid "Demand mode already selected" msgstr "Nachfragemodus schon ausgewählt" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2235 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2235 msgid "Data mode already selected" msgstr "Datenmodus schon ausgewählt" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2316 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2627 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2316 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2627 msgid "" "Show grid and restrict movement to the grid - define grid size in " "visualization options. (Ctrl+G)" @@ -4035,65 +4068,65 @@ "Raster anzeigen und Fangen aktivieren (Rastergröße in den " "Darstellungseinstellungen zu definieren). (Ctrl+G)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2324 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2635 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2922 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2324 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2635 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2922 msgid "Toggle hiding junction shape. (Ctrl+J)" msgstr "Knotenpunkt-Shape ein-/ausblenden. (Ctrl+J)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2332 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2332 msgid "Draw vehicles spread in lane or depart position" msgstr "" "Zeichne Fahrzeuge über den Fahrstreifen verteilt oder an der Abfahrtsposition" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2332 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2643 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2332 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2643 msgid "Draw vehicles spread in lane or in depart position." msgstr "" "Zeichne Fahrzeuge über den Fahrstreifen verteilt oder an der " "Abfahrtsposition." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2340 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2944 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2340 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2944 msgid "Toggle show demand elements." msgstr "Nachfrageelemente ein-/ausblenden." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2348 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2348 msgid "Clicks target lanes" msgstr "Bei Klick Fahrstreifen auswählen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2348 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2348 msgid "" "Toggle whether clicking should inspect/select/delete lanes instead of edges." msgstr "" "Wechsle zwischen Fahrstreifen und Kanten als mit einem Klick geprüfte/" "ausgewählte/gelöschte Elemente." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2355 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2355 msgid "Toggle show connections over junctions." msgstr "Verbindungen über Knotenpunkten ein-/ausblenden." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2363 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2363 msgid "Toggle hide connections." msgstr "Verbindungen ein-/ausblenden." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2371 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2371 msgid "Show additional sub-elements" msgstr "Weitere Unterelemente anzeigen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2371 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2371 msgid "Toggle show additional sub-elements." msgstr "Weitere Unterelemente ein-/ausblenden." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2379 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2379 msgid "Toggle show TAZ elements." msgstr "Verkehrsumlegungszonen ein-/ausblenden." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2387 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2387 msgid "Automatic select junctions" msgstr "Knotenpunkte automatisch auswählen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2387 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2387 msgid "" "Toggle whether selecting multiple edges should automatically select their " "junctions." @@ -4101,11 +4134,11 @@ "Beim Auswählen mehrerer Kanten automatisch deren Knotenpunkte mit auswählen " "(ein-/ausschalten)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2395 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2395 msgid "Apply state to all phases" msgstr "Stand auf alle Phasen anwenden" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2395 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2395 msgid "" "Toggle whether clicking should apply state changes to all phases of the " "current TLS plan." @@ -4113,559 +4146,560 @@ "Durch Klicken Zustandsänderungen auf alle Phasen des LSA-Planes anwenden " "ein-/ausschalten." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2403 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2403 msgid "Automatic merging junction" msgstr "Knotenpunkte automatisch zusammenführen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2403 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2403 msgid "Toggle ask for confirmation before merging junction." msgstr "" "Um Bestätigung bitten vor dem Zusammenfügen eines Knotenpunkts ein-/" "ausschalten." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2410 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2410 msgid "Show bubbles" msgstr "Blasen zeigen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2410 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2410 msgid "Toggle show bubbles over junctions shapes." msgstr "Blasen über Knotenpunktgeometrien ein-/ ausblenden." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2418 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2418 msgid "Move elevation" msgstr "Höhe verschieben" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2418 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2418 msgid "Apply mouse movement to elevation instead of x,y position." msgstr "Wende die Mausbewegung auf die Höhe statt auf die x,y-Position an." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2426 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2426 msgid "Edge chain mode" msgstr "Kanten verketten" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2426 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2426 msgid "Create consecutive edges with a single click (hit ESC to cancel chain)." msgstr "" "Erstellen von aufeinanderfolgenden Kanten mit einem Klick (ESC zum Abbrechen " "der Kette drücken)." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2434 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2434 msgid "Edge opposite direction" msgstr "Kantengegenrichtung" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2434 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2434 msgid "Automatically create an edge in the opposite direction." msgstr "Kante in der entgegengesetzten Richtung automatisch erstellen." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2651 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2937 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2651 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2937 msgid "Toggle show shapes (Polygons and POIs)." msgstr "Shapes ein-/ausblenden (Polygone und Pole)." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2659 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2659 msgid "Toggle show all trips (requires updated demand - F5)." msgstr "Alle Fahrten ein-/ausblenden (erfordert aktualisierte Nachfrage - F5)." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2667 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2667 msgid "Toggle show all person plans." msgstr "Alle Personenpläne ein-/ausblenden." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2675 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2675 msgid "Toggle lock selected person." msgstr "Ausgewählte Person blockieren ein-/ausschalten" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2683 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2683 msgid "Show all containers plans" msgstr "Alle Containerpläne anzeigen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2683 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2683 msgid "Toggle show all container plans." msgstr "Alle Containerpläne ein-/ausblenden." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2691 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2691 msgid "Toggle lock selected container." msgstr "Ausgewählten Container blockieren ein-/ausschalten" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2699 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2699 msgid "Toggle show non-inspected demand elements." msgstr "Nicht inspizierte Nachfrageelemente ein-/ausblenden." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2707 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2707 msgid "Toggle show number of overlapped routes." msgstr "Nummer von überlappenden Routen ein-/ausblenden." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2930 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2930 msgid "Toggle show additionals." msgstr "Weitere Daten ein-/ausblenden." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2951 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2951 msgid "Draw TAZREL drawing mode" msgstr "Zeichne Quelle-Ziel-Beziehungen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2951 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2951 msgid "Toggle draw TAZREL drawing mode." msgstr "Quelle-Ziel-Beziehung ein-/ausblenden." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2958 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2958 msgid "Toggle draw TAZ fill" msgstr "Verkehrsumlegungszonenfüllung ein-/ausblenden" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2965 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2965 msgid "Toggle draw TAZRel only from" msgstr "Nur ausgehende Quelle-Ziel-Beziehung zeichnen ein-/ausschalten" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2972 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2972 msgid "Toggle draw TAZRel only to" msgstr "Nur eingehende Quelle-Ziel-Beziehung zeichnen ein-/ausschalten" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3471 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3471 msgid "Set inspect mode" msgstr "Prüfmodus einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3471 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3471 msgid "Mode for inspect elements and change their attributes. (I)" msgstr "" "Modus zum Prüfen und Bearbeiten von Elementen und deren Attributen. (I)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3477 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3477 msgid "Set delete mode" msgstr "Löschmodus einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3477 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3477 msgid "Mode for delete elements. (D)" msgstr "Modus zum Löschen von Elementen. (D)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3546 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3690 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3546 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3681 msgid "Set move mode" msgstr "Verschiebemodus einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3546 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3690 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3546 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3681 msgid "Mode for move elements. (M)" msgstr "Modus zum Verschieben von Elementen. (M)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3552 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3552 msgid "Set create edge mode" msgstr "Kantenerstellungs-Modus einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3552 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3552 msgid "Mode for creating junction and edges. (E)" msgstr "Modus zum Erstellen von Knotenpunkten und Kanten. (E)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3558 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3558 msgid "Set connection mode" msgstr "Verbindungsmodus einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3558 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3558 msgid "Mode for edit connections between lanes. (C)" msgstr "Modus zum Hinzufügen von Verbindungen zwischen Fahrstreifen. (C)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3564 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3564 msgid "Set prohibition mode" msgstr "Vorfahrtsmodus einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3564 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3564 msgid "Mode for editing connection prohibitions. (H)" msgstr "Modus zum Ansehen von Vorfahrtregeln. (H)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3570 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3570 msgid "Set traffic light mode" msgstr "LSA-Modus einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3570 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3570 msgid "Mode for edit traffic lights over junctions. (T)" msgstr "Modus zum Hinzufügen von LSA an Knotenpunkten. (T)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3576 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3576 msgid "Set additional mode" msgstr "Modus für weitere Daten einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3576 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3576 msgid "Mode for adding additional elements. (A)" msgstr "Modus zum Hinzufügen weiterer Elemente. (A)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3582 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3582 msgid "Set crossing mode" msgstr "Fußgängerfurt-Modus einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3582 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3582 msgid "Mode for creating crossings between edges. (R)" msgstr "Modus zum Erstellen von Fußgängerfurten zwischen Kanten. (R)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3588 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3588 msgid "Set TAZ mode" msgstr "Verkehrsumlegungszonen-Modus einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3588 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3588 msgid "Mode for creating Traffic Assignment Zones. (Z)" msgstr "Modus zum Erstellen von Verkehrsumlegungszonen. (Z)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3594 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3594 msgid "Set polygon mode" msgstr "Polygon-Modus einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3594 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3594 msgid "Mode for creating polygons and POIs. (P)" msgstr "Modus zum Erstellen von Polygonen und Pol. (P)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3600 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3600 msgid "Set wire mode" msgstr "Oberleitungsmodus einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3600 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3600 msgid "Mode for editing wires. (W)" msgstr "Modus zum Bearbeiten von Oberleitungen. (W)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3696 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3687 msgid "Create route mode" msgstr "Routenmodus einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3696 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3687 msgid "Mode for creating routes. (R)" msgstr "Modus zum Erstellen von Routen. (R)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3702 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3693 msgid "Create vehicle mode" msgstr "Fahrzeugmodus einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3702 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3693 msgid "Mode for creating vehicles. (V)" msgstr "Modus zum Erstellen von Fahrzeugen. (V)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3708 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3699 msgid "Create type mode" msgstr "Typmodus einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3708 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3699 msgid "Mode for creating types (vehicles, person and containers). (T)" msgstr "Modus zum Erstellen von Typen (Fahrzeuge, Personen und Container). (T)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3714 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3705 +msgid "Create type distribution mode" +msgstr "Typenverteilungsmodus einstellen" + +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3705 +msgid "Mode for creating type distribution. (U)" +msgstr "Modus zum Erstellen von Typenverteilungen. (U)" + +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3711 msgid "Create stop mode" msgstr "Haltmodus einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3714 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3711 msgid "Mode for creating stops. (A)" msgstr "Modus zum Erstellen von Halten. (A)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3720 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3717 msgid "Create person mode" msgstr "Personenmodus einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3720 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3717 msgid "Mode for creating persons. (P)" msgstr "Modus zum Erstellen von Personen. (P)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3726 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3723 msgid "Create person plan mode" msgstr "Personenplanmodus einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3726 -msgid "Mode for creating person plans. (C)" -msgstr "Modus zum Erstellen von Personenplänen. (C)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3723 +msgid "Mode for creating person plans. (L)" +msgstr "Modus zum Erstellen von Personenplänen. (L)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3732 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3729 msgid "Create container mode" msgstr "Containermodus einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3732 -msgid "Mode for creating containers. (P)" -msgstr "Modus zum Erstellen von Containern. (P)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3729 +msgid "Mode for creating containers. (C)" +msgstr "Modus zum Erstellen von Containern. (C)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3738 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3735 msgid "Create container plan mode" msgstr "Containerplanmodus einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3738 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3735 msgid "Mode for creating container plans. (H)" msgstr "Modus zum Erstellen von Containerplänen. (H)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3815 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3816 msgid "Create edge data mode" msgstr "Kantendatenmodus einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3815 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3816 msgid "Mode for creating edge datas. (E)" msgstr "Modus zum Erstellen von Kantendaten. (E)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3821 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3822 msgid "Create edge relation data mode" msgstr "Kantenbeziehungsdatenmodus einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3821 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3822 msgid "Mode for creating edge relation datas. (R)" msgstr "Modus zum Erstellen von Kantenbeziehungsdaten. (R)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3827 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3828 msgid "Create TAZ relation data mode" msgstr "Modus für Verkehrsumlegungszonenbeziehungsdaten einstellen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3827 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3828 msgid "Mode for creating TAZ relation datas. (Z)" msgstr "Modus zum Erstellen von Verkehrsumlegungszonenbeziehungsdaten. (Z)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3833 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3834 msgid "MeanData mode" msgstr "MeanData-Modus" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3833 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3834 msgid "Mode for MeanData elements. (M)" msgstr "Modus für meanData-Elemente. (M)" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:102 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:103 msgid "Undo the last change. (Ctrl+Z)" msgstr "Mache die letzte Änderung rückgängig. (Ctrl+Z)" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:105 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:106 msgid "Redo the last change. (Ctrl+Y)" msgstr "Wiederhole die letzte Änderung. (Ctrl+Y)" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:113 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:114 msgid "Compute path manager" msgstr "Pfadmanager berechnen" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:113 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:114 msgid "Compute path manager." msgstr "Pfadmanager berechnen." -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:521 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:528 msgid "WalkingArea Chooser" -msgstr "" +msgstr "WalkingArea-Auswahl" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:590 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:597 msgid "Route Chooser" -msgstr "" +msgstr "Routenauswahl" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:598 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:605 msgid "Stop Chooser" -msgstr "" +msgstr "Halteauswahl" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:629 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:641 msgid "TLS Chooser" -msgstr "" +msgstr "LSA-Auswahl" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:640 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:652 msgid "Additional Chooser" -msgstr "" +msgstr "Auswahl weiterer Elemente" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:669 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:681 msgid "Poly Chooser" -msgstr "" +msgstr "Polygonauswahl" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:120 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:96 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:108 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:97 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:145 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:128 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:118 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:96 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:108 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:97 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:145 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:128 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:118 msgid "Undo create " msgstr "Erstellung rückgängig machen " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:122 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:99 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:110 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:99 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:147 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:130 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:122 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:99 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:110 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:99 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:147 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:120 msgid "Undo delete " msgstr "Löschen rückgängig machen " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:130 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:118 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:107 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:155 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:138 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:128 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:118 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:107 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:155 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:138 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:128 msgid "Redo create " msgstr "Erstellung wiederholen " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:132 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:120 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:109 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:157 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:140 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:132 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:109 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:157 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:140 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:130 msgid "Redo delete " msgstr "Löschen wiederholen " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Attribute.cpp:158 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Attribute.cpp:158 msgid "Undo change " msgstr "Änderung rückgängig machen " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Attribute.cpp:164 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Attribute.cpp:164 msgid "Redo change " msgstr "Änderung wiederholen " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:147 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:158 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:147 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:158 msgid "Undo moving up " msgstr "Aufsteigen rückgängig machen " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:149 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:156 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:149 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:156 msgid "Undo moving down " msgstr "Absteigen rückgängig machen " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:151 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:160 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:175 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:184 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:151 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:160 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:175 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:184 msgid "Invalid operation" msgstr "Operation ungültig" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:171 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:180 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:171 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:180 msgid "Redo moving front " msgstr "Nach oben schieben wiederholen " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:173 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:182 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:173 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:182 msgid "Redo moving back " msgstr "Nach unten schieben wiederholen " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:108 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:108 msgid "Redo create connection '" msgstr "Verbindung erstellen wiederholen" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:111 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:111 msgid "Redo delete connection '" msgstr "Verbindung löschen wiederholen" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:163 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:163 msgid "Undo create crossing" msgstr "Erstellte Fußgängerfurt rückgängig machen" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:165 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:165 msgid "Undo delete crossing" msgstr "Fußgängerfurt löschen rückgängig machen" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:173 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:173 msgid "Redo create crossing" msgstr "Fußgängerfurt erstellen wiederholen" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:175 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:175 msgid "Redo delete crossing" msgstr "Fußgängerfurt löschen wiederholen" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:136 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:136 msgid "Undo create edge '" msgstr "Kantenerstellung rückgängig machen '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:138 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:138 msgid "Undo delete edge '" msgstr "Kante löschen rückgängig machen '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:146 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:146 msgid "Redo create edge '" msgstr "Kantenerstellung wiederholen '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:148 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:148 msgid "Redo delete edge '" msgstr "Kante löschen wiederholen '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:111 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:111 msgid "Undo create edgeType '" msgstr "Kantentyperstellung rückgängig machen '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:113 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:113 msgid "Undo delete edgeType '" msgstr "Kantentyp löschen rückgängig machen '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:121 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:121 msgid "Redo create edgeType '" msgstr "Kantentyperstellung wiederholen" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:123 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:123 msgid "Redo delete edgeType '" msgstr "Kantentyperstellung löschen wiederholen" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:113 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:115 -msgid "Undo enable " -msgstr "Aktivieren rückgängig machen " - -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:113 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:115 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:123 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:125 -msgid " attribute in '" -msgstr " Attribut in '" - -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:123 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:125 -msgid "Redo enable " -msgstr "Aktivieren wiederholen " +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:113 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:115 +msgid "Undo enable % attribute in '%'" +msgstr "Attribut % in '%' aktivieren rückgängig machen" + +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:123 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:125 +msgid "Redo enable % attribute in '%'" +msgstr "Attribut % in '%' aktivieren wiederholen" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:109 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:109 msgid "Undo create junction '" msgstr "Knotenpunkterstellung rückgängig machen '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:111 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:111 msgid "Undo delete junction '" msgstr "Knotenpunkt löschen rückgängig machen '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:119 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:119 msgid "Redo create junction '" msgstr "Knotenpunkt erstellen wiederholen '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:121 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:121 msgid "Redo delete junction '" msgstr "Knotenpunkt löschen wiederholen '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:158 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:158 msgid "Undo create lane '" msgstr "Fahrstreifen erstellen rückgängig machen '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:160 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:160 msgid "Undo delete lane '" msgstr "Fahrstreifen löschen rückgängig machen '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:168 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:168 msgid "Redo create lane '" msgstr "Fahrstreifen erstellen wiederholen '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:170 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:170 msgid "Redo delete lane '" msgstr "Fahrstreifen löschen wiederholen '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:172 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:172 msgid "Undo create TLS '" msgstr "LSA-Erstellung rückgängig machen '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:174 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:174 msgid "Undo delete TLS '" msgstr "LSA löschen rückgängig machen '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:182 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:182 msgid "Redo create TLS '" msgstr "LSA erstellen wiederholen '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:184 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:184 msgid "Redo delete TLS '" msgstr "LSA löschen wiederholen '" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:38 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:38 msgid "About Eclipse SUMO netedit" msgstr "Über Eclipse SUMO Netedit" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:53 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:53 msgid "Network editor for Eclipse SUMO, the Simulation of Urban MObility" msgstr "Netzeditor für Eclipse SUMO, the Simulation of Urban MObility" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:54 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:54 msgid "Graphical editor for road networks and infrastructure." msgstr "Grafischer Editor für Straßennetze und Infrastruktur." -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:66 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:66 msgid "This application is based on code provided by the Eclipse SUMO project." msgstr "" "Diese Anwendung basiert auf Code, der vom Eclipse SUMO-Projekt " "bereitgestellt wird." -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:67 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:67 msgid "" "These core components are available under the conditions of the Eclipse " "Public License v2." @@ -4673,165 +4707,168 @@ "Diese Kernkomponenten sind unter den Bedingungen der Eclipse Public License " "v2 verfügbar." -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:923 msgid "Accept" msgstr "Akzeptieren" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:62 msgid "Close accepting changes" msgstr "Schließen und Änderungen akzeptieren" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:94 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:93 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1368 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:377 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:925 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1396 msgid "Cancel" msgstr "Abbrechen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:63 msgid "Close discarding changes" msgstr "Schließen und Änderungen verwerfen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:64 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:93 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:378 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:97 msgid "Reset" msgstr "Zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:64 msgid "Reset to previous values" msgstr "Auf vorherige Werte zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:276 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:649 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:59 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:690 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:494 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:133 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:276 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:650 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:59 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:713 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:494 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:133 msgid "accept" msgstr "akzeptieren" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:276 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:277 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:278 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:415 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:649 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:650 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:651 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:411 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:690 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:691 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:692 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:408 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:494 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:495 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:234 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:247 -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:285 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:384 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:559 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:298 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:487 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:134 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:276 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:277 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:416 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:650 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:651 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:652 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:413 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:713 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:714 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:715 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:408 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:494 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:495 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:380 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:298 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:487 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:134 msgid "close" msgstr "schließen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:277 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:650 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:60 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:691 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:495 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:277 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:651 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:60 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:714 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:495 msgid "cancel" msgstr "abbrechen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:278 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:651 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:692 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:652 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:715 msgid "reset" msgstr "zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNECalibratorDialog.cpp:237 +#: D:\Repos\sumo/src\netedit\dialogs\GNECalibratorDialog.cpp:237 msgid "routes cannot be empty" msgstr "Routen dürfen nicht leer sein" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNECalibratorDialog.cpp:472 +#: D:\Repos\sumo/src\netedit\dialogs\GNECalibratorDialog.cpp:472 msgid "No routes defined" msgstr "Keine Routen definiert" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:71 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:638 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:389 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:71 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:638 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:389 msgid "&Accept" msgstr "&Akzeptieren" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:75 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:90 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:75 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:90 msgid "close accepting changes" msgstr "schließen und Änderungen akzeptieren" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:64 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:76 msgid "close discarding changes" msgstr "schließen und Änderungen verwerfen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:65 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:65 msgid "&Reset" msgstr "&Zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:65 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:77 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:65 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:77 msgid "reset to previous values" msgstr "Zurücksetzen auf vorherige Werte" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDialogACChooser.cpp:111 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDialogACChooser.cpp:111 msgid "Invalid Junction" msgstr "Ungültiger Knotenpunkt" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDialogACChooser.cpp:117 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDialogACChooser.cpp:117 msgid "Invalid number of TLSs" msgstr "Ungültige Anzahl an Lichtsignalanlagen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:257 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:333 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:457 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:257 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:333 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:457 msgid "Activate friendlyPos and save" msgstr "FriendlyPos aktivieren und speichern" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:257 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:333 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:257 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:333 msgid "" "Friendly pos parameter will be activated in all stopping places and E2 " "detectors" msgstr "" "Parameter friendlyPos wird in allen Haltestellen und E2-Detektoren aktiviert" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:259 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:460 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:259 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:460 msgid "Save invalid positions" msgstr "Speichere ungültige Positionen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:259 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:259 msgid "Save stopping places and E2 detectors with invalid positions" msgstr "Speichere Haltepunkte und E2 Detektoren mit ungültigen Positionen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:263 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:335 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:466 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:263 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:335 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:466 msgid "Fix positions and save" msgstr "Repariere Positionen und speichere" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:263 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:335 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:263 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:335 msgid "Position of stopping places and E2 detectors will be fixed" msgstr "Position von Haltestellen und E2-Detektoren wird repariert" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:265 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:265 msgid "Select invalid additionals" msgstr "Wähle ungültige weitere Daten" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:265 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:265 msgid "" "Cancel saving of additionals and select invalid stopping places and E2 " "detectors" @@ -4839,179 +4876,179 @@ "Breche Speicherung weiterer Daten ab und wähle ungültige Haltestellen und E2-" "Detektoren aus" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:325 msgid "Build connections between lanes" msgstr "Baue Verbindungen zwischen Fahrstreifen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:325 msgid "New connections will be created between non-connected lanes" msgstr "" "Neue Verbindungen zwischen nicht verbunden Fahrstreifen werden erstellt" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:327 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:327 msgid "Remove invalid E2 detectors" msgstr "Entferne ungültige E2-Detektoren" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:327 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:327 msgid "Remove Multilane E2 Detectors with non-connected lanes" msgstr "" "Entferne mehrstreifige E2-Detektoren mit nicht verbundenen Fahrstreifen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:202 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:189 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:202 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:189 msgid "Save list of conflicted items" msgstr "Liste mit ungültigen Elementen speichern" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:240 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:240 msgid "Remove invalid routes" msgstr "Ungültige Routen entfernen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:243 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:243 msgid "Save invalid routes" msgstr "Ungültige Routen speichern" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:246 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:246 msgid "Select conflicted routes" msgstr "Ungültige Routen auswählen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:249 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:249 msgid "Remove stops out of route" msgstr "Haltepunkte außerhalb von Routen entfernen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:351 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:351 msgid "Remove invalid vehicles" msgstr "Ungültige Fahrzeuge entfernen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:354 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:354 msgid "Save invalid vehicles" msgstr "Ungültige Fahrzeuge speichern" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:357 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:357 msgid "Select conflicted vehicle" msgstr "Ungültiges Fahrzeug auswählen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:360 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:360 msgid "Remove stops out of vehicle's route" msgstr "Haltepunkte außerhalb von Fahrzeugrouten entfernen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:463 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:463 msgid "Select conflicted Stops" msgstr "Ungültige Halte auswählen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:557 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:557 msgid "Delete person plan" msgstr "Personenpläne löschen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:560 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:560 msgid "Save invalid person plans" msgstr "Ungültige Personenpläne speichern" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:563 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:563 msgid "Select conflicted person plans" msgstr "Ungültige Personenpläne auswählen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:52 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:52 msgid "Fix network elements problems" msgstr "Probleme von Netzelementen reparieren" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:206 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:206 msgid "Saving successfully" msgstr "Speichern erfolgreich" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:213 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:213 msgid "Saving list of conflicted items failed" msgstr "Speichern der Liste mit Konfliktelementen fehlgeschlagen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:227 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:227 msgid "Remove invalid edges" msgstr "Ungültige Kanten entfernen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:230 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:230 msgid "Save invalid edges" msgstr "Ungültige Kanten speichern" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:233 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:233 msgid "Select conflicted edges" msgstr "Ungültige Kanten auswählen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:308 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:308 msgid "Remove invalid crossings" msgstr "Ungültige Fußgängerfurten entfernen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:311 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:311 msgid "Save invalid crossings" msgstr "Ungültige Fußgängerfurten speichern" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:314 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:314 msgid "Select conflicted crossing" msgstr "Ungültige Kreuzungen auswählen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:285 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:281 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:286 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:283 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:278 msgid "Sort" msgstr "Sortieren" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:286 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:282 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:279 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:55 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:251 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:287 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:284 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:279 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:252 msgid "Clear" msgstr "Leeren" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:289 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:285 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:282 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:59 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:748 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:73 -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:318 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:113 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:420 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:60 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:83 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:37 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:39 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:222 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1194 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:290 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:287 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:756 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:318 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:109 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:37 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:39 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:223 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1191 msgid "Help" msgstr "Hilfe" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:299 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:295 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:292 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:300 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:297 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:292 msgid "Open Parameter Template" msgstr "Vorlagenparameter öffnen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:314 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:310 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:307 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:315 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:312 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:307 #, c-format msgid "Loading of Parameters From % failed." msgstr "Laden der Parameter von % fehlgeschlagen." -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:317 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:313 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:310 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:318 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:315 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:310 msgid "Loaded % Parameters." msgstr "% Parameter geladen." -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:327 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:323 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:320 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:328 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:320 msgid "Save Parameter Template file" msgstr "Speicher Vorlageparameter-Datei" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:403 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:399 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:396 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:404 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:401 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:396 msgid "- Parameters are defined by a Key and a Value.\n" msgstr "- Parameter sind definiert als Paar aus Schlüssel und Wert.\n" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:404 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:400 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:397 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:405 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:402 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:397 msgid "" "- In Netedit can be defined using format key1=parameter1|" "key2=parameter2|...\n" @@ -5019,51 +5056,51 @@ "- Kann in Netedit im Format Schlüssel1=Parameter1| Schlüssel2=Parameter2| " "definiert werden...\n" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:405 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:401 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:398 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:406 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:403 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:398 msgid " - Duplicated and empty Keys aren't valid.\n" msgstr " - Doppelte und leere Schlüssel sind nicht gültig.\n" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:406 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:402 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:399 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:407 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:404 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:399 msgid " - Whitespace and certain characters aren't allowed (@$%^&/|\\....)\n" msgstr "" " - Leere Flächen und bestimmte Zeichen sind nicht erlaubt (@$%^&/|\\....)\n" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:448 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:447 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:444 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:449 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:449 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:444 msgid "Key of Parameter not defined" msgstr "Parameterschlüssel ist nicht definiert" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:450 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:449 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:446 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:451 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:451 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:446 msgid "Value of Parameter not defined" msgstr "Parameterwert ist nicht definiert" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:458 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:457 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:454 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:454 msgid "Key of Parameter cannot be empty" msgstr "Schlüssel des Parameters darf nicht leer sein" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:460 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:459 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:456 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:461 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:461 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:456 #, c-format msgid "Key '%' of Parameter contains invalid characters" msgstr "Schlüssel '%' des Parameters enthält ungültige Zeichen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:463 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:462 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:464 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:464 #, c-format msgid "Key '%' already exist" msgstr "Schlüssel '%' existiert bereits" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:478 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:479 msgid "" "Only for\n" "existent keys" @@ -5071,322 +5108,407 @@ "Nur für\n" "existente Schlüssel" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:59 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:59 msgid "load elements" msgstr "Elemente laden" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:60 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:60 msgid "cancel loading of elements" msgstr "Laden von Elementen abbrechen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:61 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:61 msgid "overwrite" msgstr "überschreiben" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:61 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:61 msgid "overwrite elements" msgstr "überscheibe Elemente" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:182 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:182 msgid "Rerouter has more than one edge" msgstr "Rerouter hat mehr als eine Kante" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:321 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:321 msgid "There are no lanes in the network" -msgstr "" +msgstr "Das Netz enthält keine Fahrstreifen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:341 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:361 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:341 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:361 msgid "There are no edges in the network" -msgstr "" +msgstr "Das Netz enthält keine Kanten" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:398 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:398 msgid "There are no parking areas in the network" -msgstr "" +msgstr "Das Netz enthält keine Parkplätze" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEUndoListDialog.cpp:58 +#: D:\Repos\sumo/src\netedit\dialogs\GNEUndoListDialog.cpp:58 msgid "OK\tclose dialog" msgstr "OK\tschließe Dialog" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:459 #, c-format msgid "Key '%' already exists" -msgstr "" +msgstr "Der Schlüssel '%' existiert bereits" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:446 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:753 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:446 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1159 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1168 msgid "Edit parameters" msgstr "Parameter bearbeiten" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:466 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:466 msgid "Invalid row type" msgstr "Ungültiger Zeilentyp" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:635 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:425 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:455 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1252 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:635 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:426 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:463 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1249 msgid "Color Dialog" msgstr "Farbendialog" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:660 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:660 msgid "Open Image" msgstr "Abbildung öffnen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:687 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:687 msgid "Open OSG File" msgstr "OSG-Datei öffnen" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:266 +msgid "Could not load configuration '" +msgstr "Konnte die folgende Konfiguration nicht laden: '" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:271 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:169 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:173 +msgid "Could not load tool configuration '" +msgstr "Konnte die folgende Werkzeugkonfiguration nicht laden: '" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:275 +msgid "Loaded configuration." +msgstr "Konfiguration geladen." + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:295 +msgid "Save options" +msgstr "Optionen speichern" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:297 +msgid "Save configuration file" +msgstr "Konfigurationsdatei speichern" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:298 +msgid "Load options" +msgstr "Optionen laden" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:300 +msgid "Load configuration file" +msgstr "Konfigurationsdatei laden" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:301 +msgid "Default options" +msgstr "Standardwerte" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:303 +msgid "Reset all options to default" +msgstr "Alle auf Standardwerte zurücksetzen" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:311 +msgid "Topics" +msgstr "Themen" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:362 +msgid "Search" +msgstr "Suche" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:364 +msgid "Include description in search" +msgstr "Auch Beschreibung durchsuchen" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:81 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:138 +msgid "Reset value" +msgstr "Wert zurücksetzen" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:226 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:238 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:251 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:272 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:734 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:746 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:760 +msgid "true" +msgstr "wahr" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:229 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:241 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:254 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:275 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:737 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:749 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:766 +msgid "false" +msgstr "falsch" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:458 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:82 +msgid "Select filename" +msgstr "Dateiname auswählen" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:63 msgid "Grid" -msgstr "" +msgstr "Raster" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:64 msgid "Spider" -msgstr "" +msgstr "Spinne" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:65 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:65 msgid "Random grid" -msgstr "" +msgstr "Zufälliges Raster" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:66 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:66 msgid "Random" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:82 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:232 -msgid "Select filename" -msgstr "Dateiname auswählen" +msgstr "Zufällig" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:92 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:92 msgid "Advanced" -msgstr "" +msgstr "Fortgeschritten" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:92 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:92 msgid "open advance netgenerate dialog" -msgstr "" +msgstr "fortgeschrittenen netgenerate-Dialog öffnen" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:94 msgid "Close dialog" -msgstr "" +msgstr "Dialog schließen" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:71 -msgid "Save options" -msgstr "" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:71 +msgid "Save toolcfg" +msgstr "toolcfg speichern" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:73 -msgid "Load options" -msgstr "" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:73 +msgid "Save file with tool configuration" +msgstr "Datei mit Werkzeugkonfiguration speichern" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:74 +msgid "Load toolcfg" +msgstr "toolcfg laden" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:75 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:76 +msgid "Load file with tool configuration" +msgstr "Datei mit Werkzeugkonfiguration laden" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:77 msgid "Sorted by name" -msgstr "" +msgstr "Nach Namen sortiert" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:78 msgid "Grouped by categories" -msgstr "" +msgstr "Nach Kategorien gruppiert" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:90 +msgid "Blue options are mandatory" +msgstr "Blau markierte Optionen sind verpflichtend" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:89 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:93 msgid "run python tool" -msgstr "" +msgstr "Python-Werkzeug ausführen" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:91 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:95 msgid "close tool dialog" -msgstr "" +msgstr "Werkzeugdialog schließen" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:93 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:97 msgid "reset to default values" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:122 -msgid "Reset value" -msgstr "" +msgstr "auf Standardwerte zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:227 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:245 #, c-format msgid "Use current % file" -msgstr "" +msgstr "Die aktuelle %-Datei benutzen" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:251 +#, c-format +msgid "Select % file" +msgstr "%-Datei auswählen" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:274 +msgid "Use current selected edges" +msgstr "Derzeit ausgewählte Kanten nutzen" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:253 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:349 msgid "network" -msgstr "" +msgstr "Netz" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:296 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:392 msgid "additional" -msgstr "" +msgstr "weiteres Element" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:339 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:435 msgid "route" -msgstr "" +msgstr "Route" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:382 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:478 msgid "data" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:556 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:568 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:582 -msgid "true" -msgstr "wahr" +msgstr "Daten" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:559 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:571 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:585 -msgid "false" -msgstr "falsch" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:521 +msgid "sumo config" +msgstr "sumo-Konfiguration" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:70 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:71 msgid "Save output" -msgstr "" +msgstr "Ausgabe speichern" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:65 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:66 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:72 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:73 msgid "Console output" -msgstr "" +msgstr "Konsolenausgabe" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:75 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:82 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:83 msgid "Abort" -msgstr "" +msgstr "Abbrechen" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:75 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:82 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:83 msgid "abort running" -msgstr "" +msgstr "Ausführung abbrechen" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:77 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:78 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:84 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:85 msgid "Rerun" -msgstr "" +msgstr "Erneut ausführen" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:77 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:78 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:84 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:85 msgid "rerun tool" -msgstr "" +msgstr "Werkzeug erneut ausführen" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:79 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:80 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:86 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:87 msgid "Back" -msgstr "" +msgstr "Zurück" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:79 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:80 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:86 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:87 msgid "back to tool dialog" -msgstr "" +msgstr "Zurück zum Werkzeugdialog" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:87 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:88 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:95 msgid "close dialog" -msgstr "" +msgstr "Dialog schließen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:134 msgid "Nothing to enable, implement in Children" msgstr "Nichts zu aktivieren, implementiert in Kindelementen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:141 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:141 msgid "Nothing to disable, implement in Children" msgstr "Nichts zu deaktivieren, implementiert in Kindelementen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:631 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:631 #, c-format msgid "TagProperty for tag '%' not defined" -msgstr "" +msgstr "TagProperty für Tag '%' nicht definiert" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:849 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:849 msgid "Nothing to toggle, implement in Children" msgstr "Nichts zu wechseln, implementiert in Kindelementen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:913 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:913 msgid "The id of the node" msgstr "Die ID des Knotens" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:918 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1903 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1909 msgid "The x-y-z position of the node on the plane in meters" msgstr "Die x-y-z-Position des Knotens auf der Ebene in Metern" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:923 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:923 msgid "An optional type for the node" msgstr "Ein optionaler Typ für den Knoten" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:929 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:929 msgid "A custom shape for that node" msgstr "Ein nutzerdefinierter Shape für diesen Knoten" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:934 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:934 msgid "Optional turning radius (for all corners) for that node in meters" msgstr "Optionaler Wenderadius (für alle Ecken) für diesen Knoten in Metern" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:940 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:940 msgid "" "Whether the junction-blocking-heuristic should be activated at this node" msgstr "" "Ob die Heuristik zur Knotenpunktblockierung an diesem Knoten aktiviert " "werden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:946 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:946 msgid "How to compute right of way rules at this node" msgstr "So werden Vorfahrtsregeln an diesem Knoten berechnet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:953 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:953 msgid "Whether this junction is at the fringe of the network" msgstr "Ob dieser Knotenpunkt am Rand des Netzes liegt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:960 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:960 msgid "Optional name of junction" msgstr "Optionaler Name des Knotenpunkts" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:965 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:965 msgid "An optional type for the traffic light algorithm" msgstr "Ein optionaler Typ für den LSA-Algorithmus" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:971 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:971 msgid "An optional layout for the traffic light plan" msgstr "Ein optionales Layout für den LSA-Plan" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:980 msgid "An optional id for the traffic light program" msgstr "Eine optionale ID für das LSA-Programm" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:993 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:993 msgid "The id of the edge" msgstr "Die ID der Kante" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:998 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1116 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:998 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1116 msgid "The number of lanes of the edge" msgstr "Die Anzahl von Fahrstreifen der Kante" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1004 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1104 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1004 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1104 msgid "The maximum speed allowed on the edge in m/s" msgstr "Die maximal erlaubte Geschwindigkeit auf der Kante in m/s" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1010 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1064 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1127 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1230 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1446 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1064 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1230 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1446 msgid "" "Explicitly allows the given vehicle classes (not given will be not allowed)" msgstr "" "Erlaubt ausdrücklich die angegebenen Fahrzeugklassen (alle nicht angegebenen " "sind nicht zugelassen)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1016 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1070 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1133 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1236 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1452 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1016 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1070 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1133 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1236 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1452 msgid "" "Explicitly disallows the given vehicle classes (not given will be allowed)" msgstr "" "Verbietet explizit die angegebenen Fahrzeugklassen (nicht angegebene sind " "zugelassen)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1021 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1148 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1021 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1148 msgid "" "The spreadType defines how to compute the lane geometry from the edge " "geometry (used for visualization)" @@ -5394,64 +5516,64 @@ "Das Attribut spreadType definiert, wie die Fahrstreifengeometrie aus der " "Kantengeometrie berechnet wird (wird zur Darstellungverwendet)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1028 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1110 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1110 msgid "The priority of the edge" msgstr "Der Vorrang der Kante" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1034 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1160 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1160 msgid "" "Lane width for all lanes of this edge in meters (used for visualization)" msgstr "" "Fahrstreifenbreite für alle Fahrstreifen dieser Kante in Metern (wird zur " "Darstellung verwendet)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1040 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1040 msgid "The width of the sidewalk that should be added as an additional lane" msgstr "" "Die Breite des Gehwegs, der als zusätzlicher Fahrstreifen hinzugefügt werden " "soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1045 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1045 msgid "The width of the bike lane that should be added as an additional lane" msgstr "" "Die Breite des Radwegs/Radstreifens, der/die als zusätzlicher Fahrstreifen " "hinzugefügt werden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1058 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1058 msgid "The maximum speed allowed on the lane in m/s" msgstr "Die maximal erlaubte Geschwindigkeit auf diesen Fahrstreifen in m/s" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1075 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1075 msgid "" "Lane width for all lanes of this lane in meters (used for visualization)" msgstr "" "Fahrstreifenbreite für alle Fahrstreifen dieses Fahrstreifens in Metern " "(wird zur Darstellung verwendet)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1089 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2650 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2698 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1089 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2656 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2704 msgid "Edge ID" msgstr "Kanten-ID" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1094 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1094 msgid "The name of a node within the nodes-file the edge shall start at" msgstr "" "Der Name eines Knotens innerhalb der Knotendatei, bei dem die Kante beginnen " "soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1099 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1099 msgid "The name of a node within the nodes-file the edge shall end at" msgstr "" "Der Name eines Knotens innerhalb der Knotendatei, an dem die Kante enden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1122 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1122 msgid "The name of a type within the SUMO edge type file" msgstr "Der Name eines Typs in der SUMO-Kantentypdatei" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1138 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1138 msgid "" "If the shape is given it should start and end with the positions of the from-" "node and to-node" @@ -5459,57 +5581,59 @@ "Wenn der Shape gegeben ist, sollte es starten und enden mit den Positionen " "vom Ausgangs- und Endknoten" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1143 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1143 msgid "The length of the edge in meter" msgstr "Die Länge der Kante in Metern" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1155 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1155 msgid "street name (does not need to be unique, used for visualization)" msgstr "" +"Straßenname (wird in der Darstellung verwendet und muss nicht einzigartig " +"sein)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1166 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1247 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1166 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1247 msgid "Move the stop line back from the intersection by the given amount" msgstr "" "Die Haltelinie um den angegebenen Betrag von der Kreuzung zurück verschieben" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1172 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1172 msgid "" "Custom position in which shape start (by default position of junction from)" msgstr "" "Nutzerdefinierte Position in welcher der Shape beginnt (standardmäßig " "Position des Knotenpunkt von)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1177 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1177 msgid "" "Custom position in which shape end (by default position of junction from)" msgstr "" "Nutzerdefinierte Position in welcher der Shape endet (standardmäßig Position " "des Knotenpunkt von)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1182 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1182 msgid "Show if edge is bidirectional" msgstr "Zeigt an, ob es eine Zweirichtungskante ist" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1188 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1188 msgid "Distance" msgstr "Distanz" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1194 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1288 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1194 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1288 msgid "The stop offset as positive value in meters" msgstr "Der Haltversatz als positiver Wert in Metern" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1200 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1294 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1200 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1294 msgid "Specifies, for which vehicle classes the stopOffset does NOT apply." msgstr "Gibt an, für welche Fahrzeugklassen der Haltversatz NICHT gilt." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1214 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1214 msgid "Lane ID (Automatic, non editable)" msgstr "Fahrstreifen-ID (automatisch, nicht bearbeitbar)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1219 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1219 msgid "" "The enumeration index of the lane (0 is the rightmost lane, -1 " "is the leftmost one)" @@ -5517,56 +5641,56 @@ "Der Aufzählungsindex des Fahrstreifens (0 ist der ganz rechte Fahrstreifen, " "-1 ist der ganz linke)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1224 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1224 msgid "Speed in meters per second" msgstr "Geschwindigkeit in Metern pro Sekunde" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1241 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1241 msgid "Width in meters (used for visualization)" msgstr "Breite in Metern (wird zur Darstellung verwendet)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1253 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1253 msgid "Enable or disable lane as acceleration lane" msgstr "" "Fahrstreifen als Beschleunigungsfahrstreifen aktivieren oder deaktivieren" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1259 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1259 msgid "If the shape is given it overrides the computation based on edge shape" msgstr "" "Wenn der Shape gegeben ist, überschreibt er den auf Basis der Kante " "berechneten" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1264 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1264 msgid "If given, this defines the opposite direction lane" msgstr "Wenn angegeben, definiert dies den Fahrstreifen in die Gegenrichtung" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1269 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1474 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1269 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1474 msgid "Permit changing left only for to the given vehicle classes" msgstr "" "Fahrstreifenwechsel nach links nur für die angegebenen Fahrzeugklassen " "zulassen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1276 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1481 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1276 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1481 msgid "Permit changing right only for to the given vehicle classes" msgstr "" "Fahrstreifenwechsel nach rechts nur für die angegebenen Fahrzeugklassen " "zulassen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1283 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1283 msgid "Lane type description (optional)" msgstr "Fahrstreifentyp-Beschreibung (optional)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1308 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1308 msgid "Crossing ID" msgstr "Fußgängerfurt-ID" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1313 msgid "The (road) edges which are crossed" msgstr "Die (Fahrbahn-)Kanten welche gekreuzt werden" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1318 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1318 msgid "" "Whether the pedestrians have priority over the vehicles (automatically set " "to true at tls-controlled intersections)" @@ -5574,62 +5698,63 @@ "Ob die Fußgänger Vorrang vor den Fahrzeugen haben (an LSA-gesteuerten " "Kreuzungen automatisch auf \"true\" gesetzt)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1324 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1324 msgid "The width of the crossings" msgstr "Die Breite von Fußgängerfurten" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1330 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1330 msgid "sets the tls-index for this crossing" msgstr "LSA-Index für die Fußgängerfurt setzen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1336 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1336 msgid "sets the opposite-direction tls-index for this crossing" msgstr "LSA-Index für Gegenrichtung der Fußgängerfurt setzen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1342 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1342 msgid "Overrides default shape of pedestrian crossing" -msgstr "" +msgstr "Überschreibt den Standard-Shape einer Fußgängerfurt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1355 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1355 msgid "Walking Area ID" msgstr "WalkingArea-ID" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1360 msgid "The width of the WalkingArea" msgstr "Die Breite der WalkingArea" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1366 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1366 msgid "The length of the WalkingArea in meter" msgstr "Die Länge der WalkingArea in Meter" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1371 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1371 msgid "Overrides default shape of pedestrian sidewalk" -msgstr "" +msgstr "Überschreibt den Standard-Shape eines Fußwegs" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1384 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1384 msgid "The ID of the edge the vehicles leave" -msgstr "" +msgstr "Die ID der Kante, wo die Fahrzeuge abfahren" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1389 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1389 msgid "The ID of the edge the vehicles may reach when leaving 'from'" msgstr "" +"ID der Kante, welche die Fahrzeuge bei Abfahrt in 'from' erreichen können" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1394 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1394 msgid "the lane index of the incoming lane (numbers starting with 0)" msgstr "" "der Fahrstreifenindex des Eingangsfahrstreifens (Nummern starten mit 0)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1399 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1399 msgid "the lane index of the outgoing lane (numbers starting with 0)" msgstr "" "der Fahrstreifenindex des Ausgangsfahrstreifens (Nummern starten mit 0)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1404 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1404 msgid "" "if set, vehicles which pass this (lane-2-lane) connection) will not wait" msgstr "wenn gesetzt, warten Fahrzeuge, die diese Verbindung passieren, nicht" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1410 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1410 msgid "" "if set to false, vehicles which pass this (lane-2-lane) connection) will not " "worry about blocking the intersection" @@ -5637,7 +5762,7 @@ "wenn auf 'false' gesetzt, sorgen sich Fahrzeuge, die diese Verbindung " "passieren, nicht darum, die Kreuzung zu blockieren" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1416 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1416 msgid "" "If set to a more than 0 value, an internal junction will be built at this " "position (in m)/n from the start of the internal lane for this connection" @@ -5646,7 +5771,7 @@ "internen Fahrstreifens aus für diese Verbindung ein interner Knotenpunkt " "erstellt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1422 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1422 msgid "" "If set to true, This connection will not be TLS-controlled despite its node " "being controlled" @@ -5654,15 +5779,15 @@ "Bei Festlegung auf 'true' wird diese Verbindung nicht LSA-gesteuert, obwohl " "der Knotenpunkt als lichtsignalisiert markiert ist" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1428 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1428 msgid "Vision distance between vehicles" msgstr "Sichtweite zwischen Fahrzeugen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1434 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1434 msgid "sets index of this connection within the controlling traffic light" msgstr "setzt den Index dieser Verbindung innerhalb der steuernden LSA" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1440 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1440 msgid "" "sets index for the internal junction of this connection within the " "controlling traffic light" @@ -5670,66 +5795,66 @@ "setzt den Index für den internen Übergang dieser Verbindung innerhalb der " "steuernden LSA" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1457 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1457 msgid "sets custom speed limit for the connection" msgstr "Nutzerdefinierte Geschwindigkeitsbegrenzung für die Verbindung setzen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1463 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1463 msgid "sets custom length for the connection" msgstr "Nutzerdefinierte Länge für die Verbindung setzen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1469 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1469 msgid "sets custom shape for the connection" msgstr "Nutzerdefinierter Shape für die Verbindung setzen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1488 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1488 msgid "if set to true, vehicles will make a turn in 2 steps" msgstr "wenn auf \"true\" gesetzt, wenden Fahrzeuge in 2 Schritten" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1494 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1494 msgid "" "set a custom edge type (for applying vClass-specific speed restrictions)" msgstr "" "Nutzerdefinierten Kantentyp setzen (zum Anwenden von " "Fahrzeugklassenspezifischen Geschwindigkeitsbeschränkungen)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1500 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1500 msgid "turning direction for this connection (computed)" msgstr "Abbiegerichtung für diese Verbindung (berechnet)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1505 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1505 msgid "link state for this connection (computed)" msgstr "Linkstand für diese Verbindung (berechnet)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1535 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1535 msgid "The id of bus stop" msgstr "Die ID des Bushaltepunkts" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1540 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1540 msgid "The name of the lane the bus stop shall be located at" msgstr "" "Der Name des Fahrstreifens, an der sich der Bushaltepunkt befinden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1545 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1609 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1707 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1836 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3962 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4073 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1545 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1609 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1707 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3968 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4095 msgid "" "The begin position on the lane (the lower position on the lane) in meters" msgstr "" "Die Anfangsposition auf dem Fahrstreifen (die untere Position auf dem " "Fahrstreifen) in Metern" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1550 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1614 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1712 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1841 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3967 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4078 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4432 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4802 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1550 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1614 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1712 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1841 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3973 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4100 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4470 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4916 msgid "" "The end position on the lane (the higher position on the lane) in meters, " "must be larger than startPos by more than 0.1m" @@ -5738,58 +5863,58 @@ "Fahrstreifen) in Metern; Muss um mehr als 0.1 m größer sein als die " "Startposition" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1555 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1555 msgid "Name of busStop" msgstr "Name des Bushaltepunkts (busStop)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1560 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1624 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1680 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1722 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1785 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1868 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1979 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2060 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2140 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2219 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2246 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2293 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2959 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3266 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3972 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4083 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4437 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4807 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1560 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1680 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1722 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1785 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1868 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1985 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2066 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2146 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2225 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2252 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2299 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2965 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3272 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3978 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4105 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4475 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4921 msgid "If set, no error will be reported if element is placed behind the lane." msgstr "" "Wenn gesetzt, wird kein Fehler gemeldet, wenn das Element außerhalb der " "Fahrstreifengrenzen platziert wird." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1561 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1561 msgid "" "Instead, it will be placed 0.1 meters from the lanes end or at position 0.1" msgstr "" "Stattdessen wird es 0.1 Meter vom Fahrstreifenende entfernt oder an Position " "0.1 platziert" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1562 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1626 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1682 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1724 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1787 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1870 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1981 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2062 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2142 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2221 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2248 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2295 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2961 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3268 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3974 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4085 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4439 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4809 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1562 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1626 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1682 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1724 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1787 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1870 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1987 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2148 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2227 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2254 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2301 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2967 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3274 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4477 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4923 msgid "" "if the position was negative and larger than the lanes length after " "multiplication with - 1" @@ -5797,7 +5922,7 @@ "wenn die Position negativ und größer als die Fahrstreifenlänge nach " "Multiplikation mit -1 war" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1568 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1568 msgid "" "Meant to be the names of the bus lines that stop at this bus stop. This is " "only used for visualization purposes" @@ -5805,8 +5930,8 @@ "Namen der Buslinien, die an dieser Bushaltestelle halten. Dies dient nur der " "Darstellung" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1573 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1637 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1573 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1637 msgid "" "Larger numbers of persons trying to enter will create an upstream jam on the " "sidewalk" @@ -5814,54 +5939,54 @@ "Eine größere Anzahl von Personen, die versuchen, einzusteigen, führt zu " "einem stromaufwärts gelegenen Stau auf dem Bürgersteig" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1579 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1643 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1741 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1579 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1741 msgid "Optional space definition for vehicles that park at this stop" msgstr "Optionale Platzdefinition für Fahrzeuge die an diesen Halt parken" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1585 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1585 msgid "The RGBA color with which the busStop shall be displayed" msgstr "Die RGBA-Farbe, mit welcher der Bushaltepunkt dargestellt werden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1599 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1599 msgid "The id of train stop" msgstr "Die ID der Bahnhaltestelle (trainStop)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1604 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1604 msgid "The name of the lane the train stop shall be located at" msgstr "" "Der Name des Fahrstreifens, auf dem sich die Bahnhaltestelle (trainStop) " "befinden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1619 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1619 msgid "Name of trainStop" msgstr "Name der Bahnhaltestelle (trainStop)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1625 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1681 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1723 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1786 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1869 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1980 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2061 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2141 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2220 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2247 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2294 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2960 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3267 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3973 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4084 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4438 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4808 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1625 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1681 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1723 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1786 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1869 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1986 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2147 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2226 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2253 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2300 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2966 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3273 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3979 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4106 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4476 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4922 msgid "" "Instead, it will be placed 0.1 meters from the lanes end or at position 0.1," msgstr "" "Stattdessen wird es 0.1 Meter vom Fahrstreifenende entfernt oder an Position " "0.1 platziert" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1632 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1632 msgid "" "Meant to be the names of the train lines that stop at this train stop. This " "is only used for visualization purposes" @@ -5869,42 +5994,42 @@ "Namen der Bahnlinien, die an dieser Bahnhaltestelle (trainStop) halten. Dies " "dient nur der Darstellung" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1649 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1649 msgid "The RGBA color with which the trainStop shall be displayed" msgstr "" "Die RGBA-Farbe, mit der die Bahnhaltestelle (trainStop) dargestellt werden " "soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1663 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1663 msgid "The name of the lane the stop access shall be located at" msgstr "" "Der Name des Fahrstreifens, an dem sich die Haltestellenzufahrt befinden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1668 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1668 msgid "The position on the lane (the lower position on the lane) in meters" msgstr "" "Die Position auf dem Fahrstreifen (die untere Position auf dem Fahrstreifen) " "in Metern" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1674 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1674 msgid "The walking length of the access in meters" msgstr "Die Gehlänge des Zugangs in Metern" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1697 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1697 msgid "The id of container stop" msgstr "Die vom Containerhalt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1702 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1702 msgid "The name of the lane the container stop shall be located at" msgstr "" "Der Name des Fahrstreifens, an dem sich die Containerhaltestelle befinden " "soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1717 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1717 msgid "Name of containerStop" msgstr "Name vom Containerhalt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1730 msgid "" "meant to be the names of the bus lines that stop at this container stop. " "This is only used for visualization purposes" @@ -5912,7 +6037,7 @@ "sollen die Namen der Buslinien sein, die an dieser Containerhaltestelle " "halten. Dies dient nur der Visualisierung" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1735 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1735 msgid "" "Larger numbers of container trying to enter will create an upstream jam on " "the sidewalk" @@ -5920,40 +6045,40 @@ "Eine größere Anzahl von Containern die dazukommen, führt zu einem " "stromaufwärts gelegenen Stau auf dem Bürgersteig" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1747 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1747 msgid "The RGBA color with which the containerStop shall be displayed" msgstr "" "Die RGBA-Farbe, mit der der Containerhaltepunkt dargestellt werden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1760 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1760 msgid "The id of charging station" msgstr "Die ID der Ladestation (chargingStation)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1765 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1765 msgid "Lane of the charging station location" msgstr "Fahrstreifen der Ladestation (chargingStation)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1770 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1770 msgid "Begin position in the specified lane" msgstr "Startposition im angegebenen Fahrstreifen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1775 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1775 msgid "End position in the specified lane" msgstr "Endposition im angegebenen Fahrstreifen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1780 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1780 msgid "Name of chargingStation" msgstr "Name der Ladestation (chargingStation)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1793 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1793 msgid "Charging power in W" msgstr "Ladepower in W" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1799 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1799 msgid "Charging efficiency [0,1]" msgstr "Ladeeffizienz [0,1]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1806 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1806 msgid "" "Enable or disable charge in transit, i.e. vehicle must or must not to stop " "for charging" @@ -5961,7 +6086,7 @@ "Laden während der Fahrt aktivieren oder deaktivieren, d. h. das Fahrzeug " "muss zum Laden anhalten oder nicht" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1812 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1812 msgid "" "Time delay after the vehicles has reached / stopped on the charging station, " "before the energy transfer (charging) begins" @@ -5969,41 +6094,41 @@ "Zeitverzögerung, nachdem das Fahrzeug die Ladestation erreicht / angehalten " "hat, bevor die Energieübertragung (Laden) beginnt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1826 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1826 msgid "The id of ParkingArea" msgstr "Die ID des Parkplatzes" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1831 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1831 msgid "The name of the lane the Parking Area shall be located at" msgstr "Der Name des Fahrstreifens, auf der sich der Parkplatz befinden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1846 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1846 msgid "Lane position in that vehicle must depart when leaves parkingArea" msgstr "" "Die Fahrstreifenposition des Fahrzeuges muss beim Verlassen des Parkbereichs " "verlassen werden" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1851 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1851 msgid "Name of parkingArea" msgstr "Name des Parkplatz" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1856 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1856 msgid " The number of parking spaces for road-side parking" msgstr " Die Anzahl der Parkplätze für das Parken am Straßenrand" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1862 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1862 msgid "" "If set, vehicles will park on the road lane and thereby reducing capacity" msgstr "" "Wenn gesetzt, parken Fahrzeuge auf dem Fahrstreifen und verringern dadurch " "die Kapazität" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1876 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1913 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1876 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1919 msgid "The width of the road-side parking spaces" msgstr "Die Breite der Parkstände am Straßenrand" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1882 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1882 msgid "" "The length of the road-side parking spaces. By default (endPos - startPos) / " "roadsideCapacity" @@ -6011,8 +6136,8 @@ "Die Länge der straßenseitigen Parkstände. Standardmäßig (endPos - " "startPos) / roadsideCapacity" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1888 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1923 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1888 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1929 msgid "" "The angle of the road-side parking spaces relative to the lane angle, " "positive means clockwise" @@ -6020,27 +6145,31 @@ "Der Winkel der straßenseitigen Parkstände relativ zum Fahrstreifenwinkel, " "positiv bedeutet im Uhrzeigersinn" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1908 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1894 +msgid "Enable or disable lefthand position" +msgstr "Linksseitige Position aktivieren/deaktivieren" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1914 msgid "Name of parking space" msgstr "Name des Parkplatz" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1924 msgid "The length of the road-side parking spaces" msgstr "Die Länge der straßenseitigen Parkstände" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1928 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1934 msgid "The slope of the road-side parking spaces" msgstr "Das Gefälle der straßenseitigen Parkstände" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1943 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1949 msgid "The id of E1" msgstr "Die ID von E1" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1948 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2000 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2209 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2236 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2268 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1954 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2006 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2215 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2242 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2274 msgid "" "The id of the lane the detector shall be laid on. The lane must be a part of " "the network used" @@ -6048,8 +6177,8 @@ "Die ID des Fahrstreifen, auf die der Detektor gelegt werden soll. Der " "Fahrstreifen muss Teil des verwendeten Netzes sein" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1953 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2273 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1959 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2279 msgid "" "The position on the lane the detector shall be laid on in meters. The " "position must be a value between -1*lane's length and the lane's length" @@ -6058,66 +6187,66 @@ "werden soll. Die Position muss ein Wert zwischen -1*Fahrstreifenlänge und " "der Fahrstreifenlänge sein" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1958 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2016 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2096 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2168 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5770 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1964 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2022 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2102 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5916 msgid "" "The aggregation period the values the detector collects shall be summed up" msgstr "" "Der Aggregationszeitraum, in dem die vom Detektor erfassten Werte summiert " "werden" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1964 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1970 msgid "Name of induction loop" msgstr "Name der Induktionsschleife" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1969 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2032 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2112 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2179 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2283 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1975 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2038 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2118 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2289 msgid "The path to the output file" msgstr "Der Pfad zur Ausgabedatei" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1974 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2037 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2117 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2184 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2288 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2043 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2123 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2190 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2294 msgid "Space separated list of vehicle type ids to consider" msgstr "" "Durch Leerzeichen getrennte Liste der zu berücksichtigenden Fahrzeugtyp-IDs" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1995 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2001 msgid "The id of E2" msgstr "Die ID von E2" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2005 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2086 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2214 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2241 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2011 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2092 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2220 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2247 msgid "The position on the lane the detector shall be laid on in meters" msgstr "" "Die Position auf dem Fahrstreifen, auf der der Detektor in Metern angebracht " "werden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2016 msgid "The length of the detector in meters" msgstr "Die Länge vom Detektor in Metern" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2102 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2108 msgid "The traffic light that triggers aggregation when switching" msgstr "Die LSA löst beim Schalten die Aggregation aus" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2027 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2033 msgid "Name of lane area detector" msgstr "Name vom Fahrstreifenbereichs-Detektor" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2042 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2122 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2048 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2128 msgid "" "The time-based threshold that describes how much time has to pass until a " "vehicle is recognized as halting)" @@ -6125,9 +6254,9 @@ "Die zeitbasierte Schwelle, die beschreibt, wie viel Zeit vergehen muss, bis " "ein Fahrzeug als haltend erkannt wird)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2048 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2128 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2195 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2054 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2201 msgid "" "The speed-based threshold that describes how slow a vehicle has to be to be " "recognized as halting) in m/s" @@ -6135,8 +6264,8 @@ "Die geschwindigkeitsbasierte Schwelle, die beschreibt, wie langsam ein " "Fahrzeug sein muss, um als haltend erkannt zu werden) in m/s" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2054 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2060 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2140 msgid "" "The minimum distance to the next standing vehicle in order to make this " "vehicle count as a participant to the jam) in m" @@ -6144,41 +6273,41 @@ "Der Mindestabstand in Metern zum nächsten stehenden Fahrzeug, damit dieses " "Fahrzeug zum Stau dazuzählt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2076 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2082 msgid "The id of Multilane E2" msgstr "Die ID vom mehrspurigen E2" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2081 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2087 msgid "The sequence of lane ids in which the detector shall be laid on" msgstr "" "Die Abfolge der IDs der Fahrstreifen, auf denen der Detektor angebracht " "werden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2091 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2097 msgid "The end position on the lane the detector shall be laid on in meters" msgstr "" "Die Endposition auf dem Fahrstreifen, auf der der Detektor in Metern verlegt " "werden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2113 msgid "Name of Multilane E2 detector" msgstr "Name vom mehrspurigen E2 Detektor" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2157 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2163 msgid "The id of E3" msgstr "Die ID von E3" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2162 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2354 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3213 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2168 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3219 msgid "X-Y position of detector in editor (Only used in netedit)" msgstr "X-Y-Position des Detektors im Editor (wird nur in netedit verwendet)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2180 msgid "Name of Entry Exit detector" msgstr "Name des Ein-/Ausgangsdetektor" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2189 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2195 msgid "" "The time-based threshold that describes how much time has to pass until a " "vehicle is recognized as halting) in s" @@ -6186,51 +6315,51 @@ "Die zeitbasierte Schwelle, die beschreibt, wie viel Zeit vergehen muss, bis " "ein Fahrzeug als haltend erkannt wird) in s" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2263 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2269 msgid "The id of Instant Induction Loop (E1Instant)" msgstr "Die ID der momentanen Induktionsschleife (E1Instant)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2278 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2284 msgid "Name of instant induction loop" msgstr "Name der momentanen Induktionsschleife" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2309 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2315 msgid "The id of RouteProbe" msgstr "Die ID vom Routendetektor" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2314 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2320 msgid "The id of an edge in the simulation network" msgstr "Die ID einer Kante im simulierten Netz" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2319 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2325 msgid "The frequency in which to report the distribution" msgstr "Die Häufigkeit, mit der die Verteilung gemeldet werden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2325 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2331 msgid "Name of route probe" msgstr "Name vom Routendetektor" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2330 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2336 msgid "The file for generated output" msgstr "Die Datei für generierte Ausgabe" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2335 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2341 msgid "The time at which to start generating output" msgstr "Die Zeit zu welcher die Generierung der Ausgabe startet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2349 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2355 msgid "The id of Variable Speed Signal" msgstr "Die ID der dynamischen Geschwindigkeitsanzeige" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2366 msgid "List of Variable Speed Sign lanes" msgstr "Liste von Fahrstreifen mit dynamischer Geschwindigkeitsanzeige" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2365 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2371 msgid "Name of Variable Speed Signal" msgstr "Name von dynamischer Geschwindigkeitsanzeige" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2370 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2376 msgid "" "Space separated list of vehicle type ids to consider (empty to affect all " "types)" @@ -6238,28 +6367,28 @@ "Durch Leerzeichen getrennte Liste der zu berücksichtigenden Fahrzeugtyp-IDs " "(leer, um alle Typen zu beeinflussen)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2396 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2402 msgid "Speed" msgstr "Geschwindigkeit" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2410 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2466 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2416 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2472 msgid "The id of Calibrator" msgstr "Die ID vom Kalibrator" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2415 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3159 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3179 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2421 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3165 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3185 msgid "The id of edge in the simulation network" msgstr "Die ID von der Kante im simulierten Netz" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2420 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2476 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2426 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2482 msgid "The position of the calibrator on the specified lane" msgstr "Die Position vom Kalibrator auf dem angegebenen Fahrstreifen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2426 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2482 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2432 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2488 msgid "" "The aggregation interval in which to calibrate the flows. Default is step-" "length" @@ -6267,12 +6396,12 @@ "Das Aggregationsintervall, in dem die Flüsse kalibriert werden sollen. " "Standard ist Schrittlänge" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2432 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2438 msgid "Name of Calibrator" msgstr "Name vom Kalibrator" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2437 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2493 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2443 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2499 msgid "" "The id of the routeProbe element from which to determine the route " "distribution for generated vehicles" @@ -6280,18 +6409,18 @@ "Die ID des routeProbe-Elements, aus dem die Routenverteilung für generierte " "Fahrzeuge ermittelt werden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2442 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2498 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2504 msgid "The output file for writing calibrator information or NULL" msgstr "Die Ausgabedatei für Kalibratorinformation oder NULL" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2447 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2503 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2453 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2509 msgid "A threshold value to detect and clear unexpected jamming" msgstr "Ein Schwellenwert zum Erkennen und Beseitigen unerwarteter Störungen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2453 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2509 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2459 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2515 msgid "" "space separated list of vehicle type ids to consider (empty to affect all " "types)" @@ -6299,64 +6428,64 @@ "durch Leerzeichen getrennte Liste der zu berücksichtigenden Fahrzeugtyp-IDs " "(leer, um alle Typen zu beeinflussen)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2471 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2477 msgid "The id of lane in the simulation network" msgstr "Die ID vom Fahrstreifen im simulierten Netz" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2488 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2494 msgid "Name of calibrator lane" msgstr "Name vom Kalibrator-Fahrstreifen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2522 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2528 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3715 msgid "The id of the route the vehicle shall drive along" msgstr "Die ID der Route, auf der das Fahrzeug fahren soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2527 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2533 msgid "First calibrator flow departure time" msgstr "Abfahrtszeit des ersten Kalibratorflusses" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2533 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4962 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2539 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5108 msgid "End of departure interval" msgstr "Ende des Abfahrtsintervalls" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2543 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2549 msgid "The id of the vehicle type to use for this calibrator flow" msgstr "" "Die ID des Fahrzeugtyps, der für diesen Kalibratorfluss verwendet werden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2555 msgid "Number of vehicles per hour, equally spaced" -msgstr "" +msgstr "Anzahl an Fahrzeugen pro Stunde, gleichmäßig verteilt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2555 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2561 msgid "Vehicle's speed" msgstr "Fahrzeuggeschwindigkeit" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2576 msgid "The id of Rerouter" msgstr "Die ID vom Rerouter" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2581 msgid "An edge id or a list of edge ids where vehicles shall be rerouted" msgstr "" "Eine Kanten-ID oder eine Liste von Kanten-IDs, an denen Fahrzeuge umgeleitet " "werden sollen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2580 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2586 msgid "X,Y position in editor (Only used in netedit)" msgstr "X-Y-Position im Editor (wird nur in netedit verwendet)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2586 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2592 msgid "Name of Rerouter" msgstr "Name vom Rerouter" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2591 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2597 msgid "The probability for vehicle rerouting (0-1)" msgstr "Die Wahrscheinlichkeit zum Umleiten vom Fahrzeugen (0-1)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2597 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2603 msgid "" "The waiting time threshold (in s) that must be reached to activate rerouting " "(default -1 which disables the threshold)" @@ -6365,7 +6494,7 @@ "Umleitung zu aktivieren (Standardwert -1, wodurch der Schwellenwert " "deaktiviert wird)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2603 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2609 msgid "" "The list of vehicle types that shall be affected by this rerouter (empty to " "affect all types)" @@ -6373,174 +6502,174 @@ "Die Liste der Fahrzeugtypen, die von diesem Rerouter betroffen sein sollen " "(leer, um alle Typen zu beeinflussen)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2608 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2614 msgid "" "Whether the router should be inactive initially (and switched on in the gui)" msgstr "" "Ob der Router zunächst inaktiv sein soll (und in der GUI eingeschaltet)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2630 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2636 msgid "Begin" msgstr "Begin" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2636 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2642 msgid "End" msgstr "Ende" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2656 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2680 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2662 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2686 msgid "allowed vehicles" msgstr "erlaubte Fahrzeuge" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2661 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2685 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2667 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2691 msgid "disallowed vehicles" msgstr "verbotene Fahrzeuge" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2674 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2680 msgid "Lane ID" msgstr "Fahrstreifen-ID" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2704 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2724 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2750 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2710 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2756 msgid "SUMO Probability" msgstr "SUMO Wahrscheinlichkeit" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2718 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2724 msgid "ParkingArea ID" msgstr "Parkplatz-ID" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2736 msgid "Enable or disable visibility for parking area reroutes" msgstr "" "Aktivieren oder deaktivieren der Sichtbarkeit für " "Parkplatzbereichsumleitungen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2770 msgid "Edge in which vaporizer is placed" msgstr "Kante in welcher Vaporizer platziert ist" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2769 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2775 msgid "Start Time" msgstr "Startzeit" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2775 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2781 msgid "End Time" msgstr "Endzeit" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2781 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2787 msgid "Name of vaporizer" msgstr "Name vom Vaporizer" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2802 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2808 msgid "The id of the polygon" msgstr "Die ID vom Polygon" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2807 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2813 msgid "The shape of the polygon" msgstr "Die Shape vom Polygon" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2812 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2818 msgid "The RGBA color with which the polygon shall be displayed" msgstr "Die RGBA-Farbe, mit der das Polygon dargestellt werden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2818 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2824 msgid "An information whether the polygon shall be filled" msgstr "Eine Information, ob das Polygon gefüllt werden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2824 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2830 msgid "The default line width for drawing an unfilled polygon" msgstr "Die Standardlinienbreite zum Zeichnen eines ungefüllten Polygons" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2830 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2836 msgid "The layer in which the polygon lies" msgstr "Die Ebene in welcher das Polygon liegt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2842 msgid "A typename for the polygon" msgstr "Ein Typenname für das Polygon" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2842 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2848 msgid "Polygon's name" msgstr "Polygonname" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2847 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2853 msgid "A bitmap to use for rendering this polygon" msgstr "Eine Bitkarte zum Rendern dieses Polygons" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2853 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2924 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3014 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3091 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2859 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2930 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3020 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3097 msgid "Enable or disable use image file as a relative path" msgstr "Bilddatei als relativen Pfad verwenden aktivieren oder deaktivieren" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2859 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2930 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3020 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3097 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2865 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2936 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3026 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3103 msgid "Angle of rendered image in degree" msgstr "Winkel des gerenderten Bildes in Grad" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2873 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2944 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2879 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2950 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3040 msgid "The id of the POI" msgstr "Die ID vom Pol" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2878 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2884 msgid "The position in view" msgstr "Die Ansichtsposition" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2883 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2973 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3050 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2889 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2979 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3056 msgid "The color with which the POI shall be displayed" msgstr "Die Farbe, mit der der Pol angezeigt werden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2889 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2979 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3056 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2895 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2985 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3062 msgid "A typename for the POI" msgstr "Ein Typenname für den Pol" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2895 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2985 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3062 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3146 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2901 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2991 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3152 msgid "Name of POI" msgstr "Name des Pol" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2900 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2990 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2906 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2996 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3073 msgid "The layer of the POI for drawing and selecting" msgstr "Die Ebene vom Pol zum Zeichnen und Auswählen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2906 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2996 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3073 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2912 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3002 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3079 msgid "Width of rendered image in meters" msgstr "Breite des gerendertem Bild in Metern" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2912 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3002 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3079 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3008 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3085 msgid "Height of rendered image in meters" msgstr "Höhe vom gerendertem Bild in Metern" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2918 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3008 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3085 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2924 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3014 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3091 msgid "A bitmap to use for rendering this POI" msgstr "Ein Bitmap zum Rendern diesen Pol" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2949 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2955 msgid "The name of the lane at which the POI is located at" msgstr "Der Name des Fahrstreifen, auf der sich der Pol befindet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2954 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2960 msgid "" "The position on the named lane or in the net in meters at which the POI is " "located at" @@ -6548,92 +6677,92 @@ "Die Position auf dem benannten Fahrstreifen oder im Netz in Metern, an der " "sich der Pol befindet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2967 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2973 msgid "The lateral offset on the named lane at which the POI is located at" msgstr "" "Der seitliche Versatz auf dem benannten Fahrsteifen, an der sich der Pol " "befindet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3040 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3046 msgid "The longitude position of the parking vehicle on the view" -msgstr "" +msgstr "Längengrad des geparkten Fahrzeugs in der Ansicht" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3045 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3051 msgid "The latitude position of the parking vehicle on the view" -msgstr "" +msgstr "Breitengrad des geparkten Fahrzeugs in der Ansicht" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3119 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3125 msgid "The id of the TAZ" msgstr "Die ID der Verkehrsumlegungszone" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3124 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3130 msgid "The shape of the TAZ" msgstr "Die Shape der Verkehrsumlegungszone" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3129 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3135 msgid "TAZ center" msgstr "Verkehrsumlegungszonen-Zentrum" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3140 msgid "An information whether the TAZ shall be filled" msgstr "Eine Information, ob die Verkehrsumlegungszone ausgefüllt werden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3140 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3146 msgid "The RGBA color with which the TAZ shall be displayed" msgstr "" "Die RGBA-Farbe, mit der die Verkehrsumlegungszone dargestellt werden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3165 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3171 msgid "Depart weight associated to this Edge" msgstr "Abfahrgewicht, das dieser Kante zugeordnet ist" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3185 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3191 msgid "Arrival weight associated to this Edget" msgstr "Ankunftsgewicht, das dieser Kante zugeordnet ist" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3208 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3214 msgid "Traction substation ID" msgstr "Transport-Unterstation ID" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3219 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3225 msgid "Voltage of at connection point for the overhead wire" msgstr "Spannung von einem Verbindungspunkt für die Oberleitung" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3225 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3231 msgid "Current limit of the feeder line" msgstr "Strombegrenzung der Zuleitung" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3239 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3245 msgid "Overhead wire segment ID" msgstr "Oberleitungsabschnitt-ID" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3244 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3250 msgid "Substation to which the circuit is connected" msgstr "Unterstation, an die der Stromkreis angeschlossen ist" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3249 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3255 msgid "List of consecutive lanes of the circuit" msgstr "Liste der aufeinanderfolgenden Fahrstreifen des Stromkreises" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3254 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3260 msgid "Starting position in the specified lane" msgstr "Startposition in des angegebenen Fahrstreifen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3260 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3266 msgid "Ending position in the specified lane" msgstr "Endposition auf dem angegebenen Fahrstreifen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3274 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3280 msgid "Inner lanes, where placing of overhead wire is restricted" msgstr "" "Innere Fahrstreifen, auf denen die Verlegung von Oberleitungen eingeschränkt " "ist" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3287 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3293 msgid "Overhead wire clamp ID" msgstr "Oberleitungsklemmen-ID" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3292 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3298 msgid "" "ID of the overhead wire segment, to the start of which the overhead wire " "clamp is connected" @@ -6641,11 +6770,11 @@ "ID des Oberleitungsabschnitts, an dessen Anfang die Oberleitungsklemme " "angeschlossen ist" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3297 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3303 msgid "ID of the overhead wire segment lane of overheadWireIDStartClamp" msgstr "ID des ausgehenden Oberleitungssegments der Klemme" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3302 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3308 msgid "" "ID of the overhead wire segment, to the end of which the overhead wire clamp " "is connected" @@ -6653,16 +6782,16 @@ "ID des Oberleitungssegments, an dessen Ende die Oberleitungsklemme " "angeschlossen ist" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3313 msgid "ID of the overhead wire segment lane of overheadWireIDEndClamp" msgstr "ID der Oberleitungssegmentspur von overheadWireIDEndClamp" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3330 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3336 msgid "The id of Route" msgstr "Die ID der Route" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3335 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3367 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3341 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3373 msgid "" "The edges the vehicle shall drive along, given as their ids, separated using " "spaces" @@ -6670,18 +6799,18 @@ "Die Kanten, die das Fahrzeug entlangfahren soll, werden als IDs angegeben " "und durch Leerzeichen getrennt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3340 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3372 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3346 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3378 msgid "This route's color" msgstr "Die Farbe dieser Route" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3345 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3377 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3351 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3383 msgid "The number of times that the edges of this route shall be repeated" msgstr "Die Anzahl der Wiederholungen der Kanten dieser Route" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3351 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3383 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3389 msgid "" "When defining a repeating route with stops and those stops use the until " "attribute," @@ -6689,75 +6818,81 @@ "Wenn eine sich wiederholende Route mit Haltestellen definiert wird und diese " "Haltestellen das until-Attribut verwenden," -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3352 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3384 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3358 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3390 msgid "the times will be shifted forward by 'cycleTime' on each repeat" msgstr "" "die Zeiten werden bei jeder Wiederholung um 'cycleTime' nach vorne verschoben" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3399 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3405 msgid "The id of VehicleType distribution" msgstr "Die ID der Fahrzeugtyp-Verteilung" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3421 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3427 msgid "The id of VehicleType" msgstr "Die ID des Fahrzeugtyp" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3426 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3432 msgid "Vehicle Type Distribution" msgstr "Fahrzeugtyp-Verteilung" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3431 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3437 msgid "An abstract vehicle class" msgstr "Eine abstrakte Fahrzeugklasse" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3438 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3444 msgid "This vehicle type's color" msgstr "Die Farbe dieses Fahrzeugtyps" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3443 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3449 msgid "The vehicle's netto-length (length) [m]" msgstr "Die Fahrzeugnettolänge (Länge) [m]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3454 msgid "Empty space after leader [m]" msgstr "Mindestabstand zum Vorderfahrzeug [m]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3453 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3459 msgid "The vehicle's maximum velocity [m/s]" msgstr "Höchstgeschwindigkeit des Fahrzeugs [m/s]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3458 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3464 msgid "" "The vehicle's expected multiplicator for lane speed limits (or a " "distribution specifier)" msgstr "" +"Der fahrzeugspezifische Faktor für Geschwindigkeitsbegrenzungen (oder eine " +"Verteilungsspezifikation)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3463 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3469 msgid "The vehicle's desired maximum velocity (interacts with speedFactor)." msgstr "" +"Die maximale Wunschgeschwindigkeit des Fahrzeugs (interagiert mit " +"speedFactor)." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3464 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3470 msgid "Applicable when no speed limit applies (bicycles, some motorways) [m/s]" msgstr "" +"Anzuwenden, wo/wenn keine Geschwindigkeitsbegrenzung vorliegt (Fahrrad, " +"einige Autobahnen) [m/s]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3469 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3475 msgid "An abstract emission class" msgstr "Eine abstrakte Emissionsklasse" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3475 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3481 msgid "How this vehicle is rendered" msgstr "Wie dieses Fahrzeug gerendert wird" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3481 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3487 msgid "The vehicle's width [m] (only used for drawing)" msgstr "Die Fahrzeugbreite [m] (wird nur zum Zeichnen verwendet)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3487 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3493 msgid "The vehicle's height [m] (only used for drawing)" msgstr "Die Fahrzeughöhe [m] (wird nur zum Zeichnen verwendet)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3493 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3499 msgid "" "Image file for rendering vehicles of this type (should be grayscale to allow " "functional coloring)" @@ -6765,15 +6900,15 @@ "Bilddatei zum Rendern von Fahrzeugen dieses Typs (sollte in Graustufen sein, " "um eine funktionale Farbgebung zu ermöglichen)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3498 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3504 msgid "The model used for changing lanes" msgstr "Fahrstreifenwechselmodell" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3505 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3511 msgid "The model used for car-following" -msgstr "" +msgstr "Das Fahrzeugfolgemodell" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3512 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3518 msgid "" "The number of persons (excluding an autonomous driver) the vehicle can " "transport" @@ -6781,25 +6916,25 @@ "Die Anzahl an Personen die ein Fahrzeug transportieren kann (ohne autonomen " "Fahrer)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3517 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3523 msgid "The number of containers the vehicle can transport" msgstr "Die Anzahl an Containern die ein Fahrzeug transportieren kann" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3522 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3528 msgid "The time required by a person to board the vehicle" msgstr "Die Zeit, die eine Person benötigt, um in das Fahrzeug einzusteigen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3528 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3534 msgid "The time required to load a container onto the vehicle" msgstr "" "Die Zeit, die benötigt wird, um einen Container auf das Fahrzeug zu laden" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3534 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3540 msgid "The preferred lateral alignment when using the sublane-model" msgstr "" "Die bevorzugte seitliche Ausrichtung bei Verwendung des Sublane-Modells" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3541 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3547 msgid "" "The minimum lateral gap at a speed difference of 50km/h when using the " "sublane-model" @@ -6807,12 +6942,12 @@ "Der minimale seitliche Abstand bei einer Geschwindigkeitsdifferenz von 50 km/" "h bei Verwendung des Sublane-Modells" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3547 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3553 msgid "The maximum lateral speed when using the sublane-model" msgstr "" "Die maximale laterale Geschwindigkeit bei Verwendung des Sublane-Modells" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3553 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3559 msgid "" "The interval length for which vehicle performs its decision logic " "(acceleration and lane-changing)" @@ -6820,7 +6955,7 @@ "Die Intervalllänge, für die das Fahrzeug seine Entscheidungslogik durchführt " "(Beschleunigung und Fahrstreifenwechsel)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3559 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3565 msgid "" "The probability when being added to a distribution without an explicit " "probability" @@ -6828,45 +6963,45 @@ "Die Wahrscheinlichkeit beim Hinzufügen zu einer Verteilung ohne explizite " "Wahrscheinlichkeit" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3565 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3571 msgid "3D model file for this class" msgstr "3D-Modelldatei für diese Klasse" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3576 msgid "Carriage lengths" msgstr "Wagenlängen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3581 msgid "Locomotive lengths" msgstr "Triebfahrzeuglängen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3580 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3586 msgid "Gap between carriages" -msgstr "" +msgstr "Lücke zwischen Eisenbahnwagen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3613 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3619 msgid "The ID of trip" msgstr "Die ID der Fahrt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3618 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3663 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3669 msgid "The id of the vehicle type to use for this trip" msgstr "Die ID des für diese Fahrt zu verwendenden Fahrzeugtyps" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3630 msgid "The ID of the edge the trip starts at" -msgstr "" +msgstr "Die ID der Kante, auf der die Fahrt beginnt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3629 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3635 msgid "The ID of the edge the trip ends at" -msgstr "" +msgstr "Die ID der Kante, auf der die Fahrt endet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3634 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3640 msgid "List of intermediate edge ids which shall be part of the trip" msgstr "Liste der Zwischenkanten-IDs, die Teil der Fahrt sein sollen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3642 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3682 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3648 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3688 msgid "" "The departure time of the (first) trip which is generated using this trip " "definition" @@ -6874,269 +7009,283 @@ "Die Abfahrtszeit der (ersten) Fahrt, die anhand dieser Fahrtdefinition " "generiert wird" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3658 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3664 msgid "The id of trip" msgstr "Die ID der Fahrt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3669 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3675 msgid "The name of the junction the trip starts at" msgstr "Der Name des Knotenpunkts an dem die Fahrt startet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3674 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3680 msgid "The name of the junction the trip ends at" msgstr "Der Name des Knotenpunkts an dem die Fahrt endet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3698 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3743 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3704 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3749 msgid "The ID of the vehicle" msgstr "Die ID des Fahrzeugs" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3703 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3748 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3754 msgid "The id of the vehicle type to use for this vehicle" msgstr "Die ID des Fahrzeugtyps, welcher für dieses Fahrzeug verwendet wird" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3714 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3754 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3720 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3760 msgid "The index of the edge within route the vehicle starts at" msgstr "Der Index der Kante innerhalb der Route, an der das Fahrzeug startet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3719 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3759 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3725 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3765 msgid "The index of the edge within route the vehicle ends at" msgstr "Der Index der Kante innerhalb der Route, an der das Fahrzeug endet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3727 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3767 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3733 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3773 msgid "The time step at which the vehicle shall enter the network" msgstr "Der Zeitschritt, zu dem das Fahrzeug in das Netz eintreten soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3783 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3789 msgid "The ID of the flow" msgstr "Die ID des Flusses" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3788 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3830 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3867 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3909 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3794 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3873 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3915 msgid "The id of the flow type to use for this flow" msgstr "Die ID des Flusstyps, welcher für diesen Fluss verwendet wird" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3794 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3800 msgid "The ID of the edge the flow starts at" -msgstr "" +msgstr "Die ID der Kante, auf welcher der Fluss beginnt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3799 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3805 msgid "The ID of the edge the flow ends at" -msgstr "" +msgstr "Die ID der Kante, auf welcher der Fluss endet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3804 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3810 msgid "List of intermediate edge ids which shall be part of the flow" msgstr "Liste von Zwischenkanten-IDs, die Teil des Flusses sein sollen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3825 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3862 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3831 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3868 msgid "The id of the flow" msgstr "Die ID vom Fluss" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3842 msgid "The name of the junction the flow starts at" msgstr "Der Name des Knotenpunkts wo der Fluss startet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3841 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3847 msgid "The name of the junction the flow ends at" msgstr "Der Name des Knotenpunkts wo der Fluss endet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3873 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3879 msgid "The id of the route the flow shall drive along" -msgstr "Die ID der Route, entlang der der Fluss fahren soll" +msgstr "Die ID der Route, entlang welcher der Fluss fahren soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3878 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3915 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3884 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3921 msgid "The index of the edge within route the flow starts at" msgstr "Der Index der Kante innerhalb der Route, an der der Fluss beginnt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3883 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3920 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3889 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3926 msgid "The index of the edge within route the flow ends at" msgstr "Der Index der Kante innerhalb der Route, an der der Fluss endet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3904 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3910 msgid "The name of the flow" msgstr "Der Name des Flusses" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3957 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3963 msgid "The name of the lane the stop shall be located at" msgstr "Der Name des Fahrstreifens, an dem sich der Haltepunkt befinden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3986 msgid "The lateral offset on the named lane at which the vehicle must stop" msgstr "" "Der seitliche Versatz auf dem benannten Fahrstreifen, auf der das Fahrzeug " "anhalten muss" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3996 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4842 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4002 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4956 msgid "BusStop associated with this stop" msgstr "Mit diesem Haltepunkt verknüpfter Bushaltepunkt (busStop)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4012 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4472 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4018 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4988 +msgid "TrainStop associated with this stop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4510 msgid "ContainerStop associated with this stop" msgstr "Containerhaltepunkt, die diesem Haltepunkt zugeordnet ist" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4050 msgid "ChargingStation associated with this stop" msgstr "Ladestation (chargingStation), die diesem Haltepunkt zugeordnet ist" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4044 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4066 msgid "ParkingArea associated with this stop" msgstr "Parkplatz, der diesem Haltepunkt zugeordnet ist" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4090 msgid "The name of the lane the waypoint shall be located at" msgstr "Der Name des Fahrstreifen, auf der sich der Wegpunkt befinden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4091 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4113 msgid "The lateral offset on the named lane at which the vehicle must waypoint" msgstr "" "Der seitliche Versatz auf dem benannten Fahrstreifen, auf den das Fahrzeug " "einen Wegpunkt anfährt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4129 msgid "BusWaypoint associated with this waypoint" msgstr "Buswegpunkt, der diesem Wegpunkt zugeordnet ist" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4123 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4145 +msgid "TrainWaypoint associated with this waypoint" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4161 msgid "ContainerWaypoint associated with this waypoint" msgstr "Containerwegpunkt, der diesem Wegpunkt zugeordnet ist" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4139 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4177 msgid "ChargingStation associated with this waypoint" msgstr "Mit diesem Wegpunkt verknüpfte Ladestation (chargingStation)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4155 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4193 msgid "ParkingArea associated with this waypoint" msgstr "Parkplatz wurde diesem Wegpunkt zugeordnet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4183 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4221 msgid "The time step at which the person shall enter the network" msgstr "Der Zeitschritt, zu dem die Person in das Netz eintreten soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4223 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4261 msgid "The time step at which the container shall enter the network" msgstr "Der Zeitschritt, zu dem der Container in das Netz eintreten soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4259 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4289 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4297 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4327 msgid "The ID of the edge the transport starts at" -msgstr "" +msgstr "Die ID der Kante, wo der Versand beginnt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4264 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4302 msgid "The ID of the edge the transport ends at" -msgstr "" +msgstr "Die ID der Kante, wo der Versand zugestellt wird" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4269 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4337 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4521 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4637 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4744 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4559 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4834 msgid "arrival position on the destination edge" msgstr "Ankunftsposition auf der Zielkante" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4275 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4299 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4337 msgid "list of vehicle alternatives to take for the transport" msgstr "Liste der Fahrzeugalternativen für den Transport" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4294 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4332 msgid "ID of the destination container stop" -msgstr "" +msgstr "ID des Container-Zielhaltepunkt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4321 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4359 msgid "The ID of the edge the tranship starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4326 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4364 msgid "The ID of the edge the tranship ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4331 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4367 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4392 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4405 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4430 msgid "The position at which the tranship shall enter the net" msgstr "Die Position, an der die Umladung im Netz statt finden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4343 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4373 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4404 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4381 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4411 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4442 msgid "speed of the container for this tranship in m/s" msgstr "Geschwindigkeit des Containers für diesen Umschlag in m/s" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4395 msgid "The name of the edge the tranship starts at" msgstr "Der Name der Kante, an der die Umladung beginnt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4362 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4400 msgid "Id of the destination container stop" msgstr "ID des Zielcontainerhaltepunkts" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4387 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4669 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4425 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4759 msgid "id of the edges to walk" msgstr "ID der Fußwege" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4398 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4674 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4693 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4436 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4783 msgid "Arrival position on the destination edge" msgstr "Ankunftsposition auf der Zielkante" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4427 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4797 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4465 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4911 msgid "The ID of the edge the stop shall be located at" -msgstr "" +msgstr "Die ID der Kante, wo der Halt liegen soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4445 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4477 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4815 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4847 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4483 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4515 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4929 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4961 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4993 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5695 msgid "Minimum duration for stopping" -msgstr "Mindestdauer zum Anhalten" +msgstr "Mindestdauer eines Halts" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4452 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4484 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4822 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4854 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5556 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4490 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4522 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4936 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4968 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5000 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5702 msgid "The time step at which the route continues" msgstr "Der Zeitschritt, bei dem die Route fortgesetzt wird" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4458 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4490 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4496 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4528 msgid "Activity displayed for stopped container in GUI and output files " msgstr "" "Aktivität zeigt angehaltene Container in der GUI und Ausgabedateien an " -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4511 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4551 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4589 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4623 msgid "The ID of the edge the person trip starts at" -msgstr "" +msgstr "Die ID der Kante, wo die Person ihre Fahrt beginnt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4516 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4554 msgid "The ID of the edge the person trip ends at" -msgstr "" +msgstr "Die ID der Kante, wo die Fahrt der Person endet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4527 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4561 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4595 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4565 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4599 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4633 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4667 msgid "List of possible vehicle types to take" msgstr "Liste der möglichen zu verwendenden Fahrzeugtypen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4532 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4566 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4600 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4604 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4638 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4672 msgid "" "List of possible traffic modes. Walking is always possible regardless of " "this value" @@ -7144,102 +7293,119 @@ "Liste der möglichen Verkehrsmodi. Gehen ist unabhängig von diesem Wert immer " "möglich" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4537 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4571 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4605 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4609 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4677 msgid "list of vehicle alternatives to take for the person trip" msgstr "Liste der Fahrzeugalternativen für die Personenfahrt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4556 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4594 msgid "Id of the destination busStop" msgstr "ID der Buszielhaltestelle" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4585 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4628 +msgid "Id of the destination trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4657 msgid "The name of the junction the person trip starts at" msgstr "Der Name des Knotenpunkts, an der die Personenfahrt beginnt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4590 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4662 msgid "The name of the junction the person trip ends at" msgstr "Der Name des Knotenpunkts, an der die Personenfahrt endet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4627 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4651 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4699 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4723 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4741 msgid "The ID of the edge the walk starts at" -msgstr "" +msgstr "Die ID der Kante, wo der Fußweg beginnt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4632 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4704 msgid "The ID of the edge the walk ends at" -msgstr "" +msgstr "Die ID der Kante, wo der Fußweg endet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4656 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4728 msgid "Id of the destination bus stop" msgstr "ID der Buszielhaltestelle" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4688 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4746 +msgid "Id of the destination train stop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4778 msgid "The id of the route to walk" msgstr "Die ID der zu gehenden Route" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4708 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4798 msgid "The name of the junction the walk starts at" msgstr "Der Name des Knotenpunkts, an dem der Fußweg beginnt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4713 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4803 msgid "The name of the junction the walk ends at" msgstr "Der Name des Knotenpunkts, an dem der Fußweg endet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4734 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4824 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4854 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4878 msgid "The ID of the edge the ride starts at" -msgstr "" +msgstr "Die ID der Kante, wo die Mitfahrt beginnt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4739 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4829 msgid "The ID of the edge the ride ends at" -msgstr "" +msgstr "Die ID der Kante, wo die Mitfahrt endet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4750 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4774 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4840 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4864 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4888 msgid "list of vehicle alternatives to take for the ride" msgstr "Liste der Fahrzeugalternativen für die Fahrt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4769 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4859 msgid "ID of the destination bus stop" +msgstr "ID der Zielbushaltestelle" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4883 +msgid "ID of the destination train stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4828 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4860 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4942 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4974 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5006 msgid "Activity displayed for stopped person in GUI and output files " msgstr "" "Aktivität zeigt die angehaltene Person in der GUI und Ausgabedateien an " -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4872 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5018 msgid "This vehicle's color" msgstr "Die Farbe dieses Fahrzeugs" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4878 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5024 msgid "The lane on which thevehicle shall be inserted" msgstr "Der Fahrstreifen, auf der das Fahrzeug eingesetzt werden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4884 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5030 msgid "The position at which the vehicle shall enter the net" msgstr "Die Position, an der das Fahrzeug in das Netz einfahren soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4890 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5036 msgid "The speed with which the vehicle shall enter the network" msgstr "Die Geschwindigkeit, mit der das Fahrzeug in das Netz einfahren soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4896 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5042 msgid "The lane at which the vehicle shall leave the network" msgstr "Der Fahrstreifen, auf dem das Fahrzeug das Netz verlassen soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4902 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5048 msgid "The position at which the vehicle shall leave the network" msgstr "Die Position, an der das Fahrzeug das Netz verlassen soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4908 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5054 msgid "The speed with which the vehicle shall leave the network" msgstr "Die Geschwindigkeit, mit der das Fahrzeug das Netz verlassen soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4914 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5060 msgid "" "A string specifying the id of a public transport line which can be used when " "specifying person rides" @@ -7247,15 +7413,15 @@ "Ein String der die ID einer ÖV-Linie angibt, die bei der Angabe von " "Personenfahrten verwendet werden kann" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4919 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5065 msgid "The number of occupied seats when the vehicle is inserted" msgstr "Die Anzahl der belegten Sitzplätze beim Einsetzen des Fahrzeugs" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4925 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5071 msgid "The number of occupied container places when the vehicle is inserted" msgstr "Die Anzahl der belegten Containerplätze beim Einsetzen des Fahrzeugs" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4931 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5077 msgid "" "The lateral position on the departure lane at which the vehicle shall enter " "the net" @@ -7263,51 +7429,51 @@ "Die seitliche Position auf dem Abfahrtsfahrstreifen, an der das Fahrzeug in " "das Netz einfahren soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4937 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5083 msgid "" "The lateral position on the arrival lane at which the vehicle shall arrive" msgstr "" "Die seitliche Position auf dem Ankunftsfahrstreifen, an dem das Fahrzeug das " "Netz verlassen soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4943 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5089 msgid "Insertion checks" msgstr "Einfügungsprüfungen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4956 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5102 msgid "First flow departure time" msgstr "Abfahrtszeit des ersten Flusses" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4968 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4989 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5114 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5135 msgid "probability for emitting a flow each second" msgstr "Wahrscheinlichkeit für das Aussenden eines Fahrzeugs pro Sekunde" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4969 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5115 msgid "(not together with vehsPerHour or period)" msgstr "(nicht zusammen mit vehsPerHour oder period)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4975 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5121 msgid "Number of flows per hour, equally spaced" msgstr "Anzahl der Flüsse pro Stunde, gleichmäßig verteilt" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4976 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5122 msgid "(not together with period or probability or poisson)" msgstr "(nicht zusammen mit period, probability oder poisson)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4982 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5128 msgid "Insert equally spaced flows at that period" msgstr "In diesem Zeitraum gleichmäßig verteilte Flüsse einfügen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4983 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5129 msgid "(not together with vehsPerHour or probability or poisson)" msgstr "(nicht zusammen mit vehsPerHours, probabiliy oder poisson)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4990 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5136 msgid "(not together with vehsPerHour or period or poisson)" msgstr "(nicht zusammen mit vehsPerHours, period oder poisson)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4996 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5142 msgid "" "Insert flow expected vehicles per second with poisson distributed insertion " "rate" @@ -7315,19 +7481,19 @@ "Einfügen von erwarteten Fahrzeugen pro Sekunde mit Poisson-verteilter " "Einfügungsrate" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4997 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5143 msgid "(not together with period or vehsPerHour or probability)" msgstr "(nicht zusammen mit period, vehsPerHours oder probability)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5156 msgid "The acceleration ability of vehicles of this type [m/s^2]" msgstr "Das Beschleunigungsvermögen von Fahrzeugen dieses Typs [m/s^2]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5016 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5162 msgid "The deceleration ability of vehicles of this type [m/s^2]" msgstr "Das Verzögerungsvermögen von Fahrzeugen dieses Typs [m/s^2]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5022 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5168 msgid "" "The apparent deceleration of the vehicle as used by the standard model [m/" "s^2]" @@ -7335,72 +7501,72 @@ "Die vom Standardmodell verwendete scheinbare Verzögerung des Fahrzeugs [m/" "s^2]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5174 msgid "The maximal physically possible deceleration for the vehicle [m/s^2]" msgstr "Die maximal physikalisch mögliche Verzögerung für das Fahrzeug [m/s^2]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5034 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5041 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5180 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5187 msgid "Car-following model parameter" msgstr "Fahrzeugfolgemodellparameter" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5047 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5193 msgid "SKRAUSSX parameter 1" msgstr "SKRAUSSX-Parameter 1" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5052 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5198 msgid "SKRAUSSX parameter 2" msgstr "SKRAUSSX-Parameter 2" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5057 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5203 msgid "SKRAUSSX parameter 3" msgstr "SKRAUSSX-Parameter 3" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5062 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5208 msgid "SKRAUSSX parameter 4" msgstr "SKRAUSSX-Parameter 4" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5213 msgid "SKRAUSSX parameter 5" msgstr "SKRAUSSX-Parameter 5" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5072 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5218 msgid "EIDM Look ahead / preview parameter [s]" msgstr "EIDM-Vorausschau-/Vorschauparameter [s]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5078 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5224 msgid "EIDM AP Reaction Time parameter [s]" msgstr "EIDM-AP-Reaktionszeitparameter [s]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5084 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5230 msgid "EIDM Wiener Process parameter for the Driving Error [s]" msgstr "EIDM-Wiener-Prozessparameter für den Fahrfehler [s]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5090 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5236 msgid "EIDM Wiener Process parameter for the Estimation Error [s]" msgstr "Parameter des EIDM-Wiener-Prozesses für den Schätzfehler [s]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5096 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5242 msgid "EIDM Coolness parameter of the Enhanced IDM [-]" msgstr "EIDM-Gleichgültigkeitsparameter [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5103 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5249 msgid "EIDM leader speed estimation error parameter [-]" msgstr "EIDM-Schätzfehlerparameter für Geschwindigkeit des Vorderfahrzeugs [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5109 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5255 msgid "EIDM gap estimation error parameter [-]" msgstr "EIDM-Lückenschätzfehlerparameter [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5115 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5261 msgid "EIDM driving error parameter [-]" msgstr "EIDM-Fahrfehlerparameter [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5121 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5267 msgid "EIDM maximal jerk parameter [m/s^3]" msgstr "Maximaler EIDM-Ruckparameter [m/s^3]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5273 msgid "" "EIDM maximal negative acceleration between two Action Points (threshold) [m/" "s^2]" @@ -7408,22 +7574,22 @@ "EIDM maximale negative Beschleunigung zwischen zwei Aktionspunkten " "(Schwellenwert) [m/s^2]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5133 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5279 msgid "" "EIDM Time parameter until vehicle reaches amax after startup/driveoff [s]" msgstr "" "EIDM Zeitparameter – Zeit bis zum Erreichen der Maximalbeschleunigung nach " "Anfahren/Abfahren [s]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5139 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5285 msgid "EIDM Flatness parameter of startup/driveoff curve [-]" msgstr "EIDM-Ebenheitsparameter der Anfahr-/Abfahrkurve [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5145 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5291 msgid "EIDM Shift parameter of startup/driveoff curve [-]" msgstr "EIDM-Verschiebungsparameter der Anfahr-/Abfahrkurve [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5151 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5297 msgid "" "EIDM parameter if model shall include vehicle dynamics into the acceleration " "calculation [0/1]" @@ -7431,7 +7597,7 @@ "EIDM-Parameter, wenn das Modell die Fahrdynamik in die " "Beschleunigungsberechnung einbeziehen soll [0/1]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5157 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5303 msgid "" "EIDM parameter how many vehicles are taken into the preview calculation of " "the driver (at least always 1!) [-]" @@ -7439,58 +7605,58 @@ "EIDM-Parameter wie viele Fahrzeuge in die Vorschauberechnung des Fahrers " "aufgenommen werden (mindestens immer 1!) [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5163 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5169 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5309 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5315 msgid "Peter Wagner 2009 parameter" msgstr "Peter Wagner 2009 Parameter" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5175 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5181 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5321 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5327 msgid "IDMM parameter" msgstr "IDMM Parameter" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5187 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5193 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5199 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5205 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5211 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5217 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5223 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5229 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5235 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5333 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5339 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5345 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5351 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5363 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5381 msgid "W99 parameter" msgstr "W99 Parameter" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5241 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5246 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5387 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5392 msgid "Wiedemann parameter" msgstr "Wiedemann Parameter" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5251 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5397 msgid "MinGap factor parameter" msgstr "minimaler Lücken-Faktor Parameter" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5256 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5402 msgid "K parameter" msgstr "K Parameter" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5261 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5407 msgid "Kerner Phi parameter" msgstr "Kerner Phi Parameter" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5266 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5412 msgid "IDM Delta parameter" msgstr "IDM Delta Parameter" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5271 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5417 msgid "IDM Stepping parameter" msgstr "IDM Schrittparameter" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5276 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5422 msgid "Train Types" msgstr "Zugtypen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5289 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5435 msgid "" "Minimum distance to pedestrians that are walking towards the conflict point " "with the ego vehicle." @@ -7498,7 +7664,7 @@ "Mindestabstand zu Fußgängern, die auf den Konfliktpunkt mit dem Ego-Fahrzeug " "zulaufen." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5295 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5441 msgid "" "The accumulated waiting time after which a vehicle will drive onto an " "intersection even though this might cause jamming." @@ -7506,7 +7672,7 @@ "Die kumulierte Wartezeit, nach der ein Fahrzeug in eine Kreuzung einfährt, " "obwohl dies zu einem Stau führen könnte." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5301 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5447 msgid "" "This value causes vehicles to violate a yellow light if the duration of the " "yellow phase is lower than the given threshold." @@ -7514,7 +7680,7 @@ "Dieser Wert bewirkt, dass Fahrzeuge gegen eine gelbe Phase verstoßen, wenn " "die Dauer der Gelbphase kleiner als der vorgegebene Schwellenwert ist." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5453 msgid "" "This value causes vehicles to violate a red light if the duration of the red " "phase is lower than the given threshold." @@ -7522,7 +7688,7 @@ "Dieser Wert bewirkt, dass Fahrzeuge gegen eine rote Phase verstoßen, wenn " "die Dauer der Rotphase kleiner als der vorgegebene Schwellenwert ist." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5459 msgid "" "This value causes vehicles affected by jmDriveAfterRedTime to slow down when " "violating a red light." @@ -7530,7 +7696,7 @@ "Dieser Wert bewirkt, dass von jmDriveAfterRedTime betroffene Fahrzeuge beim " "Überfahren einer roten LSA langsamer werden." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5319 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5465 msgid "" "This value causes vehicles to ignore foe vehicles that have right-of-way " "with the given probability." @@ -7538,18 +7704,18 @@ "Dieser Wert bewirkt, dass Fahrzeuge mit der gegebenen Wahrscheinlichkeit " "vorrangige gegnerische Fahrzeuge ignorieren." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5325 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5471 msgid "This value is used in conjunction with jmIgnoreFoeProb." msgstr "Dieser Wert wird in Verbindung mit jmIgnoreFoeProb verwendet." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5326 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5472 msgid "" "Only vehicles with a speed below or equal to the given value may be ignored." msgstr "" "Nur Fahrzeuge mit einer Geschwindigkeit kleiner oder gleich dem angegebenen " "Wert dürfen ignoriert werden." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5332 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5478 msgid "" "This value configures driving imperfection (dawdling) while passing a minor " "link." @@ -7557,7 +7723,7 @@ "Dieser Wert konfiguriert Fahrfehler (Trödeln) auf einer nachrangigen " "Verbindung." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5338 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5484 msgid "" "This value defines the minimum time gap when passing ahead of a prioritized " "vehicle. " @@ -7565,11 +7731,11 @@ "Dieser Wert definiert den minimalen zeitlichen Abstand beim Vorbeifahren an " "einem priorisierten Fahrzeug. " -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5344 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5490 msgid "Willingess of drivers to impede vehicles with higher priority" msgstr "Bereitschaft der Fahrer, Fahrzeuge mit höheren Vorrang zu behindern" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5503 msgid "" "The eagerness for performing strategic lane changing. Higher values result " "in earlier lane-changing." @@ -7577,7 +7743,7 @@ "Die Bereitschaft, einen strategischen Fahrstreifenwechsel durchzuführen. " "Höhere Werte führen zu einem früheren Fahrstreifenwechsel." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5363 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5509 msgid "" "The willingness for performing cooperative lane changing. Lower values " "result in reduced cooperation." @@ -7585,7 +7751,7 @@ "Die Bereitschaft zum kooperativen Fahrstreifenwechsel. Niedrigere Werte " "führen zu einer verringerten Kooperation." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5515 msgid "" "The eagerness for performing lane changing to gain speed. Higher values " "result in more lane-changing." @@ -7593,7 +7759,7 @@ "Die Bereitschaft zum Fahrstreifenwechsel, um schneller fahren zu können. " "Höhere Werte führen zu mehr Fahrstreifenwechseln." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5521 msgid "" "The eagerness for following the obligation to keep right. Higher values " "result in earlier lane-changing." @@ -7601,14 +7767,14 @@ "Die Bereitschaft, dem Rechtsfahrgebot nachzukommen. Höhere Werte führen zu " "einem früheren Fahrstreifenwechsel." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5381 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5527 msgid "" "The eagerness for using the configured lateral alignment within the lane." msgstr "" "Die Bereitschaft, die konfigurierte Querausrichtung innerhalb des " "Fahrstreifen zu verwenden." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5382 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5528 msgid "" "Higher values result in increased willingness to sacrifice speed for " "alignment." @@ -7616,7 +7782,7 @@ "Höhere Werte führen zu einer erhöhten Bereitschaft, die Geschwindigkeit für " "die Ausrichtung zu opfern." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5388 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5534 msgid "" "The eagerness for overtaking through the opposite-direction lane. Higher " "values result in more lane-changing." @@ -7624,11 +7790,11 @@ "Bereitschaft zum Überholen auf dem Gegenfahrstreifen. Höhere Werte führen zu " "mehr Fahrstreifenwechseln." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5394 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5540 msgid "Willingness to encroach laterally on other drivers." msgstr "Bereitschaft, andere Fahrer seitlich zu behindern." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5400 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5546 msgid "" "Minimum lateral gap when encroaching laterally on other drives (alternative " "way to define lcPushy)" @@ -7636,17 +7802,17 @@ "Minimaler seitlicher Abstand beim Beeinträchigen anderer Fahrer (alternative " "Art, lcPushy zu definieren)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5406 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5552 msgid "Willingness to accept lower front and rear gaps on the target lane." msgstr "" "Bereitschaft, kürzere vordere und hintere Lücken auf dem Zielfahrstreifen zu " "akzeptieren." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5412 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5558 msgid "Dynamic factor for modifying lcAssertive and lcPushy." msgstr "Dynamischer Faktor, um lcAssertive und lcPushy zu modifizieren." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5418 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5564 msgid "" "Time to reach maximum impatience (of 1). Impatience grows whenever a lane-" "change manoeuvre is blocked." @@ -7654,11 +7820,11 @@ "Zeit bis zum Erreichen der maximalen Ungeduld (von 1). Die Ungeduld wächst, " "wenn ein Fahrstreifenwechselmanöver blockiert wird." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5424 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5570 msgid "Maximum lateral acceleration per second." msgstr "Maximale Querbeschleunigung pro Sekunde." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5430 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5576 msgid "" "Factor for configuring the strategic lookahead distance when a change to the " "left is necessary (relative to right lookahead)." @@ -7666,7 +7832,7 @@ "Faktor zur Konfiguration des strategischen Vorgriffs-Abstands, wenn ein " "Wechsel nach links erforderlich ist (relativ zum rechten Vorgriff)." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5436 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5582 msgid "" "Factor for configuring the threshold asymmetry when changing to the left or " "to the right for speed gain." @@ -7674,11 +7840,11 @@ "Faktor zur Konfiguration der Schwellwertasymmetrie beim Wechsel nach links " "oder rechts zur Geschwindigkeitserhöhung." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5442 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5588 msgid "Upper bound on lateral speed when standing." msgstr "Obergrenze der Quergeschwindigkeit im Stehen." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5594 msgid "" "Upper bound on lateral speed while moving computed as lcMaxSpeedLatStanding " "+ lcMaxSpeedLatFactor * getSpeed()" @@ -7686,27 +7852,27 @@ "Obergrenze der Quergeschwindigkeit während der Bewegung, berechnet als " "lcMaxSpeedLatStanding + lcMaxSpeedLatFactor * getSpeed()" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5454 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5600 msgid "" "Distance to an upcoming turn on the vehicles route, below which the alignment" msgstr "" "Entfernung zu einer bevorstehenden Abbiegevorgang auf der Fahrzeugroute, " "unter der die seitliche Position" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5455 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5601 msgid "should be dynamically adapted to match the turn direction." msgstr "sollte dynamisch an die Abbiegerichtung angepasst werden." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5461 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5607 msgid "The probability for violating rules gainst overtaking on the right." msgstr "Die Wahrscheinlichkeit für Regelverstöße steigt beim Rechtsüberholen." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5467 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5613 msgid "Time threshold for the willingness to change right." msgstr "" "Zeitschwelle für die Bereitschaft zum Wechsel auf den rechten Fahrstreifen." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5473 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5619 msgid "" "Speed difference factor for the eagerness of overtaking a neighbor vehicle " "before changing lanes (threshold = factor*speedlimit)." @@ -7715,36 +7881,36 @@ "Nachbarfahrzeugs vor dem Fahrstreifenwechsel (Schwelle = " "Faktor*Geschwindigkeitslimit)." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5495 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5641 msgid "The name of the person" msgstr "Der Name der Person" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5500 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5646 msgid "The id of the person type to use for this person" msgstr "Die ID des für diese Person zu verwendenden Personentyps" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5506 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5652 msgid "This person's color" msgstr "Die Farbe dieser Person" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5512 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5658 msgid "The position at which the person shall enter the net" msgstr "Die Position, an der die Person ins Netz gehen soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5525 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5671 msgid "The name of the container" msgstr "Der Name des Container" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5530 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5676 msgid "The id of the container type to use for this container" msgstr "" "Die ID des Containertyps, der für diesen Container verwendet werden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5536 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5682 msgid "This container's color" msgstr "Die Farbe dieses Container" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5562 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5708 msgid "" "If set to a non-negative time value, then the stop duration can be extended " "at most by the extension value in seconds" @@ -7752,32 +7918,32 @@ "Bei einem nicht negativen Zeitwert kann die Haltdauer maximal um den " "Verlängerungswert in Sekunden verlängert werden" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5568 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5714 msgid "Whether a person or container or bth may end the stop" msgstr "Ob eine Person oder ein Container oder beide den Halt beenden darf" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5721 msgid "List of elements that must board the vehicle before it may continue" msgstr "" "Liste der Elemente, die in das Fahrzeug einsteigen müssen, bevor es " "weiterfahren kann" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5580 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5726 msgid "List of elements that can board the vehicle before it may continue" msgstr "" "Liste der Elemente, die in das Fahrzeug einsteigen können, bevor es " "weiterfahren darf" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5585 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5731 msgid "Whether the vehicle stops on the road or beside" msgstr "Ob das Fahrzeug auf der Straße oder daneben anhält" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5592 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5738 msgid "Activity displayed for stopped person in GUI and output files" msgstr "" "für angehaltene Person in der GUI und Ausgabedateien angezeigte Aktivität" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5597 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5743 msgid "" "Parameter to be applied to the vehicle to track the trip id within a " "cyclical public transport route" @@ -7785,7 +7951,7 @@ "Parameter, der auf das Fahrzeug anzuwenden ist, um die Fahrt-ID innerhalb " "einer zyklischen ÖPNV-Route zu verfolgen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5602 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5748 msgid "" "New line attribute to be set on the vehicle when reaching this stop (for " "cyclical public transport route)" @@ -7793,86 +7959,86 @@ "Neues Linienattribut, das beim Erreichen dieser Haltestelle am Fahrzeug " "gesetzt werden soll (für zyklische ÖPNV-Route)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5608 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5754 msgid "Speed to be kept while driving between startPos and endPos" msgstr "" "Einzuhaltende Geschwindigkeit während der Fahrt zwischen der Start-und " "Endposition" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5614 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5760 msgid "" "Whether the stop may be skipped if no passengers wants to embark or disembark" msgstr "" "Ob die Haltestelle übersprungen werden darf, wenn kein Fahrgast ein- oder " "aussteigen möchte" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5621 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5767 msgid "" "transfer time if there shall be a jump from this stop to the next route edge" msgstr "" "Umsteigezeit, wenn von dieser Haltestelle zur nächsten Streckenkante " "gesprungen werden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5789 msgid "Data set ID" msgstr "Datensatz-ID" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5659 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5805 msgid "Interval ID" msgstr "Intervall-ID" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5665 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5811 msgid "Data interval begin time" msgstr "Anfangszeit Datenintervall" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5671 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5817 msgid "Data interval end time" msgstr "Endzeit Datenintervall" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5687 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5833 msgid "edge ID" msgstr "Kanten-ID" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5701 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5847 msgid "The ID of the edge the edgeRel starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5706 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5852 msgid "The ID of the edge the edgeRel ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5720 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5866 msgid "The name of the TAZ the TAZRel starts at" msgstr "" "Der Name der Verkehrsumlegungszone, an der die Quelle-Ziel-Beziehung startet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5725 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5871 msgid "The name of the TAZ the TAZRel ends at" msgstr "" "Der Name der Verkehrsumlegungszone, an der die Quelle-Ziel-Beziehung endet" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5760 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5906 msgid "The id of this set of measurements" msgstr "Die ID dieses Messungssatzes" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5765 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5911 msgid "The path to the output file. The path may be relative" msgstr "Der Pfad zur Ausgabedatei. Der Pfad kann relativ sein" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5775 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5921 msgid "" "The time to start writing. If not given, the simulation's begin is used." msgstr "" "Die Zeit, um mit dem Schreiben zu beginnen. Wenn nicht angegeben, wird der " "Beginn der Simulation verwendet." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5780 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5926 msgid "The time to end writing. If not given the simulation's end is used." msgstr "" "Die Zeit, um das Schreiben zu beenden. Wenn nicht angegeben, wird das Ende " "der Simulation verwendet." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5785 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5931 msgid "" "If set to true, edges/lanes which were not use by a vehicle during this " "period will not be written" @@ -7880,37 +8046,39 @@ "Wenn auf \"true\" gesetzt, werden Kanten/Fahrstreifen, die während dieser " "Zeit nicht von einem Fahrzeug benutzt wurden, nicht geschrieben" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5792 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5938 msgid "If set, junction internal edges/lanes will be written as well" msgstr "" "Wenn gesetzt, werden auch die inneren Kanten/Fahrstreifen des Knotenpunkts " "geschrieben" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5798 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5944 msgid "" "The maximum travel time in seconds to write if only very small movements " "occur" msgstr "" +"Die größste Reisezeit in Sekunden, welche bei sehr kleinen Bewegungen " +"geschrieben werden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5804 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5950 msgid "" "Consider an edge/lane unused if it has at most this many sampled seconds" msgstr "" "Betrachtet eine(n) Kante/Fahrstreifen als unbenutzt, wenn sie höchstens so " "viele abgetastete Sekunden hat" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5810 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5956 msgid "The maximum speed to consider a vehicle halting;" msgstr "" "Die Höchstgeschwindigkeit, mit der ein anhaltendes Fahrzeug berücksichtigt " "wird;" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5816 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5962 msgid "space separated list of vehicle type ids to consider" msgstr "" "durch Leerzeichen getrennte Liste der zu berücksichtigenden Fahrzeugtyp-IDs" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5821 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5967 msgid "" "whether aggregation should be performed over all vehicles that entered the " "edge/lane in the aggregation interval" @@ -7918,7 +8086,7 @@ "ob die Aggregation über alle Fahrzeuge durchgeführt werden soll, die im " "Aggregationsintervall in die Kante bzw. den Fahrstreifen eingefahren sind" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5827 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5973 msgid "" "Whether pedestrians shall be recorded instead of vehicles. Allowed value is " "walk" @@ -7926,20 +8094,20 @@ "Ob statt Fahrzeugen Fußgänger erfasst werden sollen. Zulässiger Wert ist der " "Fußweg" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5832 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5978 msgid "List of attribute names that shall be written" msgstr "Liste der Attributnamen, die geschrieben werden sollen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5837 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5983 msgid "Restrict output to the given list of edge ids" msgstr "Beschränkt die Ausgabe auf die angegebene Liste von Kanten-IDs" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5842 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5988 msgid "Restrict output to the given the list of edges given in file" msgstr "" "Beschränkt die Ausgabe auf die in der Datei angegebene Liste der Kanten" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5847 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5993 msgid "" "Whether the traffic statistic of all edges shall be aggregated into a single " "value" @@ -7947,18 +8115,18 @@ "Ob die Verkehrsstatistik aller Kanten zu einem einzigen Wert aggregiert " "werden soll" -#: /home/micha/programming/sumo/src/netedit/elements/GNEHierarchicalElement.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\GNEHierarchicalElement.cpp:421 msgid "Some child meanData were lost during sorting" msgstr "" "Einige meanData-Kindelemente sind während der Sortierung verloren gegangen" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:96 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:96 msgid "" "element must be at least networkElement, additional, TAZ, demandElement, " "dataElement or meanData" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:100 msgid "" "element can be only a networkElement, additional, demandElement, dataElement " "or meanData at the same time" @@ -7966,176 +8134,165 @@ "Element kann gleichzeitig nur ein Netzelement, weitere Daten, " "Nachfrageelement, Datenelement oder meanData sein" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:104 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:104 msgid "element can be only a shape, TAZ or wire element at the same time" msgstr "" "Element kann nur eine Shape, Verkehrsumlegungszone oder ein Oberleitungs-" "Element zur selben Zeit sein" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:108 -#, fuzzy +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:108 msgid "" "If attributes mask the start and end position, both attributes have to be " "defined" msgstr "" -"Wenn Attribute die Start- und Endposition belegen, müssen beide Attribute " +"Wenn Attribute die Start- und Endposition überlagern, müssen beide Attribute " "definiert werden" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:134 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:134 msgid "Attributes aren't combinables" msgstr "Attribute sind nicht kombinierbar" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:136 msgid "allow need a disallow attribute in the same tag" msgstr "Erlaubnis benötigt ein nicht erlaubtes Attribut in der selben Tag" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:138 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:138 msgid "disallow need an allow attribute in the same tag" msgstr "nicht zugelassen benötigt ein zugelassen-Attribut im selben Tag" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:152 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:152 #, c-format msgid "attribute '%' doesn't have a default value" msgstr "Attribut '%' hat keinen Standardwert" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:158 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:158 #, c-format msgid "Attribute '%' not defined" msgstr "Attribut '%' ist nicht definiert" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:165 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:165 #, c-format msgid "Maximum number of attributes for tag % exceeded" msgstr "Maximale Anzahl von Attributen für die Tag % überschritten" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:170 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:170 #, c-format msgid "Attribute '%' already inserted" msgstr "Attribut '%' bereits eingefügt" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:207 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:207 #, c-format msgid "Attribute '%' doesn't exist" msgstr "Attribut '%' existiert nicht" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAccess.cpp:173 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEEntryExitDetector.cpp:97 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEInductionLoopDetector.cpp:115 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEInstantInductionLoopDetector.cpp:111 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:174 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:190 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:197 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:136 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:143 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:201 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:132 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:137 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAccess.cpp:173 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEEntryExitDetector.cpp:97 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEInductionLoopDetector.cpp:115 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEInstantInductionLoopDetector.cpp:111 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:174 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:190 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:197 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:143 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:201 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:132 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:137 msgid " > lanes's length" msgstr " > Fahrstreifenlänge" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:148 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:149 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:146 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:128 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:129 -msgid "Copy " -msgstr "Kopieren " - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:148 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:146 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:128 -msgid " name to clipboard" -msgstr " Name in Zwischenablage" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:149 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:129 -msgid " typed name to clipboard" -msgstr " Name mit Typangabe in Zwischenablage" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZSourceSink.cpp:146 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:128 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:129 +#, c-format +msgid "Copy % name to clipboard" +msgstr "%-Name in Zwischenablage" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:148 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZSourceSink.cpp:147 +msgid "Copy % typed name to clipboard" +msgstr "Namen mit Typenangabe in die Zwischenablage kopieren" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:156 msgid "Open " msgstr "Öffnen " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:156 msgid " Dialog" msgstr " Dialog" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:164 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:174 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:164 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:174 msgid "Cursor position over additional shape: " msgstr "Zeigerposition über zusätzliche Shape: " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:168 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:168 msgid "Cursor position over lane: " msgstr "Zeigerposition über Fahrstreifen: " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:178 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:178 msgid "Mouse position over edge: " msgstr "Mausposition über Kante: " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:181 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:139 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:181 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:139 msgid "Cursor position in view: " msgstr "Zeigerposition in Ansicht: " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:398 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:398 msgid "Invalid number of edges" msgstr "Ungültige Anzahl von Kanten" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:104 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:104 msgid "add bus stop '" msgstr "Bus-Haltepunkt hinzufügen '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:148 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:148 msgid "add train stop '" msgstr "Bahn-Haltepunkt hinzufügen '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:186 -#, fuzzy +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:186 msgid "" "Could not build access in netedit; busStop parent already owns an access in " "the edge '" msgstr "" -"Konnte Zugriff in netedit nicht erstellen; Bus-Haltepunkt besitzt bereit " -"einen Zugriff in der Kante '" +"Konnte Zugang in netedit nicht erstellen; Bus-Haltepunkt besitzt bereit " +"einen Zugang von der Kante '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:188 -msgid "Could not build access in netedit; The lane '" -msgstr "Konnte einen Zugriff in netedit nicht erstellen; Der Fahrstreifen '" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:188 -msgid "' doesn't support pedestrians" -msgstr "' unterstützt keine Fußgänger" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:188 +#, c-format +msgid "" +"Could not build access in netedit; The lane '%' doesn't support pedestrians" +msgstr "" +"Konnte den Zuweg in netedit nicht erstellen; Der Fahrstreifen lässt keine " +"Fußgänger zu" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:194 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:194 msgid "add access in '" msgstr "Zugriff hinzufügen in '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:235 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:235 msgid "add container stop '" msgstr "Container-Haltepunkt hinzufügen '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:279 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:279 msgid "add charging station '" msgstr "Ladestation hinzufügen '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:322 -msgid "Could not build parking area with ID '" -msgstr "Konnte den Parkplatz mit der ID ' nicht erstellen" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:322 -msgid "' in netedit; Invalid departPos over lane." -msgstr "' in netedit; Ungültige Ankunftsposition über Fahrstreifen." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:323 +#, c-format +msgid "" +"Could not build parking area with ID '%' in netedit; Invalid departPos over " +"lane." +msgstr "" +"Konnte in netedit keinen Parkplatz mit der ID '%' erstellen; Ungültige " +"Ausfahrtsposition auf dem Fahrstreifen." -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:330 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:331 msgid "add parking area '" msgstr "Parkplatz hinzufügen '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:352 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:353 msgid "" "Could not build parking space in netedit; attribute width cannot be parse to " "float." @@ -8143,7 +8300,7 @@ "Konnte keinen Parkbereich in netedit erstellen; Attribut breite kann nicht " "in einen float eingelesen werden." -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:354 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:355 msgid "" "Could not build parking space in netedit; attribute length cannot be parse " "to float." @@ -8151,7 +8308,7 @@ "Konnte keinen Parkbereich in netedit erstellen; Attribut Länge kann nicht in " "einen float eingelesen werden." -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:356 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:357 msgid "" "Could not build parking space in netedit; attribute angle cannot be parse to " "float." @@ -8159,1336 +8316,1502 @@ "Konnte keinen Parkraum in netedit erstellen; Attribut angle kann nicht als " "Fließkommazahl eingelesen werden." -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:377 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:378 msgid "add parking space in '" msgstr "Parkbereich in ' hinzufügen" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:422 msgid "add induction loop '" msgstr "Induktionsschleife hinzufügen '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:461 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:519 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:528 -msgid "Could not build lane area detector with ID '" -msgstr "Konnte keinen Fahrstreifen-Bereichsdetektor mit der ID ' erstellen" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:461 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:528 -msgid "' in netedit; invalid traffic light ID." -msgstr "' in netedit; ungültige LSA ID." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:462 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:529 +#, c-format +msgid "" +"Could not build lane area detector with ID '%' in netedit; invalid traffic " +"light ID." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:486 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:547 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:487 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:548 msgid "add lane area detector '" msgstr "Fahrstreifen-Bereichsdetektor hinzufügen '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:519 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1543 -msgid "' in netedit; Lanes aren't consecutives." -msgstr "' in netedit; Fahrstreifen sind nicht aufeinanderfolgend." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:520 +#, c-format +msgid "" +"Could not build lane area detector with ID '%' in netedit; Lanes aren't " +"consecutives." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:592 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:593 msgid "add entry-exit detector '" msgstr "Eingangs-Ausgangs-Detektor hinzufügen '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:627 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:628 #, fuzzy msgid "add entry detector in '" msgstr "Eintrittsdetektor in ' hinzufügen" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:662 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:663 msgid "add exit detector in '" msgstr "Ausgangsdetektor hinzufügen in '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:699 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:700 #, fuzzy msgid "add instant induction loop '" msgstr "Induktionsschleife sofort hinzufügen '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:749 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:750 msgid "add lane calibrator '" msgstr "Fahrstreifen-Kalibrator hinzufügen '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:803 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:804 msgid "add calibrator '" msgstr "Kalibrator hinzufügen '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:844 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:845 msgid "add calibrator flow in '" msgstr "Kalibrator-Fluss in ' hinzufügen" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:900 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:901 msgid "add rerouter '" msgstr "Rerouter hinzufügen '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:939 -msgid "Could not build interval with ID '" -msgstr "Konnte kein Intervall mit der ID ' erstellen" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:939 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1244 -msgid "' in netedit; begin is greather than end." -msgstr "' in netedit; Beginn ist größer als das Ende." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:940 +#, c-format +msgid "" +"Could not build interval with ID '%' in netedit; begin is greather than end." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:947 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:948 msgid "add rerouter interval in '" msgstr "Rerouter-Indervall hinzufügen in '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "Could not build interval with begin '" -msgstr "Konnte kein Intervall mit Beginn ' erstellen" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "' in '" -msgstr "' in '" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "' due overlapping." -msgstr "' wegen Überlappung." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:957 +#, c-format +msgid "" +"Could not build interval with begin '%' and end '%' in '%' due overlapping." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:978 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:979 #, fuzzy msgid "add closing lane reroute in '" msgstr "Geschlossene Fahrstreifenumleitung hinzufügen in '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1006 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1007 msgid "add closing reroute in '" msgstr "Geschlossene Umleitung hinzufügen in '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1033 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1034 #, fuzzy msgid "add dest prob reroute in '" msgstr "Zielwahrscheinlichkeit Umleitung hinzufügen in '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1061 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1062 msgid "add parking area reroute in '" msgstr "Parkplatz-Umleitung hinzufügen in '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1089 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1090 #, fuzzy msgid "add route prob reroute in '" msgstr "Routenwahrscheinlichkeit Umleitung hinzufügen in '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1126 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1127 msgid "add route probe '" msgstr "Routenwahrscheinlichkeit hinzufügen '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1172 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1173 msgid "add Variable Speed Sign '" msgstr "Dynamische Geschwindigkeitsanzeige hinzufügen '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1213 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1214 msgid "add VSS Step in '" msgstr "VSS-Schritt hinzufügen in '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1244 -msgid "Could not build Vaporizer with ID '" -msgstr "Konnte keinen Vaporizer mit der ID ' erstellen" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1245 +#, c-format +msgid "" +"Could not build Vaporizer with ID '%' in netedit; begin is greather than end." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1250 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1251 msgid "add vaporizer in '" msgstr "Vaporizer hinzufügen in '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1305 -msgid "Could not build TAZ with ID '" -msgstr "Konnte keine Verkehrsumlegungszone mit der ID ' erstellen" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1305 -msgid "' in netedit; Invalid Shape." -msgstr "' in netedit; Ungültige Shape." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1306 +#, c-format +msgid "Could not build TAZ with ID '%' in netedit; Invalid Shape." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1316 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1317 msgid "add TAZ '" msgstr "Verkehrsumlegungszone hinzufügen '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1377 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1471 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1378 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1472 msgid "add TAZ Sink in '" msgstr "Verkehrsumlegungszonen-Ziel hinzufügen in '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1400 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1449 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1401 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1450 msgid "add TAZ Source in '" msgstr "Verkehrsumlegungszonen-Quelle hinzufügen in '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1411 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1412 msgid "update TAZ Source in '" msgstr "Verkehrsumlegungszonen-Quelle aktualisieren in '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1482 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1483 msgid "update TAZ Sink in '" msgstr "Verkehrsumlegungszonen-Ziel aktualisieren in '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1511 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1512 #, fuzzy msgid "add taction substation '" msgstr "Transport-Unterstation hinzufügen '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1543 -msgid "Could not build overhead wire with ID '" -msgstr "Konnte keine Oberleitung mit der ID ' erstellen" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1544 +#, c-format +msgid "" +"Could not build overhead wire with ID '%' in netedit; Lanes aren't " +"consecutives." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1555 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1556 msgid "add overhead wire '" msgstr "Oberleitung hinzufügen '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1604 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1605 msgid "add polygon '" msgstr "Polygon hinzufügen '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1637 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1680 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1719 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1638 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1681 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1720 msgid "add POI '" msgstr "Pol hinzufügen '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1711 -msgid "Could not build POI with ID '" -msgstr "Konnte keinen Pol mit der ID ' erstellen" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1712 +#, c-format +msgid "Could not build POI with ID '%' in netedit" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1711 -#, fuzzy -msgid "' in netedit; Network requires a geo projection." -msgstr "' in netedit; Netz benötigt eine Geoprojektion." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1712 +msgid "Network requires a geo projection." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1925 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:116 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -msgid "Could not build " -msgstr "Konnte nicht erstellen " - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -msgid " with ID '" -msgstr " mit der ID '" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -msgid "' in netedit; ID contains invalid characters." -msgstr "' in netedit; ID enthält ungültige Zeichen." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1908 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1914 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1920 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1932 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1938 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1944 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1950 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:245 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:257 +msgid "Could not build % with ID '%' in netedit" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1908 +msgid "ID contains invalid characters." +msgstr "Die ID enthält ungültige Zeichen." + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1914 +msgid "Invalid position over lane." +msgstr "Ungültige Position auf dem Fahrstreifen." + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1920 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:245 +msgid "Declared twice." +msgstr "Doppelt deklariert." + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1926 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2005 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2023 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:251 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:116 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:132 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2198 +#, c-format +msgid "Could not build % in netedit" +msgstr "Konnte % nicht in netedit erstellen" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -#, fuzzy -msgid "' in netedit; Invalid position over lane." -msgstr "' in netedit; Ungültige Position über den Fahrstreifen." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1926 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2005 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2023 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:251 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:257 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2198 +#, c-format +msgid "% doesn't exist." +msgstr "% existiert nicht." -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -msgid "' in netedit; declared twice." -msgstr "' in netedit: zweimal deklariert." - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1925 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -msgid " doesn't exist." -msgstr " existiert nicht." - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -msgid "' in netedit; attribute " -msgstr "' in netedit; Attribut " - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -msgid " cannot be negative." -msgstr " kann nicht negativ sein." - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -msgid "' in netedit; list of VTypes isn't valid." -msgstr "' in netedit; Liste von den Fahrzeugtypen ist nicht gültig." - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -msgid "' in netedit; filename is invalid." -msgstr "' in netedit; Dateiname ist ungültig." - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -msgid "' in netedit; list of lanes isn't valid." -msgstr "' in netedit; Liste von den Fahrstreifen ist nicht gültig." - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -msgid " in netedit; " -msgstr " in netedit; " +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1932 +#, c-format +msgid "Attribute % cannot be negative." +msgstr "Attribut % kann keinen negativen Wert annehmen." + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1938 +msgid "List of VTypes isn't valid." +msgstr "Die Liste der Fahrzeugtypen ist ungültig." + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1944 +msgid "Filename is invalid." +msgstr "Der Dateiname ist ungültig." + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1950 +msgid "List of lanes isn't valid." +msgstr "Die Fahrstreifenliste ist ungültig." -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:194 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:194 msgid "Both edges and lanes aren't defined" msgstr "Beide Kanten und Fahrstreifen sind nicht definiert" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:238 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:480 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:238 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:480 #, fuzzy msgid "Both myEdge and myLane aren't defined" msgstr "Beide my-Kante und my-Fahrstreifen sind nicht definiert" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibratorFlow.cpp:94 -msgid "calibratorFlow of calibrator '" -msgstr "Kalibratorfluss von Kalibrator '" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibratorFlow.cpp:95 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibratorFlow.cpp:94 +#, c-format msgid "" -"' cannot be written. Either type or vehsPerHour or speed must be enabled" +"calibratorFlow of calibrator '%' cannot be written. Either type or " +"vehsPerHour or speed must be enabled" msgstr "" -"' kann nicht geschrieben werden. Entweder der Typ, Fahrzeuge pro Stunde oder " -"die Geschwindigkeit muss aktiviert sein" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:179 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:125 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:179 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:125 msgid "lanes aren't consecutives" msgstr "Fahrstreifen sind nicht aufeinanderfolgend" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:183 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:129 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:183 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:129 msgid "lanes aren't connected" msgstr "Fahrstreifen sind nicht verbunden" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:202 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:141 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:202 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:141 msgid " and " msgstr " und " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:115 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:115 msgid "' needs at least one entry and one exit" msgstr "' benötigt mindestens einen Eintritt oder einen Austritt" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:317 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:317 msgid "An entry-exit detector needs at least one entry detector" msgstr "" "Ein Eingangs-/Ausgangsdetektor benötigt mindestens einen Eingangsdetektor" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:320 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:320 msgid "An entry-exit detector needs at least one exit detector" msgstr "" "Ein Eingangs-/Ausgangsdetektor benötigt mindestens einen Ausgangsdetektor" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:319 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:319 msgid "Release from lane" msgstr "Freigabe vom Fahrstreifen" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:323 -#, fuzzy +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:323 msgid "Attach to nearest lane" msgstr "Zum nächsten Fahrstreifen zuteilen" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:214 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:214 msgid "Simplify Shape" msgstr "Shape vereinfachen" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:214 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:214 msgid "Replace current shape with a rectangle" msgstr "Aktuelle Shape durch ein Rechteck ersetzen" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:220 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:220 msgid "Open shape" msgstr "Shape öffnen" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:220 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:220 msgid "Open polygon's shape" msgstr "Polygon-Shape öffnen" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:222 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:65 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:222 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:66 msgid "Close shape" msgstr "Shape schließen" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:222 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:222 msgid "Close polygon's shape" msgstr "Polygon-Shape schließen" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:224 -#, fuzzy +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:224 msgid "Select elements within polygon" msgstr "Elemente in einem Polygon auswählen" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:224 -#, fuzzy +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:224 msgid "Select elements within polygon boundary" -msgstr "Elemente in einer Polygongrenze auswählen" +msgstr "Elemente innerhalb einer Polygongrenze auswählen" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:234 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:234 msgid "Remove geometry point" msgstr "Geometriepunkt entfernen" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:234 -#, fuzzy +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:234 msgid "Remove geometry point under mouse" msgstr "Geometriepunkt unter der Maus entfernen" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:235 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:235 msgid "Set first geometry point" msgstr "Ersten Geometriepunkt setzen" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:447 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:447 msgid "Number of remaining points insufficient" msgstr "Anzahl der verbleibenden Punkte unzureichend" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:474 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:474 msgid "Polygon already opened" msgstr "Polygon bereits geöffnet" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:495 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:495 msgid "Polygon already closed" msgstr "Polygon bereits geschlossen" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:506 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:506 msgid "Selected point must be different of the first point" msgstr "Der ausgewählte Punkt muss sich vom ersten Punkt unterscheiden" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:571 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:571 msgid "Polygon already simplified" msgstr "Polygon bereits vereinfacht" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZ.cpp:282 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZ.cpp:282 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:715 msgid "Set custom Geometry Point" msgstr "Benutzerdefinierten Geometriepunkt setzen" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:62 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:62 msgid "add data set" msgstr "Datensatz hinzufügen" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:87 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:87 msgid "add data set and data interval" msgstr "Datensatz und Datenintervall hinzufügen" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:102 msgid "add data interval" msgstr "Datenintervall hinzufügen" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:128 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:165 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:130 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:167 msgid "add edge rel" msgstr "Kantenrelation hinzufügen" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:205 -msgid "There is already a TAZ rel defined between '" -msgstr "Es ist bereits ein Verkehrsumlegungszonenrelation definiert zwischen '" - -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:207 -msgid "There is already a TAZ rel defined in '" -msgstr "Es ist bereits ein Verkehrsumlegungszonenrelation definiert in '" +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:207 +msgid "There is already a TAZ rel defined between '%' and '%'." +msgstr "" +"Es wurde bereits eine Quelle-Ziel-Beziehung zwischen '%' und '%' definiert." + +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:209 +msgid "There is already a TAZ rel defined in '%'." +msgstr "Es wurde bereits eine Quelle-Ziel-Beziehung in '%' definiert." -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:211 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:222 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:213 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:224 #, fuzzy msgid "add TAZ rel" msgstr "Verkehrsumlegungszonen-Beziehung hinzufügen" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1511 -msgid "' doesn't exist." -msgstr "' existiert nicht." - -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataInterval.cpp:173 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataInterval.cpp:173 msgid "GenericData was already inserted" msgstr "GenericData wurde bereits eingefügt" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataInterval.cpp:199 -#, fuzzy +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataInterval.cpp:199 msgid "GenericData wasn't previously inserted" msgstr "GenericData wurde zuvor nicht eingefügt" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:214 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:214 msgid "DataInterval was already inserted" msgstr "Datenintervall wurde bereits eingefügt" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:231 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:255 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:231 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:255 msgid "DataInterval wasn't previously inserted" msgstr "Datenintervall wurde zuvor nicht eingefügt" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:316 -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdgeType.cpp:155 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:136 +msgid "Open % Dialog" +msgstr "%-Dialog öffnen" + +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:316 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdgeType.cpp:155 msgid "Invalid index" msgstr "Ungültiger Index" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:64 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:64 msgid "Could not build meanDataEdge; " msgstr "Konnte keine meanData-Kante erstellen; " -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:64 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:93 -msgid " already exists" -msgstr "" +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:64 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:93 +#, c-format +msgid "% already exists" +msgstr "% existiert bereits" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:70 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:70 msgid "add meanDataEdge" msgstr "meanData-Kante hinzufügen" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:93 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:93 msgid "Could not build meanDataLane; " msgstr "Konnte keinen meanData-Fahrstreifen erstellen; " -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:99 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:99 msgid "add meanDataLane" msgstr "meanData-Fahrstreifen hinzufügen" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:116 -msgid " in netedit; edge doesn't exist." -msgstr " in netedit; Kante existiert nicht." - -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -msgid " in netedit; attribute '" -msgstr " in netedit; Attribut '" +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:116 +msgid "Edge doesn't exist." +msgstr "Kante existiert nicht." + +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:132 +#, c-format +msgid "Attribute '%' doesn't exist." +msgstr "Attribut % existiert nicht." -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEPersonTrip.cpp:306 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEPersonTrip.cpp:317 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEPersonTrip.cpp:312 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEPersonTrip.cpp:323 msgid "This personTrip use junctions" msgstr "Diese Personenfahrt benutzt Knotenpunkte" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:71 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:100 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1499 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1523 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1535 -msgid "There is another " -msgstr "Es gibt einen anderen " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:71 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:100 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1499 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1523 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1535 -msgid " with the same ID='" -msgstr " mit der gleichen ID= '" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:76 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:126 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:161 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:206 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:258 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:299 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:345 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:389 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:436 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:480 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:516 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:547 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:593 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:609 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:625 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:677 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:694 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:709 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:725 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:741 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:778 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:794 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:827 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:858 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:893 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:909 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:949 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:966 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:982 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1107 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1122 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1142 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:71 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1608 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1632 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1644 +msgid "There is another % with the same ID='%'." +msgstr "Es gibt ein weiteres % mit der gleichen ID='%'." + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:76 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:126 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:152 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:197 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:250 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:291 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:337 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:381 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:428 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:472 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:508 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:539 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:591 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:607 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:623 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:639 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:697 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:714 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:729 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:745 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:761 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:777 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:820 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:836 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:852 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:885 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:916 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:951 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:967 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1007 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1024 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1040 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1189 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1209 msgid "add " msgstr "hinzufügen " -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:102 -msgid " need at least one " -msgstr " benötigt mindestens einen " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:108 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:118 -msgid " with id '" -msgstr " mit ID '" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:108 -msgid "' doesn't exist in " -msgstr "' existiert nicht in " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:115 -msgid "Invalid definition for " -msgstr "Ungültige Definition für " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:115 -msgid " in " -msgstr " in " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:118 -msgid "' cannot be created in " -msgstr "' kann nicht erstellt werden in " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:192 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:244 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:285 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:333 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:377 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:424 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:468 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:508 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:539 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:819 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:850 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:102 +msgid "% needs at least one %" +msgstr "% benötigt mindestens ein(e) weiter(s) %" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:108 +msgid "% with id '%' doesn't exist in % '%'" +msgstr "% mit der ID '%' existiert nicht in % '%'" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:115 +msgid "Invalid definition for % in % '%'" +msgstr "Ungültige Definition von % in % '%'" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:118 +msgid "% with id '%' cannot be created in % '%'" +msgstr "% mit der ID '%' kann nicht in % '%' erstellt werden" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:183 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:236 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:277 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:325 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:369 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:416 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:460 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:500 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:531 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:877 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:908 msgid "VType distributions currently unsupported in netedit" -msgstr "" +msgstr "VType-Verteilungen können derzeit nicht in netedit bearbeitet werden" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:194 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:246 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:335 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:379 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:426 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:470 -msgid "Invalid vehicle type '" -msgstr "Ungültiger Fahrzeugtyp '" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:194 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:246 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:290 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:335 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:379 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:426 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:470 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:510 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:541 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:821 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:852 -msgid "' used in " -msgstr "' genutzt in " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:197 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:199 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:251 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:253 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:338 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:340 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:382 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:384 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:429 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:431 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:473 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:475 -msgid " used in " -msgstr " verwendet in " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:238 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:279 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:327 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:371 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:418 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:462 +msgid "Invalid vehicle type '%' used in % '%'." +msgstr "Ungültiger Fahrzeugtyp '%' in % '%' verwendet." + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:188 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:243 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:284 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:330 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:374 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:465 +msgid "Invalid % used in % '%'. % is greater than number of lanes" +msgstr "" +"Ungültige(r) % in % '%' benutzt. % ist größer als die Anzahl der Fahrstreifen" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:190 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:245 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:286 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:332 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:376 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:423 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:467 +msgid "Invalid % used in % '%'. % is greater than vType %" +msgstr "Ungültige(r) % in % '%' benutzt. % ist größer als Fahrzeugtyp (vType) %" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:231 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:223 msgid "netedit doesn't support route distributions" msgstr "netedit unterstützt keine Routenverteilungen" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:290 -msgid "Invalid route '" -msgstr "Ungültige Route '" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:251 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:253 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:338 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:340 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:382 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:384 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:429 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:431 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:473 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:475 -msgid "Invalid " -msgstr "Ungültig " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -msgid " is greater than number of lanes" -msgstr " ist größer als die Anzahl von Fahrstreifen" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -msgid " is greater than vType" -msgstr " ist größer als der Fahrzeugtyp" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:510 -msgid "Invalid person type '" -msgstr "Ungültiger Personentyp '" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:541 -msgid "Invalid personFlow type '" -msgstr "Ungültiger Personenflusstyp '" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1039 -msgid "Containers don't support stops at busStops" -msgstr "Container unterstützen keine Haltepunkte an den Bushaltepunkten" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:241 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:282 +msgid "Invalid route '%' used in % '%'." +msgstr "Ungültige Route '%' in % '%' verwendet." + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:502 +msgid "Invalid person type '%' used in % '%'." +msgstr "Ungültiger Personentyp '%' in % '%' verwendet." + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:533 +msgid "Invalid personFlow type '%' used in % '%'." +msgstr "Ungültiger Personenflusstyp '%' in % '%' verwendet." + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:879 +msgid "Invalid container type '%' used in % '%'." +msgstr "Ungültiger Containertyp '%' in % '%' verwendet." + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:910 +msgid "Invalid containerFlow type '%' used in % '%'." +msgstr "Ungültiger Containerflusstyp '%' in % '%' verwendet." + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1102 +msgid "Containers don't support stops at busStops or trainStops" +msgstr "" +"Container können nicht an Bushaltestellen und Bahnhalten verladen werden" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1047 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1110 msgid "Persons don't support stops at containerStops" msgstr "Personen unterstützen keine Haltepunkte an den Containerhaltepunkten" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1055 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1118 msgid "Persons don't support stops at chargingStations" msgstr "Personen unterstützen keine Haltepunkte an den Ladestationen" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1058 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1121 msgid "Containers don't support stops at chargingStations" msgstr "Container unterstützen keine Haltepunkte an Ladestationen" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1066 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1129 msgid "Persons don't support stops at parkingAreas" msgstr "Personen unterstützen keine Haltepunkte an Parkplätzen" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1069 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1132 msgid "Containers don't support stops at parkingAreas" msgstr "Container unterstützen keine Haltepunkte an Parkplätzen" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1079 -#, fuzzy +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1142 msgid "vehicles don't support stops at edges" msgstr "Fahrzeuge unterstützen keine Haltepunkte an Kanten" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1092 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1155 msgid "A stop must be defined either over a stoppingPlace, a edge or a lane" msgstr "" "Ein Haltepunkt muss entweder über einem Halteplatz, einer Kante oder einem " "Fahrstreifen definiert werden" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1094 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1157 msgid "A stop requires only a stoppingPlace, edge or lane" msgstr "" "Ein Haltepunkt benötigt nur einen Halteplatz, eine Kante oder einen " "Fahrstreifen" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1214 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1282 msgid "A person trip from edge to edge needs two edges edge" msgstr "Eine Personenfahrt von Kante zu Kante benötigt zwei Kanten" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1224 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1292 msgid "A person trip from edge to busStop needs one edge and one busStop" msgstr "" -"Eine Personenfahrt von Kante zur einen Bushaltepunkt benötigt eine Kante und " -"einen Bushaltepunkt" +"Eine Personenfahrt von einer Kante zu einem Bushaltepunkt benötigt eine " +"Kante und einen Bushaltepunkt" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1234 -msgid "A person trip from junction to junction needs two junctions junction" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1302 +msgid "A person trip from edge to trainStop needs one edge and one trainStop" msgstr "" -"Eine Personenfahrt von Knotenpunkt zu Knotenpunkt benötigt zwei Knotenpunkte" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1245 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1404 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1425 -msgid "A ride from busStop to edge needs a busStop and an edge" -msgstr "" -"Eine Fahrt von Bushaltepunkt zur Kante benötigt einen Bushaltepunkt und eine " -"Kante" +"Eine Personenfahrt von einer Kante zu einem Bahnhaltepunkt benötigt eine " +"Kante und einen Bahnhaltepunkt" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1255 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1414 -msgid "A transport from busStop to busStop needs two busStops" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1312 +msgid "A person trip from junction to junction needs two junctions junction" msgstr "" -"Ein Transport von Bushaltepunkt zu Bushaltepunkt benötigt zwei Bushaltepunkte" +"Eine Personenfahrt von Knotenpunkt zu Knotenpunkt benötigt zwei Knotenpunkte" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1265 -msgid "A transport with edges attribute needs a list of edges" -msgstr "Ein Transport mit Kanten-Attributen benötigt eine Liste von Kanten" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1275 -msgid "A route transport needs a route" -msgstr "Ein Routentransport benötigt eine Route" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1323 +msgid "A walk to edge needs a busStop and an edge" +msgstr "Ein Fußweg zu einer Kante benötigt eine Bushaltestelle und eine Kante" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1333 +msgid "A walk to busStop needs two busStops" +msgstr "Ein Fußweg zu einer Bushaltestelle benötigt zwei Bushaltestellen" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1343 +msgid "A walk to trainStop needs two trainStops" +msgstr "Ein Fußweg zu einem Bahnhalt benötigt zwei Bahnhalte" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1353 +msgid "A walk with edges needs a list of edges" +msgstr "Ein Fußweg über Kanten benötigt eine Liste ebendieser" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1363 +msgid "A route walk needs a route" +msgstr "Zu einem Fußweg entlang einer Route muss ebendiese angegeben sein" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1285 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1373 msgid "A ride from busStop to junction needs a busStop and an junction" msgstr "" -"Eine Fahrt von Bushaltepunkt zum Knotenpunkt benötigt einen Bushaltepunkt " -"und einen Knotenpunkt" +"Eine Fahrt von einem Bushaltepunkt zu einem Knotenpunkt benötigt einen " +"Bushaltepunkt und einen Knotenpunkt" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1296 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1384 msgid "A ride from edge to edge needs two edges edge" msgstr "Eine Fahrt von Kante zu Kante benötigt zwei Kanten" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1306 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1394 msgid "A ride from edge to busStop needs one edge and one busStop" msgstr "" "Eine Fahrt von Kante zum Bushaltepunkt benötigt eine Kante und einen " "Bushaltepunkt" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1320 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1459 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1404 +msgid "A ride from edge to trainStop needs one edge and one trainStop" +msgstr "" +"Eine Fahrt von einer Kante zu einem Bahnhaltepunkt benötigt eine Kante und " +"einen Bahnhaltepunkt" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1418 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1568 msgid "A stop has to be placed over an edge" msgstr "Ein Haltepunkt muss über einer Kante platziert sein" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1331 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1470 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1429 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1579 msgid "A stop has to be placed over a busStop" msgstr "Ein Halt muss über einen Bushaltepunkt platziert werden" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1435 -#, fuzzy +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1440 +msgid "A stop has to be placed over a trainStop" +msgstr "Ein Halt muss über einem Bahnhaltepunkt platziert werden" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1513 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1534 +msgid "A ride from busStop to edge needs a busStop and an edge" +msgstr "" +"Eine Fahrt von Bushaltepunkt zur Kante benötigt einen Bushaltepunkt und eine " +"Kante" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1523 +msgid "A transport from busStop to busStop needs two busStops" +msgstr "" +"Ein Transport von Bushaltepunkt zu Bushaltepunkt benötigt zwei Bushaltepunkte" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1544 msgid "A tranship from busStop to busStop needs two busStops" msgstr "" "Ein Umschlag von Bushaltepunkt zu Bushaltepunkt benötigt zwei Bushaltepunkte" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1445 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1554 msgid "A tranship with edges attribute needs a list of edges" msgstr "Ein Umschlag mit Kanten-Attributen benötigt eine Liste von Kanten" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1511 -msgid "Via edge '" -msgstr "Zwischenkante '" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1620 +#, c-format +msgid "Via edge '%' doesn't exist." +msgstr "Die Zwischenkante (via) '%' existiert nicht." -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEStop.cpp:443 -#, fuzzy +#: D:\Repos\sumo/src\netedit\elements\demand\GNEStop.cpp:446 msgid "Invalid Stop parent" -msgstr "Ungültiger Eltern-Halt" +msgstr "Ungültiges Elternelement eines Halts" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEStop.cpp:458 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEStop.cpp:461 msgid "Invalid parent" msgstr "Ungültiger Elternteil" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEVehicle.cpp:645 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEVehicle.cpp:645 msgid "Invalid vehicle tag" msgstr "Ungültiger Fahrzeug-Tag" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEWalk.cpp:331 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEWalk.cpp:346 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEWalk.cpp:336 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEWalk.cpp:351 msgid "This walk use junctions" msgstr "Dieser Fußweg benutzt Knotenpunkte" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEConnection.cpp:679 +#: D:\Repos\sumo/src\netedit\elements\network\GNEConnection.cpp:679 msgid "Could not set attribute '%' (tls is broken)" msgstr "Konnte Attribut '%' nicht anwenden (LSA ist ungültig)" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdge.cpp:2180 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdge.cpp:2180 msgid "Could not compute smooth shape for edge '%'" msgstr "Konnte glatte Shape für Kante '%' nicht berechnen" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdge.cpp:2198 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdge.cpp:2198 msgid "Could not compute smooth elevation for edge '%'" msgstr "Konnte glatte Erhöhung für Kante '%' nicht berechnen" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEInternalLane.cpp:241 +#: D:\Repos\sumo/src\netedit\elements\network\GNEInternalLane.cpp:241 msgid "invalid link state='%'" msgstr "ungültiger Linkstand='%'" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEJunction.cpp:335 +#: D:\Repos\sumo/src\netedit\elements\network\GNEJunction.cpp:335 msgid "Reset junction shapes" msgstr "Knotenpunkt-Shapes zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:470 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:471 msgid "Unexpected LinkState '%'" msgstr "Unerwarteter Linkstand '%'" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:810 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:672 +msgid "Copy parent edge name to clipboard" +msgstr "Namen der zugehörigen Kante in Zwischenablage" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:681 +msgid "Remove Lane From Selected" +msgstr "Fahrstreifen aus Auswahl entfernen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:683 +msgid "Add Lane To Selected" +msgstr "Fahrstreifen zu Auswahl hinzufügen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:687 +msgid "Remove Edge From Selected" +msgstr "Kante aus Auswahl entfernen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:689 +msgid "Add Edge To Selected" +msgstr "Kante zu Auswahl hinzufügen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:706 +msgid "Reset edge end points" +msgstr "Kantenendpunkte zurücksetzen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:733 +msgid "Select state for all links from this edge:" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:743 +msgid "Additional options available in 'Inspect Mode'" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:758 +msgid "Shape pos: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:759 +msgid "Length pos: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:761 +msgid "Distance: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:763 +msgid "Height: " +msgstr "Höhe: " + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:764 +msgid "Angle: " +msgstr "Winkel: " + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:811 msgid "Lane Parametric Length cannot be never 0" msgstr "Fahrstreifenparameter Länge kann niemals 0 sein" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:972 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:973 msgid "Opposite lane '%' does not connect the same nodes as edge '%'!" msgstr "" "Gegenüberliegender Fahrstreifen '%' verbindet nicht die selben Knoten wie " "Kante '%'!" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:49 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:738 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1846 +#, c-format +msgid "Edge operations (% selected)" +msgstr "Kantenoperationen (% ausgewählt)" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1848 +msgid "Edge operations" +msgstr "Kantenoperationen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1851 +msgid "Split edge here" +msgstr "Kante hier auftrennen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1852 +msgid "Split edge in both directions here (no simmetric opposite edge)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1857 +msgid "Split edge in both directions here (no opposite edge)" +msgstr "Kante in beiden Richtungen hier auftrennen (keine Gegenrichtungskante)" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1864 +msgid "Split edge in both directions here" +msgstr "Kante in beiden Richtungen hier auftrennen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1868 +msgid "Set geometry endpoint here (shift-click)" +msgstr "Geometrischen Endpunkt hier setzen (Shift-Klick)" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1872 +msgid "Restore both geometry endpoints" +msgstr "Beide geometrischen Endpunkte zurücksetzen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1874 +msgid "Restore geometry endpoints of all selected edges" +msgstr "Geometrische Endpunkte aller ausgewählten Kanten zurücksetzen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1877 +msgid "Restore geometry endpoint (shift-click)" +msgstr "Geometrischen Endpunkt zurücksetzen (Shift-Klick)" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1879 +msgid "Reverse %" +msgstr "% umdrehen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1880 +msgid "Add reverse direction for %" +msgstr "Gegenrichtung von % hinzufügen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1884 +msgid "Add reverse disconnected direction for %" +msgstr "Isolierte Gegenrichtung von % hinzufügen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1885 +msgid "Reset lengths for %" +msgstr "Längen von % zurücksetzen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1886 +msgid "Straighten %" +msgstr "% begradigen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1887 +msgid "Smooth %" +msgstr "% glätten" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1888 +msgid "Straighten elevation of %" +msgstr "Höhe von % begradigen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1889 +msgid "Smooth elevation of %" +msgstr "Höhe von % glätten" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1936 +#, c-format +msgid "Lane operations (% selected)" +msgstr "Fahrstreifenoperationen (% ausgewählt)" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1938 +msgid "Lane operations" +msgstr "Fahrstreifenoperationen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1940 +msgid "Duplicate lane" +msgstr "Fahrstreifen duplizieren" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1941 +msgid "Set custom lane shape" +msgstr "Benutzerdefinierten Fahrstreifen-Shape setzen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1942 +msgid "Reset custom shape" +msgstr "Benutzerdefinierten Shape zurücksetzen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1946 +msgid "Reset opposite lane" +msgstr "Gegenrichtungsfahrstreifen zurücksetzen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1958 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1969 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1978 +msgid "Sidewalk" +msgstr "Fußweg" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1959 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1971 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1979 +msgid "Bike lane" +msgstr "Radfahrstreifen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1960 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1973 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1980 +msgid "Bus lane" +msgstr "Busfahrstreifen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1963 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1975 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1981 +msgid "Green verge" +msgstr "Grünstreifen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1965 +msgid "Green verge (front)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1966 +msgid "Green verge (back)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1983 +msgid "Add restricted %" +msgstr "Beschränkten % hinzufügen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1984 +msgid "Remove restricted %" +msgstr "Beschränkten % entfernen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1985 +msgid "Transform to restricted %" +msgstr "In beschränkten % umwandeln" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2026 +#, c-format +msgid "Template operations (% selected)" +msgstr "Vorlagenoperationen (% ausgewählt)" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2028 +msgid "Template operations" +msgstr "Vorlagenoperationen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2031 +msgid "Use edge as template" +msgstr "Kante als Vorlage verwenden" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2032 +msgid "Apply template" +msgstr "Vorlage anwenden" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2047 +msgid "Select reachable" +msgstr "Erreichbare Fahrstreifen auswählen" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2052 +msgid "Select reachable (compute junctions)" +msgstr "Erreichbare Fahrstreifen auswählen (berechne Knotenpunkte)" + +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:746 msgid "Internal attributes" msgstr "Interne Attribute" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:175 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:177 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:176 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:178 msgid "Invalid input parameter of " msgstr "Ungültiger Input-Parameter von " -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:60 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:61 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:63 msgid "name" msgstr "Name" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:64 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:65 msgid "button" -msgstr "Knopf" +msgstr "Taste" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:70 msgid "Disabled" msgstr "Deaktiviert" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:476 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:477 msgid "Unsupported additional ID" -msgstr "Nicht unterstütze zusätzliche ID" +msgstr "Nicht unterstützte ID für weitere Elemente" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:55 msgid "Consecutive lane selector" msgstr "Auswahl von Folgefahrstreifen" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:59 -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:411 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:59 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:411 msgid "No lanes selected" msgstr "Keine Fahrstreifen ausgewählt" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:61 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:61 msgid "Finish path creation" msgstr "Pfaderstellung abschließen" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:64 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:64 msgid "Abort path creation" msgstr "Abbruch der Pfaderstellung" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:67 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:67 msgid "Remove last lane" msgstr "Entferne den letzten Fahrstreifen" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:70 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:70 msgid "Show candidate lanes" msgstr "Zeige Fahrstreifenkandidaten" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:73 msgid "-BACKSPACE: undo click" msgstr "-BACKSPACE: klicken rückgängig machen" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:73 msgid "-ESC: Abort path creation" msgstr "-ESC: Pfaderstellung abbrechen" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:134 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:134 msgid "Invalid lane" msgstr "Ungültiger Fahrstreifen" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:151 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:151 msgid "Lane path needs at least two lanes" msgstr "Pfad muss aus mindestens zwei Fahrstreifen bestehen" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:171 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:393 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:469 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:482 msgid "route creation" msgstr "Routenerstellung" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:406 msgid "- Selected lanes: " msgstr "- Ausgewählte Fahrstreifen: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:407 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:943 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:407 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:959 msgid "- Length: " msgstr "- Länge: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:48 msgid "Parent " msgstr "Eltern " -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:65 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:65 msgid "Parent element" msgstr "Eltern-Element" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:108 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:108 msgid "select item..." msgstr "Element wählen..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:110 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:110 msgid "-Select an item in the list or" msgstr "-Wähle ein Element in der Liste oder" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:110 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:110 msgid "click over an element in view" msgstr "Klick auf ein angezeigtes Element" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:133 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:133 msgid "select sub-item..." msgstr "Unterpunkt auswählen..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:136 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:136 msgid "-Clicked over multiple" msgstr "-Mehrfach angeklickt" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:137 msgid "elements" msgstr "Elemente" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:138 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:138 msgid " - Select an item in the" msgstr " - Wähle ein Element in der" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:139 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:139 msgid " list or click over an" msgstr " Liste oder klick auf eine" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:140 msgid " element in view" msgstr " angezeigtes Element" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:333 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:337 msgid "Selected item '" msgstr "Ausgewähltes Objekt '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:333 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:337 msgid "' in DemandElementSelector" msgstr "' im Nachfragelement-Auswähler" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:346 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:350 msgid "Selected invalid item in DemandElementSelector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:49 msgid "Drawing" msgstr "Zeichnung" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:52 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:53 msgid "Start drawing" -msgstr "Beginne Zeichnen" +msgstr "Zeichnen beginnen" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:53 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:54 msgid "Stop drawing" -msgstr "Zeichnen wird gestoppt" +msgstr "Zeichnen beenden" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:54 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:55 msgid "Abort drawing" -msgstr "Zeichnen wird abgebrochen" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:58 -msgid "- 'Start drawing' or ENTER" -msgstr "- 'Starte Zeichnen' oder ENTER" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:59 -msgid " to create shape." -msgstr " Shape zu erstellen." - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:60 -msgid "- 'Stop drawing' or ENTER to" -msgstr "- 'Stoppe Zeichnen' oder ENTER zu" +msgstr "Zeichnen abbrechen" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:61 -msgid " finish shape creation." -msgstr " Shape-Erstellung beenden." +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:59 +msgid "'Start drawing' or ENTER to create a shape." +msgstr "'Zeichnen beginnen' oder ENTER um ein Shape zu erstellen." -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:62 -msgid "- 'Abort drawing' or ESC to" -msgstr "- 'Zeichnen abbrechen' oder ESC zu" +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:60 +msgid "'Stop drawing' or ENTER to finish shape creation." +msgstr "'Zeichnen beenden' oder ENTER um ein Shape abzuschließen." -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:63 -msgid " abort shape creation." -msgstr " Shape-Erstellung abbrechen." +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:61 +msgid "'Abort drawing' or ESC to abort shape creation." +msgstr "'Zeichnen abbrechen' oder ESC um Shape zu verwerfen." -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:64 -msgid "- 'Shift + Click' to remove" -msgstr "- 'Shift + Click' zum entfernen" +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:62 +msgid "'Shift + Click' to remove the last inserted point." +msgstr "'Shift + Klick' um den zuletzt eingefügten Punkt zu entfernen." -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:65 -msgid " last inserted point." -msgstr " letzter eingefügter Punkt." - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:134 msgid "A new point cannot be added if drawing wasn't started" msgstr "" "Ein neuer Punkt kann nicht hinzugefügt werden, wenn das Zeichnen noch nicht " "gestartet ist." -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:34 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:34 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:614 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1402 -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:101 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:339 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:619 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:535 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:85 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:34 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:34 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:614 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1406 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:101 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:323 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:621 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:536 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:85 msgid "Information" msgstr "Information" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:38 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:38 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:38 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:38 msgid " edge candidate" msgstr " Kantenkandidat" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:42 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:42 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:42 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:42 msgid " last edge selected" msgstr " letzte ausgewählte Kante" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:45 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:45 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:45 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:45 msgid " edge selected" msgstr " Kante ausgewählt" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:48 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:51 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:51 msgid " edge disconnected" msgstr " Kante unterbrochen" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:62 msgid "Hierarchy" msgstr "Hierarchie" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:211 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:211 #, c-format msgid "Default Vehicle Type '%' cannot be removed" msgstr "Standardfahrzeugtyp '%' kann nicht entfernt werden" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:316 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:84 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:316 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:276 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:84 msgid "Center" msgstr "Zentrieren" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:323 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:1252 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:323 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:1089 msgid "Inspect" msgstr "Prüfen" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:324 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:259 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:96 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:440 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1356 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:324 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:98 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:442 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1384 msgid "Delete" msgstr "Löschen" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:397 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:416 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:477 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:397 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:477 msgid " origin" msgstr " Quelle" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:398 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:417 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:478 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:398 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:417 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:478 msgid " destination" msgstr " Ziel" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:506 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:632 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:706 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:506 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:632 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:706 msgid " additionals..." msgstr " weitere Daten..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:520 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:583 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:646 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:720 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:520 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:583 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:646 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:720 msgid " demand elements..." msgstr " Nachfrageelemente..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:534 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:597 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:660 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:738 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:597 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:660 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:738 msgid " edges..." msgstr " Kanten..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:548 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:611 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:674 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:756 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:548 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:611 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:674 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:756 msgid " lanes..." msgstr " Fahrstreifen..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:569 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:569 msgid " TAZElements..." msgstr " Verkehrsumlegungszonen-Elemente..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:815 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:815 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:911 msgid "Data elements" msgstr "Datenelemente" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:841 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:841 msgid "Incomings" msgstr "Eingehende" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:851 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:851 msgid "Outgoing" msgstr "Ausgehende" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:890 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:65 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1325 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:890 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:65 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1322 msgid "Edges" msgstr "Kanten" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:890 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:890 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:71 msgid "Lanes" msgstr "Fahrstreifen" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:51 msgid "Flow attributes" msgstr "Flussattribute" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:170 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:469 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:596 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:470 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:597 msgid "rate" msgstr "Rate" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:343 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:344 msgid "change multiple flow attributes" msgstr "mehrere Fluss-Attribute ändern" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:369 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:370 msgid "enable multiple flow attributes" msgstr "Mehrere Fluss-Attribute aktivieren" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:385 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:386 msgid "disable multiple flow attributes" msgstr "Mehrere Fluss-Attribute deaktivieren" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:540 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:568 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:541 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:569 msgid "different: " msgstr "anders: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:185 msgid "Parameters of " msgstr "Parameter von " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:195 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:195 msgid "Attribute" msgstr "Attribute" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:196 msgid "Description" msgstr "Beschreibung" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:197 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:197 msgid "Definition" msgstr "Definition" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 msgid "Opening HelpAttributes dialog for tag '" -msgstr "Öffne HelpAttributes -Dialog für Tag '" +msgstr "Öffne HelpAttributes -Dialog für Tag '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 msgid "' showing " msgstr "' anzeigen " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 msgid " attributes" msgstr " Attribute" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:247 msgid "Closing HelpAttributes dialog for tag '" msgstr "Schließe HelpAttributes-Dialog für Tag '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:319 -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:417 -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:494 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:319 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:418 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:495 msgid "Scale: Min -> Max" msgstr "Skala: Min -> Max" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:159 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:160 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:168 msgid "Inspect vehicle " msgstr "Fahrzeug prüfen " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:171 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:172 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:180 msgid "Open dialog for editing color" msgstr "Öffne Dialog zur Farbwahl" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:176 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:177 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:248 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:249 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:184 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:256 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:257 msgid "Open dialog for editing allowed vClasses" msgstr "Öffne Dialog zum Bearbeiten erlaubter Fahrzeugklassen" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:472 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:491 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:607 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:480 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:499 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:615 msgid "change multiple attributes" msgstr "mehrere Attribute ändern" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:610 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:618 msgid "change " msgstr "ändern " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:610 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:618 msgid " attribute" msgstr " Attribut" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid "Value '" msgstr "Wert '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid "' for attribute " msgstr "' für Attribut " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid " of " msgstr " von " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid " isn't valid" msgstr " ist nicht gültig" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:681 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:689 msgid "enable attribute '" msgstr "aktiviere Attribut '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:689 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:697 msgid "disable attribute '" msgstr "deaktiviere Attribut '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:963 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:971 msgid "Extended attributes" msgstr "Erweiterte Attribute" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:966 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:974 msgid "Open attributes editor" msgstr "Öffne Attributeditor" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:997 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1005 msgid "Attributes" msgstr "Attribute" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:1001 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1009 msgid "Edit attributes" msgstr "Bearbeite Attribute" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:49 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:97 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1155 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1164 +msgid "Parameters" +msgstr "Parameter" + +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:93 msgid "Netedit attributes" msgstr "Netedit-Attribute" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:55 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:195 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:196 msgid "reference left" msgstr "Referenz links" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:56 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:201 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:57 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:201 msgid "reference right" msgstr "Referenz rechts" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:57 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:206 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:206 msgid "reference center" msgstr "Referenz in der Mitte" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:70 msgid "Center view" msgstr "Ansicht zentrieren" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:138 msgid "Current selected reference point isn't valid" msgstr "Aktuell ausgewählter Referenzpunkt ist ungültig" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:231 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:231 msgid "- Reference point: Mark the initial position of the additional element." msgstr "- Referenzpunkt: Anfangsposition des Zusatzelements markieren." -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:232 msgid "" " Example: If you want to create a busStop with a length of 30 in the point " "100 of the lane:" @@ -9496,25 +9819,25 @@ " Beispiel: Wenn ein Bushaltepunkt mit einer Länge von 30 im Punkt 100 des " "Fahrstreifens erstellen werden soll:" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:233 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:233 msgid " - Reference Left will create it with startPos = 70 and endPos = 100." msgstr "" " - Mit Ausrichtung nach links liegt sie bei startPos = 70 und endPos = 100." -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:234 msgid "" " - Reference Right will create it with startPos = 100 and endPos = 130." msgstr "" " - Mit Ausrichtung nach rechts liegt sie bei startPos = 100 und endPos = " "130." -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:235 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:235 msgid "" " - Reference Center will create it with startPos = 85 and endPos = 115." msgstr "" " - Mit zentrierter Ausrichtung liegen startPos bei 85 und endPos bei 115." -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:236 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:236 msgid "" "- Block movement: if is enabled, the created additional element will be " "blocked. i.e. cannot be moved with" @@ -9522,374 +9845,389 @@ "- Verschieben blockieren: Wenn aktiviert, wird das erstellte weitere Element " "blockiert. d.h. es kann nicht mit verschoben werden" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:237 msgid " the mouse. This option can be modified inspecting element." msgstr "" " die Maus. Diese Option kann beim Prüfen des Elements geändert werden." -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:238 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:238 msgid "- Center view: if is enabled, view will be center over created element." msgstr "" "- Ansicht zentrieren: Wenn diese Option aktiviert ist, wird die Ansicht über " "dem erstellten Element zentriert." -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:49 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:49 msgid "NetworkElements" msgstr "Netzelemente" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:56 msgid "Use selected" msgstr "Ausgewählte verwenden" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:63 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:63 msgid "-Click over an edge to select" msgstr "-Über eine Kante klicken zum Auswählen" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:69 msgid "-Click over an lane to select" msgstr "-Über einen Fahrstreifen klicken zum Auswählen" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:74 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:183 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:183 msgid "Invalid NetworkElementType" msgstr "Ungültiges Netztyp-Element" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:52 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:52 msgid "Overlapped elements" msgstr "Überlappende Elemente" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:62 msgid "Overlapped " msgstr "Überlappend " -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:275 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:275 msgid "GEO attributes Help" msgstr "Hilfe zu GEO-Attributen" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:278 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:278 msgid " - Click in the same position" msgstr " -klick in der gleichen Position" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:279 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:279 msgid " for inspect next element" msgstr " um das nächste Element zu inspizieren" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:280 msgid " - Shift + Click in the same" msgstr " - Shift + Click auf das Gleiche" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:281 msgid " position for inspect" msgstr " Position zum Prüfen" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:282 msgid " previous element" msgstr " vorheriges Element" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:145 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:145 msgid "Route creator" msgstr "Routenersteller" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:152 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:948 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1156 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:964 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1153 msgid "No edges selected" msgstr "Keine Kanten ausgewählt" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:154 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:154 msgid "Use last route" msgstr "Nutze letzte Route" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:157 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:157 msgid "Finish route creation" msgstr "Beende Routenerstellung" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:160 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:160 msgid "Abort route creation" msgstr "Abbruch Routenerstellung" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:163 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:163 msgid "Remove last edge" msgstr "Entferne letzte Kante" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:166 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:166 msgid "Show candidate edges" msgstr "Zeige Kandidatenkanten" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:374 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:387 msgid "Double junctions aren't allowed" msgstr "Doppelte Knotenpunkte sind nicht erlaubt" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:382 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:395 msgid "Only two junctions are allowed" msgstr "Nur zwei Knotenpunkte sind erlaubt" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:421 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:434 msgid "Double edges aren't allowed" msgstr "Doppelte Kanten sind nicht erlaubt" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:431 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:444 msgid "Only consecutives edges are allowed" msgstr "Nur aufeinanderfolgende Kanten sind erlaubt" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:440 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:453 msgid "Only two edges are allowed" msgstr "Nur zwei Kanten sind erlaubt" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:449 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:462 msgid "Invalid edge (SHIFT + click to add an invalid vClass edge)" msgstr "" "Ungültige Kante (wähle Kante mit unpassender Fahrzeugklasse über Shift + " "Klick)" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:456 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:469 msgid "Invalid edge (CONTROL + click to add a disconnected edge)" msgstr "Ungültige Kante (wähle unverbundene Kante über Ctrl + Klick)" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:531 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:547 msgid "first select an edge" msgstr "wähle zuerst eine Kante" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:941 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:957 msgid "- Selected edges: " msgstr "- Ausgewählte Kanten: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:942 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:958 msgid "- Path edges: " msgstr "- Wegkanten: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:944 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:960 msgid "- Average speed: " msgstr "- Durchschnittsgeschwindigkeit: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:48 msgid " edge conflict (vClass)" msgstr " Kantenkonflikt (Fahrzeugklasse)" -#: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:36 +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:36 msgid "Parent selector" msgstr "Eltern-Auswähler" -#: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:39 +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:39 msgid "No element selected" msgstr "Kein Element ausgewählt" -#: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:82 +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:82 msgid "Parent type: " msgstr "Elterntyp: " -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:219 -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:230 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:219 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:230 msgid "Invalid row or column" msgstr "Ungültige Zeile oder Spalte" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:254 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:254 msgid "Invalid row" msgstr "Ungültige Zeile" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:264 -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:264 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:274 msgid "Invalid column" msgstr "Ungültige Spalte" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:609 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:609 msgid "Accumulated: " msgstr "Kumuliert: " -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:679 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:679 msgid "Add phase" msgstr "Phase hinzufügen" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:679 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:679 msgid "Add new phase." msgstr "Füge Phase hinzu." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:684 msgid "Default phase" msgstr "Standardphase" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:684 msgid "Add default phase." msgstr "Füge Standardphase hinzu." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:689 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:689 msgid "Duplicate phase" msgstr "Phase duplizieren" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:689 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:689 msgid "Duplicate this phase." msgstr "Dupliziere diese Phase." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:694 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:694 msgid "Red phase" msgstr "Rot-Phase" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:694 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:694 msgid "Add red phase." msgstr "Füge Rot-Phase hinzu." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:699 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:699 msgid "Yellow phase" msgstr "Gelb-Phase" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:699 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:699 msgid "Add yellow phase." msgstr "Füge Gelb-Phase hinzu." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:704 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:704 msgid "Green phase" msgstr "Grün-Phase" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:704 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:704 msgid "Add green phase." msgstr "Füge Grün-Phase hinzu." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:709 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:709 msgid "Green priority phase" msgstr "Grün-Phase mit Vorrang" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:709 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:709 msgid "Add green priority phase." msgstr "Füge eine Grün-Phase mit Vorrang hinzu." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:910 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:910 msgid "Cannot be parsed to double" msgstr "Kann nicht als Zahl eingelesen werden" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:922 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:922 msgid "Tooltips only for TextFields" msgstr "Tooltips nur für Textfelder" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1252 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1252 msgid "Delete phase" msgstr "Phase löschen" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1252 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1252 msgid "Delete this phase." msgstr "Lösche diese Phase." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1261 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1261 msgid "Move phase up" msgstr "Phase nach oben schieben" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1261 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1261 msgid "Move this phase up." msgstr "Schiebe diese Phase nach oben." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1270 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1270 msgid "Move phase down" msgstr "Phase nach unten schieben" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1270 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1270 msgid "Move this phase down." msgstr "Schiebe diese Phase nach unten." -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:89 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:89 msgid "Element" msgstr "Element" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:152 msgid "network elements" msgstr "Netzelemente" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:155 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:155 msgid "Additional elements" msgstr "Weitere Elemente" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:158 msgid "Shape elements" msgstr "Formelemente" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:161 msgid "TAZ elements" msgstr "Verkehrsumlegungszonen" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:164 msgid "Wire elements" msgstr "Oberleitungselemente" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:167 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1833 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:167 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1835 msgid "Vehicles" msgstr "Fahrzeuge" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:170 msgid "Stops" msgstr "Haltepunkte" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:173 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1916 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:173 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1918 msgid "Persons" msgstr "Personen" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:176 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:176 msgid "Person plans" msgstr "Personenpläne" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:182 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:182 msgid "Container plans" msgstr "Containerpläne" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:185 msgid "Person trips" msgstr "Personenfahrten" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:188 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:188 msgid "Walks" msgstr "Fußwege" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:191 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:191 msgid "Rides" msgstr "Fahrten" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:194 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:194 msgid "Person stops" msgstr "Personenhaltepunkte" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:64 msgid "Delete geometry points" msgstr "Geometriepunkte löschen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:230 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:238 msgid "Protect Elements" msgstr "Elemente sichern" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:240 +msgid "Protect all" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:240 +msgid "Protect all elements" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:242 +msgid "Unprotect all" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:242 +msgid "Unprotect all elements" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:244 msgid "Protect additional elements" msgstr "Weitere Elemente sichern" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:235 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:247 msgid "Protect TAZ elements" msgstr "Verkehrsumlegungszonen-Elemente sichern" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:238 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:250 msgid "Protect demand elements" msgstr "Nachfrageelemente sichern" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:241 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:253 msgid "Protect data elements" msgstr "Datenelemente sichern" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEElementSet.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\common\GNEElementSet.cpp:48 msgid "Element Set" msgstr "Elementsatz" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEElementSet.cpp:75 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\common\GNEElementSet.cpp:75 msgid "Invalid supermode" msgstr "Ungültiger Supermodus" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:100 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:96 msgid "Mark as front element" msgstr "Als Frontelement markieren" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:181 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:310 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:177 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:306 #, fuzzy msgid "Set new parent" msgstr "Neues Elternteil setzen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:372 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:368 msgid "" "- Mark as front element: Mark element as front element (Will be drawn over " "all other elements)\n" @@ -9897,11 +10235,11 @@ "- Als Frontelement markieren: Element als Frontelement markieren (Wird über " "alle anderen Elemente gezogen)\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:373 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:369 msgid "- Block movement: disable movement in move mode\n" msgstr "- Bewegung blockieren: Bewegung im Bewegungsmodus deaktivieren\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:374 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:370 msgid "" "- Block shape: Disable moving of shape's vertices and edges. Entire shape " "can be moved'.\n" @@ -9909,7 +10247,7 @@ "- Block-Shape: Deaktiviert das Verschieben der Scheitelpunkte und Kanten der " "Shape. Gesamte Shape kann verschoben werden'.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:375 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:371 msgid "" "- Close shape: Add or remove the last vertex with the same position of first " "edge'." @@ -9917,21 +10255,20 @@ "- Shape schließen: Hinzufügen oder Entfernen des letzten Scheitelpunkts mit " "der gleichen Position der ersten Kante." -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:402 msgid "GEO Attributes" msgstr "Geo-Attribute" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:470 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:90 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:466 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:91 msgid "No geo-conversion defined" -msgstr "Keine Geo-Umsetzung definiert" +msgstr "Keine Geoprojektion definiert" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:551 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:547 msgid " SUMO uses the World Geodetic System 84 (WGS84/UTM).\n" -msgstr "" +msgstr " SUMO benutzt das World Geodetic System 84 (WGS84/UTM).\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:552 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:548 msgid "" " For a GEO-referenced network, geo coordinates are represented as pairs of " "Longitude and Latitude\n" @@ -9939,84 +10276,77 @@ " Bei einem Geo-referenzierten Netz werden Geokoordinaten als Längen- und " "Breitengradpaare dargestellt\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:553 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:549 msgid " in decimal degrees without extra symbols. (N,W..)\n" msgstr " in Dezimalgrad ohne zusätzliche Symbole. (N,W..)\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:554 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:550 msgid " - Longitude: East-west position of a point on the Earth's surface.\n" msgstr "" " - Längengrad: Ost-West-Position eines Punktes auf der Erdoberfläche.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:551 msgid " - Latitude: North-south position of a point on the Earth's surface.\n" msgstr "" " - Breitengrad: Nord-Süd-Position eines Punktes auf der Erdoberfläche.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:556 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:552 msgid "" " - CheckBox 'geo' enables or disables saving position in GEO coordinates\n" msgstr "" " - CheckBox 'geo' aktiviert oder deaktiviert das Speichern der Position in " "Geo-Koordinaten\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:570 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:566 msgid "Templates" msgstr "Vorlagen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:574 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:570 msgid "Set as Template" msgstr "Als Vorlage setzen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:578 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:574 msgid "clear Edge Template" msgstr "Kantenvorlage entfernen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:673 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:669 msgid "Only one edge must be inspected" msgstr "Nur eine Kante muss geprüft werden" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:737 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:733 msgid "No edge Template Set" msgstr "Kein Kantenvorlage-Satz" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:749 -msgid "Parameters" -msgstr "Parameter" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:908 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:745 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:748 msgid "Additional dialog" msgstr "Zusätzlicher Dialog" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:927 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:764 msgid "Open rerouter dialog" msgstr "Rerouter-Dialog öffnen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:933 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:770 msgid "Open calibrator dialog" msgstr "Kalibrator-Dialog öffnen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:939 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:776 msgid "Open calibrator lane dialog" msgstr "Kalibrator-Fahrstreifen-Dialog öffnen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:945 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:782 msgid "Open VSS dialog" msgstr "VSS-Dialog öffnen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:58 msgid "Apply selection" msgstr "Auswahl anwenden" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:112 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:112 msgid "Unknown set" msgstr "Unbekannter Satz" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:270 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:270 msgid "" "- The 'Match Attribute' controls allow to specify a set of objects which are " "then applied to the current selection\n" @@ -10024,23 +10354,23 @@ "- Die Steuerelemente 'Match Attribute' ermöglichen die Angabe einer Reihe " "von Objekten, die dann auf die aktuelle Auswahl angewendet werden\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:271 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:460 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:271 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:460 msgid " according to the current 'Modification Mode'.\n" msgstr " entsprechend dem aktuellen 'Modifikationsmodus'.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:272 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:461 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:272 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:461 msgid " 1. Select an object type from the first input box\n" msgstr " 1. Im ersten Eingabefeld einen Objekttyp auswählen\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:273 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:462 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:273 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:462 msgid " 2. Select an attribute from the second input box\n" msgstr " 2. Im zweiten Eingabefeld ein Attribut auswählen\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:274 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:463 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:463 msgid "" " 3. Enter a 'match expression' in the third input box and press " "\n" @@ -10048,14 +10378,13 @@ " 3. Im dritten Eingabefeld einen 'Match-Ausdruck' eingeben und " "drücken\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:276 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:465 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:276 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:465 msgid "- The empty expression matches all objects\n" msgstr "- Der leere Ausdruck passt auf alle Objekte\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:277 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:466 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:277 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:466 msgid "" "- For numerical attributes the match expression must consist of a comparison " "operator ('<', '>', '=') and a number.\n" @@ -10063,8 +10392,8 @@ "- Bei numerischen Attributen muss der Übereinstimmungsausdruck aus einem " "Vergleichsoperator ('<', '>', '=') und einer Zahl bestehen.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:278 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:467 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:278 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:467 msgid "" "- An object matches if the comparison between its attribute and the given " "number by the given operator evaluates to 'true'\n" @@ -10072,9 +10401,8 @@ "- Ein Objekt stimmt überein, wenn der Vergleich zwischen seinem Attribut und " "der angegebenen Zahl durch den angegebenen Operator 'wahr' ergibt\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:280 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:469 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:469 msgid "" "- For string attributes the match expression must consist of a comparison " "operator ('', '=', '!', '^') and a string.\n" @@ -10082,9 +10410,8 @@ "- Bei String-Attributen muss der Match-Ausdruck aus einem Vergleichsoperator " "('', '=', '!', '^') und einem String bestehen.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:281 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:470 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:470 msgid "" " '' (no operator) matches if string is a substring of that object'ts " "attribute.\n" @@ -10092,56 +10419,58 @@ " '' (kein Operator) passt, wenn der String eine Teilzeichenfolge des " "Attributs dieses Objekts ist.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:282 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:471 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:471 msgid " '=' matches if string is an exact match.\n" msgstr "" " '=' stimmt überein, wenn die Zeichenfolge eine genaue Übereinstimmung " "ist.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:283 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:472 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:283 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:472 msgid " '!' matches if string is not a substring.\n" msgstr " '!' stimmt überein, wenn der String keine Teilzeichenfolge ist.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:284 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:473 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:284 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:473 msgid " '^' matches if string is not an exact match.\n" msgstr "" " '^' passt, wenn die Zeichenfolge keine exakte Übereinstimmung ist.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:286 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:475 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:286 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:475 msgid "- Examples:\n" msgstr "- Beispiele:\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:287 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:476 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:287 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:476 msgid "" " junction; id; 'foo' -> match all junctions that have 'foo' in their id\n" msgstr "" +" junction; id; 'foo' -> erfasst alle Knotenpunkte, deren ID 'foo' " +"enthält\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:288 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:477 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:288 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:477 msgid "" " junction; type; '=priority' -> match all junctions of type 'priority', " "but not of type 'priority_stop'\n" msgstr "" +" junction; type; '=priority' -> erfasst alle vorfahrtgeregelten " +"Knotenpunkte (Typ 'priority'), aber nicht jene vom typ 'priority_stop'\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:289 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:478 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:289 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:478 msgid " edge; speed; '>10' -> match all edges with a speed above 10\n" msgstr "" -" Kante; Geschwindigkeit; '>10' -> vergleiche alle Kanten mit einer " -"Geschwindigkeit über 10\n" +" edge; speed; '>10' -> entspricht allen Kanten mit einer Geschwindigkeit " +"über 10\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:87 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:87 msgid "speed" msgstr "Geschwindigkeit" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:459 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:459 msgid "" "- The 'MatchGenericData Attribute' controls allow to specify a set of " "objects which are then applied to the current selection\n" @@ -10150,87 +10479,84 @@ "einer Reihe von Objekten, die dann auf die aktuelle Auswahl angewendet " "werden\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:64 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:65 msgid "Common move options" -msgstr "Gemeinsame Bewegungsoptionen" +msgstr "Allgemeine Verschiebeoptionen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:66 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:67 msgid "Allow change lanes" msgstr "Fahrstreifenwechsel erlauben" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:70 msgid "Merge geometry points" msgstr "Geometriepunkte zusammenführen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:93 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:94 msgid "Network move options" -msgstr "Netz-Bewegungsoptionen" +msgstr "Netzverschiebeoptionen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:96 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:97 msgid "Move whole polygons" msgstr "Gesamte Polygone verschieben" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:132 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:133 msgid "Demand move options" msgstr "Nachfrage-Bewegungsoptionen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:135 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:136 #, fuzzy msgid "Leave stopPersons connected" msgstr "Verbundene Haltepersonen lassen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:172 msgid "Shift selected edges geometry" msgstr "Ausgewählte Kantengeometrie verschieben" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:180 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:181 msgid "Apply shift value" msgstr "Verschiebungswert anwenden" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:180 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:181 msgid "" "Shift edge geometry orthogonally to driving direction for all selected edges" msgstr "" "Kantengeometrie für alle ausgewählten Kanten orthogonal zur Fahrtrichtung " "verschieben" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:251 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:252 msgid "Change Z in selection" msgstr "Z in der Auswahl ändern" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:261 msgid "Absolute value" msgstr "Absoluter Wert" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:261 msgid "Set Z value as absolute" msgstr "Z-Wert als absolut setzen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:262 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:263 msgid "Relative value" msgstr "Relativer Wert" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:262 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:263 msgid "Set Z value as relative" msgstr "Z-Wert relativ setzen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:265 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:266 msgid "Apply Z value" msgstr "Z-Wert anwenden" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:265 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:266 msgid "Apply Z value to all selected junctions" msgstr "Z-Wert auf alle ausgewählten Knotenpunkte anwenden" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:518 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:518 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:534 msgid "Shift shape geometry" msgstr "Shape-Geometrie verschieben" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:534 msgid "" "Shift shape geometry orthogonally to driving direction for all selected " "shapes" @@ -10238,620 +10564,566 @@ "Shape-Geometrie orthogonal zur Fahrtrichtung für alle ausgewählten Shapes " "verschieben" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:619 -#, fuzzy -msgid "-Click over edge to" -msgstr "- Über Kante klicken zu" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:616 +msgid "Click over edge to create or edit geometry point." +msgstr "" +"Über der Kante klicken, um einen Geometriepunkt zu erstellen oder zu " +"bearbeiten." -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:620 -msgid " create or edit" -msgstr " erstellen oder bearbeiten" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:621 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:624 -msgid " geometry point." -msgstr " Geometriepunkt." - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:622 -msgid "-Shift+click over edge" -msgstr "-Shift+click über eine Kante" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:623 -msgid " to edit start or end" -msgstr " zum Bearbeiten starten oder beenden" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:616 +msgid "Shift+click over edge to edit start or end geometry point." +msgstr "" +"Shift+Klick über der Kante, um den geometrischen Start-/Endpunkt zu " +"bearbeiten." -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:628 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:618 msgid "-Move geometry point" msgstr "-Geometriepunkt verschieben" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:631 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:621 msgid "-Merge geometry point" msgstr "-Geometriepunkt zusammenführen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:78 msgid "Selection information" msgstr "Information auswählen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:149 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:150 msgid "Modification Mode" msgstr "Modifikations-Modus" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:153 msgid "add" msgstr "hinzufügen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:153 msgid "Selected objects are added to the previous selection" msgstr "Ausgewählte Objekte werden der vorherigen Auswahl hinzugefügt" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:154 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:155 msgid "remove" msgstr "entfernen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:154 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:155 msgid "Selected objects are removed from the previous selection" msgstr "Ausgewählte Objekte werden aus der vorherigen Auswahl entfernt" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:156 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:662 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:157 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:661 msgid "keep" msgstr "behalten" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:156 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:157 msgid "Restrict previous selection by the current selection" msgstr "Vorherige Auswahl durch die aktuelle Auswahl einschränken" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:159 msgid "replace" msgstr "ersetzen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:159 msgid "Replace previous selection by the current selection" msgstr "Vorherige Auswahl durch die aktuelle Auswahl ersetzen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:213 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:214 msgid "Visual Scaling" msgstr "Visuelle Skalierung" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:243 msgid "Selection operations" msgstr "Auswahloperationen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:251 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:252 msgid "Deselect all objects (hotkey: ESC)" msgstr "Alle Objekte abwählen (Hotkey: ESC)" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:253 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:254 msgid "Invert" msgstr "Umstellen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:253 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:254 msgid "Invert selection status of all objects" msgstr "Auswahlstatus von allen Objekten umstellen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:255 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:256 msgid "Save ids of currently selected objects to a file." msgstr "Die IDs der aktuell ausgewählten Objekte in einer Datei speichern." -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:257 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:258 msgid "Load ids from a file according to the current modification mode." msgstr "IDs aus einer Datei gemäß dem aktuellen Änderungsmodus laden." -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:259 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:260 msgid "Delete all selected objects (hotkey: DEL)" msgstr "Alle selektierten Objekte löschen (Hotkey: DEL)" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:261 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:262 msgid "Reduce" msgstr "Reduzieren" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:261 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:262 msgid "Reduce network to current selection." msgstr "Netz auf aktuelle Auswahl reduzieren." -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:275 msgid "Could not open '%'." msgstr "Konnte '%' nicht öffnen." -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:320 -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:125 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:324 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:125 msgid "Open List of Selected Items" msgstr "Liste der ausgewählten Elemente öffnen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:338 -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:148 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:342 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:148 msgid "Save List of selected Items" msgstr "Liste ausgewählte Elemente speichern" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1120 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1124 msgid "Hierarchy operations" msgstr "Hierarchie-Operationen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1131 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1141 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1135 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1145 msgid "Select" msgstr "Auswählen" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1133 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1143 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1137 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1147 msgid "Unselect" msgstr "Abwählen" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEEdgeDataFrame.cpp:51 +#: D:\Repos\sumo/src\netedit\frames\data\GNEEdgeDataFrame.cpp:51 msgid "There is already a % in edge '%'" msgstr "Es gibt bereits ein % in Kante '%'" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:69 msgid "DataSet" msgstr "Datensatz" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:72 msgid "Create new dataSet" msgstr "Neuen Datensatz erstellen" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:83 msgid "Create dataSet" msgstr "Datensatz erstellen" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:140 msgid "Invalid dataSet ID" msgstr "Ungültige Datensatz-ID" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:142 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:142 msgid "Invalid empty dataSet ID" msgstr "Ungültige leere Datensatz-ID" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:144 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:144 msgid "Invalid duplicated dataSet ID" msgstr "Ungültige doppelte Datensatz-ID" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:198 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:198 msgid "Interval" msgstr "Intervall" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:201 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:201 msgid "Create new interval" msgstr "Neues Intervall erstellen" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:219 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:219 msgid "create interval" msgstr "Intervall erstellen" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:392 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:393 msgid "Data attributes" msgstr "Daten-Attribute" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:68 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:68 msgid "MeanData Type" msgstr "MeanData-Typ" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:161 msgid "MeanData Editor" msgstr "MeanData Editor" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:164 msgid "Create MeanData" msgstr "MeanData erstellen" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:167 msgid "Delete MeanData" msgstr "MeanData löschen" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:170 msgid "Copy MeanData" msgstr "MeanData kopieren" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:276 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:276 msgid "Current MeanData" msgstr "Aktuelle meanData" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:54 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:54 #, fuzzy msgid "Confirm TAZRelation" msgstr "Verkehrsumlegungszonen-Beziehung bestätigen" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:56 #, fuzzy msgid "Create TAZRelation" msgstr "Verkehrsumlegungszonen-Beziehung erstellen" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:56 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:56 msgid "Click fromTaz and toTaz (confirm hotkey )" msgstr "" -"Klicken Ausgangsverkehrsumlegungszone und Endverkehrsumlegungszone (Hotkey " -"bestätigen )" +"Auf Ausgangsverkehrsumlegungszone und Endverkehrsumlegungszone klicken (dann " +"mit Hotkey bestätigen)" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:58 msgid "Clear selection" msgstr "Auswahl entfernen" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:58 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:58 msgid "Clear selected TAZs (hotkey )" -msgstr "Ausgewählte Verkehrsumlegungszonen entfernen (Hotkey )" +msgstr "Verkehrsumlegungszonenauswahl leeren (Hotkey )" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:122 msgid "From TAZ" -msgstr "Ausgangs-Verkehrsumlegungszone" +msgstr "Quellverkehrsumlegungszone" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:128 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:128 msgid "To TAZ" -msgstr "End-Verkehrsumlegungszone" +msgstr "Zielverkehrsumlegungszone" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:177 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:177 #, c-format msgid "A % must be defined within an interval." msgstr "Ein % muss innerhalb eines Intervalls definiert sein." -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:179 msgid "There is already a % defined in TAZ'%'." msgstr "In der Verkehrsumlegungszone '%' ist ein % bereits definiert." -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:181 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:181 msgid "There is already a % defined between TAZ'%' and '%'." msgstr "" "Zwischen der Verkehrsumlegungszone '%' und '%' ist bereits ein % definiert." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:117 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerPlanFrame.cpp:114 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerPlanFrame.cpp:114 msgid "Current selected container isn't valid." msgstr "Aktuell ausgewählter Container ist ungültig." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:122 msgid "Current selected container type isn't valid." msgstr "Aktuell ausgewählter Container-Typ ist ungültig." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:127 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerPlanFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:127 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerPlanFrame.cpp:119 msgid "Current selected container plan isn't valid." msgstr "Aktuell ausgewählter Container-Plan ist ungültig." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:242 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:275 msgid "VType with vClass == 'pedestrian' is oriented to pedestrians" msgstr "" "Fahrzeugtyp mit der Fahrzeugklasse == 'pedestrian' ist auf Fußgänger " "ausgerichtet" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:244 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:244 msgid "VType with vClass != 'ignoring' is not oriented to containers" msgstr "" "Fahrzeugtyp mit der Fahrzeugklasse != 'ignoring' ist nicht auf Container " "ausgerichtet" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:267 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:267 msgid "Invalid container parameters." msgstr "Ungültige Container-Parameter." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:117 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonPlanFrame.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonPlanFrame.cpp:140 msgid "Current selected person isn't valid." msgstr "Aktuell ausgewählte Person ist ungültig." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:122 msgid "Current selected person type isn't valid." msgstr "Aktuell ausgewählter Personentyp ist ungültig." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:127 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonPlanFrame.cpp:146 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:127 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonPlanFrame.cpp:146 msgid "Current selected person plan isn't valid." msgstr "Aktuell ausgewählter Personenplan ist ungültig." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:250 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:287 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:250 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:277 msgid "VType with vClass == 'ignoring' is oriented to containers" msgstr "" "Fahrzeugtyp mit der Fahrzeugklasse == 'ignoring' orientiert sich an " "Containern" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:252 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:252 msgid "VType with vClass != 'pedestrian' is not oriented to persons" msgstr "" "Fahrzeugtyp mit der Fahrzeugklasse != 'pedestrian' ist nicht auf Personen " "ausgerichtet" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:275 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:275 msgid "Invalid person parameters." msgstr "Ungültige Personenparameter." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNERouteFrame.cpp:52 +#: D:\Repos\sumo/src\netedit\frames\demand\GNERouteFrame.cpp:52 msgid "Route mode" msgstr "Routenmodus" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:78 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:85 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:92 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:99 -#, fuzzy -msgid "- Shift+Click to select parent\n" -msgstr "- Shift+ Klick um Elternteil auszuwählen\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:72 -#, fuzzy -msgid "- Click over a bus stop to\n" -msgstr "- Über einen Bushaltepunkt klicken zum\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:73 -msgid " create a stop." -msgstr " einen Haltepunkt erstellen." - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:79 -msgid "- Click over a container stop\n" -msgstr "- Klicke über einen Container-Halt\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:80 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:87 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:94 -#, fuzzy -msgid " to create a stop." -msgstr " zum Erstellen eines Bushaltepunktes" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:86 -msgid "- Click over a charging station\n" -msgstr "- Klicke über eine Ladestation\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:93 -msgid "- Click over a parking area\n" -msgstr "- Klicke über einen Parkplatz\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:100 -msgid "- Click over a lane to create\n" -msgstr "- Klicke über einen Fahrstreifen zum Erstellen\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:101 -msgid " a stop." -msgstr " ein Halt." - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:105 -#, fuzzy -msgid "- No stop parents in current\n" -msgstr "- Kein Haltepunkt erzogen im Lauf\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:106 -msgid " network." -msgstr " Netz." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:89 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:101 +msgid "Shift+Click to select parent" +msgstr "Shift+Klick um das Elternelement auszuwählen" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:72 +msgid "Click over a bus stop to create a stop." +msgstr "Klicke auf einen Bushaltepunkt, um einen Halt zu erstellen." + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:78 +msgid "Click over a train stop to create a stop." +msgstr "Klicke auf einen Bahnhaltepunkt, um einen Halt zu erstellen." + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:84 +msgid "Click over a container stop to create a stop." +msgstr "Klicke auf einen Container-Stop, um einen Halt zu erstellen." + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:90 +msgid "Click over a charging station to create a stop." +msgstr "Klicke auf eine Ladestation, um einen Halt zu erstellen." + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:96 +msgid "Click over a parking area to create a stop." +msgstr "Klicke auf einen Parkplatz, um einen Halt zu erstellen." + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:102 +msgid "Click over a lane to create a stop." +msgstr "Klicke auf einen Fahrstreifen, um einen Halt zu erstellen." + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:106 +msgid "No stop parents in current network." +msgstr "Keine Elternelemente von Halten im aktuellen Netz vorhanden." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:189 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:189 msgid "Selected Stop type isn't valid." msgstr "Der ausgewählte Haltepunkttyp ist ungültig." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:197 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:197 msgid "Selected % '%' as stop parent." msgstr "% '%' als übergeordnetes Element ausgewählt." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:200 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:200 msgid "Selected Stop parent isn't valid." msgstr "Ausgewähltes übergeordnetes Haltepunkt-Element ist ungültig." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:206 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:206 msgid "Current selected Stop parent isn't valid." -msgstr "Aktuell ausgewählter übergeordneter Haltepunkt ist ungültig." +msgstr "Aktuell ausgewähltes Haltepunktelternelement ist ungültig." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:237 msgid "Current selected Stop type isn't valid." msgstr "Aktuell ausgewählter Haltepunkttyp ist ungültig." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:336 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:352 msgid "Stop must be placed over a route's edge" msgstr "Haltepunkt muss über einer Routenkante platziert sein" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:349 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:365 msgid "Stop must be placed over an embedded route's edge" msgstr "Haltepunkt muss über einer eingelagerten Routenkante platziert sein" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:68 -msgid "Current Type" -msgstr "Aktueller Typ" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:225 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:63 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:218 msgid "Type Editor" msgstr "Typ-Editor" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:228 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:66 +msgid "Create type distribution" +msgstr "Typenverteilung erstellen" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:68 +msgid "Delete type distribution" +msgstr "Typenverteilung löschen" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:62 +msgid "Current Type" +msgstr "Aktueller Typ" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:221 msgid "Create Type" msgstr "Typ erstellen" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:230 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:275 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:223 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:268 msgid "Delete Type" msgstr "Typ löschen" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:225 msgid "Copy Type" msgstr "Typ kopieren" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:263 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:256 msgid "Reset Type" msgstr "Typ zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:420 -msgid "VType Distributions" -msgstr "Fahrzeugtyp-Verteilung" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:71 +msgid "Click over a route to create a vehicle." +msgstr "Klicke über einer Route, um ein Fahrzeug zu erstellen." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:423 -msgid "Show VType Distributions" -msgstr "Fahrzeugtyp-Verteilung anzeigen" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:93 -msgid "- Click over a route to\n" -msgstr "- Über eine Route klicken zum\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:72 -msgid " create a vehicle." -msgstr " erstellt ein Fahrzeug." - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:76 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:81 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:98 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:103 -msgid "- Select two edges to\n" -msgstr "- Wähle zwei Kanten aus\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:77 -msgid " create a Trip." -msgstr " erstellt eine Fahrt." - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:82 -msgid " create a vehicle with\n" -msgstr " erstellt ein Fahrzeug mit\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:83 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:105 -msgid " embedded route." -msgstr " eingelagerter Route." - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:87 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:109 -msgid "- Select two junctions\n" -msgstr "- Wähle zwei Knotenpunkte aus\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:88 -msgid " to create a Trip." -msgstr " zum Erstellen einer Fahrt." - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:94 -msgid " create a routeFlow." -msgstr " erstellt einen Routenfluss." - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:99 -msgid " create a flow." -msgstr " erstellt einen Fluss." - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:104 -msgid " create a flow with\n" -msgstr " erstellt einen Fluss mit\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:110 -msgid " to create a flow." -msgstr " zum Erstellen eines Flusses." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:75 +msgid "Select two edges to create a trip." +msgstr "Wähle zwei Kanten aus, um eine Fahrt zu erstellen." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:191 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:79 +msgid "Select two edges to create a vehicle with embedded route." +msgstr "" +"Wähle zwei Kanten aus, um ein Fahrzeug mit integrierter Route zu erstellen." + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:83 +msgid "Select two junctions to create a trip." +msgstr "Wähle zwei Knotenpunkte aus, um eine Fahrt zu erstellen." + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:88 +msgid "Click over a route to create a routeFlow." +msgstr "Klicke über einer Route, um einen Fluss zu erstellen." + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:92 +msgid "Select two edges to create a flow." +msgstr "Wähle zwei Kanten aus, um einen Fluss zu erstellen." + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:96 +msgid "Select two edges to create a flow with embedded route." +msgstr "" +"Wähle zwei Kanten aus, um einen Fluss mit integrierter Route zu erstellen." + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:100 +msgid "Select two junctions to create a flow." +msgstr "Wähle zwei Knotenpunkte aus, um einen Fluss zu erstellen." + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:181 msgid "Current selected vehicle isn't valid." msgstr "Aktuell ausgewähltes Fahrzeug ist ungültig." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:186 msgid "Current selected vehicle type isn't valid." msgstr "Aktuell ausgewählter Fahrzeugtyp ist ungültig." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:87 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:87 msgid "Current selected additional isn't valid." msgstr "Aktuell ausgewählte weitere Daten sind ungültig." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:156 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:156 msgid "E2 multilane detectors need at least two consecutive lanes" msgstr "" "E2 mehrspurige Detektoren benötigen mindestens zwei aufeinanderfolgende " "Fahrstreifen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:282 msgid " must be selected before insertion of " msgstr " muss vor dem Einfügen ausgewählt werden " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:312 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:312 msgid "Attribute '" msgstr "Attribut '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:312 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:312 msgid "' cannot be greater than attribute '" msgstr "' kann nicht größer sein als Attribut '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:329 -msgid "List ofe dges cannot be empty" -msgstr "Liste von Kanten kann nicht leer sein" +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:329 +msgid "List of edges cannot be empty" +msgstr "Liste der Kanten kann nicht leer sein" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:339 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:339 msgid "List of lanes cannot be empty" msgstr "Liste von Fahrstreifen kann nicht leer sein" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:439 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:439 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:232 msgid "Currently unsupported. Create rerouter elements using rerouter dialog" msgstr "" "Aktuell nicht unterstützt. Zum Erstellen von Rerouter-Elementen den Rerouter-" "Dialog nutzen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:444 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:444 msgid "Currently unsupported. Create VSS steps using VSS dialog" msgstr "" "Aktuell nicht unterstützt. Zum Erstellen von VSS-Schritten den VSS-Dialog " "nutzen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:449 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:449 msgid "Currently unsupported. Create calibratorFlows using calibrator dialog" msgstr "" "Aktuell nicht unterstützt. Zum Erstellen von Kalibrator-Flüssen den " "Kalibrator-Dialog nutzen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:66 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:67 msgid "Lane" msgstr "Fahrstreifen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:68 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:78 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:79 msgid "No lane selected" msgstr "Kein Fahrstreifen ausgewählt" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:80 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:81 msgid "Current Lane: " msgstr "Aktueller Fahrstreifen: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:89 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:395 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:90 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:396 msgid "Modifications" msgstr "Modifikationen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:93 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:94 msgid "Discard connection modifications (Esc)" msgstr "Verbindungsänderungen verwerfen (Esc)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:96 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:97 msgid "Save connection modifications (Enter)" msgstr "Verbindungsänderungen speichern (Enter)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:100 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:101 msgid "Protect routes" msgstr "Routen sichern" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:112 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:113 msgid "Changes reverted" msgstr "Änderungen rückgängig gemacht" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:129 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:130 msgid "Error saving connection operations" msgstr "Fehler beim Speichern der Verbindungsoperationen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:130 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:131 #, fuzzy msgid "Connection edition cannot be saved because route '" msgstr "Verbindungsbearbeitung kann nicht gespeichert werden, da Route '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:130 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:131 msgid "' is broken." msgstr "' ist gebrochen." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:138 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:139 msgid "Changes accepted" msgstr "Änderungen akzeptiert" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:151 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:152 msgid "Operations" msgstr "Operationen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:155 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:156 msgid "Select Dead Ends" msgstr "Sackgassen auswählen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:155 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:156 msgid "" "Selects all lanes that have no outgoing connection (clears previous " "selection)" @@ -10859,11 +11131,11 @@ "Wählt alle Fahrstreifen aus, die keine ausgehende Verbindung haben (löscht " "die vorherige Auswahl)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:159 msgid "Select Dead Starts" msgstr "Sackgassenanfänge auswählen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:159 msgid "" "Selects all lanes that have no incoming connection (clears previous " "selection)" @@ -10871,11 +11143,11 @@ "Wählt alle Fahrstreifen aus, die keine eingehende Verbindung haben (löscht " "die vorherige Auswahl)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:162 msgid "Select Conflicts" msgstr "Konflikte auswählen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:162 msgid "" "Selects all lanes with more than one incoming connection from the same edge " "(clears previous selection)" @@ -10883,325 +11155,285 @@ "Wählt alle Fahrstreifen mit mehr als einer eingehenden Verbindung von " "derselben Kante aus (löscht die vorherige Auswahl)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:165 msgid "Select Passing" msgstr "Ende auswählen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:164 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:165 msgid "" "Selects all lanes with a connection that has has the 'pass' attribute set" msgstr "" "Wählt alle Fahrstreifen mit einer Verbindung aus, für die das Attribut " -"'Durchgang' festgelegt ist" +"'pass' festgelegt ist" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:168 msgid "Clear Selected" msgstr "Auswahl leeren" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:168 msgid "Clears all connections of all selected objects" msgstr "Entfernt alle Verbindungen von allen ausgewählten Objekten" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:171 msgid "Reset Selected" msgstr "Auswahl zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:171 msgid "Recomputes connections at all selected junctions" msgstr "Berechnet Verbindungen an allen ausgewählten Knoten neu" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:262 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:263 msgid "clear connections from selected lanes, edges and junctions" msgstr "" "Verbindungen von ausgewählten Fahrspuren, Kanten und Knotenpunkten entfernen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:289 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:290 msgid "reset connections from selected lanes" msgstr "Verbindungen von ausgewählten Fahrstreifen zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:308 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:168 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2174 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:309 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:168 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2176 msgid "Selection" msgstr "Auswahl" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:313 -#, fuzzy -msgid "-Hold while" -msgstr "-Hold while" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:314 -msgid " clicking to create" -msgstr " klicken zum Erstellen" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:315 -#, fuzzy -msgid " unyielding connections" -msgstr " Verbindungen ohne Vorfahrtsrechten" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:316 -#, fuzzy -msgid " (pass=true)." -msgstr " (pass=true)." - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:321 -#, fuzzy -msgid "-Hold while" -msgstr "-Hold while" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:311 +msgid "" +"Hold while clicking to create unyielding connections (pass=true)." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:322 -msgid " clicking to create " -msgstr " klicken zum Erstellen " - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:323 -msgid " conflicting connections" -msgstr " widersprüchliche Verbindungen" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:324 -msgid " (i.e. at zipper nodes" -msgstr " (d. h. an Reißverschlussknoten" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:325 -msgid " or with incompatible" -msgstr " oder mit inkompatibel" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:326 -msgid " permissions" -msgstr " Berechtigungen" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:312 +msgid "" +"Hold while clicking to create conflicting connections (i.e. at zipper " +"nodes or with incompatible permissions" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:342 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:326 msgid "Possible Target" msgstr "Mögliches Ziel" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:347 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:331 msgid "Source lane" msgstr "Quellfahrstreifen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:351 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:335 msgid "Target lane" msgstr "Zielfahrstreifen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:355 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:339 #, fuzzy msgid "Target (pass)" msgstr "Ziel (pass)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:359 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:343 msgid "Conflict" msgstr "Konflikt" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:371 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:355 msgid "Edit Connections" msgstr "Verbindungen bearbeiten" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:437 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:421 msgid "modify connections" msgstr "Verbindungen ändern" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:488 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:472 msgid "Pedestrian connections are generated automatically" msgstr "Fußgängerverbindungen wurden automatisch generiert" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:490 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:474 msgid "Incompatible vehicle class permissions" msgstr "Inkompatible Fahrzeugklassenberechtigungen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:492 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:476 msgid "Another lane from the same edge already connects to that lane" msgstr "" "Ein anderer Fahrstreifen von derselben Kante ist bereits mit diesem " "Fahrstreifen verbunden" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:500 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:484 msgid "Invalid target for connection" msgstr "Ungültiges Ziel für die Verbindung" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:74 msgid "Template selector" msgstr "Vorlagen-Auswähler" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:79 msgid "Create default edge" msgstr "Standard-Kante erstellen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:80 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:82 msgid "Disallow for pedestrians" msgstr "Für Fußgänger nicht erlaubt" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:82 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:84 msgid "Add sidewalk" -msgstr "" +msgstr "Fußweg hinzufügen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:85 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:87 msgid "Use edgeType/template" msgstr "Kantentyp/Vorlage nutzen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:93 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:437 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1245 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1310 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:439 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1247 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1312 msgid "Add" msgstr "Hinzufügen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:93 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:95 msgid "Add edge type" msgstr "Kantentyp hinzufügen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:96 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:98 msgid "Delete edge type" msgstr "Kantentyp löschen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:99 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:101 msgid "Create from template" -msgstr "Vorlage erstellen" +msgstr "Aus Vorlage erstellen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:99 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:101 msgid "Create edgeType from template" -msgstr "Kantentyp von der Vorlage erstellen" +msgstr "Kantentyp aus der Vorlage erstellen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:318 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:367 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:320 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:369 msgid "create new edge type" msgstr "Neuen Kantentyp erstellen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:340 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:342 msgid "delete edge type" msgstr "Kantentyp löschen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:405 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:407 msgid "template: " msgstr "Vorlage: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:429 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:431 msgid "LaneType selector" -msgstr "Fahrstreifen-Typ-Auswähler" +msgstr "Fahrstreifentyp-Auswähler" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:437 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:439 msgid "Add lane type" msgstr "Fahrstreifentyp hinzufügen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:440 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:442 msgid "Delete lane type" msgstr "Fahrstreifentyp löschen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:537 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:539 msgid "add laneType" msgstr "Fahrstreifentyp hinzufügen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:574 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:576 msgid "remove laneType" msgstr "Fahrstreifentyp entfernen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:623 -msgid "- ESC:" -msgstr "- ESC:" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:624 -msgid " Deselect origin" -msgstr " Ursprung abwählen" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:625 +msgid "ESC:" +msgstr "ESC:" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:625 -#, fuzzy -msgid "- Control+Click:" -msgstr "- Control+Click:" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:626 +msgid "Deselect origin" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:626 -msgid " Move view" -msgstr " Ansicht verschieben" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:627 +msgid "Control+Click:" +msgstr "Control+Klick:" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:627 -#, fuzzy -msgid "- Shift+Click:" -msgstr "- Shift+Click:" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:628 +msgid "Move view" +msgstr "Ansicht verschieben" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:628 -msgid " Splits edge in both directions" -msgstr " Teilt Kanten in beiden Richtungen" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:629 -msgid "- Alt+Shift+Click:" -msgstr "- Alt+Shift+Click:" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:629 +msgid "Shift+Click:" +msgstr "Shift+Klick:" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:630 -#, fuzzy -msgid " Splits edge in one direction" -msgstr " Teilt Kante in eine Richtung" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:630 +msgid "Splits edge in both directions" +msgstr "Trennt Kante in beiden Richtungen auf" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:631 +msgid "Alt+Shift+Click:" +msgstr "Alt+Shift+Klick:" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:632 +msgid "Splits edge in one direction" +msgstr "Trennt Kante in einer Richtung auf" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:643 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:645 msgid "Create Edge" msgstr "Kante erstellen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:667 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:669 msgid "Select either default edgeType or a custom edgeType or template" msgstr "" "Entweder den standardmäßigen Kantentyp, einen benutzerdefinierten Kantentyp " "oder eine benutzerdefinierte Vorlage auswählen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:669 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:671 msgid "Invalid edge attributes" msgstr "Ungültige Kantenattribute" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:671 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:673 msgid "Invalid lane attributes" msgstr "Ungültige Fahrstreifenattribute" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:682 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:747 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:749 msgid "create new edge" msgstr "Neue Kante erstellen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:752 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:754 msgid "An edge with the same geometry already exists!" msgstr "Eine Kante mit der gleichen Geometrie existiert bereits!" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:755 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:757 msgid "Start- and endpoint for an edge must be distinct!" msgstr "Start- und Endpunkt einer Kante müssen verschieden sein!" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:70 msgid "Junction" msgstr "Knotenpunkt" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:97 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:98 msgid "selection of edges" msgstr "Auswahl von Kanten" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:102 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:505 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:560 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:566 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:654 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:658 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:103 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:506 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:560 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:566 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:653 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:657 msgid "Use selected edges" msgstr "Ausgewählte Kanten nutzen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:105 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:106 msgid "Clear edges" msgstr "Kanten entfernen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:108 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:109 msgid "Invert edges" msgstr "Kantenfolge umdrehen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:197 msgid "Crossing parameters" msgstr "Fußgängerfurtparameter" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:484 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1580 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1584 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:485 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1608 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1612 msgid "Create" msgstr "Erstellen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:487 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:488 msgid "Create crossing" msgstr "Fußgängerfurt erstellen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:514 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:515 msgid "" "There is already another crossing with the same edges in the junction; " "Duplicated crossing aren't allowed." @@ -11209,505 +11441,476 @@ "Es gibt bereits eine andere Fußgängerfurt mit den gleichen Kanten im " "Knotenpunkt; Doppelte Fußgängerfurten sind nicht erlaubt." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:540 -msgid "-Click over junction to" -msgstr "- Auf den Knotenpunkt klicken um" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:541 -msgid " mark candidate edges." -msgstr " Kandidatenkanten markieren." - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:542 -#, fuzzy -msgid "-Click over candidate" -msgstr "- Auf Kandidaten klicken" +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:539 +msgid "Click over junction to mark candidate edges." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:543 -msgid " edges for selecting." -msgstr " Kanten zum Auswählen." +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:539 +msgid "Click over candidate edges for selecting." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:547 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:541 msgid " Candidate" msgstr " Kandidat" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:551 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:545 msgid " Selected" msgstr " Ausgewählt" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:554 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:548 msgid " Invalid" msgstr " Ungültig" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:567 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:561 msgid "Crossings" msgstr "Fußgängerfurten" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:55 msgid "Selected connection" msgstr "Ausgewählte Verbindung" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:71 msgid "No Connection selected\n" msgstr "Keine Verbindung ausgewählt\n" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:74 msgid "- Junction: " msgstr "- Knotenpunkt: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:75 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:75 msgid "- From lane: " msgstr "- Ausgangsfahrstreifen: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:76 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:76 msgid "- To lane: " msgstr "- Endfahrstreifen: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:94 msgid "Selected" msgstr "Ausgewählt" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:95 msgid "Current selected connection" msgstr "Aktuell ausgewählte Verbindung" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:101 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:101 msgid "No conflict" msgstr "Kein Widerspruch" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:102 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:102 msgid "No conflict with the selected connection" msgstr "Kein Konflikt mit der ausgewählten Verbindung" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:107 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:107 msgid "Yields" msgstr "Vorfahrt geben / lassen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:108 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:108 msgid "Connection yields the selected connection" -msgstr "Verbindung ergibt die ausgewählte Verbindung" +msgstr "Verbindung achtet Vorfahrt der ausgewählten Verbindung" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:113 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:113 msgid "Has right of way" msgstr "Hat Vorfahrt" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:114 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:114 msgid "Connection has right of way with the selected connection" -msgstr "Die Verbindung hat Vorfahrt mit der ausgewählten Verbindung" +msgstr "Die Verbindung hat Vorfahrt vor der ausgewählten Verbindung" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:119 msgid "Unregulated conflict" msgstr "Unregulierter Konflikt" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:120 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:120 msgid "Connection has a unregulated conflict with the selected connection" msgstr "" "Verbindung hat einen ungeregelten Konflikt mit der ausgewählten Verbindung" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:125 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:125 msgid "Mutual conflict" msgstr "Gegenseitiger Konflikt" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:126 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:126 msgid "Connection has a mutual conflict with the selected connection" msgstr "" "Verbindung hat einen gegenseitigen Konflikt mit der ausgewählten Verbindung" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:175 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:175 msgid "Save prohibition modifications (Enter)" msgstr "Verbotsänderungen speichern (Enter)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:179 msgid "Unselect connection" msgstr "Verbindung abwählen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:181 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:181 msgid "Unselect connection (Esc)" msgstr "Verbindung abwählen (Esc)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:229 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:229 msgid "Prohibitions" msgstr "Verbote" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:57 #, fuzzy msgid "GEO POI Creator" msgstr "Geo-Pol-Ersteller" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:59 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:60 msgid "Format: Lon-Lat" msgstr "Format: Längengrad- Breitengrad" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:61 msgid "Format: Lat-Lon" msgstr "Format: Breitengrad- Längengrad" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:66 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:67 msgid "Center View after creation" -msgstr "Zentrumsansicht nach Erstellung" +msgstr "Nach Erstellung die Ansicht zentrieren" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:68 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:121 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:178 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:179 msgid "Create GEO POI (clipboard)" msgstr "Geo-Pol erstellen (Zwischenablage)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:136 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:141 msgid "Cartesian equivalence:" msgstr "Kartesische Äquivalenz:" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:72 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:141 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:142 msgid "- X = give valid longitude" msgstr "- X = gültigen Längengrad angeben" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:73 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:142 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:143 msgid "- Y = give valid latitude" msgstr "- Y = gültigen Breitengrad angeben" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:120 msgid "Create GEO POI" msgstr "Geo-Pol erstellen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:172 msgid "Using clipboard" msgstr "Zwischenablage nutzen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:330 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:228 +msgid "Shapes" +msgstr "Shapes" + +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:331 msgid "POILane can be only placed over lanes" -msgstr "Polstreifen kann nur über einen Fahrstreifen platziert werden" +msgstr "" +"An Fahrstreifen gebundene PoI können nur über einem Fahrstreifen platziert " +"werden" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:374 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:375 msgid "Current selected shape isn't valid." msgstr "Aktuell ausgewählte Shape ist nicht gültig." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:422 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:423 msgid "Polygon shape cannot be empty" msgstr "Polygon-Shape kann nicht leer sein" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:153 msgid "TAZ" msgstr "Verkehrsumlegungszone" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:160 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:204 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:205 msgid "No TAZ selected" msgstr "Keine Verkehrsumlegungszone ausgewählt" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:173 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:174 msgid "Current TAZ: " msgstr "Aktuelle Verkehrsumlegungszone: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:336 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:337 msgid "Invalid TAZ Child" msgstr "Ungültiges Verkehrsumlegungszonenkind" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:345 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:346 msgid "TAZ Statistics" msgstr "Verkehrsumlegungszonenstatistiken" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:348 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:891 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:349 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:888 msgid "Statistics" msgstr "Statistiken" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:375 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1132 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:376 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1129 msgid "- Number of edges: " msgstr "- Anzahl von Kanten: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:376 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1137 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:377 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1134 #, fuzzy msgid "- Min source: " msgstr "- Mindestquelle: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:377 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1138 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:378 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1135 #, fuzzy msgid "- Max source: " msgstr "- Maximalquelle: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:378 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1139 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:379 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1136 #, fuzzy msgid "- Average source: " msgstr "- Durchschnittsquelle: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:380 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1141 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:381 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1138 #, fuzzy msgid "- Min sink: " msgstr "- Mindestziel: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:381 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1142 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:382 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1139 #, fuzzy msgid "- Max sink: " msgstr "- Maximalziel: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:382 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1143 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:383 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1140 #, fuzzy msgid "- Average sink: " msgstr "- Durchschnittsziel: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:386 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:387 msgid "No TAZ Selected" msgstr "Keine Verkehrsumlegungszone ausgewählt" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:398 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:399 msgid "Confirm changes" msgstr "Änderungen bestätigen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:401 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:402 msgid "Cancel changes" msgstr "Änderungen aufheben" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:431 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:432 msgid "TAZ changes" msgstr "Verkehrsumlegungszonenänderungen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:484 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:485 msgid "TAZ Sources/Sinks" msgstr "Verkehrsumlegungszonenquellen/ziele" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:490 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:491 msgid "Membership" msgstr "Mitgliedschaft" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:491 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:492 msgid "Toggle" msgstr "Umschalten" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:496 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:497 msgid "New source" msgstr "Neue Quelle" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:501 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:502 msgid "New sink" msgstr "Neues Ziel" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:507 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:508 msgid "Set zero fringe prob." -msgstr "Nullrand-Wahrscheinlichkeit setzen." +msgstr "Randwahrscheinlichkeit auf Null setzen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:511 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:646 -#, fuzzy -msgid "- Toggle Membership:" -msgstr "- Mitgliedschaft ein-/ausschalten:" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:512 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:646 +msgid "Toggle Membership:" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:512 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:647 -msgid " Create new Sources/Sinks" -msgstr " Neue Quellen/Ziele erstellen" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:513 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:648 -msgid " with given weights." -msgstr " mit gegebenen Gewichten." +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:513 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:647 +msgid "Create new Sources/Sinks with given weights." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:563 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:656 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:655 msgid "Remove all edges" msgstr "Alle Kanten entfernen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:582 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:582 msgid "Remove all edges from selection" msgstr "Alle Kanten aus der Auswahl entfernen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:584 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:584 msgid "Add all edges to selection" msgstr "Alle Kanten zur Auswahl hinzufügen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:588 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:588 msgid "Remove edge from selection" msgstr "Kante aus der Auswahl entfernen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:590 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:590 msgid "Add edge to selection" msgstr "Kante zur Auswahl hinzufügen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:601 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:601 msgid "Remove " msgstr "Entfernen " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:601 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:601 msgid " edges from to selection" msgstr " Kanten von bis Auswahl" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:603 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:603 msgid "Add " msgstr "Hinzufügen " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:603 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:603 msgid " edges to selection" msgstr " Kanten zur Auswahl" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:639 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:639 msgid "toggle" msgstr "ein-/ausschalten" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:669 -#, fuzzy -msgid "- Keep Membership:" -msgstr "- Mitgliedschaft behalten:" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:668 +msgid "Keep Membership:" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:670 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:668 msgid " Select Sources/Sinks." msgstr " Quellen/Ziele auswählen." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:671 -msgid "- Press ESC to clear" -msgstr "- ESC drücken zum Entfernen" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:672 -msgid " current selection." -msgstr " aktuelle Auswahl." +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:669 +msgid "Press ESC to clear the current selection." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:849 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:846 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:849 msgid "Set weight 0 in " msgstr "Setzte Gewicht 0 in " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:849 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:846 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:849 msgid " sources and " msgstr " Quellen und " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:850 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:847 msgid " sinks from TAZ '" msgstr " Ziele von der Verkehrsumlegungszone '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:853 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:850 msgid " sinks from " msgstr " Ziele von " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:853 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:850 msgid " TAZs?" msgstr " Verkehrsumlegungszonen?" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:855 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:868 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:865 msgid "Set zero fringe probabilities" -msgstr "Nullrandwahrscheinlichkeiten festlegen" +msgstr "Randwahrscheinlichkeiten auf Null festlegen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:857 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:854 msgid "set zero fringe probabilities" -msgstr "Nullrandwahrscheinlichkeiten festlegen" +msgstr "Randwahrscheinlichkeiten auf Null festlegen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:868 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:865 msgid "No source/sinks to update." msgstr "Keine Quellen/Ziele zum Aktualisieren." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:878 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:875 msgid "Selection Statistics" msgstr "Auswahlstatistiken" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:882 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:879 msgid "Source" msgstr "Quelle" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:887 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:884 msgid "Sink" msgstr "Ziel" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:919 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:916 msgid "TAZEdgeColor already selected" msgstr "Verkehrsumlegungszonen-Kantenfarbe bereits ausgewählt" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:951 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:948 msgid "edge wasn't found" msgstr "Kante wurde nicht gefunden" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:953 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:950 msgid "Invalid edge" msgstr "Ungültige Kante" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1130 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1127 msgid "- Edge ID: " msgstr "- Kanten ID: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1165 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1162 msgid "TAZ parameters" msgstr "Verkehrsumlegungszonenparameter" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1190 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1187 msgid "Edges within" msgstr "Kanten innerhalb" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1191 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1298 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1188 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1295 msgid "use" msgstr "nutzen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1300 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1297 msgid "not use" msgstr "nicht genutzt" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1330 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1327 msgid "Non TAZ Edge" msgstr "Keine Verkehrsumlegungszonenkante" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1334 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1331 msgid "Selected TAZ Edge" msgstr "Ausgewählte Verkehrsumlegungszonenkante" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1339 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1336 msgid "Color by Source" -msgstr "Farbe der Quelle" +msgstr "EInfärbung nach Quelle" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1341 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1338 msgid "Color by Sink" -msgstr "Farbe des Ziels" +msgstr "Einfärbung nach Ziel" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1343 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1340 msgid "Color by Source + Sink" -msgstr "Farbe nach Quelle + Ziel" +msgstr "Einfärbung nach Quelle + Ziel" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1345 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1342 msgid "Color by Source - Sink" -msgstr "Farbe nach Quelle - Ziel" +msgstr "Einfärbung nach Quelle - Ziel" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1448 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1445 msgid "TAZs" msgstr "Verkehrsumlegungszonen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1614 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1611 msgid "TAZ shape needs at least three points" msgstr "Verkehrsumlegungszonen-Shape benötigt mindestens drei Punkte" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:121 msgid "Edit Traffic Light" msgstr "LSA bearbeiten" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:183 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:185 msgid "Click over a junction to edit a TLS" msgstr "Über einen Knotenpunkt klicken zum Bearbeiten einer LSA" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:195 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:197 msgid "Save TLS Changes" msgstr "LSA-Änderungen speichern" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:198 msgid "" "There is unsaved changes in current edited traffic light.\n" "Do you want to save it before changing mode?" @@ -11715,252 +11918,254 @@ "Es gibt nicht gespeicherte Änderungen in der aktuell bearbeiteten LSA.\n" "Möchtest Du es speichern, bevor Du den Modus änderst?" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:244 msgid "tlLogic '%', program '%' could not be built" msgstr "Konnte LSA-Logik '%', Programm '%' nicht erstellen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:255 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2935 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:257 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2963 msgid "Loaded " msgstr "Geladen " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:255 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:257 msgid " programs" msgstr " Programme" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:418 msgid "Invalid phase index" msgstr "Ungültiger Phasenindex" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:512 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:514 msgid "modifying TLS definition" msgstr "LSA-Definition verändern" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:526 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:528 msgid "Unsaved modifications. Abort or Save" msgstr "Nicht gespeicherter Änderungen. Verwerfen oder speichern" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:546 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:548 msgid "Traffic light Attributes" msgstr "LSA-Attribute" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:557 msgid "parameters" msgstr "Parameter" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 msgid "Assign E1 detectors" msgstr "E1-Detektoren festlegen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 msgid "Enable assign E1 mode" msgstr "E1-Zuweisungsmodus aktivieren" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 msgid "Assign E1 detectors to the current TLS" msgstr "E1-Detektoren der aktuellen LSA zuweisen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 msgid "Disable assign E1 mode" msgstr "E1-Zuweisungsmodus deaktivieren" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:879 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:881 msgid "Traffic Light" msgstr "LSA" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:884 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:945 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:886 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:955 msgid "Junction ID" msgstr "Knotenpunkt ID" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:891 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:893 msgid "TLS ID" msgstr "LSA ID" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 msgid "Join" msgstr "Zusammenführen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 msgid "Enable join mode" msgstr "Zusammenführungsmodus aktivieren" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 msgid "Join TLS and junctions in the current junction." -msgstr "Füge die LSA und die Knotenpunkte am aktuellen Knotenpunkt zusammen." +msgstr "Vereinige die LSA und die Knotenpunkte am aktuellen Knotenpunkt." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 msgid "Disable join mode" msgstr "Zusammenführungsmodus deaktivieren" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 msgid "Disjoin" msgstr "Trennen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 msgid "Disjoin current TLS" msgstr "Aktuelle LSA trennen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 msgid "Disjoin current TLS." msgstr "Aktuelle LSA trennen." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:952 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:923 +msgid "Finish join." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:925 +msgid "Cancel Join." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:962 msgid "no junction selected" msgstr "Kein Knotenpunkt ausgewählt" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:974 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:984 msgid "Junction IDs" msgstr "Knotenpunkt IDs" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1061 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1064 msgid "rename TLS" msgstr "LSA umbenennen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1140 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1143 msgid "change TLS type" msgstr "LSA-Typ ändern" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1216 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1227 msgid "join TLS" msgstr "LSA zusammenführen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1278 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1289 msgid "disjoin TLS" msgstr "LSA trennen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1340 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1368 msgid "Traffic Light Programs" msgstr "LSA-Programme" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1353 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1381 msgid "Create TLS" msgstr "LSA erstellen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1353 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1381 msgid "Create a new traffic light program." msgstr "Erstelle ein neues LSA-Programm." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1356 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1384 msgid "" "Delete a traffic light program. If all programs are deleted the junction " "turns into a priority junction." msgstr "" -"LSA-Programm löschen. Wenn alle Programme gelöscht werden, wird der " +"Lösche ein LSA-Programm. Wenn alle Programme gelöscht werden, wird der " "Knotenpunkt zu einem Vorrangsknotenpunkt." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1359 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1387 msgid "Reset single" msgstr "Einzeln zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1359 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1387 msgid "Reset current TLS program." msgstr "Aktuelles LSA-Programm zurücksetzen." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1362 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1390 msgid "Reset all" msgstr "Alles zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1362 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1390 msgid "Reset all TLS programs." msgstr "Alle LSA-Programme zurücksetzen." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1365 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1393 msgid "Save program modifications. (Enter)" msgstr "Programmänderungen speichern. (Enter)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1368 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1396 msgid "Discard program modifications. (Esc)" msgstr "Programmänderungen verwerfen. (Esc)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1463 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1491 msgid "TLSDefinition cannot be found" msgstr "LSA-Definition kann nicht gefunden werden" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1505 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1518 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1537 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1533 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1546 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1565 msgid "TLS cannot be created" msgstr "LSA kann nicht erstellt werden" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1506 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1534 msgid "Traffic Light cannot be created because junction must have" msgstr "LSA kann nicht erstellt werden, da ein Knotenpunkt vorhanden sein muss" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1507 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1535 msgid "at least one incoming edge and one outgoing edge." msgstr "mindestens eine eingehende Kante und eine ausgehende Kante." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1519 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1538 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1547 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1566 msgid "Traffic Light cannot be created because junction" msgstr "LSA kann nicht erstellt werden, da Knotenpunkt" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1520 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1548 msgid "must have at least one connection." msgstr "muss mindestens eine Verbindung haben." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1539 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1567 msgid "must have at least one controlled connection." msgstr "muss mindestens eine kontrollierte Verbindung haben." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1582 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1610 msgid "Duplicate" msgstr "Doppelt" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1622 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1650 msgid "reset current program" msgstr "aktuelles Programm zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1661 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1689 msgid "reset TLS" msgstr "LSA zurücksetzen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1822 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1850 msgid "duplicate program '%' of traffic light '%'" msgstr "doppeltes Programm '%' für die LSA '%'" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1868 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1896 msgid "Traffic light does not control any links" -msgstr "Die LSA steuert keine Links" +msgstr "Die LSA steuert keine Verbindungen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1880 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1908 msgid "Phases" msgstr "Phasen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1891 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1919 msgid "Clean States" msgstr "Status entfernen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1892 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1920 msgid "Clean unused states from all phase" msgstr "Ungenutzte Signalbilder aus allen Phasen entfernen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1893 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1921 msgid "Clean unused states from all phase. (Not allowed for multiple programs)" msgstr "" "Unbenutzte Signalbilder aus allen Phasen entfernen. (Nicht zulässig für " "mehrere Programme)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1897 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1925 msgid "Add States" msgstr "Status hinzufügen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1898 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1926 msgid "Extend the state vector for all phases by one entry" msgstr "Erweitere den Zustandsvektor für alle Phasen um einen Eintrag" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1899 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1927 msgid "" "Extend the state vector for all phases by one entry. (Unused until a " "connection or crossing is assigned to the new index)" @@ -11969,11 +12174,11 @@ "verwendet, bis dem neuen Index eine Verbindung oder eine Fußgängerfurt " "zugewiesen wird)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1903 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1931 msgid "Group Sig." msgstr "Gruppenzeichen." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1904 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1932 msgid "" "Shorten state definition by letting connections with the same signal states " "use the same index" @@ -11981,7 +12186,7 @@ "Verkürze die Zustandsdefinition, indem Verbindungen mit denselben " "Signalzuständen denselben Index verwenden" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1905 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1933 msgid "" "Shorten state definition by letting connections with the same signal states " "use the same index. (Not allowed for multiple programs)" @@ -11990,17 +12195,17 @@ "Signalzuständen denselben Index verwenden. (Nicht zulässig für mehrere " "Programme)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1909 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1937 msgid "Ungroup Sig." msgstr "Umgruppiertes Zeichen." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1910 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1938 msgid "Let every connection use a distinct index (reverse state grouping)" msgstr "" "Lasse jede Verbindung einen eindeutigen Index verwenden (umgekehrte " "Zustandsgruppierung)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1939 msgid "" "Let every connection use a distinct index (reverse state grouping). (Not " "allowed for multiple programs)" @@ -12008,1185 +12213,1625 @@ "Lasse jede Verbindung einen eindeutigen Index verwenden (umgekehrte " "Zustandsgruppierung). (Nicht zulässig für mehrere Programme)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2039 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2067 msgid "invalid column" msgstr "ungültige Spalte" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2598 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2626 msgid "Error deleting phase '" msgstr "Fehler beim löschen von Phase '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2870 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2898 msgid "TLS Program File" msgstr "LSA-Programmdatei" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2874 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2902 msgid "Load TLS program from additional file" msgstr "LSA-Programm aus weiterer Datei laden" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2876 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2904 msgid "Save TLS program to additional file" msgstr "LSA-Programm in weiterer Datei speichern" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2935 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2963 msgid " new programs for tlLogic '" msgstr " neue Programme für LSA-Logik '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2940 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2968 msgid "Updated program '" msgstr "Aktualisiertes Programm '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2940 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2968 msgid "' for tlLogic '" msgstr "' für LSA-Logik '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2944 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2972 msgid "No programs found for traffic light '" msgstr "Keine Programme gefunden für die LSA '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2963 -#, fuzzy +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2991 msgid "Save TLS Program as" msgstr "LSA-Programm speichern als" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:75 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:75 msgid "Current selected wire isn't valid." msgstr "Aktuell ausgewählte Oberleitung ist ungültig." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:117 #, c-format msgid "A % needs at least two lane positions" msgstr "Ein % benötigt mindestens zwei Fahrstreifenpositionen" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:237 msgid "Currently unsupported. Create VSS steps elements using VSS dialog" msgstr "" "Derzeit nicht unterstützt. Erstelle VSS-Schrittelemente mit dem VSS-Dialog" -#: /home/micha/programming/sumo/src/netedit/netedit_main.cpp:49 +#: D:\Repos\sumo/src\netedit\netedit_main.cpp:49 msgid "" "Graphical editor for SUMO networks, demand and additional infrastructure." msgstr "" "Grafischer Editor für SUMO-Netze, die Nachfrage und zusätzliche " "Infrastruktur." -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:126 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:127 msgid "Original network" -msgstr "" +msgstr "Ursprüngliches Netz" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:129 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:130 msgid "Modified network" -msgstr "" +msgstr "Verändertes Netz" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:132 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:133 msgid "Output prefix network" -msgstr "" +msgstr "Präfix für finales Netz" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:136 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:137 msgid "Select modified elements" -msgstr "" +msgstr "Veränderte Elemente auswählen" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:139 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:140 msgid "Select added elements" -msgstr "" +msgstr "Hinzugefügte Elemente auswählen" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:142 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:143 msgid "Select deleted elements" -msgstr "" +msgstr "Gelöschte Elemente auswählen" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:146 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:147 msgid "Load shapes for elements" -msgstr "" +msgstr "Shapes der Elemente laden" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:149 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:150 msgid "Load shapes for added" -msgstr "" +msgstr "Shapes der hinzugefügten Elemente laden" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:152 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:153 msgid "Load shapes for deleted elements" -msgstr "" +msgstr "Shapes der gelöschten Elemente laden" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:165 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:166 msgid "load shapes from '" -msgstr "" +msgstr "lade Shapes aus '" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:169 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:170 msgid "Loading of shape file failed: " -msgstr "" +msgstr "Laden der Shape-Datei fehlgeschlagen: " -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:172 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:173 msgid "Loading of shape file sucessfully: " -msgstr "" +msgstr "Shape-Datei erfolgreich geladen: " -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:42 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:43 msgid "Execute python tool '" -msgstr "" +msgstr "Führe das folgende Python-Werkzeug aus: '" -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:153 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:177 #, c-format msgid "Loaded % configuration." -msgstr "" +msgstr "Konfiguration für % geladen." -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:182 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:206 #, c-format msgid "Saved % configuration." -msgstr "" +msgstr "Konfiguration für % gespeichert." -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:71 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:55 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:76 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:60 msgid "cancelled by user\n" -msgstr "" +msgstr "auf Nutzerwunsch abgebrochen\n" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:102 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:86 -msgid "popen() failed!" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:114 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:98 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:119 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:103 msgid "starting process...\n" -msgstr "" +msgstr "Prozess starten...\n" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:124 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:108 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:137 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:121 msgid "error processing command\n" -msgstr "" +msgstr "Fehler während der Ausführung des Befehls\n" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:136 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:120 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:152 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:136 msgid "process finished\n" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:142 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:125 -msgid "starting process silently...\n" -msgstr "" +msgstr "Prozess abgeschlossen\n" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:75 -#, fuzzy +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:75 msgid "&Load selection" -msgstr "&Lade Auswahl" +msgstr "Auswahl &laden" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:77 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:77 msgid "&Save selection" msgstr "&Auswahl speichern" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:81 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:81 msgid "&Deselect chosen" msgstr "&Auswahl abwählen" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:83 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:83 msgid "&Clear selection" msgstr "&Auswahl leeren" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:87 -#, fuzzy +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:87 msgid "Cl&ose" msgstr "Schl&ießen" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:137 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:137 msgid "Errors while loading Selection" msgstr "Fehler beim Laden der Auswahl" -#: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:116 +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:116 msgid "Unknown object in GUISelectedStorage::select (id=%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:133 +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:133 msgid "Unknown object in GUISelectedStorage::deselect (id=%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:150 +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:150 msgid "Unknown object in GUISelectedStorage::toggleSelection (id=%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:74 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:74 msgid "Unknown format!" msgstr "Unbekanntes Format!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:91 -#, fuzzy +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:91 msgid "Unknown codec, falling back to HEVC!" -msgstr "Unbekannter Codec, Rückgriff auf HEVC!" +msgstr "Unbekannter Codec, nutze stattdessen HEVC!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:95 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:95 msgid "Unknown codec!" msgstr "Unbekannter Codec!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:100 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:100 msgid "Could not allocate video codec context!" msgstr "Konnte Videocodeckontext nicht zuweisen!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:136 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:136 msgid "Could not open codec!" msgstr "Konnte Codec nicht öffnen!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:142 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:142 msgid "Could not allocate video frame!" msgstr "Konnte Videoframe nicht zuweisen!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:148 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:148 msgid "Could not allocate the video frame data!" msgstr "Konnte die Videoframedaten nicht zuweisen!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:155 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:155 msgid "Failed to open output file!" msgstr "Öffnen der Ausgabedatei fehlgeschlagen!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:160 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:160 msgid "Failed to write file header!" msgstr "Fehler beim Schreiben der Dateikopfzeile!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:165 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:165 msgid "Could not allocate video packet!" msgstr "Konnte Videopaket nicht zuweisen!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:175 -#, fuzzy +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:175 msgid "Error sending final frame!" -msgstr "Fehler beim Senden des finales Frames!" +msgstr "Fehler beim Senden des finales Frame!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:183 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:183 msgid "Error during final encoding step!" msgstr "Fehler beim finalen Encodierungsschritt!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:214 -#, fuzzy +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:214 msgid "Error sending frame for encoding!" -msgstr "Fehler beim Senden des Frames zur Encodierung!" +msgstr "Fehler beim Senden des Frame zur Encodierung!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:222 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:222 msgid "Error during encoding!" msgstr "Fehler beim Encodieren!" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUIGLObjectPopupMenu.cpp:170 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGLObjectPopupMenu.cpp:170 msgid "Object must be a lane" msgstr "Objekt muss ein Fahrstreifen sein" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:87 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:285 +msgid "Copy name to clipboard" +msgstr "Namen in Zwischenablage" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:286 +msgid "Copy typed name to clipboard" +msgstr "Typisierten Namen in Zwischenablage" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:296 +msgid "Remove From Selected" +msgstr "Aus Auswahl entfernen" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:298 +msgid "Add To Selected" +msgstr "Zu Auswahl hinzufügen" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:308 +msgid "Show Parameter" +msgstr "Parameter anzeigen" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:317 +msgid "Show Type Parameter" +msgstr "Typparameter anzeigen" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:326 +msgid "Copy cursor position to clipboard" +msgstr "Zeigerposition in Zwischenablage" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:328 +msgid "Copy cursor geo-position to clipboard" +msgstr "Geokoordinate der Zeigerposition in Zwischenablage" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:332 +msgid "Show cursor geo-position in " +msgstr "Geokoordinate der Zeigerposition in " + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:350 +msgid "Open Manipulator..." +msgstr "Manipulator öffnen..." + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:389 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:412 +msgid "type: %" +msgstr "Typ: %" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:87 msgid "&Save changes" -msgstr "" +msgstr "Änderungen &speichern" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:88 +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:88 msgid "&Don't save" -msgstr "" +msgstr "&Nicht speichern" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:89 +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:89 msgid "&Abort" -msgstr "" +msgstr "&Abbrechen" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUIShapeContainer.cpp:56 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIShapeContainer.cpp:56 msgid "Replacing POI '%'" msgstr "Ersetze Pol '%'" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUIShapeContainer.cpp:81 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIShapeContainer.cpp:81 msgid "Replacing polygon '%'" msgstr "Ersetze Polygon '%'" -#: /home/micha/programming/sumo/src/utils/gui/images/GUIIconSubSys.cpp:981 +#: D:\Repos\sumo/src\utils\gui\images\GUIIconSubSys.cpp:989 msgid "Instance was previously created" msgstr "Instanz wurde zuvor erstellt" -#: /home/micha/programming/sumo/src/utils/gui/images/GUITextureSubSys.cpp:223 +#: D:\Repos\sumo/src\utils\gui\images\GUITextureSubSys.cpp:223 msgid "Undefined texture" msgstr "Undefinierte Textur" -#: /home/micha/programming/sumo/src/utils/gui/images/VClassIcons.cpp:91 +#: D:\Repos\sumo/src\utils\gui\images\VClassIcons.cpp:91 msgid "Invalid vClass" msgstr "Ungültige Fahrzeugklasse" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:77 +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:77 msgid "The 'value' attribute is deprecated for breakpoints. Please use 'time'." msgstr "" "Das 'value'-Attribut ist für Haltepunkte veraltet. Bitte verwende 'time'." -#: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:383 -#, fuzzy +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:383 msgid "The 'filename' attribute is deprecated for decals. Please use 'file'." msgstr "" -"Das Attribut 'filename' ist für Abziehbilder veraltet. Bitte verwende " -"'Datei'." +"Das Attribut 'filename' für Hintergrundbilder ist veraltet. Bitte verwende " +"'file'." -#: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:559 +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:559 msgid " Could not decode breakpoint '%'" msgstr " Konnte Unterbrechungspunkt '%' nicht dekodieren" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUIVisualizationSettings.cpp:2348 +#: D:\Repos\sumo/src\utils\gui\settings\GUIVisualizationSettings.cpp:2348 msgid "No color defined for LinkState '%'" msgstr "Keinen Farbe definiert für den Linkstand '%'" -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:116 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:116 msgid "Save the data..." msgstr "Speicher die Daten..." -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:131 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:131 msgid "Multiplot" msgstr "Multiplot" -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:219 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:219 msgid "Save Data" msgstr "Daten speichern" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:85 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:85 msgid "Track" msgstr "Verfolgen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:92 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:92 msgid "&Hide Unselected" msgstr "Andere ausblenden" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:93 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:93 msgid "By &Name" msgstr "Nach &Namen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:93 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:93 msgid "Locate item by name" msgstr "Element anhand des Namens lokalisieren" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:94 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:94 msgid "&Select/deselect" msgstr "&Auswählen/abwählen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:94 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:94 msgid "Select/deselect current object" msgstr "Aktuelles Objekt auswählen/abwählen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:95 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:95 msgid "&Filter substring" msgstr "Nach Zeichenkette &filtern" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:96 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:96 msgid "Select &all" msgstr "&Alle auswählen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:96 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:96 msgid "Select all items in list" msgstr "Alle Elemente der Liste auswählen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:97 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:97 msgid "&Deselect all" msgstr "Alles ab&wählen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:97 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:97 msgid "Deselect all items in list" msgstr "Alle Elemente der Liste abwählen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:98 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:98 msgid "&Update" msgstr "&Aktualisieren" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:98 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:98 msgid "Reload all ids" msgstr "Alle IDs erneut laden" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:102 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:102 msgid "case-sensitive search" msgstr "Groß- und Kleinschreibung beachten" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:104 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:104 msgid "auto-center" msgstr "automatisch zentrieren" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:329 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:329 #, c-format msgid "% objects" -msgstr "" +msgstr "% Objekte" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:65 -#, fuzzy +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:65 msgid "Load viewport from file" msgstr "Ansichtsbereich aus Datei laden" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:67 -#, fuzzy +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:67 msgid "Save viewport to file" msgstr "Ansichtsbereich in Datei speichern" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:210 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:210 msgid "Load Viewport" msgstr "Ansichtsbereich laden" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:229 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:229 msgid "Save Viewport" msgstr "Ansichtsbereich speichern" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:277 -msgid "Run tool" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:278 -msgid "Cancel tool" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:280 -msgid "Accept settings" -msgstr "Settings akzeptieren" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:87 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:87 msgid "View Settings" -msgstr "Settings anzeigen" +msgstr "Darstellungseinstellungen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:989 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:989 msgid "Enter a name" msgstr "Name eintragen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:991 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:991 msgid "Please enter an alphanumeric name: " msgstr "Bitte gebe einen alphanumerischen Namen ein: " -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1070 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1070 msgid "Export view settings" msgstr "Ansichtssettings exportieren" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1121 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1121 msgid "Import view settings" msgstr "Darstellungseinstellungen importieren" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1138 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1155 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1138 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1155 msgid "Load Decals" msgstr "Bilder laden" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1172 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1172 msgid "Save Decals" msgstr "Bilder speichern" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1242 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1307 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1244 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1309 msgid "No Data" msgstr "Keine Daten" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1246 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1311 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1248 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1313 msgid "Remove" msgstr "Entfernen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1569 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1614 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1571 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1616 msgid "Only for selected" msgstr "Nur für ausgewählte" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1571 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1573 msgid "constant text size" msgstr "konstante Textgröße" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1574 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1576 msgid "Size" msgstr "Größe" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1579 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1692 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1730 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1851 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1933 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1973 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1999 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2119 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2154 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2217 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1581 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1694 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1732 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1853 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1935 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1975 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2001 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2121 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2156 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2219 msgid "Color" msgstr "Farbe" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1581 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1687 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1583 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1689 msgid "Background" msgstr "Hintergrund" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1612 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1614 msgid "Draw with constant size when zoomed out" msgstr "Beim Verkleinern mit konstanter Größe zeichnen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1617 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1619 msgid "Minimum Size" msgstr "Minimale Größe" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1621 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1623 msgid "Exaggerate by" msgstr "Überzogen um" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1667 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1669 msgid "Save the setting to registry" msgstr "Die Einstellungen in der Registry speichern" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1668 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1670 msgid "Remove the setting from registry" msgstr "Die Einstellung aus der Registry entfernen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1669 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1671 msgid "Export setting to file" msgstr "Einstellungen in die Datei exportieren" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1670 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1672 msgid "Load setting from file" msgstr "Einstellungen aus Datei laden" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1673 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1675 msgid "Export includes:" msgstr "Der Export umfasst:" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1674 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1676 msgid "Viewport" msgstr "Ansichtsbereich" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1675 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1677 msgid "Delay" msgstr "Verzögerung" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1676 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1678 msgid "Decals" msgstr "Bilder" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1677 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1679 msgid "Breakpoints" msgstr "Unterbrechungspunkte" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1696 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1698 msgid "Decals:" msgstr "Bilder:" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1699 -#, fuzzy +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1701 msgid "&Load XML Decals" -msgstr "&Lade XML-Hintergründe" +msgstr "XML-Hintergrunddefinition &laden" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1700 -#, fuzzy +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1702 msgid "&Save XML Decals" -msgstr "&Speicher XML-Hintergründe" +msgstr "XML-Hintergrunddefinition &speichern" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1701 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1703 msgid "&Clear Decals" msgstr "&Entferne Bilder" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1706 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1708 msgid "Toggle grid" msgstr "Raster ein/-ausschalten" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1710 -#, fuzzy +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1712 msgid "x-spacing" msgstr "x-Abstand" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1715 -#, fuzzy +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1717 msgid "y-spacing" msgstr "y-Abstand" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1724 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1726 msgid "Streets" msgstr "Straßen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1732 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1761 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1855 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1868 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1937 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1977 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2003 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2123 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2158 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2219 -#, fuzzy +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1734 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1763 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1857 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1870 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1939 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1979 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2005 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2125 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2160 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2221 msgid "Interpolate" msgstr "Interpolieren" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1744 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2006 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2229 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1746 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2008 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2231 msgid "Recalibrate Rainbow" msgstr "Regenbogen neu kalibrieren" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1746 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1748 msgid "hide below" msgstr "unten verstecken" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1750 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1752 msgid "hide above" msgstr "oben verstecken" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1759 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1761 msgid "Scale width" msgstr "Skalenbreite" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1782 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1784 msgid "Show bike markings" msgstr "Fahrradmarkierungen anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1784 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1786 msgid "Show turning arrows" msgstr "Drehpfeile anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1787 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1789 msgid "Show right-of-way rules" msgstr "Vorfahrtsregeln anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1789 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1791 msgid "Realistic stop line colors" msgstr "Realistische Haltelinienfarben" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1792 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1794 msgid "Show lane borders" msgstr "Fahrstreifengrenzen anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1794 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1796 msgid "Show lane direction" msgstr "Fahrstreifenrichtung anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1797 -#, fuzzy +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1799 msgid "Hide macro connectors" msgstr "Makrokonnektoren ausblenden" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1799 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1801 msgid "Show sublanes" msgstr "Subfahrstreifen anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1802 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1804 msgid "Show rails" msgstr "Gleise anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1804 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1806 msgid "Spread bidirectional railways/roads" msgstr "Zweirichtungsgleise/-straßen nebeneinander zeichnen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1804 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1806 msgid "" "Make both directional edges for a bidirectional railways or roads visible" msgstr "Zeige beide Richtungskanten für bidirektionale Gleise oder Straßen an" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1807 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1809 msgid "Secondary shape" msgstr "Zweite Shape" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1812 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1814 msgid "Exaggerate width by" msgstr "Breite überzogen um" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1818 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1820 msgid "Minimum size" msgstr "Minimale Größe" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1824 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1826 msgid "Show edge id" msgstr "Kanten ID anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1825 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1827 msgid "Show street name" msgstr "Straßenname anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1826 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1828 msgid "Show edge color value" msgstr "Kantenfarbenwert anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1827 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1829 msgid "Show edge scale value" msgstr "Kantenskalierfaktor anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1838 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1921 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1961 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1840 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1923 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1963 msgid "Show As" msgstr "Anzeigen als" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1840 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1923 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1963 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1842 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1925 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1965 msgid "'triangles'" msgstr "'Dreiecke'" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1841 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1964 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1843 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1966 msgid "'boxes'" msgstr "'Rechtecke'" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1842 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1925 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1965 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1844 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1927 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1967 msgid "'simple shapes'" msgstr "'einfache Shapes'" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1843 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1926 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1966 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1845 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1928 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1968 msgid "'raster images'" msgstr "'Rasterelemente'" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1844 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1924 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1846 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1926 msgid "'circles'" msgstr "'Kreise'" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1866 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1868 msgid "Scale size" msgstr "Skalengröße" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1875 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1877 msgid "Show vehicle id" msgstr "Fahrzeug ID anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1876 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1878 msgid "Show vehicle color value" msgstr "Fahrzeugfarbenwert anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1877 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1879 msgid "Show vehicle scale value" msgstr "Fahrzeugskalenwert anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1878 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1880 msgid "Show vehicle text param" msgstr "Fahrzeugtextparameter anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1885 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1887 msgid "Show blinker / brake lights" msgstr "Blinker / Bremslichter anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1887 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1889 msgid "Show minimum gap" msgstr "Mindestabstand anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1889 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1891 msgid "Show brake gap" msgstr "Bremslücke anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1891 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1893 msgid "Show Bluetooth range" msgstr "Bluetooth-Reichweite anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1893 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1895 msgid "Show route index" msgstr "Routenindex anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1895 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1897 msgid "Scale length with geometry" msgstr "Länge zusammen mit Geometrie skalieren" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1897 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1899 msgid "Show parking info" msgstr "Parkinformation anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1899 -#, fuzzy +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1901 msgid "Draw reversed vehicles in reverse" -msgstr "Rückwärts gefahrene Fahrzeuge rückwärts zeichnen" +msgstr "Umgedrehte Fahrzeuge auch umgedreht zeichnen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1944 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1946 msgid "Show person id" msgstr "Personen ID zeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1945 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1947 msgid "Show person color value" msgstr "Personenfarbenwert anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1956 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1958 msgid "Containers" msgstr "Container" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1984 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1986 msgid "Show container id" msgstr "Container ID anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1995 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1997 msgid "Junctions" msgstr "Knotenpunkte" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2012 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2014 msgid "Draw junction shape" msgstr "Knotenpunkt-Shape zeichnen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2014 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2016 msgid "Draw crossings/walkingareas" msgstr "Fußgängerfurten/Walkingareas zeichnen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2016 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2018 msgid "Show lane to lane connections" msgstr "Verbindungen von Fahrstreifen zu Fahrstreifen anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2020 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2022 msgid "Show link tls index" msgstr "Signalgruppenindex der Verbindung anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2021 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2023 msgid "Show link junction index" msgstr "Verbindungsindex anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2022 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2024 msgid "Show junction id" msgstr "Knotenpunkt ID anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2023 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2025 msgid "Show internal junction id" msgstr "Interne Knotenpunkt ID anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2024 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2026 msgid "Show internal edge id" msgstr "Interne Kanten ID anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2025 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2027 msgid "Show crossing and walkingarea id" msgstr "Fußgängerfurt und walkingArea ID anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2026 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2028 msgid "Show traffic light phase index" msgstr "LSA-Phasenindex anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2027 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2029 msgid "Show traffic light phase name" msgstr "LSA-Phasenname anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2028 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2030 msgid "Show junction name" msgstr "Knotenpunktname anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2034 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2036 msgid "Additional" msgstr "Weitere" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2039 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2041 msgid "Show object id" msgstr "Objekt ID anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2040 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2042 msgid "Show full name" msgstr "Vollständigen Namen anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2047 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2049 msgid "StoppingPlace" msgstr "Halteplatz" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2048 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2050 msgid "body" msgstr "Körper" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2049 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2051 msgid "sign" msgstr "Zeichen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2072 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2074 msgid "element" msgstr "Element" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2073 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2075 msgid "color" msgstr "Farbe" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2074 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2076 msgid "width" msgstr "Breite" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2114 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2116 msgid "POIs" msgstr "Pole" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2130 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2132 msgid "POI detail" msgstr "Poldetail" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2135 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2137 msgid "Show poi id" msgstr "Pol ID anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2136 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2138 msgid "Show poi type" msgstr "Poltypen anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2137 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2139 msgid "Show poi text param" msgstr "Poltextparameter anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2149 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2151 msgid "Polygons" msgstr "Polygone" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2164 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2166 msgid "Show polygon id" msgstr "Polygon ID anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2165 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2167 msgid "Show polygon types" msgstr "Polygontypen anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2179 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2181 msgid "Default Selection Color" msgstr "Standard Auswahlfarbe" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2182 -#, fuzzy +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2184 msgid "Miscellaneous" msgstr "Verschiedenes" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2231 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2233 msgid "hide below threshold" msgstr "unter der Schwelle verbergen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2238 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2240 msgid "Exaggerate edgeRelation width by" msgstr "Kantenbeziehungsbreit überziehen um" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2243 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2245 msgid "Exaggerate tazRelation width by" msgstr "Verkehrsumlegungszonenbeziehungsbreite überziehen um" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2249 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2251 msgid "Show data color value" msgstr "Datenfarbenwert anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2255 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2257 msgid "Legend" msgstr "Legende" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2260 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2262 msgid "Show Size Legend" msgstr "Legendengröße anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2263 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2265 msgid "Show Edge Color Legend" msgstr "Kantenfarbenlegende anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2266 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2268 msgid "Show Vehicle Color Legend" msgstr "Fahrzeugfarbenlegende anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2279 -#, fuzzy +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2281 msgid "Dither" -msgstr "Schwankung" +msgstr "Fehlerdiffusion" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2285 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2287 msgid "Draw boundaries" msgstr "Grenzen zeichnen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2288 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2290 msgid "Force draw for position selection" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2291 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2293 msgid "Force draw for rectangle selection" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2294 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2296 msgid "Disable dotted contours during selection/deletion" msgstr "Gepunktete Konturen beim Auswählen/Löschen deaktivieren" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2297 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2299 msgid "Recalculate boundaries" msgstr "Grenzen neu berechnen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2300 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2302 msgid "Show geometry point indices" msgstr "Geometriepunktindizes anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2306 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2308 msgid "3D view" msgstr "3D Ansicht" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2311 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2313 msgid "Show TLS link markers" msgstr "LSA Linkmarker anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2314 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2316 msgid "Show domes around TLS models from decals" msgstr "Über Hintergrundbilder definierte Signalkuppen für LSA anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2317 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2319 msgid "Show auto-generated TLS models" -msgstr "Automatisch generiere LSA-Modelle anzeigen" +msgstr "Automatisch generierte LSA-Modelle anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2319 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2321 msgid "Show head-up display" msgstr "Warndisplay anzeigen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2325 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2327 msgid "Sun brightness" msgstr "Helligkeit der Sonne" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2337 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2339 msgid "Sky color" msgstr "Himmelsfarbe" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:120 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:120 msgid "Recenter View" -msgstr "" +msgstr "Ansicht zentrieren" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:120 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:120 msgid "Recenter view to the simulated area." -msgstr "" +msgstr "Ansicht auf den simulierten Bereich zentrieren." -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:124 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:124 msgid "Opens a menu which lets you edit the viewport. (Ctrl+I)" msgstr "" +"Öffnet ein Menü mit dem der Ansichtsbereich verändert werden kann. (Ctrl+I)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:128 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:128 msgid "Toggle Zooming Style" -msgstr "" +msgstr "Zoom-Art wechseln" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:128 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:128 msgid "" "Toggles whether zooming is based at cursor position or at the center of the " "view." msgstr "" +"Wechselt zwischen einer Zoom-Referenzposition am Mauszeiger und einer in " +"Ansichtsmitte." -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:135 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:135 msgid "Locate Structures" -msgstr "" +msgstr "Strukturen finden" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:135 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:135 msgid "Locate structures within the network." -msgstr "" +msgstr "Findet Strukturen im Netz." -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:139 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:139 msgid "Toggle View Tooltips" -msgstr "" +msgstr "Hinweistexte über der Ansicht an-/abschalten" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:139 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:139 msgid "Toggles whether tooltips in the view shall be shown." -msgstr "" +msgstr "Schaltet die Darstellung von Hinweistexten über der Ansicht an/ab." -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:145 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:145 msgid "Toggle Menu Tooltips" -msgstr "" +msgstr "Hinweistexte über dem Menü an-/abschalten" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:145 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:145 msgid "Toggles whether tooltips in the menu shall be shown." -msgstr "" +msgstr "Schaltet die Darstellung von Hinweistexten über dem Menü an/ab." -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:161 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:161 msgid "Edit Coloring Schemes" -msgstr "" +msgstr "Farbschemata bearbeiten" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:161 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:161 msgid "Opens a menu which lets you edit the coloring schemes. (F9)" -msgstr "" +msgstr "Öffnet ein Menu zum Bearbeiten der Farbschemata. (F9)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:172 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:172 msgid "Make Snapshot" -msgstr "" +msgstr "Momentaufnahme" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:172 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:172 msgid "Makes a snapshot of the view." -msgstr "" +msgstr "Produziert eine Momentaufnahme der Ansicht." -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:294 -#, fuzzy +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:294 msgid "option window-size requires INT,INT" -msgstr "Option Fenstergröße erfordert INT,INT" +msgstr "Option window-size erfordert INT,INT" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:311 -#, fuzzy +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:311 msgid "option window-pos requires INT,INT" -msgstr "Option Fensterposition erfordert INT,INT" +msgstr "Option window-pos erfordert INT,INT" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:340 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:340 msgid "Langua&ge" msgstr "Sprach&e" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:342 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:342 msgid "Change language to english. (en)" msgstr "Sprache zu Englisch wechseln. (en)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:344 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:344 msgid "Change language to german. (de)" msgstr "Sprache zu Deutsch ändern. (de)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:346 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:346 msgid "Change language to spanish. (es)" msgstr "Sprache zu Spanisch ändern. (es)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:348 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:348 msgid "Change language to french. (fr)" msgstr "Sprache zu Französisch ändern. (fr)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:350 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:350 msgid "Change language to italian. (it)" -msgstr "" +msgstr "Sprache zu Italienisch wechseln. (it)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:352 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:352 msgid "简体中文 (zh)" msgstr "简体中文 (zh)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:354 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:354 msgid "繁體中文 (zh-Hant)" msgstr "繁體中文 (zh-Hant)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:356 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:356 msgid "Change language to turkish. (tr)" msgstr "Sprache zu Türkisch ändern. (tr)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:358 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:358 msgid "Change language to hungarian. (hu)" msgstr "Sprache in Ungarisch ändern. (hu)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:372 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:372 msgid "german" msgstr "Deutsch" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:376 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:376 msgid "spanish" msgstr "Spanisch" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:380 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:380 msgid "french" msgstr "Französisch" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:384 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:384 msgid "italian" -msgstr "" +msgstr "Italienisch" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:388 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:388 msgid "chinese" msgstr "Chinesisch" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:392 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:392 msgid "chinese simplified" msgstr "Chinesisch (vereinfacht)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:396 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:396 msgid "turkish" msgstr "Türkisch" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:400 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:400 msgid "hungarian" msgstr "Ungarisch" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:404 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:404 msgid "english" msgstr "Englisch" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:412 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:412 msgid "Language changed to " msgstr "Sprache wechseln in " -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:414 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:414 msgid "Restart needed" msgstr "Neustart erforderlich" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:415 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:415 msgid "Changing display language needs restart to take effect." msgstr "" "Die Änderung der Anzeigesprache muss neu gestartet werden, damit sie wirksam " "wird." -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:418 -#, fuzzy +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:418 msgid "" "For the Debug build you might also need to set the LANG environment variable." msgstr "" "Für den Debug-Build muss möglicherweise auch die Umgebungsvariable LANG " "festgelegt werden." -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:421 -#, fuzzy +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:421 msgid "Under development. You can help to improve the translation at:" msgstr "" -"In Entwicklung. Sie können helfen, die Übersetzung zu verbessern unter:" +"In Entwicklung. Sie können helfen, unter der nachfolgenden Adresse die " +"Übersetzung zu verbessern:" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:254 +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:254 msgid " (No projection defined)" msgstr " (Keine Projektion definiert)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:1738 +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:1747 msgid "Could not convert coordinates in %." msgstr "Konnte Koordinaten nicht in % konvertieren." +#~ msgid "Emissions" +#~ msgstr "Emissionen" + +#~ msgid "Mode for creating person plans. (C)" +#~ msgstr "Modus zum Erstellen von Personenplänen. (C)" + +#~ msgid "Mode for creating containers. (P)" +#~ msgstr "Modus zum Erstellen von Containern. (P)" + +#~ msgid "Undo enable " +#~ msgstr "Aktivieren rückgängig machen " + +#~ msgid " attribute in '" +#~ msgstr " Attribut in '" + +#~ msgid "Redo enable " +#~ msgstr "Aktivieren wiederholen " + +#~ msgid "Copy " +#~ msgstr "Kopieren " + +#~ msgid " name to clipboard" +#~ msgstr " Name in Zwischenablage" + +#~ msgid " typed name to clipboard" +#~ msgstr " Name mit Typangabe in Zwischenablage" + +#~ msgid "Could not build access in netedit; The lane '" +#~ msgstr "Konnte einen Zugriff in netedit nicht erstellen; Der Fahrstreifen '" + +#~ msgid "' doesn't support pedestrians" +#~ msgstr "' unterstützt keine Fußgänger" + +#~ msgid "Could not build parking area with ID '" +#~ msgstr "Konnte den Parkplatz mit der ID ' nicht erstellen" + +#~ msgid "' in netedit; Invalid departPos over lane." +#~ msgstr "' in netedit; Ungültige Ankunftsposition über Fahrstreifen." + +#~ msgid "Could not build lane area detector with ID '" +#~ msgstr "Konnte keinen Fahrstreifen-Bereichsdetektor mit der ID ' erstellen" + +#~ msgid "' in netedit; invalid traffic light ID." +#~ msgstr "' in netedit; ungültige LSA ID." + +#~ msgid "' in netedit; Lanes aren't consecutives." +#~ msgstr "' in netedit; Fahrstreifen sind nicht aufeinanderfolgend." + +#~ msgid "Could not build interval with ID '" +#~ msgstr "Konnte kein Intervall mit der ID ' erstellen" + +#~ msgid "' in netedit; begin is greather than end." +#~ msgstr "' in netedit; Beginn ist größer als das Ende." + +#~ msgid "Could not build interval with begin '" +#~ msgstr "Konnte kein Intervall mit Beginn ' erstellen" + +#~ msgid "' in '" +#~ msgstr "' in '" + +#~ msgid "' due overlapping." +#~ msgstr "' wegen Überlappung." + +#~ msgid "Could not build Vaporizer with ID '" +#~ msgstr "Konnte keinen Vaporizer mit der ID ' erstellen" + +#~ msgid "Could not build TAZ with ID '" +#~ msgstr "Konnte keine Verkehrsumlegungszone mit der ID ' erstellen" + +#~ msgid "' in netedit; Invalid Shape." +#~ msgstr "' in netedit; Ungültige Shape." + +#~ msgid "Could not build overhead wire with ID '" +#~ msgstr "Konnte keine Oberleitung mit der ID ' erstellen" + +#~ msgid "Could not build POI with ID '" +#~ msgstr "Konnte keinen Pol mit der ID ' erstellen" + +#, fuzzy +#~ msgid "' in netedit; Network requires a geo projection." +#~ msgstr "' in netedit; Netz benötigt eine Geoprojektion." + +#~ msgid "Could not build " +#~ msgstr "Konnte nicht erstellen " + +#~ msgid " with ID '" +#~ msgstr " mit der ID '" + +#~ msgid "' in netedit; ID contains invalid characters." +#~ msgstr "' in netedit; ID enthält ungültige Zeichen." + +#, fuzzy +#~ msgid "' in netedit; Invalid position over lane." +#~ msgstr "' in netedit; Ungültige Position über den Fahrstreifen." + +#~ msgid "' in netedit; declared twice." +#~ msgstr "' in netedit: zweimal deklariert." + +#~ msgid " doesn't exist." +#~ msgstr " existiert nicht." + +#~ msgid "' in netedit; attribute " +#~ msgstr "' in netedit; Attribut " + +#~ msgid " cannot be negative." +#~ msgstr " kann nicht negativ sein." + +#~ msgid "' in netedit; list of VTypes isn't valid." +#~ msgstr "' in netedit; Liste von den Fahrzeugtypen ist nicht gültig." + +#~ msgid "' in netedit; filename is invalid." +#~ msgstr "' in netedit; Dateiname ist ungültig." + +#~ msgid "' in netedit; list of lanes isn't valid." +#~ msgstr "' in netedit; Liste von den Fahrstreifen ist nicht gültig." + +#~ msgid " in netedit; " +#~ msgstr " in netedit; " + +#~ msgid "calibratorFlow of calibrator '" +#~ msgstr "Kalibratorfluss von Kalibrator '" + +#~ msgid "" +#~ "' cannot be written. Either type or vehsPerHour or speed must be enabled" +#~ msgstr "" +#~ "' kann nicht geschrieben werden. Entweder der Typ, Fahrzeuge pro Stunde " +#~ "oder die Geschwindigkeit muss aktiviert sein" + +#~ msgid "There is already a TAZ rel defined between '" +#~ msgstr "" +#~ "Es ist bereits ein Verkehrsumlegungszonenrelation definiert zwischen '" + +#~ msgid "There is already a TAZ rel defined in '" +#~ msgstr "Es ist bereits ein Verkehrsumlegungszonenrelation definiert in '" + +#~ msgid "' doesn't exist." +#~ msgstr "' existiert nicht." + +#~ msgid " already exists" +#~ msgstr " existiert bereits" + +#~ msgid " in netedit; edge doesn't exist." +#~ msgstr " in netedit; Kante existiert nicht." + +#~ msgid " in netedit; attribute '" +#~ msgstr " in netedit; Attribut '" + +#~ msgid "There is another " +#~ msgstr "Es gibt einen anderen " + +#~ msgid " with the same ID='" +#~ msgstr " mit der gleichen ID= '" + +#~ msgid " need at least one " +#~ msgstr " benötigt mindestens einen " + +#~ msgid " with id '" +#~ msgstr " mit ID '" + +#~ msgid "' doesn't exist in " +#~ msgstr "' existiert nicht in " + +#~ msgid "Invalid definition for " +#~ msgstr "Ungültige Definition für " + +#~ msgid " in " +#~ msgstr " in " + +#~ msgid "' cannot be created in " +#~ msgstr "' kann nicht erstellt werden in " + +#~ msgid "Invalid vehicle type '" +#~ msgstr "Ungültiger Fahrzeugtyp '" + +#~ msgid "' used in " +#~ msgstr "' genutzt in " + +#~ msgid " used in " +#~ msgstr " verwendet in " + +#~ msgid "Invalid route '" +#~ msgstr "Ungültige Route '" + +#~ msgid "Invalid " +#~ msgstr "Ungültig " + +#~ msgid " is greater than number of lanes" +#~ msgstr " ist größer als die Anzahl von Fahrstreifen" + +#~ msgid " is greater than vType" +#~ msgstr " ist größer als der Fahrzeugtyp" + +#~ msgid "Invalid person type '" +#~ msgstr "Ungültiger Personentyp '" + +#~ msgid "Invalid personFlow type '" +#~ msgstr "Ungültiger Personenflusstyp '" + +#~ msgid "Containers don't support stops at busStops" +#~ msgstr "Container unterstützen keine Haltepunkte an den Bushaltepunkten" + +#~ msgid "A transport with edges attribute needs a list of edges" +#~ msgstr "Ein Transport mit Kanten-Attributen benötigt eine Liste von Kanten" + +#~ msgid "A route transport needs a route" +#~ msgstr "Ein Routentransport benötigt eine Route" + +#~ msgid "Via edge '" +#~ msgstr "Zwischenkante '" + +#~ msgid "- 'Start drawing' or ENTER" +#~ msgstr "- 'Starte Zeichnen' oder ENTER" + +#~ msgid " to create shape." +#~ msgstr " Shape zu erstellen." + +#~ msgid "- 'Stop drawing' or ENTER to" +#~ msgstr "- 'Stoppe Zeichnen' oder ENTER zu" + +#~ msgid " finish shape creation." +#~ msgstr " Shape-Erstellung beenden." + +#~ msgid "- 'Abort drawing' or ESC to" +#~ msgstr "- 'Zeichnen abbrechen' oder ESC zu" + +#~ msgid " abort shape creation." +#~ msgstr " Shape-Erstellung abbrechen." + +#~ msgid "- 'Shift + Click' to remove" +#~ msgstr "- 'Shift + Click' zum entfernen" + +#~ msgid " last inserted point." +#~ msgstr " letzter eingefügter Punkt." + +#, fuzzy +#~ msgid "-Click over edge to" +#~ msgstr "- Über Kante klicken zu" + +#~ msgid " create or edit" +#~ msgstr " erstellen oder bearbeiten" + +#~ msgid " geometry point." +#~ msgstr " Geometriepunkt." + +#~ msgid "-Shift+click over edge" +#~ msgstr "-Shift+click über eine Kante" + +#~ msgid " to edit start or end" +#~ msgstr " zum Bearbeiten starten oder beenden" + +#, fuzzy +#~ msgid "- Shift+Click to select parent\n" +#~ msgstr "- Shift+ Klick um Elternteil auszuwählen\n" + +#, fuzzy +#~ msgid "- Click over a bus stop to\n" +#~ msgstr "- Über einen Bushaltepunkt klicken zum\n" + +#~ msgid " create a stop." +#~ msgstr " einen Haltepunkt erstellen." + +#~ msgid "- Click over a container stop\n" +#~ msgstr "- Klicke über einen Container-Halt\n" + +#, fuzzy +#~ msgid " to create a stop." +#~ msgstr " zum Erstellen eines Bushaltepunktes" + +#~ msgid "- Click over a charging station\n" +#~ msgstr "- Klicke über eine Ladestation\n" + +#~ msgid "- Click over a parking area\n" +#~ msgstr "- Klicke über einen Parkplatz\n" + +#~ msgid "- Click over a lane to create\n" +#~ msgstr "- Klicke über einen Fahrstreifen zum Erstellen\n" + +#~ msgid " a stop." +#~ msgstr " ein Halt." + +#, fuzzy +#~ msgid "- No stop parents in current\n" +#~ msgstr "- Kein Haltepunkt erzogen im Lauf\n" + +#~ msgid " network." +#~ msgstr " Netz." + +#~ msgid "VType Distributions" +#~ msgstr "Fahrzeugtyp-Verteilung" + +#~ msgid "Show VType Distributions" +#~ msgstr "Fahrzeugtyp-Verteilung anzeigen" + +#~ msgid "- Click over a route to\n" +#~ msgstr "- Über eine Route klicken zum\n" + +#~ msgid " create a vehicle." +#~ msgstr " erstellt ein Fahrzeug." + +#~ msgid "- Select two edges to\n" +#~ msgstr "- Wähle zwei Kanten aus\n" + +#~ msgid " create a Trip." +#~ msgstr " erstellt eine Fahrt." + +#~ msgid " create a vehicle with\n" +#~ msgstr " erstellt ein Fahrzeug mit\n" + +#~ msgid " embedded route." +#~ msgstr " eingelagerter Route." + +#~ msgid "- Select two junctions\n" +#~ msgstr "- Wähle zwei Knotenpunkte aus\n" + +#~ msgid " to create a Trip." +#~ msgstr " zum Erstellen einer Fahrt." + +#~ msgid " create a routeFlow." +#~ msgstr " erstellt einen Routenfluss." + +#~ msgid " create a flow." +#~ msgstr " erstellt einen Fluss." + +#~ msgid " create a flow with\n" +#~ msgstr " erstellt einen Fluss mit\n" + +#~ msgid " to create a flow." +#~ msgstr " zum Erstellen eines Flusses." + +#~ msgid "List ofe dges cannot be empty" +#~ msgstr "Liste von Kanten kann nicht leer sein" + +#, fuzzy +#~ msgid "-Hold while" +#~ msgstr "-Hold while" + +#~ msgid " clicking to create" +#~ msgstr " klicken zum Erstellen" + +#, fuzzy +#~ msgid " unyielding connections" +#~ msgstr " Verbindungen ohne Vorfahrtsrechten" + +#, fuzzy +#~ msgid " (pass=true)." +#~ msgstr " (pass=true)." + +#, fuzzy +#~ msgid "-Hold while" +#~ msgstr "-Hold while" + +#~ msgid " clicking to create " +#~ msgstr " klicken zum Erstellen " + +#~ msgid " conflicting connections" +#~ msgstr " widersprüchliche Verbindungen" + +#~ msgid " (i.e. at zipper nodes" +#~ msgstr " (d. h. an Reißverschlussknoten" + +#~ msgid " or with incompatible" +#~ msgstr " oder mit inkompatibel" + +#~ msgid " permissions" +#~ msgstr " Berechtigungen" + +#~ msgid "- ESC:" +#~ msgstr "- ESC:" + +#~ msgid " Deselect origin" +#~ msgstr " Ursprung abwählen" + +#, fuzzy +#~ msgid "- Control+Click:" +#~ msgstr "- Control+Click:" + +#~ msgid " Move view" +#~ msgstr " Ansicht verschieben" + +#, fuzzy +#~ msgid "- Shift+Click:" +#~ msgstr "- Shift+Click:" + +#~ msgid " Splits edge in both directions" +#~ msgstr " Teilt Kanten in beiden Richtungen" + +#~ msgid "- Alt+Shift+Click:" +#~ msgstr "- Alt+Shift+Click:" + +#~ msgid " Splits edge in one direction" +#~ msgstr " Teilt Kante in eine Richtung" + +#~ msgid "-Click over junction to" +#~ msgstr "- Auf den Knotenpunkt klicken um" + +#~ msgid " mark candidate edges." +#~ msgstr " Kandidatenkanten markieren." + +#, fuzzy +#~ msgid "-Click over candidate" +#~ msgstr "- Auf Kandidaten klicken" + +#~ msgid " edges for selecting." +#~ msgstr " Kanten zum Auswählen." + +#~ msgid "- Toggle Membership:" +#~ msgstr "- Mitgliedschaft ein-/ausschalten:" + +#~ msgid " Create new Sources/Sinks" +#~ msgstr " Neue Quellen/Ziele erstellen" + +#~ msgid " with given weights." +#~ msgstr " mit gegebenen Gewichten." + +#~ msgid "- Keep Membership:" +#~ msgstr "- Mitgliedschaft behalten:" + +#~ msgid "- Press ESC to clear" +#~ msgstr "- ESC drücken zum Entfernen" + +#~ msgid " current selection." +#~ msgstr " aktuelle Auswahl." + +#~ msgid "starting process silently...\n" +#~ msgstr "Führe Prozess im Hintergrund aus...\n" + +#~ msgid "Run tool" +#~ msgstr "Werkzeug ausführen" + +#~ msgid "Cancel tool" +#~ msgstr "Werkzeug abbrechen" + +#~ msgid "Accept settings" +#~ msgstr "Settings akzeptieren" + #~ msgid "Configure Options" #~ msgstr "Konfiguration der Optionen" diff -Nru sumo-1.17.0/data/po/de_py.po sumo-1.18.0/data/po/de_py.po --- sumo-1.17.0/data/po/de_py.po 1970-01-01 00:00:00.000000000 +0000 +++ sumo-1.18.0/data/po/de_py.po 2023-06-28 20:02:17.000000000 +0000 @@ -0,0 +1,139 @@ +# German translations for sumo package. +# Copyright (C) 2023 THE sumo'S COPYRIGHT HOLDER +# This file is distributed under the same license as the sumo package. +# Automatically generated, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: sumo\n" +"Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" +"POT-Creation-Date: 2023-05-26 14:09+0200\n" +"PO-Revision-Date: 2023-06-15 08:32+0000\n" +"Last-Translator: Mirko Barthauer \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18\n" + +#: D:\Repos\sumo/tools/game\runner.py:63 +msgid "Interactive Traffic Light" +msgstr "Interaktives Ampelspiel" + +#: D:\Repos\sumo/tools/game\runner.py:64 +msgid "Research intersection Ingolstadt" +msgstr "Forschungskreuzung Ingolstadt" + +#: D:\Repos\sumo/tools/game\runner.py:65 +msgid "Simple Junction" +msgstr "Einfache Kreuzung" + +#: D:\Repos\sumo/tools/game\runner.py:66 +msgid "Simple Junction (Demo)" +msgstr "Einfache Kreuzung (Demo)" + +#: D:\Repos\sumo/tools/game\runner.py:67 +msgid "Four Junctions" +msgstr "Vier Kreuzungen" + +#: D:\Repos\sumo/tools/game\runner.py:68 +msgid "Six Junctions" +msgstr "Sechs Kreuzungen" + +#: D:\Repos\sumo/tools/game\runner.py:69 +msgid "Prof. Kühne" +msgstr "Prof. Kühne" + +#: D:\Repos\sumo/tools/game\runner.py:70 +msgid "3D Junction Virtual World" +msgstr "3D Forschungskreuzung Virtuelle Welt" + +#: D:\Repos\sumo/tools/game\runner.py:71 +msgid "3D Junction OpenStreetMap" +msgstr "3D Forschungskreuzung OpenStreetMap" + +#: D:\Repos\sumo/tools/game\runner.py:72 +msgid "Highway Ramp" +msgstr "Autobahnauffahrt" + +#: D:\Repos\sumo/tools/game\runner.py:73 +msgid "Combined Highway On and Off Ramp" +msgstr "Kombinierte Autobahnauf- und -abfahrt" + +#: D:\Repos\sumo/tools/game\runner.py:74 +msgid "Corridor" +msgstr "Strecke" + +#: D:\Repos\sumo/tools/game\runner.py:75 +msgid "Highway Ramp A10" +msgstr "A10 KW" + +#: D:\Repos\sumo/tools/game\runner.py:76 +msgid "Demand Responsive Transport (new)" +msgstr "Bedarfsbus (neu)" + +#: D:\Repos\sumo/tools/game\runner.py:77 +msgid "DRT - Advanced (new)" +msgstr "Bedarfsbus für Fortgeschrittene (neu)" + +#: D:\Repos\sumo/tools/game\runner.py:78 +msgid "DRT - Demo" +msgstr "Bedarfsbus - Demo" + +#: D:\Repos\sumo/tools/game\runner.py:79 D:\Repos\sumo/tools/game\runner.py:89 +msgid "Highscore" +msgstr "Bestenliste" + +#: D:\Repos\sumo/tools/game\runner.py:80 +msgid "Reset Highscore" +msgstr "Bestenliste zurücksetzen" + +#: D:\Repos\sumo/tools/game\runner.py:81 +msgid "German" +msgstr "Deutsch" + +#: D:\Repos\sumo/tools/game\runner.py:82 +msgid "English" +msgstr "Englisch" + +#: D:\Repos\sumo/tools/game\runner.py:83 +msgid "Italian" +msgstr "Italienisch" + +#: D:\Repos\sumo/tools/game\runner.py:84 +msgid "Spanish" +msgstr "Spanisch" + +#: D:\Repos\sumo/tools/game\runner.py:85 +msgid "French" +msgstr "Französisch" + +#: D:\Repos\sumo/tools/game\runner.py:86 +msgid "Chinese (simplified)" +msgstr "Chinesisch (vereinfacht)" + +#: D:\Repos\sumo/tools/game\runner.py:87 +msgid "Chinese (traditional)" +msgstr "Chinesisch (traditionell)" + +#: D:\Repos\sumo/tools/game\runner.py:88 +msgid "Quit" +msgstr "Beenden" + +#: D:\Repos\sumo/tools/game\runner.py:90 +msgid "Congratulations!" +msgstr "Glückwunsch!" + +#: D:\Repos\sumo/tools/game\runner.py:91 +msgid "Your Score" +msgstr "Deine Punkte" + +#: D:\Repos\sumo/tools/game\runner.py:92 +msgid "Continue" +msgstr "Weiter" + +#~ msgid "N/A" +#~ msgstr "NV" diff -Nru sumo-1.17.0/data/po/de_sumo.po sumo-1.18.0/data/po/de_sumo.po --- sumo-1.17.0/data/po/de_sumo.po 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/po/de_sumo.po 2023-06-28 20:02:17.000000000 +0000 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: sumo\n" "Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" -"POT-Creation-Date: 2023-04-15 12:21+0200\n" -"PO-Revision-Date: 2023-03-24 09:56+0000\n" +"POT-Creation-Date: 2023-06-15 09:59+0200\n" +"PO-Revision-Date: 2023-05-12 09:01+0000\n" "Last-Translator: Mirko Barthauer \n" "Language-Team: German \n" @@ -17,67 +17,85 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.17-dev\n" +"X-Generator: Weblate 4.18-dev\n" +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:46 #: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:46 msgid "Reading input" msgstr "Eingabe lesen" +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:54 #: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:54 msgid "Consolidating statistics" msgstr "Statistiken konsolidieren" +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:58 #: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:58 msgid "Building street representation" msgstr "Baut Straßendarstellungen" +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:62 #: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:62 msgid "Generating work positions" msgstr "Generiert Arbeitspositionen" +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:66 #: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:66 msgid "Building bus lines" msgstr "Baut Buslinien" +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:71 #: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:71 msgid "Generating population" msgstr "Generiert Einwohner" +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:75 #: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:75 msgid "Allocating schools" msgstr "Zuweisung von Schulen" +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:79 #: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:79 msgid "Allocating work places" msgstr "Zuweisung von Arbeitsplätzen" +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:83 #: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:83 msgid "Allocating car places" msgstr "Zuweisung von Autostellplätzen" +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:174 +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:181 +msgid "Invalid % value of edge % is treated as zero." +msgstr "" + +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:186 #: /home/micha/programming/sumo/src/activitygen/AGActivityGenHandler.cpp:178 #, c-format msgid "Edge '%' is not known." msgstr "Kante '%' ist nicht bekannt." +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:337 #: /home/micha/programming/sumo/src/activitygen/AGActivityGenHandler.cpp:329 msgid "Unknown bus station '%'." msgstr "Unbekannte Busstation '%'." +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:61 #: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:61 -#, fuzzy msgid "Use FILE as SUMO-network to create trips for" -msgstr "Verwende FILE als SUMO-Netz, um Fahrten zu erstellen" +msgstr "Verwende FILE als SUMO-Netz, für das Fahrten zu erstellen sind" +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:64 #: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:64 -#, fuzzy msgid "Loads the SUMO-statistics FILE" -msgstr "SUMO-Statistik FILE lädt" +msgstr "Lädt die SUMO-Statistik aus FILE" +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:72 #: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:72 msgid "Write generated trips to FILE" msgstr "Generierte Fahrten in FILE schreiben" +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:81 #: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:81 msgid "" "Sets the time of beginning of the simulation during the first day (in " @@ -85,6 +103,7 @@ msgstr "" "Legt die Startzeit der Simulation während des ersten Tages fest (in Sekunden)" +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:84 #: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:84 msgid "" "Sets the time of ending of the simulation during the last day (in seconds)" @@ -92,25 +111,34 @@ "Legt die Zeit des Endes der Simulation während des letzten Tages fest (in " "Sekunden)" +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:87 #: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:87 msgid "Sets the duration of the simulation in days" msgstr "Legt die Dauer der Simulation in Tagen fest" +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:64 +#: D:\Repos\sumo/src\router\ROLoader.cpp:111 #: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:64 #: /home/micha/programming/sumo/src/router/ROLoader.cpp:111 msgid "Missing definition of network to load!" msgstr "Fehlende Definition des zu ladenden Netzes!" +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:67 #: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:67 #, c-format msgid "The network file '%' could not be accessed." msgstr "Auf die Netzwerkdatei '%' konnte nicht zugegriffen werden." +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:69 +#: D:\Repos\sumo/src\router\ROLoader.cpp:116 #: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:69 #: /home/micha/programming/sumo/src/router/ROLoader.cpp:116 msgid "Loading net" msgstr "Lade Netz" +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:79 +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:227 +#: D:\Repos\sumo/src\router\ROLoader.cpp:133 #: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:79 #: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:227 #: /home/micha/programming/sumo/src/router/ROLoader.cpp:133 @@ -118,6 +146,7 @@ msgid "Deprecated vehicle classes '%' in input network." msgstr "Abgelehnte Fahrzeugklassen '%' im Eingabenetzwerk." +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:89 #: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:89 msgid "" "Generates trips of persons throughout a day for the microscopic, multi-modal " @@ -126,85 +155,101 @@ "Generiert Personenfahrten über einen Tag hinweg für die mikroskopische, " "multimodale Verkehrssimulation SUMO." +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:113 #: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:113 #, c-format msgid "Loaded % edges." msgstr "% Kanten geladen." +#: D:\Repos\sumo/src\activitygen\city\AGCity.cpp:425 #: /home/micha/programming/sumo/src/activitygen/city/AGCity.cpp:427 msgid "No street that allows passenger vehicles found in this city." msgstr "" "Es wurden keine Straßen in dieser Stadt gefunden, die Personenkraftfahrzeuge " "erlauben." +#: D:\Repos\sumo/src\activitygen\city\AGWorkPosition.cpp:126 #: /home/micha/programming/sumo/src/activitygen/city/AGWorkPosition.cpp:126 msgid "Work position already occupied. Cannot give it to another adult." msgstr "" "Der Arbeitsplatz ist bereits besetzt. Es kann keinem anderen Erwachsenen " "zugeteilt werden." +#: D:\Repos\sumo/src\dfrouter\RODFDetFlowLoader.cpp:76 #: /home/micha/programming/sumo/src/dfrouter/RODFDetFlowLoader.cpp:76 msgid "At least one value lies beyond given time boundaries." msgstr "Mindestens ein Wert liegt außerhalb der vorgegebenen Zeitgrenzen." +#: D:\Repos\sumo/src\dfrouter\RODFDetFlowLoader.cpp:104 #: /home/micha/programming/sumo/src/dfrouter/RODFDetFlowLoader.cpp:104 msgid "At least one line does not contain the correct number of columns." msgstr "Mindestens eine Zeile enthält nicht die korrekte Spaltenanzahl." +#: D:\Repos\sumo/src\dfrouter\RODFDetector.cpp:171 #: /home/micha/programming/sumo/src/dfrouter/RODFDetector.cpp:171 msgid "Missing routes for detector '%'." msgstr "Fehlende Routen für Detektor '%'." +#: D:\Repos\sumo/src\dfrouter\RODFDetector.cpp:305 #: /home/micha/programming/sumo/src/dfrouter/RODFDetector.cpp:305 #, c-format msgid "Detector '%' has no routes!?" msgstr "Detektor '%' hat keine Routen!?" +#: D:\Repos\sumo/src\dfrouter\RODFDetectorHandler.cpp:86 #: /home/micha/programming/sumo/src/dfrouter/RODFDetectorHandler.cpp:86 msgid "Could not add detector '%' (probably the id is already used)." msgstr "" "Der Detektor '%' konnte nicht hinzugefügt werden (wahrscheinlich wird die ID " "bereits verwendet)." +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:61 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:61 -#, fuzzy msgid "Loads the SUMO-network FILE" -msgstr "Lädt den SUMO-Netz FILE" +msgstr "Lädt SUMO-Netz aus FILE" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:70 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:70 -#, fuzzy msgid "Loads detector descriptions from FILE" -msgstr "Detektorbeschreibung aus dem FILE lädt" +msgstr "Lädt Detektorbeschreibung aus FILE" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:75 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:75 msgid "Loads detector flows from FILE(s)" msgstr "Lädt Detektorflüsse aus FILE(s)" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:82 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:82 msgid "Saves computed routes to FILE" msgstr "Berechnete Routen speichern in FILE" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:85 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:85 msgid "Forces dfrouter to compute routes for in-between detectors" msgstr "" "Zwingt dfrouter, Routen für dazwischen liegende Detektoren zu berechnen" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:89 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:89 msgid "Saves typed detectors to FILE" msgstr "Speichert typisierte Detektoren in FILE" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:92 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:92 msgid "Saves detector positions as pois to FILE" msgstr "Speichert Detektorpositionen als Pole in FILE" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:95 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:95 msgid "Saves emitter definitions for source detectors to FILE" msgstr "Speichert Emitterdefinitionen für Quelldetektoren in FILE" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:98 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:98 msgid "Add vehicle types to the emitters file (PKW, LKW)" msgstr "Fahrzeugtypen in Emitterdatei hinzufügen (PKW, LKW)" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:101 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:101 msgid "" "Write generated vehicle types into separate FILE instead of including them " @@ -213,19 +258,23 @@ "Generierte Fahrzeugtypen in separaten FILE schreiben, anstatt sie in die " "Emitter-Ausgabe aufzunehmen" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:104 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:104 msgid "Saves emitter positions as pois to FILE" msgstr "Speichert Emitterpositionen als Pole in FILE" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:108 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:108 msgid "Saves variable seed sign definitions for sink detectors to FILE" msgstr "" "Speichert variable Ursprungs-Zeichendefinitionen für Zieldetektoren in FILE" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:111 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:111 msgid "Saves rerouter definitions for sink detectors to FILE" msgstr "Speichert Rerouterdefinitionen für Zieldetektoren in FILE" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:114 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:114 msgid "" "Write induction loop definitions for the given detector positions to FILE" @@ -233,98 +282,114 @@ "Induktionsschleifendefinitionen für die gegebenen Detektorpositionen in FILE " "schreiben" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:117 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:117 msgid "Add source detectors to the validation output" msgstr "Quelldetektoren zur validierten Ausgabe hinzufügen" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:123 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:123 -#, fuzzy msgid "Derive missing flow values from upstream or downstream (not working!)" msgstr "" "Fehlende Durchflusswerte von oberhalb oder unterhalb ableiten (funktioniert " "nicht!)" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:127 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:127 -#, fuzzy msgid "Switches to highway-mode" -msgstr "In Autobahn-Modus wechseln" +msgstr "In Autobahnmodus wechseln" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:131 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:131 msgid "Only warn about unparseable detectors" msgstr "Nur vor nicht einlesbaren Detektoren warnen" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:135 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:135 msgid "Recomputes detector types even if given" msgstr "Berechnet Detektortypen neu, auch wenn angegeben" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:139 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:139 msgid "Recomputes routes even if given" msgstr "Berechnet Routen neu, auch wenn angegeben" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:143 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:143 -#, fuzzy msgid "Keeps routes even if they have exhausted max-search-depth" msgstr "" -"Behält Routen bei, auch wenn sie die maximale Suchtiefe ausgereift haben" +"Behält Routen bei, auch wenn sie die maximale Suchtiefe ausgereizt haben" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:146 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:146 msgid "Keeps routes even if a shorter one exists" msgstr "Behält Routen bei, auch wenn eine kürzere existiert" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:150 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:150 msgid "Number of edges to follow a route without passing a detector" msgstr "" "Anzahl der Kanten, um einer Route zu folgen, ohne einen Detektor zu passieren" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:153 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:153 msgid "Writes only emission times" msgstr "Schreibt nur Emissionszeiten" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:156 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:156 msgid "Do not route on these edges" msgstr "Keine Route über diese Kanten legen" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:159 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:159 msgid "Only route on edges allowing the given vclass" msgstr "" "Nur Kanten, welche die gegebene Fahrzeugklasse erlauben, für die Route " "verwenden" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:162 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:162 msgid "Allow turnarounds as route continuations" msgstr "Wenden als Fortsetzung der Route zulassen" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:167 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:167 msgid "Minimum distance in meters between start and end node of every route" msgstr "Mindestabstand in Metern zwischen Start- und Endknoten jeder Route" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:170 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:170 -#, fuzzy msgid "generate random departure times for emitted vehicles" -msgstr "Generiert zufällige Abfahrtszeiten für emittierte Fahrzeuge" +msgstr "generiert zufällige Abfahrtszeiten für emittierte Fahrzeuge" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:174 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:174 msgid "Multiply flow times with TIME to get seconds" msgstr "" "Multiplizier die Durchflusszeiten mit der Zeit, um Sekunden zu erhalten" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:177 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:177 -#, fuzzy msgid "Subtracts TIME seconds from (scaled) flow times" -msgstr "Subtrahiert Zeit-Sekunden von (skalierten) Durchflusszeiten" +msgstr "Zieht TIME Sekunden von (skalierten) Durchflusszeiten ab" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:180 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:180 msgid "Expected distance between two successive data sets" msgstr "Erwarteter Abstand zwischen zwei aufeinanderfolgenden Datensätzen" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:185 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:185 msgid "Write calibrators to FILE" msgstr "Kalibratoren in FILE schreiben" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:188 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:188 msgid "Include routes in the output which have no vehicles" msgstr "Routen ohne Fahrzeuge in die Ausgabe aufnehmen" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:192 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:192 msgid "" "Checks whether detectors with calculated flow 0 can attract additional " @@ -333,10 +398,12 @@ "Überprüft, ob Detektoren mit berechnetem Fluss 0 zusätzlichen Verkehr " "anziehen können" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:195 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:195 msgid "Removes empty detectors from the list" msgstr "Entfernt leere Detektoren von der Liste" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:198 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:198 msgid "" "Whether edges with unknown status can prevent an edge from becoming a source" @@ -344,6 +411,7 @@ "Ob Kanten mit unbekanntem Status verhindern können, dass eine Kante zu einer " "Quelle wird" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:201 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:201 msgid "" "Try to determine further inflows to an inbetween detector when computing " @@ -352,10 +420,15 @@ "Versucht bei der Berechnung von Trennwahrscheinlichkeiten weitere Zuflüsse " "zu einem Zwischendetektor zu ermitteln" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:205 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:205 msgid "Scale factor for flows" msgstr "Skalierungsfaktor für Flüsse" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:209 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:123 +#: D:\Repos\sumo/src\od2trips_main.cpp:167 +#: D:\Repos\sumo/src\router\ROFrame.cpp:199 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:209 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:123 #: /home/micha/programming/sumo/src/od2trips_main.cpp:167 @@ -363,6 +436,10 @@ msgid "Assigns a default depart lane" msgstr "Weist eine standardmäßige Abfahrtsspur zu" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:212 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:127 +#: D:\Repos\sumo/src\od2trips_main.cpp:170 +#: D:\Repos\sumo/src\router\ROFrame.cpp:202 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:212 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:127 #: /home/micha/programming/sumo/src/od2trips_main.cpp:170 @@ -370,6 +447,10 @@ msgid "Assigns a default depart position" msgstr "Weist eine standardmäßige Abfahrtsposition zu" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:215 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:131 +#: D:\Repos\sumo/src\od2trips_main.cpp:173 +#: D:\Repos\sumo/src\router\ROFrame.cpp:205 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:215 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:131 #: /home/micha/programming/sumo/src/od2trips_main.cpp:173 @@ -377,6 +458,10 @@ msgid "Assigns a default depart speed" msgstr "Weist eine standardmäßige Abfahrtsgeschwindigkeit zu" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:218 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:135 +#: D:\Repos\sumo/src\od2trips_main.cpp:176 +#: D:\Repos\sumo/src\router\ROFrame.cpp:208 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:218 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:135 #: /home/micha/programming/sumo/src/od2trips_main.cpp:176 @@ -384,6 +469,10 @@ msgid "Assigns a default arrival lane" msgstr "Weist einen Standardankunftsfahrstreifen zu" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:221 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:139 +#: D:\Repos\sumo/src\od2trips_main.cpp:179 +#: D:\Repos\sumo/src\router\ROFrame.cpp:211 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:221 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:139 #: /home/micha/programming/sumo/src/od2trips_main.cpp:179 @@ -391,6 +480,10 @@ msgid "Assigns a default arrival position" msgstr "Weist eine Standardankunftsposition zu" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:224 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:143 +#: D:\Repos\sumo/src\od2trips_main.cpp:182 +#: D:\Repos\sumo/src\router\ROFrame.cpp:214 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:224 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:143 #: /home/micha/programming/sumo/src/od2trips_main.cpp:182 @@ -398,65 +491,80 @@ msgid "Assigns a default arrival speed" msgstr "Weist eine Standardankunftsgeschwindigkeit zu" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:227 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:227 msgid "The default speed deviation of vehicles" msgstr "Die Standardgeschwindigkeitsabweichung von Fahrzeugen" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:231 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:231 msgid "Defines the begin time; Previous defs will be discarded" msgstr "Definiert die Startzeit; Vorherige Definitionen werden verworfen" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:234 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:234 msgid "Defines the end time; Later defs will be discarded; Defaults to one day" msgstr "" "Definiert die Endzeit; Spätere Definitionen werden verworfen; Standardmäßig " "ein Tag" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:239 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:239 msgid "Lists detectors with no flow (enable -v)" msgstr "Listet Detektoren ohne Flüsse auf (erlaubt -v)" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:242 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:242 msgid "Prints aggregated detector flows" msgstr "Gibt aggregierte Detektorflüsse aus" +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:246 +#: D:\Repos\sumo/src\router\ROFrame.cpp:225 #: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:246 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:225 msgid "Disable console output of route parsing step" msgstr "Deaktiviert die Konsolenausgabe des Routeneinleseschritts" +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:113 #: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:113 msgid "Computing detector types" msgstr "Berechne Detektortypen" +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:142 #: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:142 msgid "Computed detector types:" msgstr "Berechnete Detektortypen:" +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:143 #: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:143 #, c-format msgid " % source detectors" msgstr " % Quelldetektoren" +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:144 #: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:144 #, c-format msgid " % sink detectors" msgstr " % Zieldetektoren" +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:145 #: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:145 #, c-format msgid " % in-between detectors" msgstr " % Zwischendetektoren" +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:146 #: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:146 #, c-format msgid " % invalid detectors" msgstr " % ungültige Detektoren" +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:281 #: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:281 msgid "Could not close route for '%'" msgstr "Route für '%' konnte nicht geschlossen werden" +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:439 #: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:439 #, c-format msgid "" @@ -466,23 +574,28 @@ "Detektor '%' besitzt keine Flüsse.\n" "Erneuter Wiederaufbau." +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:467 #: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:467 msgid " Could not build list of previous flows." msgstr " Liste vergangener Flüsse konnte nicht erstellt werden." +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:504 #: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:504 msgid " Could not build list of latter flows." msgstr " Liste von den letzten Flüssen konnte nicht erstellt werden." +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:591 #: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:591 msgid "Removed detector '%' because no flows for him exist." msgstr "Detektor '%' wurde entfernt, da keine Flüsse existieren." +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:614 #: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:614 #, c-format msgid "Detector '%' has no flow." msgstr "Detektor '%' hat keinen Fluss." +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:693 #: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:693 #, c-format msgid "" @@ -491,6 +604,7 @@ "Überprüfung ob es sich um eine Quelle für den Detektor '%' handelt wird " "beendet, da das Kantenlimit erreicht wurde." +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:793 #: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:793 #, c-format msgid "" @@ -500,6 +614,7 @@ "Überprüfung ob es sich um ein Ziel für den Detektor '%' handelt wird " "beendet, da das Kantenlimit erreicht wurde." +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:869 #: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:869 #, c-format msgid "" @@ -509,128 +624,157 @@ "Beende Überprüfung ob es sich um eine falsche Quelle für den Detektor " "'%' handelt, da das Kantenlimit erreicht wurde." +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:1002 #: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:1002 msgid "Average speedFactor for PKW is % maximum speedFactor is %." msgstr "" "Durchschnittlicher Geschwindigkeitsfaktor für PKW ist %, maximaler " "Geschwindigkeitsfaktor ist %." +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:1006 #: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:1006 msgid "Average speedFactor for LKW is % maximum speedFactor is %." msgstr "" "Durchschnittlicher Geschwindigkeitsfaktor für LKW ist %, maximaler " "Geschwindigkeitsfaktor ist %." +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:70 #: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:70 msgid "No detector file given (use --detector-files )." msgstr "Keine Detektordatei vorhanden (benutze --detector-files < FILE>)." +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:76 #: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:76 msgid "Could not open detector file '%'" msgstr "Detektordatei '%' konnte nicht geöffnet werden" +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:88 #: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:88 msgid "No detectors found." msgstr "Keine Detektoren gefunden." +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:103 #: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:103 #, c-format msgid "The measure-file '%' can not be opened." msgstr "Die Messdatei '%' konnte nicht geöffnet werden." +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:124 #: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:124 msgid "Removing empty detectors" msgstr "Entferne leere Detektoren" +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:128 #: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:128 msgid "Scanning for empty detectors" msgstr "Scannen nach leeren Detektoren" +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:143 #: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:143 msgid "No source detectors found." msgstr "Kein Quelldetektor gefunden." +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:147 #: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:147 msgid "Computing routes" msgstr "Berechne Routen" +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:158 #: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:158 msgid "The detector types are not defined; use in combination with a network" msgstr "" "Die Detektortypen sind nicht definiert; benutze es in Kombination mit einem " "Netzwerk" +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:162 #: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:162 msgid "The emitters have no routes; use in combination with a network" msgstr "" "Die Emitter haben keine Routen; nutze es in Kombination mit einem Netzwerk" +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:193 #: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:193 msgid "Rechecking loaded flows" msgstr "Überprüfe geladene Flüsse" +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:198 #: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:198 msgid "Writing emitters" msgstr "Schreibe Emitters" +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:210 #: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:210 msgid "Writing emitter pois" msgstr "Schreibe Emitter-Pole" +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:217 #: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:217 msgid "Writing speed triggers" msgstr "Schreibe Geschwindigkeitsauslöser" +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:224 #: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:224 msgid "Writing validation detectors" msgstr "Schreibe Validierungsdetektoren" +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:231 #: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:231 msgid "Writing highway end rerouter" msgstr "Schreibe Autobahnende Rerouter" +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:251 #: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:251 msgid "Builds vehicle routes for SUMO using detector values." msgstr "Baut Fahrzeugrouten für SUMO unter der Verwendung von Detektorwerten." +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:69 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:69 msgid "Write generated route alternatives to FILE" msgstr "Generierte Routenalternativen in FILE schreiben" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:72 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:72 msgid "Write edge splits and connectivity to FILE" msgstr "Kantenauftrennungen und Konnektivitäten in FILE schreiben" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:75 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:75 msgid "Write intermodal edges with lengths and travel times to FILE" msgstr "Intermodale Kanten mit Längen und Fahrzeiten in FILE schreiben" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:78 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:78 msgid "Write trips instead of vehicles (for validating trip input)" msgstr "Fahrten statt Fahrzeuge schreiben (zur Validierung der Fahrteingabe)" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:81 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:81 msgid "Write trips with geo-coordinates" msgstr "Fahrten mit Geokoordinaten schreiben" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:84 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:84 msgid "Write trips with fromJunction and toJunction" msgstr "Fahrten mit Ausgangs- und Endknotenpunkt schreiben" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:87 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:87 msgid "Include the cost attribute in route output" msgstr "Kostenattribut in die Routenausgabe einschließen" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:92 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:565 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:92 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:559 -#, fuzzy msgid "" "Edge weights for routing are dynamically disturbed by a random factor drawn " "uniformly from [1,FLOAT)" msgstr "" "Kantengewichte für das Routing werden dynamisch durch einen Zufallsfaktor " -"gestört, der einheitlich aus [1,FLOAT) gezogen wird." +"aus der Gleichverteilung im Bereich [1,FLOAT] gestört" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:95 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:118 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:95 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:118 msgid "" @@ -640,6 +784,9 @@ "Aggregationszeitraum für die angegebenen Gewichtsdateien; löst den " "Wiederaufbau der Kontraktionshierarchie aus" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:98 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:112 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:574 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:98 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:112 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:568 @@ -649,9 +796,10 @@ "Berücksichtigt Kantenprioritäten zusätzlich zu den Fahrzeiten, gewichtet " "nach Faktor" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:101 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:580 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:101 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:574 -#, fuzzy msgid "" "Initialize lookup table for astar from the given file (generated by marouter " "--all-pairs-output)" @@ -659,95 +807,118 @@ "Nachschlagetabelle für Astar aus der angegebenen Datei initialisieren " "(erzeugt durch marouter --all-pairs-output)" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:104 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:583 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:104 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:577 -#, fuzzy msgid "Initialize lookup table for astar ALT-variant from the given file" msgstr "" -"Nachschlagetabelle für eine astar ALT-Variante aus der angegebenen Datei " +"Nachschlagetabelle für die Astar ALT-Variante aus der angegebenen Datei " "initialisieren" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:107 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:107 -#, fuzzy msgid "Save lookup table for astar ALT-variant to the given file" msgstr "" -"Nachschlagetabelle für eine astar ALT-Variante in der angegebenen Datei " +"Nachschlagetabelle für die Astar ALT-Variante in der angegebenen Datei " "speichern" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:117 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:206 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:117 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:206 msgid "Use FLOAT as Gawron's beta" msgstr "FLOAT in Gawron als beta verwenden" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:121 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:210 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:121 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:210 msgid "Use FLOAT as Gawron's a" msgstr "FLOAT in Gawron als alpha verwenden" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:124 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:62 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:213 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:124 #: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:62 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:213 msgid "Write exit times (weights) for each edge" msgstr "Austrittszeiten (gewichtet) für jede Kante schreiben" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:127 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:251 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:127 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:251 msgid "Include total route length in the output" msgstr "Totale Routenlänge in die Ausgabe inkludieren" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:130 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:216 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:130 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:216 msgid "Save routes with near zero probability" msgstr "Routen mit einer Wahrscheinlichkeit von nahezu null speichern" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:133 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:219 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:133 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:219 msgid "Only reuse routes from input, do not calculate new ones" msgstr "Nur Routen aus der Eingabe wiederverwenden, keine neuen berechnen" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:136 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:136 msgid "The probability of keeping the old route" msgstr "Die Wahrscheinlichkeit, die alte Route beizubehalten" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:139 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:139 -#, fuzzy msgid "Route all public transport input" -msgstr "Alle Eingaben des öffentlichen Verkehrs routen" +msgstr "Routen für Öffentlichen Verkehr bestimmen" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:142 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:202 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:142 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:202 -#, fuzzy msgid "Choose a route choice method: gawron, logit, or lohse" msgstr "Wähle eine Methode zur Routenauswahl: gawron, logit oder lohse" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:145 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:145 msgid "Use c-logit model (deprecated in favor of --route-choice-method logit)" msgstr "" "C-Logit-Modell verwenden (veraltet zugunsten von --route-choice-method logit)" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:149 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:149 msgid "Use FLOAT as logit's beta" msgstr "FLOAT in Logit als beta verwenden" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:153 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:153 msgid "Use FLOAT as logit's gamma" msgstr "FLOAT in Logit als gamma verwenden" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:157 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:157 msgid "Use FLOAT as logit's theta (negative values mean auto-estimation)" msgstr "" "FLOAT in Logit als theta verwenden (negative Werte bedeuten automatische " "Schätzung)" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:160 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:586 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:160 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:580 -#, fuzzy msgid "" "Use FLOAT as a factor on pedestrian maximum speed during intermodal routing" msgstr "" "Verwendet FLOAT als Faktor für die Höchstgeschwindigkeit von Fußgängern " "während des intermodalen Routings" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:163 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:589 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:163 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:583 msgid "" @@ -756,21 +927,29 @@ "FLOAT als Faktor für die Gehgeschwindigkeit entgegen der Fahrtrichtung des " "Fahrzeugs verwenden" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:170 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:596 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:170 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:590 msgid "Where taxis can drop off customers ('allJunctions, 'ptStops')" msgstr "Wo Taxis Kunden absetzen können ('allJunctions, 'ptStops')" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:173 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:599 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:173 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:593 msgid "Where taxis can pick up customers ('allJunctions, 'ptStops')" msgstr "Wo Taxis Kunden abholen können ('allJunctions, 'ptStops')" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:176 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:605 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:176 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:599 msgid "Estimated time for taxi pickup" msgstr "Geschätzte Zeit für die Taxiabholung" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:179 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:608 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:179 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:602 msgid "" @@ -778,33 +957,40 @@ msgstr "" "FLOAT als maximale Zuglänge bei der Initialisierung des Bahnrouters verwenden" +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:216 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:216 msgid "Routing algorithm '%' does not support weight-attribute '%'." msgstr "" "Der Routing-Algorithmus '%' unterstützt das Gewichtsattribut '%' nicht." +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:220 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:220 #, c-format msgid "Routing algorithm '%' does not support bulk routing." msgstr "Der Routing-Algorithmus '%' unterstützt kein Massenrouting." +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:228 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:243 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:228 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:243 msgid "Invalid route choice method '%'." msgstr "Ungültige Routenauswahlmethode '%'." +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:232 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:232 msgid "" "The --logit option is deprecated, please use --route-choice-method logit." msgstr "" "Die --logit Option ist veraltet, bitte nutze --route-choice-method logit." +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:244 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:244 msgid "Cannot derive file name for alternatives output, skipping it." msgstr "" "Der Dateiname für die alternative Ausgabe kann nicht erlangt werden, " "überspringe es." +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:251 #: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:251 msgid "" "Option --write-trips.junctions takes no affect when --write-trips is " @@ -813,21 +999,27 @@ "Die Option --write-trips.junctions hat keine Auswirken wenn --write-trips " "deaktiviert ist." +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:107 #: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:107 #, c-format msgid "Routing algorithm '%' does not support restriction-params" msgstr "Der Routing-Algorithmus '%' unterstützt keine Einschränkungsparameter" +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:151 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:180 #: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:151 #: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:180 msgid "Unknown routing Algorithm '%'!" msgstr "Unbekannter Routing-Algorithmus '%'!" +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:178 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:210 #: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:178 #: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:210 msgid "No weight data was loaded for attribute '%'." msgstr "Es wurden keine Gewichtsdaten für das Attribut '%' geladen." +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:238 #: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:238 msgid "" "Shortest path router and DUE computer for the microscopic, multi-modal " @@ -836,41 +1028,48 @@ "Router (kürzester Weg) und Berechnung des dynamischen Nutzergleichgewichts " "für die mikroskopische, multimodale Verkehrssimulation sumo." +#: D:\Repos\sumo/src\jtrrouter\ROJTREdge.cpp:64 #: /home/micha/programming/sumo/src/jtrrouter/ROJTREdge.cpp:64 #, c-format msgid "The edges '%' and '%' are not connected." msgstr "Die Kanten '%' und '%' sind nicht verbunden." +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:59 #: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:59 msgid "Read turning ratios from FILE(s)" msgstr "Wendeverhältnisse aus FILE(s) lesen" +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:69 #: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:69 -#, fuzzy msgid "Use STR[] as default turn definition" -msgstr "STR[] als Standard-Wendedefinition verwenden" +msgstr "STR[] als Standardabbiegedefinition verwenden" +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:73 #: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:73 -#, fuzzy msgid "Use STR[] as list of sink edges" msgstr "STR[] als Liste der Zielkanten verwenden" +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:76 #: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:76 msgid "Whether all edges are allowed as sink edges" msgstr "Ob alle Kanten als Zielkanten erlaubt sind" +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:79 #: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:79 msgid "Ignore road restrictions based on vehicle class" msgstr "Ignoriert Straßenbeschränkungen basierend auf der Fahrzeugklasse" +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:82 #: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:82 msgid "Allow to re-use a road" msgstr "Eine Straße wiederverwenden erlauben" +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:85 #: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:85 msgid "Use all source edges as sink edges." msgstr "Verwende alle Quellkanten als Zielkanten." +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:88 #: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:88 msgid "" "Subtract upstream flow when inserting a new flow. When option --sources-are-" @@ -881,6 +1080,7 @@ "Wenn die Option --sources-are-sinks gesetzt ist, wird der stromaufwärtige " "Fluss auf den Quellfluss begrenzt und der verbleibende Teil terminiert." +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:68 #: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:68 msgid "" "The turn-file format with elements %, % is deprecated, please use % instead." @@ -888,21 +1088,26 @@ "Das Wenden-Datei-Format mit den Elementen %, % ist veraltet, bitte wende " "stattdessen % an." +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:87 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:143 #: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:87 #: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:143 #, c-format msgid "The edge '%' declared as a sink is not known." msgstr "Die als Ziel deklarierte Kante '%' ist nicht bekannt." +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:116 #: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:116 msgid "Ignoring flow '%' without 'from'" msgstr "Fluss '%' ohne 'from' wird ignoriert" +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:128 #: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:128 #, c-format msgid "The edge '%' declared as a source is not known." msgstr "Die Quellkante '%' ist nicht bekannt." +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:152 #: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:152 #, c-format msgid "" @@ -911,6 +1116,7 @@ "Die Kante '%' ist innerhalb des Netzwerkes nicht bekannt (innerhalb eines " "'from-edge' Tag)." +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:172 #: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:172 #, c-format msgid "The edge '%' is not known within the network (within a 'to-edge' tag)." @@ -918,12 +1124,17 @@ "Die Kante '%' ist innerhalb des Netzwerkes nicht bekannt (innerhalb eines " "'to-edge' Tag)." +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:178 #: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:178 msgid "'probability' must be positive (in definition of to-edge '%')." msgstr "" "'probability' die Wahrscheinlichkeit muss positiv sein (in der Definition " "von Endkante '%')." +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:201 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:206 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1302 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1400 #: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:201 #: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:206 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1302 @@ -932,11 +1143,13 @@ msgid "The edge '%' is not known." msgstr "Die Kante '%' ist nicht bekannt." +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:210 #: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:210 msgid "'probability' must be positive (in edgeRelation from '%' to '%'." msgstr "" "'probability' muss positiv sein (in der Kantenbeziehung von '%' zu '%'." +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:94 #: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:94 msgid "" "The defaults for turnings must be a tuple of at least two numbers divided by " @@ -945,10 +1158,12 @@ "Die Standardwerte für Drehungen müssen ein Tupel aus mindestens zwei Zahlen " "sein, die durch ',' geteilt werden." +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:101 #: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:101 msgid "A turn default is not numeric." msgstr "Eine Abbiegevorgabe ist nicht numerisch." +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:182 #: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:182 msgid "" "Router for the microscopic, multi-modal traffic simulation SUMO based on " @@ -957,10 +1172,12 @@ "Router für die mikroskopische, multimodale Verkehrssimulation sumo auf Basis " "von Abbiegeraten." +#: D:\Repos\sumo/src\libsumo\GUI.cpp:332 #: /home/micha/programming/sumo/src/libsumo/GUI.cpp:330 msgid "This system has no OpenGL support. Exiting." msgstr "Dieses System unterstützt OpenGL nicht. Abbruch." +#: D:\Repos\sumo/src\libsumo\Helper.cpp:904 #: /home/micha/programming/sumo/src/libsumo/Helper.cpp:904 #, c-format msgid "" @@ -971,6 +1188,7 @@ "für den geografischem Bereich wird ignoriert. Erwägen Sie die Verwendung des " "'Fahrstreifen'-Filters." +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1067 #: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1067 msgid "" "Lanes filter is only feasible for context domain 'vehicle' (current is '%'), " @@ -979,6 +1197,7 @@ "Der Fahrstreifen-Filter ist nur für die Kontextdomäne 'vehicle' (aktuell ist " "'%') möglich, Filter wird ignoriert..." +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1164 #: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1164 msgid "" "Turn filter is only feasible for context domain 'vehicle' (current is '%'), " @@ -987,6 +1206,7 @@ "Abbiegefilter ist nur für den Kontext 'Fahrzeug' möglich (aktuell ist '%'), " "Filter wird ignoriert..." +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1229 #: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1229 msgid "" "Field of vision opening angle ('%') should be within interval (0, 360), " @@ -995,6 +1215,7 @@ "Der Öffnungswinkel ('%') für den sichtbaren Ausschnitt sollte im Intervall " "(0,360) liegen, Filter wird ignoriert..." +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1341 #: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1341 msgid "" "addSubscriptionFilterLateralDistance could not determine shape of lane '%' " @@ -1003,18 +1224,22 @@ "addSubscriptionFilterLateralDistance konnte die Shape des Fahrstreifens '%' " "mit einer seitlichen Verschiebung von % nicht bestimmen." +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1399 #: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1399 msgid "Vehicle '%' was removed though being controlled by TraCI" msgstr "Fahrzeug '%' wurde entfernt, obwohl es von TraCI kontrolliert wurde" +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1408 #: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1408 msgid "Person '%' was removed though being controlled by TraCI" msgstr "Person '%' wurde entfernt, obwohl es von TraCI kontrolliert wurde" +#: D:\Repos\sumo/src\libsumo\MeanData.cpp:83 #: /home/micha/programming/sumo/src/libsumo/MeanData.cpp:83 msgid "Found % meanData definitions with id '%'." msgstr "MeanData-Definitionen mit ID '%' gefunden." +#: D:\Repos\sumo/src\libsumo\Person.cpp:535 #: /home/micha/programming/sumo/src/libsumo/Person.cpp:530 #, c-format msgid "" @@ -1023,15 +1248,20 @@ "Abfahrtszeit % für Person '%' liegt in der Vergangenheit; Stattdessen wird " "die aktuelle Zeit % verwendet." -#: /home/micha/programming/sumo/src/libsumo/Person.cpp:929 -msgid "Could not determine position on lane '% at lateral position %." +#: D:\Repos\sumo/src\libsumo\Person.cpp:934 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1741 +#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1717 +msgid "Could not determine position on lane '%' at lateral position %." msgstr "" -"Konnte Position auf Fahrstreifen '% an seitlicher Position % nicht bestimmen." +"Konnte die Position auf Fahrstreifen '%' an seitlicher Position % nicht " +"bestimmen." +#: D:\Repos\sumo/src\libsumo\Simulation.cpp:105 #: /home/micha/programming/sumo/src/libsumo/Simulation.cpp:105 msgid "Simulation version % started via libsumo with time: %." msgstr "Simulationsversion % startet über libsumo mit der Zeit: %" +#: D:\Repos\sumo/src\libsumo\Simulation.cpp:699 #: /home/micha/programming/sumo/src/libsumo/Simulation.cpp:699 msgid "" "Ignoring vehicle type '%' when performing intermodal routing because it is " @@ -1040,6 +1270,7 @@ "Ignoriere den Fahrzeugtyp '%' beim intermodalen Routing, da es auf der " "Startkante '%' nicht erlaubt ist." +#: D:\Repos\sumo/src\libsumo\TrafficLight.cpp:697 #: /home/micha/programming/sumo/src/libsumo/TrafficLight.cpp:697 #, c-format msgid "" @@ -1049,6 +1280,7 @@ "Es kann nicht nach allen Blockierungen bei swapConstrains gesucht werden, da " "die Route für das Fahrzeug '%' noch nicht berechnet wurde" +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1133 #: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1122 msgid "" "Stop replacement parameter 'teleport=%' ignored for vehicle '%' when only " @@ -1057,15 +1289,19 @@ "Halt-Ersetzungsparameter 'teleport=%' wird für Fahrzeug '%' ignoriert, wenn " "nur Halt entfernt wird." +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1246 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1374 #: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1231 #: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1354 msgid "Unsupported parameter '%'" msgstr "Nicht unterstützter Parameter '%'" +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1326 #: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1306 msgid "Waypoint (speed = %) at index % does not support triggers" msgstr "Wegpunkt (Geschwindigkeit = %) bei Index % unterstützt keine Auslöser" +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1360 #: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1340 msgid "" "Triggered stop at index % cannot be changed into a waypoint by setting speed " @@ -1074,6 +1310,7 @@ "Ausgelöster Halt bei Index % kann nicht in einen Wegpunkt geändert werden, " "indem die Geschwindigkeit auf % gesetzt wird" +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1477 #: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1457 #, c-format msgid "Ignoring changeLaneRelative for vehicle '%' that isn't on the road" @@ -1081,11 +1318,13 @@ "Ignoriert changeLaneRelative für das Fahrzeug '%' welches sich nicht auf der " "Straße befindet" +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1479 #: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1459 msgid "Ignoring indexOffset % for vehicle '%' on laneIndex %." msgstr "" "Ignoriere Index-Versatz % für das Fahrzeug '%' auf den Fahrstreifenindex %." +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1575 #: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1551 #, c-format msgid "" @@ -1094,17 +1333,14 @@ "Abfahrtszeit für das Fahrzeug '%' liegt in der Vergangenheit; bitte eine " "aktuelle Zeit verwenden." -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1717 -msgid "Could not determine position on lane '%' at lateral position %." -msgstr "" -"Konnte die Position auf Fahrstreifen '%' an seitlicher Position % nicht " -"bestimmen." - +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1938 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:422 #: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1914 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:422 msgid "Invalid route replacement for vehicle '%'. %" msgstr "Ungültiger Routensatz für das Fahrzeug '%'. %" +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:2634 #: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:2597 msgid "" "Ignoring lane change subscription filter with non-neighboring lane offset " @@ -1113,6 +1349,7 @@ "Ignoriere den Fahrstreifenwechsel-Abonnementfilter für den nicht " "benachbarten Fahrstreifen mit dem Versatz = %." +#: D:\Repos\sumo/src\libsumo\VehicleType.cpp:322 #: /home/micha/programming/sumo/src/libsumo/VehicleType.cpp:289 #, c-format msgid "Automatically setting emergencyDecel to % for vType '%' to match decel." @@ -1120,42 +1357,55 @@ "Automatisches Festlegen der Notverzögerung auf % für Fahrzeugtyp '%', um der " "Verzögerung zu entsprechen." +#: D:\Repos\sumo/src\libsumo\VehicleType.cpp:334 #: /home/micha/programming/sumo/src/libsumo/VehicleType.cpp:301 msgid "New value of emergencyDecel (%) is lower than decel (%)" msgstr "" "Der neue Wert der Notverzögerung (%) ist niedriger als die Verzögerung (%)" +#: D:\Repos\sumo/src\marouter\ROMAAssignments.cpp:190 #: /home/micha/programming/sumo/src/marouter/ROMAAssignments.cpp:190 msgid "Unknown origin '%'." msgstr "Unbekannter Ursprung '%'." +#: D:\Repos\sumo/src\marouter\ROMAAssignments.cpp:194 #: /home/micha/programming/sumo/src/marouter/ROMAAssignments.cpp:194 msgid "Unknown destination '%'." msgstr "Unbekanntes Ziel '%'." +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:71 +#: D:\Repos\sumo/src\od2trips_main.cpp:121 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:71 #: /home/micha/programming/sumo/src/od2trips_main.cpp:121 msgid "Does not save vtype information" msgstr "Konnte Fahrzeugtypinformation nicht speichern" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:74 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:74 msgid "Writes edge loads and final costs into FILE" msgstr "Kantenladungen und finale Kosten in FILE schreiben" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:77 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:77 msgid "Writes complete distance matrix into FILE" msgstr "Schreibt komplette Distanzmatrix in FILE" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:81 +#: D:\Repos\sumo/src\od2trips_main.cpp:85 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:81 #: /home/micha/programming/sumo/src/od2trips_main.cpp:85 msgid "Loads O/D-files from FILE(s)" msgstr "Ladet Quelle-/Zieldateien von FILE(s)" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:86 +#: D:\Repos\sumo/src\od2trips_main.cpp:90 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:86 #: /home/micha/programming/sumo/src/od2trips_main.cpp:90 msgid "Loads O/D-matrix in Amitran format from FILE(s)" msgstr "Ladet Quelle-/Zielmatrix im Amitran-Format von FILE(s)" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:89 +#: D:\Repos\sumo/src\od2trips_main.cpp:93 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:89 #: /home/micha/programming/sumo/src/od2trips_main.cpp:93 msgid "Loads O/D-matrix in tazRelation format from FILE(s)" @@ -1163,26 +1413,30 @@ "Ladet Quelle-/Zielmatrix im Verkehrsumlegungszonenrelations-Format von " "FILE(s)" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:93 +#: D:\Repos\sumo/src\od2trips_main.cpp:97 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:93 #: /home/micha/programming/sumo/src/od2trips_main.cpp:97 msgid "Define data attribute for loading counts (default 'count')" msgstr "Datenattribut für Ladezählungen definieren (Standard 'count')" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:96 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:96 msgid "The travel time influence of prior intervals" msgstr "Der Reisezeiteinfluss früherer Intervalle" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:99 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:99 -#, fuzzy msgid "Parameter key(s) defining source (and sink) taz" msgstr "" -"Parameterschlüssel, die Quell (und Ziel) Verkehrsumlegungszone definieren" +"Parameterschlüssel, die Quell- (und Ziel-)Verkehrsumlegungszone definieren" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:102 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:102 -#, fuzzy msgid "Ignore attributes 'fromTaz' and 'toTaz'" -msgstr "Ignoriere Attribute 'fromTaz' und 'toTaz'" +msgstr "Ignoriere Attribute 'fromTaz' und 'toTaz'" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:106 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:106 msgid "" "Defines the time interval when aggregating single vehicle input; Defaults to " @@ -1191,11 +1445,13 @@ "Definiert das Zeitintervall beim Aggregieren einzelner Fahrzeugeingaben; " "Standardmäßig eine Stunde" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:109 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:109 msgid "Ignore edge priorities when calculating capacities and restraints" msgstr "" "Ignoriert Kantenvorränge bei der Berechnung von Kapazitäten und Restriktionen" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:115 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:115 msgid "" "Aggregate routing queries with the same origin for different vehicle types" @@ -1203,45 +1459,57 @@ "Routinganfragen mit gleichem Ursprung für unterschiedliche Fahrzeugtypen " "aggregieren" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:153 +#: D:\Repos\sumo/src\od2trips_main.cpp:137 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:153 #: /home/micha/programming/sumo/src/od2trips_main.cpp:137 msgid "Scales the loaded flows by FLOAT" msgstr "Skaliert die geladenen Flüsse per FLOAT" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:156 +#: D:\Repos\sumo/src\od2trips_main.cpp:146 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:156 #: /home/micha/programming/sumo/src/od2trips_main.cpp:146 msgid "Defines the name of the vehicle type to use" msgstr "Definiert den Namen des zu verwendenden Fahrzeugtyps" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:159 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:159 msgid "Defines the prefix for vehicle flow names" msgstr "Definiert das Präfix für den Fahrzeugflussnamen" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:162 +#: D:\Repos\sumo/src\od2trips_main.cpp:152 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:162 #: /home/micha/programming/sumo/src/od2trips_main.cpp:152 msgid "Uses STR[] as a timeline definition" msgstr "Nutzt STR[] als Zeitspannendefiniton" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:165 +#: D:\Repos\sumo/src\od2trips_main.cpp:155 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:165 #: /home/micha/programming/sumo/src/od2trips_main.cpp:155 msgid "Uses STR as a 24h-timeline definition" msgstr "Nutzt STR als 24-Stunden Zeitspannendefinition" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:168 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:168 msgid "Keep traffic flows of all time slots in the net" msgstr "Verkehrsströme aller Zeitintervalle im Netz behalten" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:172 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:172 -#, fuzzy msgid "Choose a assignment method: incremental, UE or SUE" -msgstr "Wähle eine Zuweisungsmethode: inkrementell, UE oder SUE" +msgstr "Wähle eine Umlegemethode: inkrementell, UE oder SUE" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:175 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:175 msgid "Use FLOAT as tolerance when checking for SUE stability" msgstr "" "Verwende FLOAT als Toleranz bei der Überprüfung der SUE-Stabilität " "(Stochastisches Nutzergleichgewicht)" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:178 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:178 msgid "" "Use left-turn penalty FLOAT to calculate link travel time when searching " @@ -1250,6 +1518,7 @@ "Linksabbiegestrafe FLOAT zur Berechnung der Verbindungsfahrzeit bei der " "Suche nach Routen verwenden" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:181 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:181 msgid "" "Use INTEGER as the number of paths needed to be searched for each OD pair at " @@ -1258,22 +1527,26 @@ "INTEGER als die Anzahl der Pfade, die für jedes Quelle-Ziel-Paar bei jeder " "Iteration durchsucht werden muss verwenden" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:184 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:184 msgid "Penalize existing routes with FLOAT to find secondary routes" msgstr "Vorhandene Routen mit FLOAT, um sekundäre Routen zu finden, bestrafen" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:188 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:188 msgid "Use FLOAT as the upper bound to determine auxiliary link cost" msgstr "" "Verwende FLOAT als Obergrenze, um die Kosten für Hilfsverbindungen zu " "bestimmen" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:192 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:192 msgid "Use FLOAT as the lower bound to determine auxiliary link cost" msgstr "" "Verwende FLOAT als Untergrenze, um die Kosten für Hilfsverbindungen zu " "bestimmen" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:195 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:195 msgid "" "maximal number of iterations for new route searching in incremental and " @@ -1282,6 +1555,7 @@ "maximale Anzahl von Iterationen für die Suche nach neuen Routen bei " "inkrementeller und stochastischer Benutzerzuweisung" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:198 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:198 msgid "" "maximal number of inner iterations for user equilibrium calculation in the " @@ -1290,23 +1564,27 @@ "maximale Anzahl innerer Iterationen für die Benutzergleichgewichtsberechnung " "in der stochastischen Benutzerzuordnung" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:223 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:223 msgid "Use FLOAT as (c-)logit's beta for the commonality factor" msgstr "FLOAT in (c-)Logit als beta für den Gemeinsamkeitsfaktor verwenden" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:227 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:227 -#, fuzzy msgid "Use FLOAT as (c-)logit's gamma for the commonality factor" -msgstr "FLOAT als (c-)Logit´s gamma für den Gemeinsamkeitsfaktor verwenden" +msgstr "FLOAT als (c-)Logit's gamma für den Gemeinsamkeitsfaktor verwenden" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:231 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:231 msgid "Use FLOAT as (c-)logit's theta" msgstr "FLOAT n (c-)Logit als theta verwenden" +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:239 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:239 msgid "Invalid assignment method '%'." msgstr "Ungültige Zuweisungsmethode '%'." +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:247 #: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:247 msgid "" "Contraction hierarchies do not work with k shortest path search (please use " @@ -1315,10 +1593,12 @@ "Verkürzungshierarchien arbeiten nicht mit der k kürzesten Wegsuche (bitte " "nutzen Sie einen anderen Routen-Algorithmus)!" +#: D:\Repos\sumo/src\marouter\ROMARouteHandler.cpp:87 #: /home/micha/programming/sumo/src/marouter/ROMARouteHandler.cpp:87 msgid "No origin or no destination given, ignoring '%'!" msgstr "Kein Start- oder Zielpunkt gegeben, '%' wird ignoriert!" +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:239 #: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:239 msgid "" "Deterministic user equilibrium ('UE') is not implemented yet, using " @@ -1327,11 +1607,14 @@ "Deterministisches Benutzergleichgewicht ('UE') ist noch nicht implementiert, " "es wird die stochastische Methode ('SUE') verwendet." +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:323 +#: D:\Repos\sumo/src\od2trips_main.cpp:315 #: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:323 #: /home/micha/programming/sumo/src/od2trips_main.cpp:315 msgid "No output file given." msgstr "Keine Ausgabedatei vorhanden." +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:340 #: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:340 msgid "" "Import O/D-matrices for macroscopic traffic assignment to generate SUMO " @@ -1340,19 +1623,26 @@ "Importiere O/D-Matrizen für die makroskopische Verkehrszuweisung zur " "Generierung von SUMO-Routen." +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:376 #: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:376 msgid "No districts loaded, will use edge ids!" msgstr "Keine Distrikte geladen, es werden Kanten-IDs verwendet!" +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:387 #: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:387 msgid "No valid vehicles loaded." msgstr "Es wurden keine gültigen Fahrzeuge geladen." +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:390 +#: D:\Repos\sumo/src\od2trips_main.cpp:285 #: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:390 #: /home/micha/programming/sumo/src/od2trips_main.cpp:285 msgid "Loading failed." msgstr "Ladevorgang fehlgeschlagen." +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:89 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:66 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:185 #: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:89 #: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:66 #: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:184 @@ -1361,10 +1651,13 @@ "Das Fahrzeug '%' teleportiert sich über die Ankunftskante '%' hinaus, zur " "Zeit=%" +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:109 #: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:109 msgid "Vehicle '%' ends teleporting on edge '%':%, time=%." msgstr "Fahrzeug '%' beendet teleport an der Kante '%':%, zur Zeit=%." +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:167 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:197 #: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:167 #: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:197 msgid "Teleporting vehicle '%'; waited too long, from edge '%':%, time=%." @@ -1372,6 +1665,7 @@ "Teleportiertes Fahrzeug '%'; hat zu lange gewartet, von Kante '%':%, zur " "Zeit=%" +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:187 #: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:187 msgid "" "Teleporting vehicle '%'; waited too long, from edge '%':% to edge '%':%, " @@ -1380,31 +1674,40 @@ "Teleportiertes Fahrzeug '%'; wartet zu lange, von Kante '%':% zu Kante '%':" "%, zur Zeit=%" +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:137 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:603 #: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:137 #: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:603 msgid "Clearing jam at calibrator '%' at time=%." msgstr "Stau wurde beseitigt am Kalibrator '%' zur Zeit= %." +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:145 #: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:145 msgid "Could not clear jam at calibrator '%' at time=%." msgstr "Stau am Kalibrator '%' zur Zeit=% konnte nicht beseitigt werden." +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:177 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:414 #: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:177 #: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:414 msgid "No valid routes in calibrator '%'." msgstr "Keine gültigen Routen im Kalibrator '%'." +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:181 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:418 #: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:181 #: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:418 msgid "Route '%' in calibrator '%' does not contain edge '%'." msgstr "Route '%' in Kalibrator '%' beinhaltet nicht die Kante '%'." +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:220 #: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:220 msgid "Join stops are not available in meso yet (vehicle '%', segment '%')." msgstr "" "Verbindungshalte sind nicht anwendbar für die mesoskopische Simulation " "(Fahrzeug '%', Abschnitt '%')." +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:247 #: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:247 msgid "" "Vehicle '%' has multiple stops on segment '%', time=% (stop-output will be " @@ -1413,6 +1716,8 @@ "Fahrzeug '%' hat mehrere Halte auf den Abschnitt '%'; zur Zeit=% (stop-" "output wird zusammengeführt)." +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:370 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1656 #: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:370 #: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1669 #, c-format @@ -1422,6 +1727,8 @@ "Fahrzeug '%' ignoriert ausgelösten Halt auf Fahrstreifen '%' aufgrund von " "Kapazitätsengpässen." +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:387 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1671 #: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:387 #: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1684 #, c-format @@ -1432,54 +1739,58 @@ "Fahrzeug '%' ignoriert aufgrund von Kapazitätsengpässen den von Containern " "ausgelösten Halt auf Fahrstreifen '%'." +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:554 #: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:554 msgid "Error: Invalid vehicles in state (may be a micro state)!" msgstr "Fehler: Ungültige Fahrzeuge im Stand (kann ein Mikrostand sein)!" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.h:188 -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.h:194 -msgid "parkingZoneReroute not implemented for meso" -msgstr "" -"parkingZoneReroute ist nicht implementiert für die mesoskopische Simulation" - +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:172 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:172 msgid "Changing a vehicle ID is not permitted" msgstr "Das Ändern einer Fahrzeug-ID ist nicht zulässig" +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:289 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:289 msgid "Vehicle '%' is not allowed on any lane of via edge '%'." msgstr "Das Fahrzeug '%' ist auf keinen Streifen auf der Kante '%' erlaubt." +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:317 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:317 msgid "Vehicle '%' has no valid route from edge '%' to stop edge '%'." msgstr "" "Das Fahrzeug '%' hat keine zulässige Route von der Kante '%' zur Stopkante " "'%'." +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:361 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:361 #, c-format msgid "Vehicle '%' has no valid route." msgstr "Fahrzeug '%' hat keine zulässige Route." +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:363 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:363 msgid "Removing vehicle '%' which has no valid route." msgstr "Entferne Fahrzeug '%', welches keine zulässige Route besitzt." +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:377 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:377 #, c-format msgid "No route for vehicle '%' found." msgstr "Keine Route für das Fahrzeug '%' gefunden." +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:447 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:447 #, c-format msgid "current edge '%' not found in new route" msgstr "aktuelle Kante '%' wurde nicht in der neuen Route gefunden" +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:460 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:460 msgid "Vehicle is on junction-internal edge leading elsewhere" msgstr "" "Fahrzeug steht auf einer kreuzungsinternen Kante, welche woanders hinführt" +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:473 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:473 msgid "" "Vehicle is moving past junction and committed to move to another successor " @@ -1488,31 +1799,37 @@ "Das Fahrzeug bewegt sich über den Knotenpunkt hinaus und steuert eine " "nachfolgende Kante an" +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:543 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:543 msgid "Vehicle '%' could not assign stop '%' after rerouting (%) at time=%." msgstr "" "Fahrzeug '%' konnte nach einer Umleitung nicht den Stop '%' zugewiesen " "werden zur Zeit=%." +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:683 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:683 msgid "No connection between edge '%' and edge '%'." msgstr "Keine Verbindung zwischen Kante '%' und Kante '%'." +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:692 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:692 #, c-format msgid "Edge '%' prohibits." msgstr "Kante '%' ist verboten." +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:706 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:706 #, c-format msgid "Vehicle '%' is not allowed to depart on its first edge." msgstr "" "Das Fahrzeug '%' ist nicht zur Abfahrt berechtigt bei seiner ersten Kante." +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:736 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:736 msgid "Vehicle '%' has no valid route. %" msgstr "Fahrzeug '%' hat keine zulässige Route. %" +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:799 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:799 msgid "" "Vehicle '%' ignores attribute arrivalEdge=% after rerouting at time=% " @@ -1521,36 +1838,44 @@ "Fahrzeug '%' ignoriert das Attribut arrivalEdge=% nach einer Umleitung zur " "Zeit=% (routeLength=%)" +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:813 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:813 msgid "Vehicle '%' will not be able to arrive at the given position!" msgstr "Fahrzeug '%' ist nicht in der Lage die gegebene Position zu erreichen!" +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:833 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:833 msgid "Vehicle '%' will not be able to arrive at the given lane '%_%'!" msgstr "" "Fahrzeug '%' kann nicht auf den angegebenen Fahrstreifen '%_%' ankommen!" +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:845 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:857 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:845 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:857 msgid "Vehicle '%' has no usable arrivalLane on edge '%'." msgstr "Fahrzeug '%' hat keinen nutzbaren Ankunftsfahrstreifen auf Kante '%'." +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:869 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:869 msgid "Vehicle '%' will not be able to arrive with the given speed!" msgstr "Fahrzeug '%' kann nicht die gegebene Geschwindigkeit erreichen!" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:885 -msgid "Ignoring departEdge % for vehicle '% with % route edges" -msgstr "Ignoriere Abfahrtskante % für das Fahrzeug '%' mit % Routenkanten" +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:885 +msgid "Ignoring departEdge % for vehicle '%' with % route edges" +msgstr "" +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.h:909 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.h:879 msgid "getLeader not yet implemented for meso" msgstr "getLeader nicht implementiert für die mesoskopische Simulation" +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.h:923 #: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.h:893 msgid "getFollower not yet implemented for meso" msgstr "getFollower nicht implementiert für die mesoskopische Simulation" +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:660 #: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:660 msgid "" "Choosing new speed factor % for vehicle '%' to match departure speed % (max " @@ -1559,15 +1884,18 @@ "Wähle eine neue Geschwindigkeit % für das Fahrzeug '%' um der " "Abfahrtsgeschwindigkeit % zu entsprechen (max %)." +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1264 #: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1264 #, c-format msgid "Bidi-edge '%' does not exist" msgstr "Zweirichtungs-Kante '%' existiert nicht" +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1277 #: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1277 msgid "Ambiguous superposable edges between junction '%' and '%'." msgstr "Mehrdeutige überlagerbare Kanten zwischen den Knotenpunkt '%' und '%'." +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1308 #: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1308 #, c-format msgid "Edge '%s' and bidi edge '%s' have no matching bidi lanes" @@ -1575,81 +1903,97 @@ "Kante '%s' und Zweirichtungs-Kante '%s' haben keine übereinstimmende " "Zweichrichtungs-Fahrstreifen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:78 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:78 msgid "Load road network description from FILE" msgstr "Straßennetzbeschreibung aus FILE laden" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:83 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:83 msgid "Load routes descriptions from FILE(s)" msgstr "Routenbeschreibungen aus FILE(s) laden" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:87 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:87 msgid "Load further descriptions from FILE(s)" msgstr "Weitere Beschreibungen aus FILE(s) laden" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:91 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:91 msgid "Load edge/lane weights for online rerouting from FILE" msgstr "" "Kanten-/Fahrstreifengewichte für die Online-Umleitung aus der FILE laden" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:94 +#: D:\Repos\sumo/src\router\ROFrame.cpp:108 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:94 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:108 msgid "Name of the xml attribute which gives the edge weight" msgstr "Name des xml-Attributs welches das Kantengewicht angibt" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:97 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:97 msgid "Loads a network state from FILE" msgstr "Ladet den Netzstand aus FILE" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:99 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:99 msgid "Shifts all times loaded from a saved state by the given offset" msgstr "" "Verschiebt alle Zeiten, die aus einem gespeicherten Zustand geladen wurden, " "um den angegebenen Versatz" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:101 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:101 msgid "Removes vehicles with the given IDs from the loaded state" msgstr "Entfernt Fahrzeuge mit den gegebenen IDs aus dem geladenen Stand" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:104 +#: D:\Repos\sumo/src\router\ROFrame.cpp:134 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:104 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:134 -#, fuzzy msgid "" "Initialize a TAZ for every junction to use attributes toJunction and " "fromJunction" msgstr "" -"Eine Verkehrsumlegungszone für jeden Knotenpunkt, um die Attribute " -"Endknotenpunkt und Ausgangsknotenpunkt zu verwenden, initialisieren" +"Eine Verkehrsumlegungszone für jeden Knotenpunkt initialisieren, um die " +"Attribute toJunction und fromJunction zu verwenden" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:114 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:114 msgid "Save complete network states into FILE" msgstr "Komplette Netzzustände in FILE speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:119 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:119 -#, fuzzy msgid "Write also empty edges completely when dumping" -msgstr "Beim Abladen auch leere Kanten vollständig schreiben" +msgstr "Bei der Ausgabe auch leere Kanten vollständig schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:124 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:124 msgid "Write positions and speeds with the given precision (default 2)" msgstr "" "Positionen und Geschwindigkeiten mit der angegebenen Genauigkeit (Standard " "2) schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:128 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:128 msgid "Save the emission values of each vehicle" msgstr "Emissionswerte von jedem Fahrzeug speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:130 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:130 msgid "Write emission values with the given precision (default 2)" msgstr "Emissionswerte mit der angegebenen Genauigkeit schreiben (Standard 2)" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:132 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:132 msgid "Save the positions in emission output using geo-coordinates (lon/lat)" msgstr "" "Positionen in der Emissionsausgabe mit Geokoordinaten (Länge/Breite) " "speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:135 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:135 msgid "" "Write emission values scaled to the step length rather than as per-second " @@ -1658,65 +2002,80 @@ "Emissionswerte skaliert auf die Schrittlänge und nicht als Werte pro Sekunde " "schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:138 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:138 msgid "Save the battery values of each vehicle" msgstr "Batteriewerte von jedem Fahrzeug speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:140 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:140 msgid "Write battery values with the given precision (default 2)" msgstr "Batteriewerte mit der angegebenen Genauigkeit schreiben (Standard 2)" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:143 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:143 msgid "Save the elecHybrid values of each vehicle" msgstr "Die elecHybrid-Werte für jedes Fahrzeug speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:145 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:145 msgid "Write elecHybrid values with the given precision (default 2)" msgstr "" "elecHybrid-Werte mit der angegebenen Genauigkeit (Standard 2) schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:147 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:147 msgid "Write elecHybrid values into one aggregated file" msgstr "elecHybrid-Werte in eine aggregierte Datei schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:150 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:150 msgid "Write data of charging stations" msgstr "Daten der Ladestationen schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:153 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:153 msgid "Write data of overhead wire segments" msgstr "Daten der Oberleitungssegmente schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:156 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:156 msgid "Write data of electrical substation stations" msgstr "Daten der elektrischen Unterstationen schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:158 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:158 msgid "Write substation values with the given precision (default 2)" msgstr "Stationswerte mit der angegebenen Genauigkeit schreiben (Standard 2)" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:161 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:161 msgid "Save the Floating Car Data" msgstr "Floating-Car-Daten speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:163 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:163 msgid "Save the Floating Car Data using geo-coordinates (lon/lat)" msgstr "" "Floating Car Data welche Geokoordinaten (Längengrad/Breitengrad) verwenden " "speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:165 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:165 msgid "Add the vehicle signal state to the FCD output (brake lights etc.)" msgstr "Fahrzeugsignalzustand zum FCD-Ausgang (Bremslichter usw.) hinzufügen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:167 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:167 msgid "Add kilometrage to the FCD output (linear referencing)" msgstr "Kilometerstand zur FCD-Ausgabe hinzufügen (lineare Referenzierung)" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:169 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:169 msgid "Add acceleration to the FCD output" msgstr "Beschleunigung zur FCD-Ausgabe hinzufügen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:171 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:171 msgid "" "Add leader vehicle information to the FCD output (within the given distance)" @@ -1724,74 +2083,87 @@ "Führende Fahrzeuginformationen zur FCD Ausgabe hinzufügen (innerhalb der " "angegebenen Entfernung)" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:173 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:173 msgid "Add generic parameter values to the FCD output" msgstr "Generische Parameterwerte zur FCD-Ausgabe hinzufügen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:175 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:175 msgid "Restrict fcd output to the edge selection from the given input file" msgstr "" "Beschränkt die FCD-Ausgabe auf die Kantenauswahl aus der angegebenen " "Eingabedatei" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:177 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:177 msgid "List attributes that should be included in the FCD output" msgstr "Attribute die in der FCD-Ausgabe enthalten sein sollten auflisten" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:179 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:179 msgid "List shape names that should be used to filter the FCD output" msgstr "" "Shape-Namen die zum Filtern der FCD-Ausgabe verwendet werden sollen auflisten" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:182 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:182 -#, fuzzy msgid "" "Restrict SSM device output to the edge selection from the given input file" msgstr "" -"SSM-Geräteausgabe auf die Kantenauswahl aus der angegebenen Eingabedatei " -"beschränken" +"SSM-Einrichtungsausgabe auf die Kantenauswahl aus der angegebenen " +"Eingabedatei beschränken" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:185 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:185 msgid "Save a lot of information for each timestep (very redundant)" msgstr "Viele Informationen für jeden Zeitschritt (sehr redundant) speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:188 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:188 msgid "Save the vehicle queues at the junctions (experimental)" msgstr "Fahrzeugwarteschlangen an den Knotenpunkten (experimentell) speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:190 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:190 msgid "Save vehicle queues with the given period" msgstr "Fahrzeugwarteschlangen mit dem angegebenen Zeitraum speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:193 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:193 -#, fuzzy msgid "" "Save complete vehicle positions inclusive speed values in the VTK Format " "(usage: /path/out will produce /path/out_$TIMESTEP$.vtp files)" msgstr "" -"Komplette Fahrzeugpositionen inklusive Geschwindigkeitswerte im VTK-Format " -"(Verwendung: /path/out erzeugt /path/out_$TIMESTEP$.vtp-Dateien) speichern" +"Komplette Fahrzeugpositionen inklusive Geschwindigkeitswerten im VTK-Format " +"speichern (Verwendung: /path/out erzeugt /path/out_$TIMESTEP$.vtp-Dateien)" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:195 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:195 msgid "Save the vehicle trajectories in the Amitran format" msgstr "Fahrzeugtrajektorien im Amitran-Format speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:200 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:200 msgid "Save aggregated vehicle departure info into FILE" msgstr "Aggregierte Fahrzeugabfahrtsinformationen in FILE speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:203 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:203 msgid "Save summary-output with the given period" msgstr "Zusammenfassungsausgabe mit dem angegebenen Zeitraum speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:206 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:206 msgid "Save aggregated person counts into FILE" msgstr "Aggregierte Personenzählungen in FILE speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:210 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:210 msgid "Save single vehicle trip info into FILE" msgstr "Einzelfahrzeugfahrt in FILE speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:213 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:213 msgid "" "Write tripinfo output for vehicles which have not arrived at simulation end" @@ -1799,6 +2171,7 @@ "Fahrteninformations-Ausgabe für Fahrzeuge die das Simulationsende noch nicht " "erreicht haben schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:216 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:216 msgid "" "Write tripinfo output for vehicles which have not departed at simulation end " @@ -1807,41 +2180,49 @@ "Fahrteninformations-Ausgabe für Fahrzeuge die am Simulationsende wegen einer " "Abfahrtsverzögerung nicht abgefahren sind schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:220 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:220 msgid "Save personinfo and containerinfo to separate FILE" -msgstr "" +msgstr "Personinfo und containerinfo in FILE schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:224 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:224 msgid "Save single vehicle route info into FILE" msgstr "Einzelfahrzeugrouteninformation in FILE speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:228 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:228 msgid "Write the exit times for all edges" msgstr "Austrittszeiten für alle Kanten schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:232 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:232 msgid "Write the last route only" msgstr "Nur die letzte Route schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:236 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:236 msgid "Sorts the output by departure time" msgstr "Sortiert die Ausgabe nach der Abfahrtszeit" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:240 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:240 -#, fuzzy msgid "Write the output in the duarouter alternatives style" msgstr "Die Ausgabe im alternativen duarouter-Stil schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:243 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:243 msgid "Write costs for all routes" msgstr "Kosten für alle Routen schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:247 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:247 msgid "Write the output with the intended instead of the real departure time" msgstr "" "Die Ausgabe mit der beabsichtigten statt der tatsächlichen Abfahrtszeit " "schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:254 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:254 msgid "" "Write vehroute output for vehicles which have not arrived at simulation end" @@ -1849,20 +2230,23 @@ "Fahrzeugroutenausgabe für Fahrzeuge die das Simulationsende noch nicht " "erreicht haben schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:257 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:257 msgid "Skip vehroute output for public transport vehicles" msgstr "Fahrzeugausgabe für Fahrzeuge des öffentlichen Verkehrs überspringen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:260 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:260 -#, fuzzy msgid "Include invalid routes and route stubs in vehroute output" msgstr "" -"Ungültige Routen und Routen-Stubs in die Fahrzeugroutenausgabe einschließen" +"Ungültige/unvollständige Routen in die Fahrzeugroutenausgabe einschließen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:263 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:263 msgid "Include information about edges between stops" msgstr "Informationen zu Kanten zwischen Haltepunkten hinzufügen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:266 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:266 msgid "" "Write the vehicle speedFactor (defaults to 'true' if departSpeed is written)" @@ -1870,22 +2254,27 @@ "Den Geschwindigkeitsfaktor (speedFactor) des Fahrzeugs schreiben " "(standardmäßig 'true', wenn departSpeed geschrieben ist)" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:269 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:269 msgid "Include internal edges in the output" msgstr "Interne Kanten in die Ausgabe einfügen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:273 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:273 msgid "Save person and container routes to separate FILE" msgstr "Personen- und Containerrouten in einen separaten FILE speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:276 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:276 msgid "Save links states into FILE" msgstr "Linkstände in FILE speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:279 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:279 msgid "Save railsignal-blocks into FILE" msgstr "Bahnsignalblöcke in FILE speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:282 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:282 msgid "" "Save bluetooth visibilities into FILE (in conjunction with device.btreceiver " @@ -1894,24 +2283,29 @@ "Bluetooth-Sichtbarkeiten in FILE (in Verbindung mit device.btreceiver und " "device.btsender) speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:285 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:285 msgid "Record lane changes and their motivations for all vehicles into FILE" msgstr "" "Fahrstreifenwechsel und deren Beweggründe für alle Fahrzeuge in FILE " "aufzeichnen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:288 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:288 msgid "Record start of lane change manoeuvres" msgstr "Beginn von Fahrstreifenwechseln aufzeichnen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:291 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:291 msgid "Record end of lane change manoeuvres" msgstr "Ende von Fahrstreifenwechselmanövern aufzeichnen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:294 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:294 msgid "Record coordinates of lane change manoeuvres" msgstr "Koordinaten von Fahrstreifenwechselmanövern aufzeichnen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:297 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:297 msgid "" "Record stops and loading/unloading of passenger and containers for all " @@ -1920,106 +2314,124 @@ "Halte und das Be-/Entladen von Passagieren und Containern für alle Fahrzeuge " "in FILE aufzeichnen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:299 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:299 msgid "Write stop output for stops which have not ended at simulation end" msgstr "" "Haltausgang für Halte, die bei Simulationsende noch nicht beendet sind " "schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:302 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:302 msgid "Write collision information into FILE" msgstr "Kollisionsinformationen in FILE schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:305 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:305 msgid "Write aggregated traffic statistics for all edges into FILE" msgstr "Aggregierte Verkehrsstatistiken für alle Kanten in FILE schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:307 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:307 msgid "Write aggregated traffic statistics for all lanes into FILE" msgstr "" "Aggregierte Verkehrsstatistiken für alle Fahrstreifen in FILE schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:311 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:311 msgid "Write overall statistics into FILE" msgstr "Gesamtstatistiken in FILE schreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:315 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:315 msgid "Save movereminder states of selected vehicles into FILE" msgstr "Erinnerungszustände ausgewählter Fahrzeuge in FILE speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:317 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:317 -#, fuzzy msgid "List of vehicle ids which shall save their movereminder states" msgstr "" -"Liste der Fahrzeug IDs, die die Bewegungserinnerungszustände speichern sollen" +"Liste der Fahrzeug-IDs, die ihre \"movereminder\"-Zustände speichern sollen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:321 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:321 msgid "Use TIME[] as times at which a network state written" msgstr "Nutze Zeit[] als Zeiten zu denen ein Netzstand geschrieben wird" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:323 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:323 msgid "save state repeatedly after TIME period" msgstr "Stand nach der Zeitperiode wiederholt speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:325 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:325 -#, fuzzy msgid "Keep only the last INT periodic state files" -msgstr "Nur die letzten periodischen INT-Zustandsdateien behalten" +msgstr "Nur die letzten INT periodischen Zustandsdateien behalten" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:327 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:327 msgid "Prefix for network states" msgstr "Präfix für Netzstand" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:329 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:329 msgid "Suffix for network states (.xml.gz or .xml)" msgstr "Suffix für Netzstände (.xml.gz oder .xml)" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:331 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:331 msgid "Files for network states" msgstr "Dateien für Netzstände" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:333 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:333 -#, fuzzy msgid "Save random number generator states" msgstr "Zustände des Zufallszahlengenerators speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:335 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:335 msgid "Save person and container states (experimental)" msgstr "Personen- und Containerstände (experimentell) speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:337 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:337 msgid "Save rail signal constraints" msgstr "Gleissignalbeschränkungen speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:339 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:339 msgid "Write internal state values with the given precision (default 2)" msgstr "" "Interne Standwerte mit der angegebenen Genauigkeit schreiben (Standard 2)" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:343 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:343 msgid "Defines the begin time in seconds; The simulation starts at this time" msgstr "" "Definiert die Startzeit in Sekunden; Die Simulation beginnt zu diesem " "Zeitpunkt" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:346 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:346 msgid "Defines the end time in seconds; The simulation ends at this time" msgstr "" "Definiert die Endzeit in Sekunden; Die Simulation endet zu diesem Zeitpunkt" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:349 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:349 msgid "Defines the step duration in seconds" msgstr "Definiert die Schrittdauer in Sekunden" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:352 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:352 -#, fuzzy msgid "" "Whether to use ballistic method for the positional update of vehicles " "(default is a semi-implicit Euler method)." msgstr "" "Ob die ballistische Methode für die Positionsaktualisierung von Fahrzeugen " -"verwendet werden soll (Standard ist eine semi-implizierte Euler-Methode)." +"verwendet werden soll (Standard ist eine semi-implizite Euler-Methode)." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:355 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:355 msgid "" "Whether vehicles that depart between simulation steps should extrapolate the " @@ -2028,11 +2440,12 @@ "Ob Fahrzeuge, die zwischen Simulationsschritten abfahren, die " "Abfahrtsposition extrapolieren sollen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:358 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:358 -#, fuzzy msgid "Defines the number of threads for parallel simulation" -msgstr "Definiert die Anzahl der Fäden für die parallele Simulation" +msgstr "Definiert die Anzahl an Threads für die parallele Simulation" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:361 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:361 msgid "" "Defines the resolution in m when handling lateral positioning within a lane " @@ -2042,16 +2455,21 @@ "innerhalb eines Fahrstreifens (bei -1 fahren alle Fahrzeuge in der Mitte " "ihres Fahrstreifens" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:365 +#: D:\Repos\sumo/src\router\ROFrame.cpp:142 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:365 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:142 msgid "Load routes for the next number of seconds ahead" msgstr "Routen für die nächste Anzahl von Sekunden im Voraus laden" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:368 +#: D:\Repos\sumo/src\router\ROFrame.cpp:145 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:368 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:145 msgid "Disable (junction) internal links" msgstr "(Knotenpunkt) interne Links deaktivieren" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:371 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:371 msgid "" "Ignore vehicles which block the junction after they have been standing for " @@ -2060,18 +2478,28 @@ "Fahrzeuge ignorieren, die den Knotenpunkt blockieren, nachdem sie " "sekundenlang gestanden haben (-1 bedeutet niemals ignorieren)" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:374 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:374 msgid "Do not check whether routes are connected" msgstr "Prüft nicht, ob Routen verbunden sind" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:377 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:377 msgid "Do not check whether accidents occur" msgstr "Prüft nicht, ob es zu Unfällen kommt" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:380 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:380 msgid "How to deal with collisions: [none,warn,teleport,remove]" msgstr "Umgang mit Kollisionen: [keine, warnen, teleportieren, entfernen]" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:383 +msgid "" +"How to deal with collisions between vehicle and pedestrian: [none,warn," +"teleport,remove]" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:386 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:383 msgid "" "Let vehicle stop for TIME before performing collision.action (except for " @@ -2080,16 +2508,25 @@ "Lasse das Fahrzeug für eine Zeit anhalten, bevor eine Kollisionsaktion " "durchgeführt wird (außer Aktion 'none')" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:389 +msgid "" +"Let vehicle stop for TIME before performing intermodal-collision.action " +"(except for action 'none')" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:392 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:386 msgid "Enables collisions checks on junctions" msgstr "Aktiviert Kollisionsprüfungen an Knotenpunkten" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:395 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:389 msgid "Increase or decrease sensitivity for junction collision check" msgstr "" "Die Empfindlichkeit für die Knotenpunktkollisionsprüfung erhöhen oder " "verringern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:398 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:392 msgid "" "Sets the fraction of minGap that must be maintained to avoid collision " @@ -2099,12 +2536,14 @@ "muss, um eine Kollisionserkennung zu vermeiden. Bei einem negativen Wert " "wird der Parameter des Fahrzeugfolgemodells verwendet" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:401 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:395 msgid "Delay vehicle insertion to stay within the given maximum number" msgstr "" "Das Einfügen von Fahrzeugen, um innerhalb der angegebenen Höchstzahl zu " "bleiben, verzögern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:404 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:398 msgid "" "Abort the simulation if the given maximum number of teleports is exceeded" @@ -2112,6 +2551,7 @@ "Bricht die Simulation ab, wenn die angegebene maximale Anzahl an Teleporten " "überschritten wird" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:407 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:401 msgid "" "Scale demand by the given factor (by discarding or duplicating vehicles)" @@ -2119,12 +2559,14 @@ "Nachfrage anhand des gegebenen Faktors skalieren (durch Ausrangieren oder " "Duplizieren von Fahrzeugen)" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:410 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:404 msgid "Suffix to be added when creating ids for cloned vehicles" msgstr "" "Beim Erstellen von IDs für geklonte Fahrzeuge muss ein Suffix hinzugefügt " "werden" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:413 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:407 msgid "" "Specify how long a vehicle may wait until being teleported, defaults to 300, " @@ -2133,6 +2575,7 @@ "Gebe an, wie lange ein Fahrzeug warten darf, bis es teleportiert wird, " "standardmäßig 300, nicht positive Werte deaktivieren das Teleportieren" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:416 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:410 msgid "" "The waiting time after which vehicles on a fast road (speed > 69km/h) are " @@ -2142,6 +2585,7 @@ "69km/h) teleportiert werden, wenn sie sich auf einem nicht durchgehenden " "Fahrstreifen befinden" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:419 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:413 msgid "" "The waiting time after which vehicles on a fast road (default: speed > 69km/" @@ -2151,6 +2595,7 @@ "Geschwindigkeit > 69km/h) teleportiert werden, wenn sie sich auf einem nicht " "durchgehenden Fahrstreifen befinden" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:422 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:416 msgid "" "The waiting time after which vehicles with a disconnected route are " @@ -2159,6 +2604,7 @@ "Die Wartezeit, nach der Fahrzeuge mit unterbrochener Route teleportiert " "werden. Negative Werte deaktivieren das Teleportieren" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:425 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:419 msgid "" "Whether vehicles shall be removed after waiting too long instead of being " @@ -2167,6 +2613,7 @@ "Ob Fahrzeuge nach zu langer Wartezeit entfernt statt teleportiert werden " "sollen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:428 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:422 msgid "" "The waiting time after which persons / containers waiting for a pickup are " @@ -2175,12 +2622,14 @@ "Die Wartezeit, nach der auf Abholung wartende Personen/Container " "teleportiert werden. Negative Werte deaktivieren das Teleportieren" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:431 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:425 msgid "" "The waiting time after which vehicles on bidirectional edges are teleported" msgstr "" "Die Wartezeit, nach der Fahrzeuge auf Zweirichtungskanten teleportiert werden" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:434 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:428 msgid "" "Length of time interval, over which accumulated waiting time is taken into " @@ -2189,11 +2638,13 @@ "Länge des Zeitintervalls, über das die kumulierte Wartezeit berücksichtigt " "wird (Standard sind 100 s.)" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:437 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:431 msgid "Minimum consecutive waiting time before applying startupDelay" msgstr "" "Minimale aufeinanderfolgende Wartezeit vor der Anwendung von startupDelay" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:440 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:434 msgid "" "How long vehicles wait for departure before being skipped, defaults to -1 " @@ -2203,6 +2654,7 @@ "ist standardmäßig -1, was bedeutet, dass Fahrzeuge niemals übersprungen " "werden" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:443 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:437 msgid "" "Whether insertion on an edge shall not be repeated in same step once failed" @@ -2210,10 +2662,12 @@ "Ob das Einfügen an einer Kante nicht im selben Schritt wiederholt werden " "soll, wenn es einmal fehlgeschlagen ist" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:446 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:440 msgid "Whether each vehicle is checked separately for insertion on an edge" msgstr "Ob jedes Fahrzeug separat auf das Einfügen an einer Kante geprüft wird" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:449 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:443 msgid "" "Allow inserting a vehicle in a situation which requires emergency braking" @@ -2221,6 +2675,7 @@ "Einfahren eines Fahrzeugs in eine Situation, die eine Notbremsung erfordert " "erlauben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:452 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:446 msgid "" "Each vehicle receives a random offset to its depart value drawn uniformly " @@ -2229,46 +2684,53 @@ "Jedes Fahrzeug erhält einen zufälligen Versatz zu seinem Abfahrtswert, der " "einheitlich aus [0, Zeit] gezogen wird" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:455 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:449 msgid "Duration of a lane change maneuver (default 0)" msgstr "Dauer eines Fahrstreifenwechselmanövers (Standard 0)" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:458 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:452 msgid "Whether overtaking on the right on motorways is permitted" msgstr "Ob Rechtsüberholen auf Autobahnen erlaubt ist" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:461 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:455 msgid "Switches off all traffic lights." msgstr "Schaltet alle LSAs aus." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:464 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:458 msgid "Sets default visibility for actuation detectors" msgstr "Legt die Standardsichtbarkeit für Betätigungsdetektoren fest" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:467 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:461 -#, fuzzy msgid "Sets default jam-threshold parameter for all actuation detectors" -msgstr "" -"Legt den standardmäßigen Blockierungsgrenz-Parameter für alle " -"Betätigungsdetektoren fest" +msgstr "Legt den standardmäßigen Staugrenzwert für alle LSA-Detektoren fest" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:470 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:464 msgid "Sets default detector length parameter for all actuation detectors" msgstr "" "Legt den Standard-Detektorlängenparameter für alle Betätigungsdetektoren fest" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:473 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:467 msgid "Sets default range for detecting delayed vehicles" msgstr "Legt den Standardbereich für die Erkennung verspäteter Fahrzeuge fest" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:476 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:470 msgid "Minimum deceleration when braking at yellow" msgstr "Mindestverzögerung beim Bremsen bei Gelb" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:479 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:473 msgid "Let railsignals operate in moving-block mode by default" msgstr "Gleissignale standardmäßig im Moving-Block-Modus betreiben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:482 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:476 msgid "" "Specify how long a vehicle may wait until impatience grows from 0 to 1, " @@ -2278,6 +2740,7 @@ "anwächst, standardmäßig 300, nicht positive Werte deaktivieren das Wachstum " "der Ungeduld" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:485 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:479 msgid "" "Length of the default interval length between action points for the car-" @@ -2292,10 +2755,12 @@ "Fahrzeugtyp spezifische Einstellungen setzen die Standardeinstellung außer " "Kraft. Muss ein Vielfaches der Simulationsschrittlänge sein." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:488 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:482 msgid "Select default car following model (Krauss, IDM, ...)" msgstr "Standardfahrzeugfolgemodell (Krauss, IDM, ...) auswählen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:492 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:486 msgid "" "Select default speed deviation. A negative value implies vClass specific " @@ -2305,6 +2770,7 @@ "Fahrzeugklassen-spezifische Standardwerte (0,1 für die Standard-" "Passagierklasse" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:495 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:489 msgid "" "Select default emergencyDecel value among ('decel', 'default', FLOAT) which " @@ -2316,12 +2782,13 @@ "Fahrzeugklassen-klassenspezifischen Standardwert oder der angegebenen FLOAT " "in m/s^2 setzt" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:498 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:492 msgid "Use Kirchhoff's laws for solving overhead wire circuit" msgstr "Kirchhoff´s Regel zum Lösen der Oberleitungsschaltung verwenden" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:501 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:495 -#, fuzzy msgid "" "Enable recuperation from the vehicle equipped with elecHybrid device into " "the overhead wire." @@ -2329,8 +2796,8 @@ "Rekuperation aus dem mit elecHybrid ausgestatteten Fahrzeug in die " "Oberleitung ermöglichen." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:504 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:498 -#, fuzzy msgid "" "Enable current limits of traction substation during solving the overhead " "wire electrical circuit." @@ -2338,6 +2805,7 @@ "Die Stromgrenzen der Traktionsunterstation während des Lösens des " "Oberleitungsstromkreises aktivieren." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:507 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:501 msgid "" "Sets the fraction of emergency decel capability that must be used to trigger " @@ -2346,6 +2814,7 @@ "Legt den Bruchteil der Notverzögerungsfähigkeit fest, der verwendet werden " "muss, um eine Warnung auszulösen." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:510 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:504 msgid "" "Whether parking simulation includes maneuvering time and associated lane " @@ -2354,21 +2823,24 @@ "Ob die Parksimulation die Manövrierzeit und die damit verbundene " "Fahrstreifensperrung beinhaltet" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:513 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:507 -#, fuzzy msgid "Override stop until times with stop ended times when given" -msgstr "Halte-bis-Zeiten mit Halt-Ende-Zeiten, wenn angegeben, überschreiben" +msgstr "Haltabfahrtszeiten mit Haltendezeiten überschreiben (wenn angegeben)" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:516 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:510 msgid "Override stop arrival times with stop started times when given" msgstr "" +"Ankunftszeiten am Halt mit Haltbeginnzeiten überschreiben (wenn vorhanden)" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:520 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:514 -#, fuzzy msgid "Select among pedestrian models ['nonInteracting', 'striping', 'remote']" msgstr "" -"Untere Fußgängermodelle ['nonInteracting', 'striping', 'remote'] auswählen" +"Aus Fußgängermodellen ['nonInteracting', 'striping', 'remote'] auswählen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:523 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:517 msgid "" "Width of parallel stripes for segmenting a sidewalk (meters) for use with " @@ -2377,11 +2849,13 @@ "Breite der parallelen Streifen zum Segmentieren eines Bürgersteigs (Meter) " "zur Verwendung mit dem Modell 'striping'" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:526 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:520 msgid "Factor for random slow-downs [0,1] for use with model 'striping'" msgstr "" "Faktor für zufällige Verlangsamung [0,1] zur Verwendung mit Modell 'striping'" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:529 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:523 msgid "" "Minimal gap / safety buffer (in meters) from a pedestrian to another vehicle " @@ -2390,6 +2864,7 @@ "Minimaler Abstand / Sicherheitspuffer (in Metern) von einem Fußgänger zu " "einem anderen Fahrzeug zur Verwendung mit dem Modell 'striping'" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:532 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:526 msgid "" "Time in seconds after which pedestrians start squeezing through a jam when " @@ -2399,6 +2874,7 @@ "zwängen, wenn das Modell 'striping' verwendet wird (nicht positive Werte " "deaktivieren das Zwängen)" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:534 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:528 msgid "" "Time in seconds after which pedestrians start squeezing through a jam while " @@ -2409,6 +2885,7 @@ "Fußgängerüberweg durch einen Stau zu zwängen, wenn das Modell 'striping' " "verwendet wird (nicht positive Werte deaktivieren das Zwängen)" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:536 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:530 msgid "" "Time in seconds after which pedestrians start squeezing through a jam while " @@ -2418,12 +2895,14 @@ "Fahrstreifen durch einen Stau zu drängen, wenn das Modell 'Striping' " "verwendet wird" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:539 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:533 msgid "Fraction of stripes to reserve for oncoming pedestrians" msgstr "" "Bruchteil der Streifen, der für entgegenkommende Fußgänger reserviert werden " "soll" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:542 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:536 msgid "" "Fraction of stripes to reserve for oncoming pedestrians on crossings and " @@ -2432,16 +2911,19 @@ "Bruchteil der Streifen, die für entgegenkommende Fußgänger auf " "Fußgängerfurten und walkingAreas reserviert werden sollen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:545 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:539 msgid "Maximum width in m to reserve for oncoming pedestrians" msgstr "" "Maximale Breite in m, die für entgegenkommende Fußgänger reserviert werden " "kann" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:548 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:542 msgid "Interpret departPosLat for walks in legacy style" msgstr "departurePosLat für Spaziergänge im Legacy-Stil interpretieren" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:551 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:545 msgid "" "Generate INT intermediate points to smooth out lanes within the walkingarea" @@ -2449,10 +2931,12 @@ "INT-Zwischenpunkte zum Glätten von Fahrstreifen innerhalb der walkingArea " "generieren" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:554 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:548 msgid "The address (host:port) of the external simulation" msgstr "Die Adresse (Host:Port) der externen Simulation" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:557 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:551 msgid "" "Tolerance to apply when matching pedestrian and vehicle positions on " @@ -2461,6 +2945,7 @@ "Anzuwendende Toleranz beim Abgleich von Fußgänger- und Fahrzeugpositionen " "beim Einsteigen an einzelnen Haltepunkten" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:568 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:562 msgid "" "Apply the given time penalty when computing minimum routing costs for minor-" @@ -2469,6 +2954,7 @@ "Die gegebene Zeitstrafe bei der Berechnung der minimalen Routing-Kosten für " "interne Fahrstreifen kleinerer Verbindungen einsetzen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:571 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:565 msgid "" "Apply scaled travel time penalties based on green split when computing " @@ -2477,6 +2963,7 @@ "Skalierte Reisezeitstrafen basierend auf Grünaufteilung bei der Berechnung " "der Mindestroutenkosten für interne Fahrstreifen an LSAs einsetzen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:577 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:571 msgid "" "Distinguish travel time by turn direction and shift a fraction of the " @@ -2485,6 +2972,7 @@ "Fahrzeit nach Abbiegerichtung unterscheiden und einen Bruchteil des " "geschätzten Zeitverlusts vor der Kreuzung auf die inneren Kanten verschieben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:602 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:596 msgid "" "When set, trips between the same origin and destination will share a taxi by " @@ -2493,10 +2981,15 @@ "Wenn festgelegt, teilen sich Fahrten zwischen demselben Start- und Zielort " "standardmäßig ein Taxi" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:611 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:605 msgid "Replay exact rerouting sequence from vehroute-output" msgstr "Wiedergabe der genauen Umleitungssequenz aus der Fahrzeugroutenausgabe" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:616 +#: D:\Repos\sumo/src\router\ROFrame.cpp:59 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:133 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:123 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:610 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:59 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:133 @@ -2506,6 +2999,10 @@ "Die Kraftstoffverbrauchswerte in der (alten) Einheit l anstelle von mg " "zurückgeben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:619 +#: D:\Repos\sumo/src\router\ROFrame.cpp:90 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:136 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:126 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:613 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:90 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:136 @@ -2513,16 +3010,23 @@ msgid "Determines where to load PHEMlight definitions from" msgstr "Bestimmt, woher PHEMlight-Definitionen geladen werden" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:622 +#: D:\Repos\sumo/src\router\ROFrame.cpp:93 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:139 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:129 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:616 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:93 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:139 #: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:129 -#, fuzzy msgid "Enable fleet age modelling with the given reference year in PHEMlight5" msgstr "" "Modellierung des Flottenalters mit dem gegebenen Bezugsjahr in PHEMlight5 " "aktivieren" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:625 +#: D:\Repos\sumo/src\router\ROFrame.cpp:96 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:142 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:132 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:619 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:96 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:142 @@ -2532,66 +3036,77 @@ "Die Umgebungstemperatur, um die NOx-Emissionen in PHEMlight5 zu korrigieren, " "einstellen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:634 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:628 msgid "Disable performance reports for individual simulation steps" msgstr "Leistungsberichte für einzelne Simulationsschritte deaktivieren" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:637 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:631 msgid "Enable statistics on vehicle trips" msgstr "Statistiken zu Fahrzeugfahrten aktivieren" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:640 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:634 msgid "Disable console output of current simulation step" msgstr "Konsolenausgabe des aktuellen Simulationsschritts deaktivieren" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:643 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:637 msgid "Number of simulation steps between step-log outputs" msgstr "Anzahl der Simulationsschritte zwischen Schrittprotokollausgaben" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:648 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:642 msgid "Enables TraCI Server if set" msgstr "Aktiviert ob der TraCI-Server gesetzt ist" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:650 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:644 msgid "Expected number of connecting clients" msgstr "Erwartete Anzahl von verbindenden Clients" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:654 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:648 msgid "Enables mesoscopic simulation" msgstr "Aktiviert mesoskopische Simulation" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:656 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:650 msgid "Length of an edge segment in mesoscopic simulation" msgstr "Länge eines Kantensegments in der mesoskopischen Simulation" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:658 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:652 -#, fuzzy msgid "Factor for calculating the net free-free headway time" -msgstr "Faktor zur Berechnung der Netto-Frei-Frei-Taktzeit" +msgstr "Faktor zur Berechnung der Netto-Frei-Frei-Folgezeit" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:660 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:654 -#, fuzzy msgid "Factor for calculating the net free-jam headway time" -msgstr "Faktor zur Berechnung der Netto-Stauvorlaufzeit" +msgstr "Faktor zur Berechnung der Netto-Stau-Folgezeit" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:662 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:656 -#, fuzzy msgid "Factor for calculating the jam-free headway time" -msgstr "Faktor zur Berechnung der staufreien Taktzeit" +msgstr "Faktor zur Berechnung der Stau-Frei-Folgezeit" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:664 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:658 -#, fuzzy msgid "Factor for calculating the jam-jam headway time" -msgstr "Faktor zur Berechnung der Stau-Stau-Vorlaufzeit" +msgstr "Faktor zur Berechnung der Stau-Stau-Folgezeit" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:669 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:663 msgid "Enable multiple queues at edge ends" msgstr "Mehrere Warteschlangen an Kantenenden aktivieren" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:671 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:665 msgid "Enable separate queues for every lane" msgstr "Separate Warteschlangen für jeden Fahrstreifen aktivieren" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:673 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:667 msgid "" "Do not build queues (or reduce capacity) for lanes allowing only the given " @@ -2600,15 +3115,17 @@ "Konnte keine Warteschlangen (oder reduzierte Kapazität) für Fahrstreifen, " "die nur die angegebenen Fahrzeugklassen zulassen bauen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:676 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:670 -#, fuzzy msgid "Enable mesoscopic traffic light and priority junction handling" -msgstr "Mesoskopische LSA und Vorrangs-Knotenpunkt-Handhabung aktivieren" +msgstr "Mesoskopische LSA- und Vorrangsknotenpunktlogik aktivieren" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:690 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:684 msgid "Enable mesoscopic overtaking" msgstr "Mesoskopisches Überholen aktivieren" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:692 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:686 msgid "" "Time interval for rechecking insertion into the next segment after failure" @@ -2616,104 +3133,125 @@ "Zeitintervall für die erneute Überprüfung des Einfügens in das nächste " "Segment nach dem Ausfall" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:704 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:698 msgid "Load visualisation settings from FILE" msgstr "Darstellungseinstellung von FILE laden" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:707 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:701 -#, fuzzy msgid "Quits the GUI when the simulation stops" -msgstr "Beendet die gui, wenn die Simulation stoppt" +msgstr "Schließt die grafische Oberfläche nach dem Simulationsende" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:710 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:704 msgid "Start the GUI in gaming mode" msgstr "GUI im Gaming-Modus starten" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:713 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:707 msgid "Select the game type ('tls', 'drt')" msgstr "Spieltyp ('tls', 'drt') auswählen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:716 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:710 msgid "Start the simulation after loading" msgstr "Simulation nach dem Laden starten" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:719 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:713 msgid "Use FLOAT in ms as delay between simulation steps" msgstr "" "Verwende FLOAT in Millisekunden als Verzögerung zwischen Simulationsschritten" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:722 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:716 msgid "Use TIME[] as times when the simulation should halt" msgstr "Verwende Zeit[] als Zeiten, zu denen die Simulation anhalten soll" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:726 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:720 msgid "Load edge/lane weights for visualization from FILE" msgstr "Kanten-/Fahrstreifengewichte für die Visualisierung aus FILE laden" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:729 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:723 msgid "Load a secondary road network for abstract visualization from FILE" msgstr "Sekundäres Straßennetz zur abstrakten Visualisierung aus FILE laden" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:732 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:726 -#, fuzzy msgid "Restart the simulation after ending (demo mode)" -msgstr "Simulation nach beenden (demo Modus) neu starten" +msgstr "Simulation nach Ende neu beginnen (Demomodus)" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:735 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:729 msgid "Do not load background pictures" msgstr "Konnte keine Hintergrundbilder laden" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:738 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:732 -#, fuzzy msgid "Load current viewport from registry" -msgstr "Aktuellen Ansichtsbereich vom Eintrag laden" +msgstr "Aktuellen Ansichtsbereich aus Registry laden" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:741 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:735 msgid "Create initial window with the given x,y size" msgstr "Anfangsfenster mit der angegebenen x,y-Größe erstellen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:744 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:738 msgid "Create initial window at the given x,y position" msgstr "Anfangsfenster mit der angegebenen x,y-Position erstellen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:747 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:741 msgid "The aggregation period for value tracker windows" msgstr "Der Aggregationszeitraum für Wertverfolgungsfenster" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:751 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:745 msgid "Start with an OpenSceneGraph view instead of the regular 2D view" msgstr "" "Beginne mit einer OpenSceneGraph-Ansicht anstelle der regulären 2D-Ansicht" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:756 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:750 msgid "Enable overlay for screen recognition" msgstr "Überlagerung für die Bildschirmerkennung aktivieren" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:760 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:754 msgid "Enable output messages during GUI-Testing" msgstr "Ausgabemeldungen während der GUI-Testung aktivieren" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:764 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:758 msgid "Save gui settings in the given settings output file" msgstr "Gui-Settings in der gegebene Setting-Ausgabedatei speichern" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:815 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:809 msgid "No network file (-n) specified." msgstr "Keine Netzwerkdatei (-n) spezifiziert." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:819 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:813 msgid "Invalid scaling factor." msgstr "Ungültiger Skalierungsfaktor." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:823 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:817 msgid "A vehroute-output file is needed for exit times." msgstr "" "Eine Fahrzeugrouten-Ausgabe-Datei wird für die Ausstiegszeiten benötigt." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:835 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:829 msgid "You can either restart or quit on end." msgstr "Sie können entweder neu starten oder am Ende beenden." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:840 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:834 msgid "" "The option 'meso-junction-control.limited' implies 'meso-junction-control'." @@ -2721,23 +3259,28 @@ "Die Option 'meso-junction-control.limited' impliziert 'meso-junction-" "control'." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:858 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:852 msgid "The begin time should not be negative." msgstr "Die Startzeit darf nicht negativ sein." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:868 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:862 msgid "The end time should be after the begin time." msgstr "Die Endzeit muss nach der Startzeit sein." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:873 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:867 msgid "the minimum step-length is 0.001" msgstr "die minimale Schrittlänge ist 0.001" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:888 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:882 msgid "The save-state time=% will not be used before simulation end at %." msgstr "" "Speicherstand zur Zeit=% wird nicht vor Simulationsende bei % verwendet." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:900 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:894 msgid "" "option movereminder-output.vehicles requires option movereminder-output to " @@ -2746,6 +3289,7 @@ "die Option moverminder-output.vehicles erfordert das Option movereminder-" "output gesetzt ist" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:905 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:899 msgid "" "The option 'sloppy-insert' is deprecated, because it is now activated by " @@ -2754,6 +3298,7 @@ "Die Option 'sloppy-insert' ist veraltet, da sie jetzt standardmäßig " "aktiviert ist, siehe die neue Option 'eager-insert'." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:908 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:902 msgid "" "Only one of the options 'lanechange.duration' or 'lateral-resolution' may be " @@ -2762,10 +3307,12 @@ "Es darf nur eine der Optionen 'lanechange.duration' oder 'lateral-" "resolution' angegeben werden." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:912 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:906 msgid "Sublane dynamics are not supported by mesoscopic simulation" msgstr "Sublane-Dynamik wird nicht unterstützt in mesoskopischen Simulationen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:916 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:910 msgid "" "The option 'ignore-accidents' is deprecated. Use 'collision.action none' " @@ -2774,6 +3321,7 @@ "Die Option 'ignore-accidents' ist veraltet. Nutze statt dessen 'collision." "action none'." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:929 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:923 msgid "" "The option tripinfo-output.write-undeparted implies tripinfo-output.write-" @@ -2782,11 +3330,13 @@ "Die Option tripinfo-output.write-undeparted impliziert tripinfo-output.write-" "unfinished." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:951 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:945 #, c-format msgid "Unknown model '%' for option 'carfollow.model'." msgstr "Unbekanntes Model '%' für die Option 'carfollow.model'." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:960 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:954 #, c-format msgid "" @@ -2796,20 +3346,24 @@ "Ungültiger Wert '%' für die Option 'default.emergencydecel'. Es muss ein " "FLOAT, 'Vorgabewert' oder 'Verzögerung' sein." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:966 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:960 msgid "You need a non-negative delay." msgstr "Du brauchst eine nicht negative Verzögerung." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:979 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:973 msgid "Parallel simulation is only possible when compiled with Fox." msgstr "" "Parallele Simulationen sind nur möglich, wenn diese mit Fox kompiliert " "wurden." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:984 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:978 msgid "You need at least one thread." msgstr "Sie brauchen mindestens einen Strang." +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:988 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:982 msgid "" "Number of threads exceeds number of thread-rngs. Simulation runs with the " @@ -2819,10 +3373,12 @@ "Simulationsläufe mit demselben Keim können zu unterschiedlichen Ergebnissen " "führen" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:991 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:985 msgid "game.mode must be one of ['tls', 'drt']" msgstr "game.mode muss einer von ['tls', 'drt'] sein" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:998 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:992 msgid "" "Invalid transfer option '%'. Must be one of 'parkingAreas', 'ptStops' and " @@ -2831,6 +3387,7 @@ "Ungültige Übergabeoption '%'. Es muss eine von 'parkingAreas', 'ptStops' " "oder 'allJunctions' sein" +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:1057 #: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:1051 msgid "" "Integration method was set to 'ballistic', since a default action step " @@ -2839,37 +3396,45 @@ "Die Integrationsmethode wurde auf 'ballistic' eingestellt, da eine " "standardmäßige Schrittlänge angegeben wurde." +#: D:\Repos\sumo/src\microsim\MSInsertionControl.cpp:276 +#: D:\Repos\sumo/src\router\RONet.cpp:481 #: /home/micha/programming/sumo/src/microsim/MSInsertionControl.cpp:276 #: /home/micha/programming/sumo/src/router/RONet.cpp:481 #, c-format msgid "Another vehicle with the id '%' exists." msgstr "Ein anderes Fahrzeug mit der ID '%' existiert bereits." +#: D:\Repos\sumo/src\microsim\MSInternalJunction.cpp:55 #: /home/micha/programming/sumo/src/microsim/MSInternalJunction.cpp:55 #, c-format msgid "Internal junction % has no incoming lanes" msgstr "Die interne Kreuzung '%' hat keine ankommenden Fahrstreifen" +#: D:\Repos\sumo/src\microsim\MSLane.cpp:314 #: /home/micha/programming/sumo/src/microsim/MSLane.cpp:312 msgid "Unequal lengths of neigh lane '%' and lane '%' (% != %)." msgstr "Ungleiche Längen für die Nachbarspuren '%' und '%' (% != %)." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:323 #: /home/micha/programming/sumo/src/microsim/MSLane.cpp:321 msgid "Unequal lengths of bidi lane '%' and lane '%' (% != %)." msgstr "" "Ungleiche Längen für den Zweichrichtungs-Fahrstreifen '%' und Fahrstreifen " "'%' (% !=%)." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:760 #: /home/micha/programming/sumo/src/microsim/MSLane.cpp:758 #, c-format msgid "Vehicle '%' is inserted in emergency situation." msgstr "Fahrzeug '%' wird in Notsituationen eingesetzt." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:766 #: /home/micha/programming/sumo/src/microsim/MSLane.cpp:764 msgid "Vehicle '%' will not be able to depart using the given velocity (%)!" msgstr "" "Fahrzeug '%' kann nicht mit der angegebenen Geschwindigkeit (%) abfahren!" +#: D:\Repos\sumo/src\microsim\MSLane.cpp:782 #: /home/micha/programming/sumo/src/microsim/MSLane.cpp:780 msgid "" "Invalid departPos % given for vehicle '%'. Inserting at lane end instead." @@ -2877,6 +3442,7 @@ "Ungültige Abfahrtsposition % für das Fahrzeug '%'. Füge es statt dessen am " "Spurende ein." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:1027 #: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1025 msgid "" "Vehicle '%' is inserted too fast and will violate the speed limit on a lane " @@ -2885,6 +3451,7 @@ "Fahrzeug '%' wird zu schnell eingeführt und verletzt die " "Geschwindigkeitsbeschränkung der Fahrstreifen '%'." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:1031 #: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1029 msgid "" "Vehicle '%' will not be able to depart using the given velocity (slow lane " @@ -2893,37 +3460,55 @@ "Fahrzeug '%' kann nicht mit der gegebenen Geschwindigkeit abfahren (langsame " "Spur voraus)!" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1658 -msgid "" -"Vehicle '%' collision with person '%', lane='%', gap=%, time=%, stage=%." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2059 +msgid "Vehicle '%'" msgstr "" -"Fahrzeug '%' kollidiert mit Person '%', Fahrstreifen='%', Abstand=%, zur " -"Zeit=%, Etappe=%." -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1800 -msgid "Vehicle '%' collision with person '%', lane='%', time=%, stage=%." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2088 +#, c-format +msgid "Teleporting vehicle '%' after" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2093 +#, c-format +msgid "Removing vehicle '%' after" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2097 +#, c-format +msgid "Keeping remote-controlled vehicle '%' after" msgstr "" -"Fahrzeug '%' kollidiert mit Person '%', Fahrstreifen='%', zur Zeit=%, " -"Etappe=%." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2110 +msgid " collision with person '%', lane='%', gap=%, time=%, stage=%." +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2113 +msgid " collision with person '%', lane='%', time=%, stage=%." +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2179 #: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2101 msgid "Teleporting vehicle '%'; beyond end of lane, target lane='%', time=%." msgstr "" "Teleportierendes Fahrzeug '%', jenseits des Fahrstreifenendes, " "Zielfahrstreifen='%', zur Zeit=%." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2186 #: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2108 msgid "Removing vehicle '%' after earlier collision, lane='%', time=%." msgstr "" "Fahrzeug '%' wird nach vorheriger Kollision entfernt, Fahrstreifen='%', zur " "Zeit=%." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2191 #: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2113 msgid "Teleporting vehicle '%' after earlier collision, lane='%', time=%." msgstr "" "Fahrzeug '%' wird nach vorheriger Kollision teleportiert, Fahrstreifen='%', " "zur Zeit=%." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2663 #: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2585 msgid "" "Lane '%' is approached multiple times from edge '%'. This may cause " @@ -2932,10 +3517,11 @@ "Der Fahrstreifen '%' wird mehrfach von der Kante '%' angesteuert. Dadurch " "kann es zu Kollisionen kommen." -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:4184 -msgid "Invalid collision.action '%'." -msgstr "Ungültige collision.action '%'." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:4268 +msgid "Invalid % '%'." +msgstr "" +#: D:\Repos\sumo/src\microsim\MSLane.cpp:4405 #: /home/micha/programming/sumo/src/microsim/MSLane.cpp:4314 msgid "" "State was saved with more than % threads. Change the number of threads or do " @@ -2944,22 +3530,30 @@ "Der Stand wurde in mehr als % Strängen gespeichert. Ändere die Anzahl an " "Strängen oder lade nicht den Zufallsgenerator-Stand" +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:169 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:232 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:239 #: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:169 #: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:232 #: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:239 msgid "Method not supported" msgstr "Methode wird nicht unterstützt" +#: D:\Repos\sumo/src\microsim\MSNet.cpp:187 +#: D:\Repos\sumo/src\router\RONet.cpp:60 #: /home/micha/programming/sumo/src/microsim/MSNet.cpp:187 #: /home/micha/programming/sumo/src/router/RONet.cpp:60 msgid "A network was not yet constructed." msgstr "Ein Netz wurde noch nicht aufgebaut." +#: D:\Repos\sumo/src\microsim\MSNet.cpp:221 +#: D:\Repos\sumo/src\router\RONet.cpp:83 #: /home/micha/programming/sumo/src/microsim/MSNet.cpp:221 #: /home/micha/programming/sumo/src/router/RONet.cpp:83 msgid "A network was already constructed." msgstr "Ein Netzwerk wurde aufgebaut." +#: D:\Repos\sumo/src\microsim\MSNet.cpp:286 #: /home/micha/programming/sumo/src/microsim/MSNet.cpp:286 msgid "" "Option weights.separate-turns is only supported when simulating with " @@ -2968,10 +3562,12 @@ "Die Option weights.separate-turns wird nur unterstützt, wenn mehrere interne " "Spuren simuliert werden" +#: D:\Repos\sumo/src\microsim\MSNet.cpp:388 #: /home/micha/programming/sumo/src/microsim/MSNet.cpp:388 msgid "Simulation version % started with time: %." msgstr "Simulationsversion % startet mit der Zeit: %." +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1463 #: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1459 msgid "" "TraCI and Triggers cannot use routing algorithm '%'. using 'astar' instead." @@ -2979,6 +3575,10 @@ "TraCI und Triggers können keine Routen-Algorithmen '%' nutzen. Nutze statt " "dessen 'astar'." +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1633 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:427 +#: D:\Repos\sumo/src\router\ROLoader.cpp:235 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:221 #: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1629 #: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:427 #: /home/micha/programming/sumo/src/router/ROLoader.cpp:235 @@ -2987,11 +3587,14 @@ msgid "Loading of % failed." msgstr "Laden von % fehlgeschlagen." +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1653 #: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1649 #, c-format msgid "Loading state from '%' failed." msgstr "Laden vom Stand '%' ist fehlgeschlagen." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:103 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:108 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:103 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:108 msgid "Taz usage was requested but no taz present in % '%'!" @@ -2999,11 +3602,14 @@ "Die Nutzung der Verkehrsumlegungszone wurde angefordert, aber es ist keine " "Verkehrsumlegungszone in % '%' vorhanden!" +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:262 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:262 #, c-format msgid "Vehicle type distribution '%' is empty." msgstr "Fahrzeugtypenverteilung '%' ist leer." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:266 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:910 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:266 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:910 #, c-format @@ -3011,33 +3617,42 @@ msgstr "" "Anderer Fahrzeugtyp (oder Verteilung) mit der ID '%' existiert bereits." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:287 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:316 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:287 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:316 msgid "Ids of internal routes are ignored (vehicle '%')." msgstr "IDs interner Routen werden ignoriert (Fahrzeug '%')." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:306 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:306 msgid "Invalid reference to route '%' in route %." msgstr "Ungültiger Verweis auf Route '%' in Route %." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:317 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:317 msgid "Attribute 'period' is deprecated for route. Use 'cycleTime' instead." msgstr "" "Attribut 'period' ist veraltet für die Route. Nutze statt dessen 'cycleTime'." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:330 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:330 msgid "Disconnected route % when repeating." msgstr "Getrennte Routen % bei der Wiederherstellung." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:336 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:336 msgid "Invalid cost for route '%'." msgstr "Ungültige Kosten für die Route '%'." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:393 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:393 #, c-format msgid "Route '%' has no edges." msgstr "Route '%' hat keine Kanten." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:411 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:446 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:411 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:446 msgid "" @@ -3046,6 +3661,7 @@ "Halte mit 'until' in der Route % können nicht wiederholt werden, da keine " "Umlaufzeit definiert ist." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:420 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:420 msgid "" "Cannot repeat stops with 'arrival' in route % because no cycleTime is " @@ -3054,22 +3670,28 @@ "Kann keine Halte mit 'arrival' in Route % wiederholen, da keine Umlaufzeit " "definiert ist." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:443 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:443 #, c-format msgid "A vehicle with id '%' already exists." msgstr "Fahrzeug mit der ID '%' existiert bereits." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:446 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:520 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:446 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:520 #, c-format msgid "Another route (or distribution) with the id '%' exists." msgstr "Eine andere Route (oder Verteilung) mit der ID '%' existiert." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:524 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:524 #, c-format msgid "Route distribution '%' is empty." msgstr "Routenverteilung '%' ist leer." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:564 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:559 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:564 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:559 msgid "" @@ -3079,6 +3701,7 @@ "Fahrzeugtyp '%' mit der Fahrzeugklasse= Fußgänger sollte nur für Personen " "und nicht für Fahrzeuge '%' verwendet werden." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:573 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:573 msgid "" "Ignoring child element 'route' for vehicle '%' because attribute 'route' is " @@ -3087,11 +3710,13 @@ "Untergeordnetes Element 'route' für das Fahrzeug '%' wird ignoriert, da das " "Attribut 'route' festgelegt ist." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:582 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:582 #, c-format msgid "Vehicle '%' has no route." msgstr "Fahrzeug '%' hat keine Route." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:724 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:724 msgid "" "Could not merge vehicle stops for vehicle '%' into implicitly defined route " @@ -3100,6 +3725,8 @@ "Fahrzeughalte für Fahrzeug '%' konnten nicht in die implizit definierte " "Route '%' zusammengeführt werden" +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:755 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:327 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:755 #: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:327 msgid "" @@ -3108,6 +3735,7 @@ "Person '%' erhält Typ '%', welcher indirekt die ungeeignete Fahrzeugklasse " "'%' verwendet." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:891 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:891 msgid "" "There exists a person and a container with the same id '%'. Starting with " @@ -3116,39 +3744,50 @@ "Es gibt eine Person und ein Container mit der gleichen ID '%'. Ab der " "Version SUMO 1.9.0 ist dies ein Fehler." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:986 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:986 #, c-format msgid "Another flow with the id '%' exists." msgstr "Ein anderer Fluss mit der ID '%' existiert." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1127 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1127 msgid "The busStop '%' is not known%." msgstr "Die Bushaltestelle '%' ist nicht bekannt%." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1133 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1133 msgid "The containerStop '%' is not known%." msgstr "Der Containerhalt '%' ist nicht bekannt%." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1139 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1139 msgid "The parkingArea '%' is not known%." msgstr "Der Parkplatz '%' ist nicht bekannt%." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1146 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1146 msgid "The chargingStation '%' is not known%." msgstr "Die Ladestation '%' ist nicht bekannt%." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1153 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1153 msgid "The overhead wire segment '%' is not known%." msgstr "Der Oberleitungsabschnitt '%' ist nicht bekannt%." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1157 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1157 msgid "Invalid stop definition%." msgstr "Ungültige Halt-Information%." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1309 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1305 msgid "Stop edge '%' missing in attribute 'via' for % '%'" msgstr "Halt-Kante '%' fehlt im Attribut 'via' für % '%'" +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1329 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1203 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1321 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1324 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1198 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1316 @@ -3160,22 +3799,31 @@ "verwenden Sie bitte das Personenattribut, die Ankunftsposition des " "vorherigen Schritts oder explizite Stopps." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1355 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1350 msgid "Ignoring arrivalPos for % because it is outside the given stop '%'." msgstr "" "Ignoriere Ankunftsposition für %, da diese außerhalb des gegebenen Halts '%' " "ist." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1361 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1224 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1356 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1219 msgid "No destination edge for %." msgstr "Keine Zielkante für %." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1390 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1244 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1385 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1239 msgid "Start edge not defined for person '%'." msgstr "Keine definierte Startkante für Person '%'." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1400 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1465 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1255 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1312 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1395 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1460 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1250 @@ -3183,16 +3831,21 @@ msgid "Non-positive walking duration for '%'." msgstr "Keine positive Wegedauer für '%'." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1427 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1471 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1316 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1422 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1466 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1311 msgid "Non-positive walking speed for '%'." msgstr "Keine positive Gehgeschwindigkeit für '%'." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1496 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1491 msgid "No edges to walk for person '%'." msgstr "Keine Fußwege für die Person '%'." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1533 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1528 msgid "" "Could not find departure lane for walk of person '%' when interpreting " @@ -3201,20 +3854,24 @@ "Beim interpretieren von \"departPosLat\" konnte der Abfahrtsfahrstreifen für " "den Fußweg für die Person '%' nicht gefunden werden" +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1605 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1600 msgid "Could not read tranship speed for container '%'." msgstr "" "Umladegeschwindigkeit für den Container '%' konnte nicht gefunden werden." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1613 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1608 msgid "Non-positive tranship speed for container '%'." msgstr "Keine positive Umladegeschwindigkeit für Container '%'." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1639 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1634 #, c-format msgid "The start edge for container '%' is not known." msgstr "Die Startkante für den Container '%' ist nicht bekannt." +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1658 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1653 msgid "" "Inconsistent tranship for container '%', only one option is allowed: " @@ -3223,10 +3880,15 @@ "Inkonsistente Umladung für den Container '%', nur die folgenden Optionen " "sind erlaubt: 'edges', 'to', 'containerStop'" +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1664 #: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1659 msgid "No edges to tranship container '%'." msgstr "Keine Kanten für den Umschlagecontainer '%'." +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:76 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:64 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:164 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteLoader.cpp:36 #: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:76 #: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:64 #: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:164 @@ -3234,14 +3896,19 @@ msgid "Can not read XML-file '%'." msgstr "XML-Datei '%' kann nicht gelesen werden." +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:87 #: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:87 msgid "Could not parse time from state file '%'" msgstr "Zeit aus der Statusdatei '%' konnte nicht analysiert werden" +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:184 #: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:184 msgid "State was written with sumo version % (present: %)!" msgstr "Stand wurde mit sumo-Version % geschrieben (jetzt:%)!" +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:229 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:285 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignalConstraint.cpp:144 #: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:229 #: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:285 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignalConstraint.cpp:144 @@ -3249,28 +3916,34 @@ msgid "Unknown lane '%' in loaded state." msgstr "Unbekannter Fahrstreifen '%' in der geladenen Stand." +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:389 #: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:389 #, c-format msgid "Ignoring program '%' for traffic light '%' in loaded state" msgstr "Programm '%' für die LSA '%' wird im geladenen Stand ignoriert" +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:424 #: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:424 msgid "Could not load vehicle control state" msgstr "Fahrzeugsteuerungsstand konnte nicht geladen werden" +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:433 #: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:433 msgid "Removed % vehicles while loading state." msgstr "% Fahrzeuge beim laden des Stands entfernt." +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:459 #: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:459 #, c-format msgid "Could not load vehicle '%' from state" msgstr "Fahrzeug '%' vom Stand kann nicht geladen werden" +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:319 #: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:319 msgid "No gap control available for meso." msgstr "Für die mesoskopische Simulation ist keine Lückensteuerung verfügbar." +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:714 #: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:714 msgid "" "Lane change model did not provide a reason for changing (state=%, time=%\n" @@ -3278,11 +3951,14 @@ "FahrstreifenwechselModell hat keinen Grund für einen Wechsel angegeben " "(Stand=%; zur Zeit=%\n" +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:755 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:171 #: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:755 #: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:171 msgid "should not happen" msgstr "sollte nicht passieren" +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:944 #: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:944 msgid "" "Vehicle '%' moved by TraCI from % to % (dist %) with implied speed of % " @@ -3292,67 +3968,82 @@ "abgeleiteten Geschwindigkeit von % bewegt (Überschreitung der " "Höchstgeschwindigkeit %). Zeit =%." +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1688 #: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1701 -#, fuzzy msgid "Vehicle '%' aborts joining after extension of %s at time %." msgstr "" "Fahrzeug '%' bricht Beitritt nach Verlängerung von %s zum Zeitpunkt % ab." +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1833 #: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1846 msgid "Vehicle '%' to split from vehicle '%' is not known. time=%." msgstr "" "Fahrzeug '%' welches von Fahrzeug '%' getrennt werden soll ist nicht " "bekannt. Zur Zeit=%." +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:2769 #: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:2741 msgid "Suspicious right_before_left junction '%'." msgstr "Verdächtiger rigth_before_left Knotenpunkt '%'." +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4487 #: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4375 msgid " for unknown reasons" msgstr " aus unbekannten Gründen" +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4495 #: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4383 msgid "" -"Vehicle '%' performs emergency stop at the end of lane '%'% (decel=%, " -"offset=%), time=%." +"Vehicle '%' performs emergency stop at the end of lane '%'% (decel=%, offset=" +"%), time=%." msgstr "" "Fahrzeug '%' führt einen Nothalt am Ende des Fahrstreifens '%'% durch " "(Verzögerung=%, Versatz=%), zur Zeit=%." +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4570 #: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4458 msgid "Unexpected end of opposite lane for vehicle '%' at lane '%', time=%." msgstr "" "Unerwartetes Ende des Gegenfahrstreifens für Fahrzeug '%' auf Fahrstreifen " "'%', zur Zeit=%." +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4688 #: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4576 msgid "" "Vehicle '%' performs emergency braking on lane '%' with decel=%, wished=%, " "severity=%, time=%." msgstr "" -"Fahrzeug '%' führt eine Notbremsung auf dem Fahrstreifen '%' mit " -"Verzögerung=%, erwünscht=%, Schweregrad=%, zur Zeit=% durch." +"Fahrzeug '%' führt eine Notbremsung auf dem Fahrstreifen '%' mit Verzögerung=" +"%, erwünscht=%, Schweregrad=%, zur Zeit=% durch." +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:5571 #: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:5427 #, c-format msgid "Vehicle '%' aborts stop." msgstr "Fahrzeug '%' bricht den Halt ab." +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:7408 #: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:7213 msgid "Error: Invalid vehicles in state (may be a meso state)!" msgstr "Fehler: Ungültige Fahrzeuge im Zustand (kann ein Meso-Zustand sein)!" +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:7439 +msgid "Action steps are out of sync for loaded vehicle '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSVehicleControl.cpp:469 #: /home/micha/programming/sumo/src/microsim/MSVehicleControl.cpp:449 #, c-format msgid "Vehicle '%' aborted waiting for a % that will never come." msgstr "" "Fahrzeug '%' hat abgebrochen und wartet auf %, welches nicht kommen wird." +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:170 #: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:169 msgid "Vehicle '%' ends teleporting on edge '%', time=%." msgstr "Fahrzeug '%' beendet teleport auf der Kante '%', Zeit=%." +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:318 #: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:308 msgid "" "Value of 'emergencyDecel' (%) should be higher than 'decel' (%) for vType " @@ -3361,6 +4052,7 @@ "Der Wert von 'emergencyDecel' (%) sollte höher sein als 'decel' (%) für den " "Fahrzeugtyp '%'." +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:321 #: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:311 msgid "" "Value of 'emergencyDecel' (%) is lower than 'apparentDecel' (%) for vType " @@ -3369,6 +4061,7 @@ "Der Wert von 'emergencyDecel' (%) ist niedriger als 'apparentDecel' (%) für " "den Fahrzeugtyp '%', was zu Kollisionen führen kann." +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:443 #: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:433 #, c-format msgid "" @@ -3378,6 +4071,7 @@ "Der Wert von Tau=% im Fahrzeugtyp '%' ist kleiner als die Schrittweite der " "Simulation, es kann zu Kollisionen führen." +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:449 #: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:439 #, c-format msgid "" @@ -3390,6 +4084,7 @@ "Standardfahrzeugkapazität sicherzustellen. Option --meso-lane-queue für " "multimodale mesoskopische Sumo Simulation setzen" +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_CC.cpp:66 #: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_CC.cpp:66 msgid "" "The number of lanes needs to be specified in the attributes of carFollowing-" @@ -3398,6 +4093,7 @@ "Die Anzahl von Fahrstreifen muss in den Attributen von carFollowing-CC mit " "den 'lanesCounte'-Attribut spezifiziert sein" +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Daniel1.cpp:61 #: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Daniel1.cpp:61 msgid "" "Maximum speed of vehicle '%' is lower than the minimum speed (min: %, max: " @@ -3406,14 +4102,17 @@ "Maximalgeschwindigkeit von Fahrzeug '%' ist kleiner als die " "Minimalgeschwindigkeit (min: %, max: %)." +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Krauss.cpp:58 #: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Krauss.cpp:58 msgid "Rounding 'sigmaStep' to % for vType '%'" msgstr "Runde 'Sigma-Schritt' zu % für den Fahrzeugtyp '%'" +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Rail.cpp:50 #: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Rail.cpp:50 msgid "Unknown train type: %. Exiting!" msgstr "Unbekannter Schienenfahrzeugtyp: %. Beenden!" +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Rail.cpp:252 #: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Rail.cpp:252 msgid "" "Anything else than semi implicit euler update is not yet implemented. " @@ -3422,38 +4121,45 @@ "Etwas anderes als das semi-implizite Euler-Update ist noch nicht " "implementiert. Beende!" +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:165 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:161 #, c-format msgid "Device '%' cannot save state" msgstr "Die Einrichtung '%' kann den Stand nicht speichern" +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:205 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:201 msgid "Invalid float value '%'for parameter '%'" msgstr "Ungültiger float-Wert '%' für Parameter '%'" +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:218 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:214 msgid "Invalid bool value '%'for parameter '%'" msgstr "Ungültiger bool-Wert '%' für Parameter '%'" +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:231 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:227 msgid "Invalid time value '%'for parameter '%'" msgstr "Ungültiger Zeit-Wert '%' für Parameter '%'" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:65 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:65 -#, fuzzy msgid "The range of the bt receiver" msgstr "Die Reichweite des BT-Empfängers" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:68 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:68 msgid "Whether all recognition point shall be written" msgstr "Ob alle Erkennungspunkte geschrieben werden sollen" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:71 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:71 msgid "The offtime used for calculating detection probability (in seconds)" msgstr "" "Die zur Berechnung der Erkennungswahrscheinlichkeit verwendete Auszeit (in " "Sekunden)" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:295 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:295 msgid "" "The vehicle '%' cannot be in the range of vehicle '%', leave, and enter it " @@ -3462,6 +4168,8 @@ "Das Fahrzeug '%' kann nicht in der Reichweite von Fahrzeug '%' sein, " "Verlassen und Betreten in einem Schritt." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:421 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:436 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:421 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:436 msgid "" @@ -3470,6 +4178,8 @@ "btreceiver: Position vom Fahrzeug '%', welches nicht auf der Strecke ist, " "kann nicht aktualisiert werden." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTsender.cpp:120 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTsender.cpp:134 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTsender.cpp:120 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTsender.cpp:134 msgid "" @@ -3478,10 +4188,14 @@ "btsender: Position vom Fahrzeug '%', welches nicht auf der Strecke ist, kann " "nicht aktualisiert werden." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:52 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:52 msgid "Track fuel consumption for non-electric vehicles" msgstr "Den Kraftstoffverbrauch für nicht elektrische Fahrzeuge verfolgen" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:113 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:126 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:132 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:109 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:122 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:128 @@ -3491,11 +4205,15 @@ "Batteriehersteller: Fahrzeug '%' hat keinen gültigen Wert für Parameter % " "(%)." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:203 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:199 #, c-format msgid "Battery of vehicle '%' is depleted." msgstr "Batterie vom Fahrzeug '%' ist leer." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:313 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:323 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:333 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:309 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:319 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:329 @@ -3504,6 +4222,7 @@ "Es wird versucht, in das Batteriegerät von Fahrzeug '%' ein ungültiges % (%) " "einzugeben." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Bluelight.cpp:59 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Bluelight.cpp:59 msgid "" "Set the distance at which other drivers react to the blue light and siren " @@ -3512,6 +4231,7 @@ "Die Entfernung, in der andere Fahrer auf das Blaulicht und den Sirenenton " "reagieren, einstellen" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Bluelight.cpp:68 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Bluelight.cpp:68 msgid "" "bluelight device is not compatible with mesosim (ignored for vehicle '%')" @@ -3519,18 +4239,22 @@ "Blaulicht-Einrichtung ist nicht kompatibel mit der mesoskopischen Simulation " "(wurde für Fahrzeug '%' ignoriert)" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:66 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:66 msgid "Initial value assigned to the driver's awareness." msgstr "Anfänglicher Wert, der dem Bewusstsein des Fahrers zugewiesen wird." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:68 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:68 msgid "Time scale for the error process." msgstr "Zeitskala für den Fehlerprozess." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:70 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:70 msgid "Noise intensity driving the error process." msgstr "Rauschintensität, die den Fehlerprozess antreibt." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:72 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:72 msgid "" "General scaling coefficient for applying the error to the perceived speed " @@ -3540,6 +4264,7 @@ "wahrgenommene Geschwindigkeitsdifferenz (Fehler skaliert auch mit der " "Entfernung)." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:74 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:74 msgid "" "General scaling coefficient for applying the error to the perceived distance " @@ -3548,12 +4273,16 @@ "Allgemeiner Skalierungskoeffizient zum Anwenden des Fehlers auf die " "wahrgenommene Entfernung (Fehler skaliert auch mit der Entfernung)." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:76 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:76 msgid "" "General scaling coefficient for applying the error to the vehicle's own " "speed when driving without a leader (error also scales with own speed)." msgstr "" +"Allgemeiner Skalierfaktor für den Schätzfehler der eigenen Geschwindigkeit " +"bei freier Fahrt (der Fehler skaliert mit der eigenen Geschwindigkeit)." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:78 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:78 msgid "" "Base threshold for recognizing changes in the speed difference (threshold " @@ -3562,6 +4291,7 @@ "Basisschwelle zur Erkennung von Änderungen der Geschwindigkeitsdifferenz " "(Schwelle skaliert auch mit der Entfernung)." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:80 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:80 msgid "" "Base threshold for recognizing changes in the headway (threshold also scales " @@ -3570,10 +4300,12 @@ "Basisschwellwert zur Erkennung von Abstandsänderungen (Schwellwert skaliert " "auch mit Abstand)." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:82 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:82 msgid "Minimal admissible value for the driver's awareness." msgstr "Minimal zulässiger Wert für das Bewusstsein des Fahrers." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:84 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:84 msgid "" "Maximal reaction time (~action step length) induced by decreased awareness " @@ -3582,11 +4314,15 @@ "Maximale Reaktionszeit (~Aktionsschrittlänge) induziert durch verringertes " "Bewusstseinsniveau (erreicht für Bewusstsein=minAwareness)." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:116 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:102 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:116 msgid "Invalid value '%'for vType parameter '%'" msgstr "Ungültiger Wert '%' für Fahrzeugtyp-Parameter '%'" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:166 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:179 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:166 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:179 msgid "" @@ -3596,6 +4332,7 @@ "Elektro-Hybrid-Hersteller: Fahrzeug '%' hat keinen gültigen Wert für " "Parameter % (%)." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:374 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:374 #, c-format msgid "" @@ -3605,6 +4342,10 @@ "Die Widerstandsgröße von dem Oberleitungssegment welches mit dem Fahrzeug % " "verbunden ist, ist <0. Einstellen auf 1e-6." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:432 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:528 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:711 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:848 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:432 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:528 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:711 @@ -3614,6 +4355,8 @@ msgstr "" "Der Oberleitungslöser ist an aber die Eigen-Bibliothek ist nicht kompiliert!" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:648 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:883 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:648 #: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:883 msgid "The element or node with the last Id was not found in the circuit!" @@ -3621,14 +4364,17 @@ "Das Element oder der Knoten mit der letzten ID wurden nicht im Kreislauf " "gefunden!" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Emissions.cpp:47 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Emissions.cpp:47 msgid "Recording begin time for emission-data" msgstr "Zeichnet die Anfangszeit für Emissionsdaten auf" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Emissions.cpp:50 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Emissions.cpp:50 msgid "Recording period for emission-output" msgstr "Zeichnet die Periode für die Emissionsausgabe auf" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:48 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:48 msgid "" "An exemplary parameter which can be used by all instances of the example " @@ -3637,46 +4383,56 @@ "Ein beispielhafter Parameter, der von allen Instanzen des Beispielgeräts " "verwendet werden kann" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:63 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:63 #, c-format msgid "Invalid value '%'for vehicle parameter 'example'" msgstr "Ungültiger Wert '%' für den Fahrzeugparameter 'Beispiel'" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:75 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:75 #, c-format msgid "Invalid value '%'for vType parameter 'example'" msgstr "Ungültiger Wert '%' für den Fahrzeugtypparameter 'Beispiel'" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:67 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:67 msgid "Recording begin time for FCD-data" msgstr "Beginzeit für FCD-Daten aufzeichnen" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSTransportableDevice_FCD.cpp:49 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:70 #: /home/micha/programming/sumo/src/microsim/devices/MSTransportableDevice_FCD.cpp:49 msgid "Recording period for FCD-data" msgstr "Periode für FCD-Daten aufzeichnen" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:73 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:73 msgid "Record objects in a radius around equipped vehicles" msgstr "Objekte im Umkreis um ausgerüstete Fahrzeuge aufzeichnen" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:123 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:123 #, c-format msgid "Specified shape '%' for filtering fcd-output could not be found." msgstr "" "Spezifizierte Shape '%' zum Filtern der fcd-Ausgabe wurde nicht gefunden." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:148 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:148 msgid "Could not load names of edges for filtering fcd-output from '%'." msgstr "" "Die Namen der Kanten zum filtern der fcd-Ausgabe von '%' konnten nicht " "geladen werden." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:167 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:167 #, c-format msgid "Unknown attribute '%' to write in fcd output." msgstr "Unbekanntes Attribut '%' für die fcd-Ausgabe." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Friction.cpp:48 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Friction.cpp:48 msgid "" "The measurement noise parameter which can be applied to the friction device" @@ -3684,28 +4440,32 @@ "Der Messgeräuschparameter, der auf die Reibungsvorrichtung angewendet werden " "kann" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Friction.cpp:50 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Friction.cpp:50 -#, fuzzy msgid "" "The measurement offset parameter which can be applied to the friction device " "-> e.g. to force false measurements" msgstr "" -"Der Messversatzparameter, der auf die Friktionsvorrichtung angewendet werden " -"kann -> z. falsche Messungen zu erzwingen" +"Der Messversatzparameter, der auf die Friktionseinrichtung angewendet werden " +"kann -> z. um falsche Messungen zu erzwingen" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:49 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:49 msgid "The communication range to the traffic light" msgstr "Die Kommunikationsreichweite zur LSA" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:52 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:52 msgid "The maximum speed factor when approaching a green light" msgstr "" "Der maximale Geschwindigkeitsfaktor bei der Annäherung an eine grüne LSA" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:55 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:55 msgid "Minimum speed when coasting towards a red light" msgstr "Mindestgeschwindigkeit beim Annähern auf eine rote LSA" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:171 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:171 msgid "" "Invalid value '%' for parameter 'device.glosa.range' of traffic light '%'" @@ -3713,34 +4473,41 @@ "Ungültiger Wert '%' für den Parameter 'device.glosa.range' der " "Lichtsignalanlage '%'" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:54 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:54 msgid "The period with which the vehicle shall be rerouted" msgstr "Der Zeitraum, in dem das Fahrzeug umgeleitet werden soll" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:58 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:58 msgid "The rerouting period before depart" msgstr "Der Umleitungszeitraum vor der Abfahrt" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:62 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:62 msgid "The weight of prior edge weights for exponential moving average" msgstr "" "Die Gewichtung vorheriger Kantengewichtungen für den exponentiellen " "gleitenden Durchschnitt" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:66 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:66 msgid "The number of steps for moving average weight of prior edge weights" msgstr "" "Die Anzahl der Schritte für die gleitende durchschnittliche Gewichtung " "vorheriger Kantengewichtungen" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:70 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:70 msgid "The interval for updating the edge weights" msgstr "Das Intervall zum Aktualisieren der Kantengewichte" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:75 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:75 msgid "Use zones (districts) as routing start- and endpoints" msgstr "Zonen (Bezirke) als Routing-Start- und Endpunkte verwenden" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:78 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:78 msgid "" "Use weight files given with option --weight-files for initializing edge " @@ -3749,28 +4516,34 @@ "Gewichtsdateien, die mit der Option --weight-files zum Initialisieren von " "Kantengewichten angegeben werden verwenden" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:82 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:82 msgid "The number of parallel execution threads used for rerouting" msgstr "" "Die Anzahl paralleler Ausführungsstränge, die für die Umleitung verwendet " "werden" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:85 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:85 msgid "Let rerouting happen at the same time for all vehicles" msgstr "Lässt die Umleitung für alle Fahrzeuge gleichzeitig erfolgen" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:88 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:88 msgid "Allow rerouting triggered by rail signals." msgstr "Durch Gleissignale ausgelöste Umleitung zulassen." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:91 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:91 msgid "Compute separate average speeds for bicycles" msgstr "Separate Durchschnittsgeschwindigkeiten für Fahrräder berechnen" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:94 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:94 msgid "Save adapting weights to FILE" msgstr "Angepasste Gewichte in FILE speichern" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:102 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:102 msgid "" "Only one of the options 'device.rerouting.adaptation-steps' or 'device." @@ -3779,39 +4552,44 @@ "Es darf nur eine der Optionen 'device.rerouting.adaptation-steps' oder " "'device.rerouting.adaptation-weight' gegeben sein." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:106 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:106 msgid "weights.random-factor cannot be less than 1" msgstr "weights.random-factor kann nicht kleiner als 1 sein" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:110 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:110 msgid "Negative value for device.rerouting.adaptation-interval!" msgstr "Negativer Wert für device.rerouting.adaptation-interval!" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:115 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:115 msgid "" "The value for device.rerouting.adaptation-weight must be between 0 and 1!" msgstr "" "Der Wert für device.rerouting.adaptation-weight muss zwischen 0 und 1 liegen!" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:120 +#: D:\Repos\sumo/src\router\ROFrame.cpp:243 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:120 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:243 msgid "Parallel routing is only possible when compiled with Fox." msgstr "Paralleles Wege sind nur möglich, wenn es mit Fox kompiliert wurde." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:125 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:125 msgid "Adapting number of routing threads to number of simulation threads." msgstr "" "Anpassung der Anzahl der Routen-Stränge an die Anzahl der Simulations-" "Stränge." -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:220 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:234 msgid "" "Specifies which measures will be logged (as a space or comma-separated " -"sequence of IDs in ('TTC', 'DRAC', 'PET'))" +"sequence of IDs in ('TTC', 'DRAC', 'PET', 'PPET','MDRAC'))" msgstr "" -"Gibt an, welche Maßnahmen protokolliert werden (als Leerzeichen oder durch " -"Kommata getrennte Folge von IDs in ('TTC', 'DRAC', 'PET'))" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:236 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:222 msgid "" "Specifies space or comma-separated thresholds corresponding to the specified " @@ -3822,6 +4600,7 @@ "den angegebenen Maßen an (siehe Dokumentation und Reihenfolge beachten!). " "Nur Ereignisse, die die Schwellenwerte überschreiten, werden protokolliert." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:238 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:224 msgid "" "Specifies whether trajectories will be logged (if false, only the extremal " @@ -3830,6 +4609,7 @@ "Gibt an, ob Trajektorien protokolliert werden (wenn falsch, werden nur die " "Extremwerte und Zeiten gemeldet)." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:240 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:226 msgid "" "Specifies the detection range in meters. For vehicles below this distance " @@ -3838,42 +4618,61 @@ "Gibt den Erfassungsbereich in Metern an. Für Fahrzeuge unterhalb dieses " "Abstands von dem ausgestatteten Fahrzeug werden SSM-Werte verfolgt." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:242 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:228 msgid "" "Specifies the time in seconds to be logged after a conflict is over. " "Required >0 if PET is to be calculated for crossing conflicts." msgstr "" "Gibt die Zeit in Sekunden an, die protokolliert werden soll, nachdem ein " -"Konflikt beendet ist. Erforderlich >0, wenn PET für Fußgängerfurtkonflikte " +"Konflikt beendet ist. Muss >0 sein, wenn PET für Fußgängerfurtkonflikte " "berechnet werden soll." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:244 +msgid "Specifies the perception reaction time for MDRAC computation." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:246 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:230 msgid "Give a global default filename for the SSM output" msgstr "Einen globalen Standarddateinamen für die SSM-Ausgabe angeben" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:248 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:232 msgid "Whether to use coordinates of the original reference system in output" msgstr "" "Ob Koordinaten des ursprünglichen Referenzsystems in der Ausgabe verwendet " "werden sollen" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:250 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:234 msgid "Whether to write positions (coordinates) for each timestep" msgstr "" "Ob Positionen (Koordinaten) für jeden Zeitschritt geschrieben werden sollen" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:252 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:236 msgid "Whether to write lanes and their positions for each timestep" msgstr "" "Ob Fahrstreifen und ihre Positionen für jeden Zeitschritt geschrieben werden " "sollen" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:254 +msgid "" +"Which conflicts will be excluded from the log according to the conflict type " +"they have been classified (combination of values in 'ego', 'foe' , '', any " +"numerical valid conflict type code). An empty value will log all and " +"'ego'/'foe' refer to a certain conflict type subset." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:265 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:247 msgid "Could not load names of edges for filtering SSM device output from '%'." msgstr "" "Die Namen der Kanten zur Filterung der SSM-Geräte Ausgabe von '%' konnten " "nicht geladen werden." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:1119 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:1057 msgid "" "SSM device of vehicle '%' detected collision with vehicle '%' at time=%." @@ -3881,6 +4680,7 @@ "SSM-Gerät vom Fahrzeug %' hat eine Kollision mit dem Fahrzeug '%' zur Zeit=% " "festgestellt." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2331 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2188 msgid "" "Cannot classify SSM encounter between ego vehicle % and foe vehicle % at " @@ -3889,6 +4689,8 @@ "SSM-Begegnung zwischen dem Ego-Fahrzeug % und dem Gegenfahrzeug % zur Zeit=% " "konnte nicht klassifiziert werden\n" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2509 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2533 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2366 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2390 msgid "" @@ -3899,18 +4701,23 @@ "Knotenpunkt '%' nicht berechnet werden. Fußgängerfurt zwischen Verkehr von " "Links % und % nicht gefunden." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3703 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3984 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3497 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3699 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.measures'." msgstr "Ungültiger Wert '%' für den Fahrzeugparameter 'ssm.measures'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3709 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3990 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3503 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3705 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.measures'." msgstr "Ungültiger Wert '%'für den Fahrzeugtypenparameter 'ssm.measures'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3714 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3508 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.file'. Using " @@ -3919,16 +4726,19 @@ "Fahrzeug '%' liefert den Fahrzeugparameter 'device.ssm.file' nicht. Verwende " "den Standardwert '%'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3737 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3531 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.geo'." msgstr "Ungültiger Wert '%'für Fahrzeugparameter 'ssm.geo'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3743 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3537 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.geo'." msgstr "Ungültiger Wert '%'für Fahrzeugtypenparameter 'ssm.geo'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3748 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3542 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.geo'. Using " @@ -3937,16 +4747,20 @@ "Fahrzeug '%' liefert den Fahrzeugparameter 'device.ssm.geo' nicht. Verwende " "den Standardwert '%'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3764 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3558 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.write-positions'." msgstr "Ungültiger Wert '%'für Fahrzeugparameter 'ssm.write-positions'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3770 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3564 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.write-positions'." msgstr "Ungültiger Wert '%'für Fahrzeugtypparameter 'ssm.write-positions'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3775 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3802 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3569 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3596 msgid "" @@ -3956,27 +4770,54 @@ "Fahrzeug '%' liefert den Fahrzeugparameter 'device.ssm.write-positions' " "nicht. Verwende den Standardwert '%'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3791 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3585 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.write-lane-positions'." msgstr "Ungültiger Wert '%'für Fahrzeugparameter 'ssm.write-lane-positions'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3797 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3591 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.write-lane-positions'." msgstr "" "Ungültiger Wert '%'für Fahrzeugtypparameter 'ssm.write-lane-positions'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3819 +#, c-format +msgid "Invalid value '%' for vehicle parameter 'ssm.conflict-order'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3827 +#, c-format +msgid "Invalid value '%' for vType parameter 'ssm.conflict-order'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3833 +msgid "" +"Vehicle '%' does not supply vehicle parameter 'device.ssm.exclude-conflict-" +"types'. Using default of '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3851 +msgid "" +"SSM order filter '%' is not supported. Aborting construction of SSM device " +"'%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3868 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3612 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.range'." msgstr "Ungültiger Wert '%'für Fahrzeugparameter 'ssm.range'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3874 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3618 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.range'." msgstr "Ungültiger Wert '%'für Fahrzeugtypparameter 'ssm.range'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3879 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3623 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.range'. Using " @@ -3985,16 +4826,35 @@ "Fahrzeug '%' liefert den Fahrzeugparameter 'device.ssm.range' nicht. " "Verwende den Standardwert '%'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3895 +#, c-format +msgid "Invalid value '%'for vehicle parameter 'ssm.mdrac.prt'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3901 +#, c-format +msgid "Invalid value '%'for vType parameter 'ssm.mdrac.prt'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3906 +msgid "" +"Vehicle '%' does not supply vehicle parameter 'device.ssm.mdrac.prt'. Using " +"default of '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3924 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3639 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.extratime'." msgstr "Ungültiger Wert '%'für Fahrzeugparameter 'ssm.extratime'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3930 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3645 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.extratime'." msgstr "Ungültiger Wert '%'für Fahrzeugtypparameter 'ssm.extratime'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3935 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3650 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.extratime'. Using " @@ -4003,6 +4863,7 @@ "Fahrzeug '%' liefert den Fahrzeugparameter 'device.ssm.extratime' nicht. " "Verwende den Standardwert '%'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3941 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3656 #, c-format msgid "" @@ -4012,16 +4873,19 @@ "Negativer (oder kein) Wert für Fahrzeugparameter 'device.ssm.extratime' in " "Fahrzeug '%', wobei stattdessen der Standardwert % verwendet wird." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3955 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3670 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.trajectories'." msgstr "Ungültiger Wert '%'für Fahrzeugparameter 'ssm.trajectories'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3961 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3676 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.trajectories'." msgstr "Ungültiger Wert '%'für Fahrzeugtypparameter 'ssm.trajectories'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3966 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3681 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.trajectories'. " @@ -4030,6 +4894,7 @@ "Fahrzeug '%' liefert den Fahrzeugparameter 'device.ssm.trajectories' nicht. " "Verwende den Standardwert '%'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3995 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3710 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.measures'. Using " @@ -4038,6 +4903,7 @@ "Fahrzeug '%' liefert den Fahrzeugparameter 'device.ssm.measures' nicht. " "Verwende den Standardwert '%'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4012 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3727 msgid "" "SSM identifier '%' is not supported. Aborting construction of SSM device '%'." @@ -4045,16 +4911,19 @@ "Die SSM-Kennung '%' wird nicht unterstützt. Erstellung der SSM-Einrichtung " "'%' wird abgebrochen." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4023 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3738 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.thresholds'." msgstr "Ungültiger Wert '%'für Fahrzeugparameter 'ssm.thresholds'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4029 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3744 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.thresholds'." msgstr "Ungültiger Wert %'für Fahrzeugtypparameter 'ssm.thresholds'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4034 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3749 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.thresholds'. Using " @@ -4063,6 +4932,7 @@ "Fahrzeug '%' liefert den Fahrzeugparameter 'device.ssm.thresholds' nicht. " "Verwenden des Standardwerts '%'." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4049 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3764 msgid "" "Given list of thresholds ('%') is not of the same size as the list of " @@ -4073,44 +4943,91 @@ "wie die Liste der Maßnahmen ('%').\n" "Bitte geben Sie für jede Maßnahme genau einen Schwellenwert an." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:46 +msgid "" +"Time to wait for a rescue vehicle on the road side when the battery is empty" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:48 +msgid "" +"Additional battery buffer for unexpected traffic situation when estimating " +"the battery need" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:50 +msgid "Battery percentage to go into rescue mode" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:52 +msgid "Search radius in travel time seconds" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:54 +msgid "When to trigger a new search if no station has been found" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:56 +msgid "The maximum charging speed of the vehicle battery" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:58 +msgid "Type of energy transfer" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:60 +msgid "" +"After this waiting time vehicle searches for a new station when the initial " +"one is blocked" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:124 +msgid "" +"Rerouting using station finder removes all upcoming stops for vehicle '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:84 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:82 -#, fuzzy msgid "" "The dispatch algorithm [greedy|greedyClosest|greedyShared|routeExtension|" "traci]" msgstr "" -"Der Dispatch-Algorithmus [greedy|greedyClosest|greedyShared|routeExtension|" -"traci]" +"Der Dispositionsalgorithmus [greedy|greedyClosest|greedyShared|" +"routeExtension|traci]" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:87 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:85 msgid "Write information from the dispatch algorithm to FILE" msgstr "Informationen vom Versandalgorithmus in FILE schreiben" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:90 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:88 -#, fuzzy msgid "Load dispatch algorithm parameters in format KEY1:VALUE1[,KEY2:VALUE]" msgstr "" -"Parameter des Dispatch-Algorithmus im Format SCHLÜSSEL1:WERT1[,SCHLÜSSEL2:" +"Parameter des Dispositionsalgorithmus im Format SCHLÜSSEL1:WERT1[,SCHLÜSSEL2:" "WERT] laden" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:93 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:91 -#, fuzzy msgid "The period between successive calls to the dispatcher" -msgstr "Der Zeitraum zwischen aufeinanderfolgenden Anrufen beim Abfertiger" +msgstr "Der Zeitraum zwischen aufeinanderfolgenden Aufrufen der Disposition" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:96 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:94 msgid "The behavior of idle taxis [stop|randomCircling]" msgstr "Das Verhalten von untätigen Taxis [stop|randomCircling]" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:99 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:97 msgid "Write information from the idling algorithm to FILE" msgstr "Informationen aus dem Leerlaufalgorithmus in FILE schreiben" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:117 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:115 msgid "Vehicle '%' with device.taxi should have vClass taxi instead of '%'." msgstr "" "Fahrzeug '%' mit 'device.taxi' sollte Fahrzeugklasse Taxi statt '%' haben." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:124 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:122 msgid "" "Vehicle '%' with personCapacity % and containerCapacity % is not usable as " @@ -4119,33 +5036,39 @@ "Fahrzeug '%' mit der Personenkapazität von % und einer Behälterkapazität von " "% ist nicht als Taxi nutzbar." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:149 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:147 #, c-format msgid "Dispatch algorithm '%' is not known" msgstr "Absendungs-Algorithmus %' ist nicht bekannt" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:328 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:313 msgid "Invalid Re-dispatch for existing customer '%' with a new reservation" msgstr "" "Ungültiger Neuversand für den existierenden Kunden '%' mit einer neuen " "Reservierung" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:361 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:346 msgid "Re-dispatch did not mention pickup for existing customer '%'" msgstr "" "Beim erneuten Versand wurde die Abholung für den bestehenden Kunden '%' " "nicht erwähnt" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:468 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:453 msgid "Could not add taxi stop for vehicle '%' to %. time=% error=%." msgstr "" "Taxistand für das Fahrzeug '%' konnte nicht zu % hinzugefügt werden. Zeit=% " "Fehler=%." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:584 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:569 msgid "Taxi '%' reaches scheduled end of service at time=%." msgstr "Taxi '%' erreicht planmäßiges Betriebsende zur Zeit=%." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:660 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:645 msgid "" "All customers left vehicle '%' at time=% but there are % remaining stops" @@ -4153,25 +5076,29 @@ "Alle Kunden haben das Fahrzeug '%' zur Zeit=% verlassen, aber es gibt % " "verbliebene Halte" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:116 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:116 msgid "Vehicle type for manual driving regime." msgstr "Fahrzeugtyp für manuelles Fahrregime." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:118 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:118 msgid "Vehicle type for automated driving regime." msgstr "Fahrzeugtyp für automatisiertes Fahrregime." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:120 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:120 msgid "Average response time needed by a driver to take back control." msgstr "" "Durchschnittliche Reaktionszeit, die ein Fahrer benötigt, um die Kontrolle " "zurückzuerlangen." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:122 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:122 -#, fuzzy msgid "Recovery rate for the driver's awareness after a ToC." -msgstr "Erholungsrate für das Bewusstsein des Fahrers nach einer ToC." +msgstr "Erholungsrate des Fahrerbewusstseins nach einer ToC." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:124 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:124 msgid "" "Attention level below which a driver restrains from performing lane changes " @@ -4180,19 +5107,21 @@ "Aufmerksamkeitsniveau, unterhalb dessen ein Fahrer einen Fahrstreifenwechsel " "unterbindet (Wert in [0,1])." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:126 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:126 -#, fuzzy msgid "Average awareness a driver has initially after a ToC (value in [0,1])." msgstr "" "Durchschnittliches Bewusstsein, das ein Fahrer anfänglich nach einem ToC hat " "(Wert in [0,1])." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:128 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:128 msgid "Deceleration rate applied during a 'minimum risk maneuver'." msgstr "" "Verzögerungsrate, die während eines 'Manövers mit minimalem Risiko' " "angewendet wird." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:130 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:130 msgid "" "Time, which the vehicle requires to have ahead to continue in automated " @@ -4202,20 +5131,22 @@ "weiterzufahren. Der Standardwert von 0 gibt an, dass Steuerungsübergaben " "(ToCs) nicht dynamisch ausgelöst werden." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:132 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:132 msgid "Probability that a dynamically triggered TOR is not answered in time." msgstr "" "Wahrscheinlichkeit, dass ein dynamisch ausgelöstes TOR nicht rechtzeitig " "beantwortet wird." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:134 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:134 -#, fuzzy msgid "If true, the vehicle tries to change to the right during an MRM." msgstr "" -"Wenn wahr, versucht das Fahrzeug während eines MRM nach rechts zu wechseln." +"Wenn auf den Wert true gesetzt, versucht das Fahrzeug während eines MRM nach " +"rechts zu wechseln." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:136 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:136 -#, fuzzy msgid "" "If set, the vehicle tries to reach the given named stopping place during an " "MRM." @@ -4223,46 +5154,47 @@ "Wenn gesetzt, versucht das Fahrzeug während eines MRM den angegebenen " "benannten Haltepunkt zu erreichen." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:138 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:138 -#, fuzzy msgid "Duration the vehicle stays at the safe spot after an MRM." msgstr "Verweildauer des Fahrzeugs am sicheren Ort nach einem MRM." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:140 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:140 -#, fuzzy msgid "" "Maximal acceleration that may be applied during the ToC preparation phase." msgstr "" -"Maximale Beschleunigung, die während der Steuerungsübergabe-" -"Vorbereitungsphase (ToC) angewendet werden kann." +"Maximale Beschleunigung, die während der " +"Steuerungsübergabevorbereitungsphase (ToC) angewendet werden kann." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:142 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:142 -#, fuzzy msgid "Timegap for ToC preparation phase." -msgstr "Zeitlücke für Steuerungsübergaben-Vorbereitungsphase (ToC)." +msgstr "Zeitlücke für Steuerungsübergabenvorbereitungsphase (ToC)." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:144 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:144 -#, fuzzy msgid "Additional spacing for ToC preparation phase." -msgstr "Zusätzlicher Abstand für Steuerübergaben-Vorbereitungsphase (ToC)." +msgstr "Zusätzlicher Abstand für Steuerübergabenvorbereitungsphase (ToC)." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:146 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:146 -#, fuzzy msgid "" "Maximal deceleration applied for establishing increased gap in ToC " "preparation phase." msgstr "" -"Maximale Verzögerung, die angewendet wird, um eine vergrößerte Lücke in der " -"ToC-Vorbereitungsphase herzustellen." +"Maximale Verzögerung, die angewendet wird, um eine Lücke in der ToC-" +"Vorbereitungsphase zu vergrößern." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:148 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:148 -#, fuzzy msgid "" "Rate of adaptation towards the increased headway during ToC preparation." msgstr "" -"Anpassungsrate an den erhöhten Fortschritt während der Steuerungsübergaben-" -"Vorbereitung (ToC)." +"Anpassungsrate an die höhere Folgezeit während der " +"Steuerungsübergabenvorbereitung (ToC)." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:150 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:150 msgid "" "Whether a coloring scheme shall by applied to indicate the different ToC " @@ -4271,24 +5203,29 @@ "Ob ein Farbschema angewendet werden soll, um die verschiedenen " "Steuerungsübergaben-Stufen (ToC) anzuzeigen." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:152 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:152 msgid "Switches on output by specifying an output filename." msgstr "Schaltet die Ausgabe durch Angabe eines Ausgabedateinamens ein." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:161 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:161 msgid "ToC device is not supported by the mesoscopic simulation." msgstr "ToC-Gerät wird von der mesoskopischen Simulation nicht unterstützt." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:200 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:200 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.measures'" msgstr "Ungültiger Wert '%' für den Fahrzeugparameter 'ssm.measures'" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:206 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:206 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.measures'" msgstr "Ungültiger Wert '%' für den Fahrzeugtypparameter 'ssm.measures'" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:220 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:220 msgid "" "Given value for ToC device parameter 'dynamicMRMProbability' (=%) is not in " @@ -4298,6 +5235,7 @@ "„dynamicMRMParability“ (=%) liegt nicht im zulässigen Bereich [0,0,5]. Auf % " "gekürzt." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:246 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:246 msgid "" "If any openGap parameters for the ToC model are specified, then at least one " @@ -4306,15 +5244,18 @@ "Wenn openGap-Paramteter für das ToC-Model spizifiziert sind, muss mindestens " "einer von toc.ogNewTimeHeadway und toc.ogNewSpaceHeadway definiert sein." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:578 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:578 msgid "Ignoring unknown safe spot '%' for vehicle '%'." msgstr "Unbekannter sicherer Ort '%' für Fahrzeug '%' wird ignoriert." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:731 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:731 #, c-format msgid "vType '%' for vehicle '%' is not known." msgstr "Fahrzeugtyp '%' für das Fahrzeug '%' ist nicht bekannt." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:933 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:933 msgid "" "Setting device.toc.currentAwareness during automated mode has no effect." @@ -4322,6 +5263,7 @@ "Das Festlegen von device.toc.currentAwareness während des automatischen " "Modus hat keinen Effekt." +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:950 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:950 #, c-format msgid "" @@ -4331,6 +5273,7 @@ "Der Wert von dynamicToCThreshold darf nicht negativ sein. (Angegebener Wert " "% für Fahrzeug % wird ignoriert)" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:961 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:961 #, c-format msgid "" @@ -4340,6 +5283,7 @@ "Der Wert von dynamicMRMProbability darf nicht negativ sein. (Angegebener " "Wert % für Fahrzeug % wird ignoriert)" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:975 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:975 #, c-format msgid "" @@ -4349,11 +5293,14 @@ "Der Wert von maxPreparationAccel darf nicht negativ sein. (Angegebener Wert " "% für Fahrzeug % wird ignoriert)" +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:1000 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:1021 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:1000 #: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:1021 msgid "Unknown ToCState '%'" msgstr "Unbekannter ToC-Stand '%'" +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:97 #: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:97 msgid "" "Mixing reservations of persons and containers with the same group is not " @@ -4362,38 +5309,50 @@ "Das Mischen von Reservierungen von Personen und Behältern der gleich Gruppe " "wird nicht unterstützt für % und %" +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:200 #: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:200 msgid "Inconsistent group reservations." msgstr "Inkonsistente Gruppenreservierungen." +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:204 #: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:204 msgid "Inconsistent group reservations (2)." msgstr "Inkonsistente Gruppenreservierungen (2)." +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:65 #: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:63 msgid "Idle taxi '%' has no next segment to stop. time=%." msgstr "" "Das inaktive Taxi '%' hat keinen nächsten Abschnitt zum Halten. Zeit=%." +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:104 #: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:102 #, c-format msgid "Idle taxi '%' could not stop within %m" msgstr "Leerlauftaxi '%' konnte nicht innerhalb von %m anhalten" +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:157 #: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:155 #, c-format msgid "Vehicle '%' ends idling in a cul-de-sac" msgstr "Fahrzeug '%' endet im Leerlauf in einer Sackgasse" +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:183 +msgid "Could not determine taxi stand for vehicle '%' at time=%" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:96 #: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:96 msgid "Rerouting is useless if the edge weights do not get updated!" msgstr "" "Die Umleitung ist nutzlos, wenn die Kantengewichte nicht aktualisiert werden!" +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:148 #: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:148 msgid "weights.priority-factor cannot be negative." msgstr "weights.priority-factor kann nicht negativ sein." +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:152 #: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:152 msgid "" "Option weights.priority-factor does not take effect because all edges have " @@ -4402,32 +5361,39 @@ "Die Option weights.priority-factor hat keinen Effekt, da alle Kanten die " "gleiche Priorität besitzten" +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:411 #: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:411 msgid "Unknown routing algorithm '%'!" msgstr "Unbekannter Routen-Algorithmus '%'!" +#: D:\Repos\sumo/src\microsim\devices\MSTransportableDevice_Routing.cpp:46 #: /home/micha/programming/sumo/src/microsim/devices/MSTransportableDevice_Routing.cpp:46 msgid "The period with which the person shall be rerouted" msgstr "Der Zeitraum, in dem die Person umgeleitet werden soll" +#: D:\Repos\sumo/src\microsim\engine\VehicleEngineHandler.cpp:157 #: /home/micha/programming/sumo/src/microsim/engine/VehicleEngineHandler.cpp:157 msgid "Invalid engine map type. Only \"poly\" is supported for now" msgstr "Ungültiger Motorkennfeldtyp. Derzeit wird nur \"poly\" unterstützt" +#: D:\Repos\sumo/src\microsim\engine\VehicleEngineHandler.cpp:197 #: /home/micha/programming/sumo/src/microsim/engine/VehicleEngineHandler.cpp:197 msgid "Unknown tag '%' while parsing." msgstr "Unbekannte Kennzeichnung '%' während der Analyse." +#: D:\Repos\sumo/src\microsim\lcmodels\MSAbstractLaneChangeModel.cpp:82 #: /home/micha/programming/sumo/src/microsim/lcmodels/MSAbstractLaneChangeModel.cpp:82 #, c-format msgid "Lane change model '%' is not compatible with sublane simulation" msgstr "Spurenwechselmodel '%' ist nicht kompatibel mit der Sublane-Simulation" +#: D:\Repos\sumo/src\microsim\lcmodels\MSAbstractLaneChangeModel.cpp:98 #: /home/micha/programming/sumo/src/microsim/lcmodels/MSAbstractLaneChangeModel.cpp:98 #, c-format msgid "Lane change model '%' not implemented" msgstr "Fahrstreifenwechselmodel '%' ist nicht implementiert" +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:124 #: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:124 msgid "" "No valid detector length and start position given. Assuming startPos = 0 and " @@ -4436,6 +5402,7 @@ "Keine gültige Detektorlänge und Startposition gegeben. Nehme startPos = 0 " "und length = Endposition an" +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:128 #: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:128 msgid "" "No valid detector length and end position given. Assuming endPos = lane " @@ -4444,41 +5411,49 @@ "Keine gültige Detektorlänge und Endposition gegeben. Nehme endPos = " "Fahrstreifenlänge und length = endPos-startPos an" +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:908 #: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:908 msgid "Multi-lane e2Detector does not support detecting persons yet" msgstr "" "Mehrstreifiger E2-Detektor unterstützt noch nicht das Detektieren von " "Personen" +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:160 #: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:161 msgid "Negative vehicle step fraction for '%' on lane '%'." msgstr "Negativer Fahrzeugschrittanteil für '%' auf Fahrstreifen '%'." +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:554 #: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:556 msgid "aggregated meanData output not yet implemented for trackVehicles" msgstr "aggregierte meanData-Ausgabe ist nicht implementiert für trackVehicles" +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:766 #: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:755 msgid "Unknown attribute '%' to write in meanData '%'." msgstr "Unbekanntes Attribut '%' um es in meanData '%' zu schreiben." +#: D:\Repos\sumo/src\microsim\output\MSStopOut.cpp:69 #: /home/micha/programming/sumo/src/microsim/output/MSStopOut.cpp:69 msgid "Vehicle '%' stops on edge '%', time=% without ending the previous stop." msgstr "" "Fahrzeug '%' hält auf der Kante '%', zur Zeit=% ohne die vorherige " "Haltestelle zu beenden." +#: D:\Repos\sumo/src\microsim\output\MSStopOut.cpp:105 #: /home/micha/programming/sumo/src/microsim/output/MSStopOut.cpp:105 msgid "Vehicle '%' ends stop on edge '%', time=% without entering the stop." msgstr "" "Fahrzeug '%' beendet Halt auf der Kante '%', Zeit=% ohne Einfahrt in die " "Haltestelle." +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:140 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:139 #, c-format msgid "Traffic light '%' does not control any links" msgstr "Lichtsignalanlage '%' kontrolliert keine Verbindungen" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:229 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:227 msgid "" "Unknown inductionLoop '%' given as custom detector for actuated tlLogic '%', " @@ -4487,6 +5462,7 @@ "Unbekannte Induktionsschleife '%' als benutzerdefinierter Detektor für " "aktivierte LSA-Logik '%', Programm '%." +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:242 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:241 msgid "" "At actuated tlLogic '%', minDur % is too short for a detector gap of %m." @@ -4494,18 +5470,21 @@ "Bei aktivierter LSA-Logik '%', minimale Dauer % ist zu kurz für eine " "Detektorlücke von %m." +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:407 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:406 msgid "At actuated tlLogic '%', actuated phase % has no controlling detector." msgstr "" "In aktualisierter tlLogic '%', aktualisierte Phase % hat keinen " "kontrollierenden Detektor." +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:444 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:443 msgid "At actuated tlLogic '%', linkIndex % has no controlling detector." msgstr "" "Bei aktivierter tlLogic '%', linkIndex % hat keinen kontrollierenden " "Detektor." +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:453 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:452 msgid "" "Invalid link '%' given as linkMaxDur parameter for actuated tlLogic '%', " @@ -4514,6 +5493,7 @@ "Ungültiger Link '%' als linkMaxDur-Parameter für die verkehrsabhängige LSA-" "Logik '%' (Programm '%')." +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:463 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:462 msgid "" "Invalid link '%' given as linkMinDur parameter for actuated tlLogic '%', " @@ -4522,6 +5502,7 @@ "Ungültiger Link '%' als linkMinDur-Parameter für die verkehrsabhängige LSA-" "Logik '%' (Programm '%')." +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:905 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:903 msgid "" "At actuated tlLogic '%', transition phase % should not have multiple next " @@ -4530,35 +5511,43 @@ "Bei aktivierter LSA-Logik '%' sollte die Übergangsphase % nicht mehrere " "nächste Phasen haben" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1063 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1061 msgid "Unmatched parentheses in condition %'" msgstr "Nicht übereinstimmende Klammern in der Bedingung %'" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1078 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1076 msgid "Invalid empty condition '%'" msgstr "Ungültige leere Bedingung '%'" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1093 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1091 msgid "Unsupported condition '%'" msgstr "Nicht unterstützter Zustand '%'" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1156 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1154 msgid "Division by 0 in condition '%'" msgstr "Division durch 0 in Zustand '%'" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1207 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1205 #, c-format msgid "Modifying global condition '%' is forbidden" msgstr "Die Änderung der globalen Bedingung '%' ist verboten" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1219 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1217 msgid "Invalid empty expression" msgstr "Ungültiger leerer Ausdruck" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1315 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1313 msgid "Error when retrieving conditions '%' for tlLogic '%' (%)" msgstr "Fehler beim Abrufen der Bedingungen '%' für LSA-Logik '%' (%)" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSDelayBasedTrafficLightLogic.cpp:96 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSDelayBasedTrafficLightLogic.cpp:96 msgid "" "Unknown laneAreaDetector '%' given as custom detector for delay_based " @@ -4568,50 +5557,62 @@ "benutzerdefinierter Detektor für verzögerungsbasierte LSA-Logik '%', " "Programm '%." +#: D:\Repos\sumo/src\microsim\traffic_lights\MSOffTrafficLightLogic.cpp:80 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSOffTrafficLightLogic.cpp:80 msgid "Invalid 'off'-state for link % at junction '%'" msgstr "Ungültiger 'off'-Stand für Link % am Knotenpunkt '%'" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSOffTrafficLightLogic.cpp:84 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSOffTrafficLightLogic.cpp:84 msgid "Inconsistent 'off'-states for linkIndex % at tlLogic '%'" msgstr "Inkonsistente 'off'-Stände für Linkindex % bei LSA-Logik '%'" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:109 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:109 #, c-format msgid "Rail signal at junction '%' does not control any links" msgstr "Bahnsignal am Knotenpunkt '%' kontrolliert keine Verbindungen" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:1210 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:1210 msgid "Found circular block after railSignal % (% edges, length %)" msgstr "Kreisförmiger Block nach Schienensignal % (% Kanten, Länge %) gefunden" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:1321 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:1321 msgid "Found circular block at railSignal % (% edges, length %)" msgstr "Kreisförmiger Block beim Schienensignal % (% Kanten, Länge %) gefunden" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignalConstraint.cpp:147 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignalConstraint.cpp:147 #, c-format msgid "Unknown tracker lane '%' in loaded state." msgstr "Unbekannter Verfolgungsfahrstreifen '%' im geladenen Stand." +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:169 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:169 msgid "Listing output lanes" msgstr "Auflistung von Ausgabe-Fahrstreifen" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:243 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:277 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:243 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:277 msgid "Unrecognized traffic threshold calculation mode" msgstr "Berechnungsmodus für unbekannte Verkehrsschwellenwerte" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:57 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:57 msgid "NO VALID POLICY LIST READ" msgstr "NO VALID POLICY LIST READ" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:81 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:81 msgid "VEHICLE TYPES WEIGHT only works with phase policy, which is missing" msgstr "" "VEHICLE TYPES WEIGHT arbeitet nur mit einer Phasenpolitik, welche fehlt" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:160 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:160 #, c-format msgid "" @@ -4621,6 +5622,7 @@ "MSSwarmTrafficLightLogic::init Intersection % pheromonInputLanes: " "Fahrstreifen % nicht erlaubt" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:182 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:182 #, c-format msgid "" @@ -4630,26 +5632,32 @@ "MSSwarmTrafficLightLogic::init Intersection % pheromoneOutputLanes " "Fahrstreifen % nicht erlaubt" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:194 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:194 msgid "*** Intersection % will run using MSSwarmTrafficLightLogic ***" msgstr "***Kreuzpunkt % wird mit MSSwarmTrafficLightLogic ausgeführt ***" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:202 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:202 msgid "TL % time 0 Policy: % (pheroIn= 0 ,pheroOut= 0 ) OldPolicy: % ." msgstr "" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:81 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:81 msgid "Mismatching phase size in tls '%', program '%'." msgstr "Nicht übereinstimmende Phasengröße in LSA '%', Programm '%'." +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:116 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:116 msgid "No initial signal plan loaded for tls '%'." msgstr "Es wurde kein initialisierter Signalplan für die LSA '%' geladen." +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:163 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:163 msgid "Could not build an off-state for tls '%'." msgstr "Auszustand für die LSA '%' konnte nicht erstellt werden." +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:487 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:487 #, c-format msgid "" @@ -4659,11 +5667,13 @@ "Die berechnete Faktorsumme in WAUT '%' zum Zeitpunkt '%' ist gleich Null;\n" " Nehme Fehler in der WAUT-Definition an." +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:163 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:159 msgid "Unused states in tlLogic '%', program '%' in phase % after tl-index %" msgstr "" "Ungenutzte Stände in tlLogic '%', Programm '%' in Phase % nach tl-index %" +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:182 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:178 msgid "" "Missing yellow phase in tlLogic '%', program '%' for tl-index % when " @@ -4672,10 +5682,12 @@ "Gelbphase in tlLogic '%' im Programm '%' für tl-index % beim Wechsel von % " "zu Phase % fehlt." +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:204 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:200 msgid "Missing green phase in tlLogic '%', program '%' for tl-index %." msgstr "Grünphase in tlLogic '%' im Programm '%' für tl-index % fehlt." +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:267 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:263 msgid "" "Program '%' at tlLogic '%' is incompatible with logic at junction " @@ -4683,11 +5695,18 @@ " Rebuild the network with option '--tls.ignore-internal-junction-jam' or " "include the program when building." msgstr "" +"Das Programm '%' der LSA '%' ist nicht mit der Logik am Knotenpunkt '%' " +"kompatibel (gegenseitiger Konflikt zwischen link index % und %, tl index % " +"und %, Phase % und %).\n" +" Baue das Netzwerk erneut mit der Option '--tls.ignore-internal-junction-" +"jam' oder füge das Programm dem Bauprozess hinzu." +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:464 #: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:460 msgid "Green fraction is only 1% for link % in tlLogic '%', program '%'." msgstr "Grünanteil ist nur 1% für Link % in der LSA-Logik '%', Programm '%'." +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:164 #: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:164 msgid "" "At NEMA tlLogic '%', different sizes of NEMA phase states. Please check the " @@ -4696,45 +5715,55 @@ "Bei der NEMA LSA-Logik '%', verschiedene Größen von NEMA-Phasenzuständen. " "Bitte überprüfe das NEMA-XML" +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:566 #: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:566 msgid "At NEMA tlLogic '%', actuated phase % has no controlling detector" msgstr "" "Bei der NEMA LSA-Logik '%' hat die aktivierte Phase % keinen steuernden " "Detektor" +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:584 #: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:584 msgid "At NEMA tlLogic '%, linkIndex % has no controlling detector" msgstr "" "Bei der NEMA LSA-Logik '%', Link-Index % hat keinen steuernden Detektor" +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:630 #: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:630 #, c-format msgid "NEMA tlLogic '%' is not coordinated but an offset was set." msgstr "" "NEMA LSA-Logik '%' ist nicht koordiniert, aber es wurde ein Versatz gesetzt." +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:959 #: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:959 msgid "I am starting in the coordinated phases" msgstr "Ich starte in den koordinierten Phasen" +#: D:\Repos\sumo/src\microsim\transportables\MSPModel.h:182 #: /home/micha/programming/sumo/src/microsim/transportables/MSPModel.h:180 msgid "moveTo is ignored by the current movement model" msgstr "moveTo wird vom aktuellen Bewegungsmodel ignoriert" +#: D:\Repos\sumo/src\microsim\transportables\MSPModel.h:198 #: /home/micha/programming/sumo/src/microsim/transportables/MSPModel.h:196 msgid "moveToXY is ignored by the current movement model" msgstr "moveToXY wird vom aktuellen Bewegungsmodel ignoriert" +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Remote.cpp:209 #: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Remote.cpp:209 #, c-format msgid "Edge: % does not allow pedestrians." msgstr "Kante: % erlaubt keine zu Fuß gehenden." +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Remote.cpp:299 #: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Remote.cpp:299 msgid "Pedestrian model 'remote' does not support simulation.loadState state\n" msgstr "" "Fußgänger-Model 'remote' unterstützt nicht den simulation.loadState Stand\n" +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:124 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:870 #: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:124 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:871 msgid "" @@ -4744,36 +5773,44 @@ "Fußgänger vType '%' mit % ist größer alspedestrian.striping.stripe-width und " "dies kann zu Kollisionen mit Fahrzeugen führen." +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:179 #: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:179 msgid "Person '%' could not find sidewalk on edge '%', time=%." msgstr "" "Person '%' wurde nicht am Seitenweg von der Kante '%' gefunden, zur Zeit=%." +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:466 #: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:463 #, c-format msgid "Invalid walkingarea '%' does not allow continuation." msgstr "Ungültige walkingArea '%' erlaubt keine Fortsetzung." +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:1926 #: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:1923 msgid "Disconnected walk for person '%'." msgstr "Unterbrochener Fußweg für Person '%'." +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:2127 #: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:2124 msgid "Person '%' is jammed on edge '%', time=%." msgstr "Person '%' klemmt auf der Kante '%', Zeit=%." +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:90 #: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:90 msgid "Adjusting departPos for cloned walk with routeDistribution '%'" msgstr "departPos für geklonten Fußweg mit routeDistribution '%' angepasst" +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:94 #: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:94 msgid "Adjusting arrivalPos for cloned walk with routeDistribution '%'" msgstr "arrivalPos für geklonten Fußweg mit routeDistribution '%' angepasst" +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:98 #: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:98 msgid "Adjusting departLane for cloned walk with routeDistribution '%'" msgstr "departLane für geklonten Fußweg mit routeDistribution '%' angepasst" +#: D:\Repos\sumo/src\microsim\transportables\MSStageTrip.cpp:174 #: /home/micha/programming/sumo/src/microsim/transportables/MSStageTrip.cpp:174 msgid "" "Ignoring vehicle type '%' when routing person '%' because it is not allowed " @@ -4782,45 +5819,55 @@ "Ignorieren des Fahrzeugtyps '%' beim Routing von Person '%', da es an der " "Startkante nicht erlaubt ist." +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:134 #: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:134 msgid "Changing a transportable ID is not permitted" msgstr "Das Ändern einer transportablen ID ist nicht zulässig" +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:256 #: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:256 msgid "Teleporting % '%'; waited too long, from edge '%', time=%." msgstr "% teleportiert '%'; hat zu lange gewartet, von Kante '%', zur Zeit=%." +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:391 #: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:391 msgid "parkingAreaReroute not support for containers" msgstr "parkingAreaReroute wird für Container nicht unterstützt" +#: D:\Repos\sumo/src\microsim\transportables\MSTransportableControl.cpp:69 #: /home/micha/programming/sumo/src/microsim/transportables/MSTransportableControl.cpp:69 msgid "Unknown pedestrian model '%'" msgstr "Unbekanntes Fußgängermodel '%'" +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:142 #: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:142 msgid "No flow intervals in calibrator '%'." msgstr "Keine Flussintervalle in Kalibrator '%'." +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:161 #: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:161 #, c-format msgid "Calibrator '%' has no active or upcoming interval" msgstr "Kalibrator '%' hat kein aktives oder bevorstehendes Intervall" +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:209 #: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:209 msgid "Insertion lane may differ from calibrator lane for calibrator '%'." msgstr "" "Eingefügter Fahrstreifen unterscheidet sich nicht vom Kalibrator-" "Fahrstreifen für Kalibrator '%'." +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:213 #: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:213 msgid "Unknown vehicle type '%' in calibrator '%'." msgstr "Unbekannte Fahrzeugtyp '%' in Kalibrator '%'." +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:216 #: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:216 msgid "Mandatory attribute missing in definition of calibrator '%'." msgstr "Pflichtattribut fehlt in der Definition vom Kalibrator '%'." +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:218 #: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:218 msgid "" "Non-numeric value for numeric attribute in definition of calibrator '%'." @@ -4828,6 +5875,7 @@ "Nicht nummerischer Wert für das nummerische Attribut in der Definition vom " "Kalibrator '%'." +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:221 #: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:221 msgid "" "Either 'vehsPerHour', 'speed' or 'type' has to be set in flow definition of " @@ -4836,35 +5884,49 @@ "In der Fluss-Definition des Kalibrators '%' muss entweder 'vehsPerHour', " "'speed' oder 'type' eingestellt werden." +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:224 #: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:224 msgid "Type calibration is not supported in meso for calibrator '%'." msgstr "" "Typkalibration wird nicht unterstützt für die mesoskopische Simulation für " "den Kalibrator '%'." +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:318 #: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:318 msgid "Calibrator '%' could not remove vehicle '%' time=%." msgstr "Kalibrator '%' konnte Fahrzeug '%' zur Zeit=% nicht entfernen." +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:699 #: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:699 msgid "Cannot set flow for calibrator '%' with overlapping interval." msgstr "" "Fluss für Kalibrator '%' kann nicht gesetzt werden mit überlappenden " "Intervall." +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:701 #: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:701 msgid "Cannot set flow for calibrator '%' with negative interval." msgstr "" "Fluss für Kalibrator '%' kann nicht erstellt werden mit negativen Intervall." +#: D:\Repos\sumo/src\microsim\trigger\MSLaneSpeedTrigger.cpp:176 #: /home/micha/programming/sumo/src/microsim/trigger/MSLaneSpeedTrigger.cpp:176 msgid "Invalid or unsorted time entry in vss '%'." msgstr "Ungültiger oder unsortierter Zeiteintrag in vss '%'." +#: D:\Repos\sumo/src\microsim\trigger\MSLaneSpeedTrigger.cpp:192 #: /home/micha/programming/sumo/src/microsim/trigger/MSLaneSpeedTrigger.cpp:192 msgid "Time % was set twice for vss '%'; replacing first entry." msgstr "Zeit % wurde zweimal gesetzt für '%'; entferne ersten Eintrag." +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:354 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:409 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:454 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:471 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:492 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:518 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:544 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:386 #: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:354 #: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:409 #: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:454 @@ -4880,12 +5942,14 @@ "Oberleitungsschaltkreis-Löser angefordert, aber Lösungsunterstützer (Eigen) " "ist nicht innerhalb kompiliert." +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:579 #: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:579 msgid "Overhead circuit solver requested, but solver support not compiled in." msgstr "" "Oberleitungsschaltkreis-Löser angefordert, aber Lösungsunterstützer ist " "nicht innerhalb kompiliert." +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:690 #: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:690 #, c-format msgid "" @@ -4895,18 +5959,22 @@ "Die angeforderte Gesamtleistung konnte von der Oberleitung nicht geliefert " "werden. Nur % der ursprünglich angeforderten Leistung wurde bereitgestellt." +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:127 #: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:127 msgid "MSTriggeredRerouter %: No destination edge id given." msgstr "MSTriggeredRerouter %: Keine Zielkanten ID ist gegeben." +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:192 #: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:192 msgid "MSTriggeredRerouter %: No route id given." msgstr "MSTriggeredRerouter %: Keine Routen ID ist gegeben." +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:217 #: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:217 msgid "MSTriggeredRerouter %: No parking area id given." msgstr "MSTriggeredRerouter %: Keine Parkplatz ID gegeben." +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:505 #: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:505 #, c-format msgid "" @@ -4916,14 +5984,17 @@ "Die Zielkante '%' für das Fahrzeug '%' kann aufgrund geschlossener Kanten " "nicht beibehalten werden. Beendende Strecke." +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:604 #: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:604 msgid "Invalid value '%' for vehicle parameter '%'" msgstr "Ungültiger Wert '%' für Fahrzeugparameter '%'" +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:612 #: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:612 msgid "Invalid value '%' for vType parameter '%'" msgstr "Ungültiger Wert '%' für Fahrzeugtypparameter '%'" +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:782 #: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:784 #, c-format msgid "" @@ -4933,6 +6004,7 @@ "Parkplatz '%' auf dem Weg kann aus unbekanntem Grund nicht von Fahrzeug " "'%' genutzt werden" +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1103 #: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1105 msgid "" "Invalid distance computation for vehicle '%' to parkingArea '%' at time=%." @@ -4940,6 +6012,7 @@ "Ungültige Distanz-Berechnung für das Fahrzeug '%' zum Parkbereich '%' zur " "Zeit=%." +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1158 #: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1160 msgid "" "Invalid distance computation for vehicle '%' from parkingArea '%' at time=%." @@ -4947,6 +6020,7 @@ "Ungültige Distanz-Berechnung für das Fahrzeug '%' vom Parkbereich '%' zur " "Zeit=%." +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1234 #: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1236 msgid "" "ParkingArea '%' is targeted by rerouter '%' but doesn't have it's own " @@ -4955,18 +6029,25 @@ "Parkplatz '%' wird vom Rerouter '%' angezielt, hat aber keinen eigenen " "Rerouter. Dies kann dazu führen, dass die Parkplatzsuche abgebrochen wird." +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:153 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:119 msgid "Ambiguity in turnarounds computation at junction '%'." msgstr "Mehrdeutigkeit bei der Berechnung der Wenden am Knotenpunkt '%'." +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:358 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:269 msgid "Converting invalid rail_crossing to priority junction '%'." msgstr "Konvertiere ungültigen Bahnübergang zu vorrangigem Knotenpunkt '%'." +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:362 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:273 msgid "Converting invalid rail_crossing to traffic_light at junction '%'." msgstr "Konvertiere ungültigen Bahnübergang zur LSA am Knotenpunkt '%." +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:371 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1744 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:423 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:358 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:282 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1739 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:423 @@ -4974,6 +6055,7 @@ msgid "Could not allocate tls '%'." msgstr "LSA '%' konnte nicht zugeordnet werden." +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:176 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:173 msgid "" "Added % bidi-edges to ensure that all tracks are usable in both directions." @@ -4981,64 +6063,78 @@ "% Zweirichtungs-Kanten hinzugefügt, um sicherzustellen, dass alle Spuren in " "beide Richtungen nutzbar sind." +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:178 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:175 #, c-format msgid "Ignore % edges because they have the wrong spreadType" msgstr "Ignoriere % Kanten, da sie den falschen Ausbreitungstyp haben" +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:200 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:197 #, c-format msgid "Bidi-edge '%' prevented by filtering rules." msgstr "Zweirichtungs-Kante '%' wurde durch Filterregeln verhindert." +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:214 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:211 msgid "Could not add bidi-edge '%'." msgstr "Zweirichtungs-Kante '%' konnte nicht hinzugefügt werden." +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:275 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:272 msgid "Railway nodes by number of incoming,outgoing edges:" msgstr "Eisenbahnknoten nach Anzahl von incoming,outgoing edges:" +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:373 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:370 msgid "Found % railway nodes marked as buffer_stop" msgstr "% Eisenbahnknoten gefunden, welche als buffer_stop markiert sind" +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:383 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:380 msgid "Found % bidirectional rail edges" msgstr "% Zweirichtungs-Eisenbahnkanten gefunden" +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:409 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:406 msgid "Found % railway edges and % railway nodes (% signals)." msgstr "% Schienenkanten und % Schienenknoten (% Signale) gefunden." +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:526 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:523 msgid "Added % bidi-edges as extension of existing bidi edges." msgstr "" "% Zweirichtungs-Kanten als Erweiterung bestehender Zweirichtungs-Kanten " "wurden hinzugefügt." +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:537 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:534 msgid "Could not find bidi-edge for edge '%'" msgstr "Es konnte keinen Zweirichtungs-Kante für die Kante '%' gefunden werden" +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:642 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:639 msgid "Found % reversible edge sequences between broken rail nodes" msgstr "" "% umkehrbare Kantensequenzen zwischen gebrochenen Eisenbahnknoten gefunden" +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:671 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:668 msgid "Reversed % sequences (count by length: %)" msgstr "Kehre % Sequenzen um (Zählung nach Länge: %)" +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:692 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:689 msgid "Ignoring buffer stop junction '%' with % edges." msgstr "Ignoriere Prellbockknotenpunkt '%' mit % Kanten." +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:749 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:746 msgid "Added % edges to connect % buffer stops in both directions." msgstr "" "% Kanten hinzugefügt, um % Pufferböcke in beiden Richtungen zu verbinden." +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:830 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:827 msgid "" "Added % bidi-edges between % pairs of railway switches (count by length: %)" @@ -5046,6 +6142,7 @@ "% Zweirichtungs-Kanten zwischen % Weichenpaaren hinzugefügt (Zählung nach " "Länge: %)" +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:977 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:974 msgid "" "Edge sequence is not consistent with stop sequence in line '%', not adding " @@ -5054,6 +6151,7 @@ "Kantensequenz ist nicht mit der Haltsequenz konsistent in Zeile '%', " "Zweirichtungs-Kanten werden nicht hinzugefügt." +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1019 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1016 #, c-format msgid "" @@ -5063,11 +6161,13 @@ "Halt auf der Kante '%' kann nur in Gegenrichtung erreicht werden, aber die " "Kante hat den falschen spreadType." +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1044 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1037 msgid "No connection found between stops on edge '%' and edge '%'." msgstr "" "Keine Verbindung gefunden zwischen Haltepunkten auf Kante '%' und Kante '%'." +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1154 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1147 msgid "" "Added % bidi-edges to ensure connectivity of straight tracks at geometry-" @@ -5076,6 +6176,7 @@ "% Zweirichtungs-Kanten wurden hinzugefügt, um die Konnektivität gerader " "Gleisen an geometrieähnlichen Knoten sicherzustellen." +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1156 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1149 msgid "" "Added % bidi-edges to ensure connectivity of straight tracks at switches." @@ -5083,6 +6184,7 @@ "% Zweirichtungs-Kanten wurden hinzugefügt, um die Konnektivität gerader " "Gleise an Weichen sicherzustellen." +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1216 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1209 msgid "" "Cannot extend track direction priority because there are no track edges with " @@ -5091,6 +6193,7 @@ "Gleisrichtungsvorrang kann nicht fortgeschrieben werden, da keine " "Gleiskanten mit positiven Vorrang vorhanden sind" +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1272 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1265 msgid "" "Edge '%' was loaded with undefined priority (%) but has unambiguous main " @@ -5099,34 +6202,48 @@ "Kante '%' wurde mit einem undefinierten Vorrang (%) geladen, hat aber eine " "eindeutige Hauptrichtung (keine Zweirichtungs-Kante)" +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1359 +msgid "Added % rail signals at % stops." +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:116 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:116 #, c-format msgid "Can not build ramp on edge '%' - the edge is unsuitable." msgstr "" "Für Kante '%' kann keine Rampe erstellt werden - die Kante ist ungeeignet." +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:120 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:120 #, c-format msgid "Can not build on ramp on edge '%' - the edge is not known." msgstr "" "Für Kante '%' kann keine Rampe erstellt werden - die Kante ist nicht bekannt." +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:131 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:131 #, c-format msgid "Can not build off ramp on edge '%' - the edge is not known." msgstr "" "Rampe an Kante '%' kann nicht erstellt werden - die Kante ist nicht bekannt." +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:249 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:249 msgid "Ups - could not build on-ramp for edge '%' (node could not be build)!" msgstr "" "Ups - eine Rampe für Kante '%' konnte nicht erstellt werden (Knoten konnte " "nicht erstellt werden)!" +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:254 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:254 msgid "Ups - could not build on-ramp for edge '%'!" msgstr "Ups - Rampe für Kante '%' konnte nicht erstellt werden!" +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:284 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:289 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:400 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:403 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:710 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:284 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:289 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:400 @@ -5135,53 +6252,66 @@ msgid "Could not set connection!" msgstr "Konnte Verbindung nicht anwenden!" +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:356 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:356 msgid "Ups - could not build off-ramp for edge '%' (node could not be build)!" msgstr "" "Ups - konnte keine Ausfahrt für Kante %' erstellen (konnte Knoten nicht " "erstellen)!" +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:361 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:361 msgid "Ups - could not build off-ramp for edge '%'!" msgstr "Ups - konnte keine Ausfahrt für Kante '%' erstellen!" +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:423 #: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:423 msgid "For edge '%': could not compute shape." msgstr "Für Kante '%': Konnte Shape nicht berechnen." +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:432 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:460 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:431 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:459 #, c-format msgid "At least one of edge's '%' nodes is not known." msgstr "Mindestens einer der Knoten von Kante '%' ist nicht bekannt." +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:457 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:456 #, c-format msgid "Edge '%' needs at least one lane." msgstr "Kante '%' benötigt mindestens einen Fahrstreifen." +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:463 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:462 msgid "Invalid edge id '%'." msgstr "Ungültige Kanten-ID '%'." +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:493 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:627 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:492 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:626 #, c-format msgid "Edge's '%' from- and to-node are at the same position." msgstr "Ausgangs- und Endknoten an der Kante '%' haben die gleiche Position." +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1000 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:999 msgid "Found angle of % degrees at edge '%', segment %." msgstr "Winkel von % Grad an der Kante '%' gefunden, Abschnitt %." +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1156 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1155 msgid "Could not set connection from '%' to '%'." msgstr "Konnte Verbindung von '%' zu '%' nicht anwenden." +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1668 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1667 msgid "Connection '%_%->%_%' is only %m short." msgstr "Verbindung '%_%->%_%' ist nur %m kurz." +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1770 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1768 msgid "" "Intersecting left turns at junction '%' from lane '%' and lane '%' (increase " @@ -5190,6 +6320,7 @@ "Überschneidendes Linksabbiegen am Knotenpunkt '%' von Fahrstreifen '% und " "Fahrstreifen '%' (Vergrößern Sie den Kreuzungsradius, um dies zu vermeiden)." +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1870 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1868 msgid "" "Speed of % connection '%' reduced by % due to turning radius of % (length=%, " @@ -5198,15 +6329,18 @@ "Geschwindigkeit von % Verbindung '%' reduziert um % aufgrund Wenderadius von " "% (Länge=%, Winkel=%)." +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2210 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2208 msgid "In lane '%': lane shape could not be determined (%)." msgstr "" "Beim Fahrstreifen '%': Fahrstreifen-Shape konnte nicht bestimmt werden (%)." +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2223 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2221 msgid "In lane '%': Could not build shape (%)." msgstr "Beim Fahrstreifen '%': Konnte Shape nicht erstellen (%)." +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2637 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2629 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " @@ -5215,6 +6349,7 @@ "Für Kante '%' können keine Abbiegezeicheninformationen angewendet werden, da " "% gekennzeichnete Wegbeschreibungen, aber nur % Ziele vorhanden sind" +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2678 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2670 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " @@ -5224,6 +6359,7 @@ "werden, da % gekennzeichnete Wegebeschreibungen und % Ziele vorhanden sind " "(nach der Zielbeschneidung)" +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2697 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2689 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " @@ -5233,6 +6369,7 @@ "es % gekennzeichnete Verbindungen mit Richtungen '%' gibt, aber Zielkante " "'%' nur % geeignete Fahrstreifen hat" +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2724 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2716 msgid "" "Cannot apply turn sign information for edge '%' because not enough target " @@ -5241,58 +6378,69 @@ "Abbiegeschildinformationen für Kante '%' können nicht angewendet werden, da " "nicht genügend Zielfahrstreifen für Richtung '%' bestimmt werden konnten" +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2985 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2955 msgid "Edge '%' is not connected to outgoing edges at junction '%'." msgstr "" "Kante '%' ist nicht verbunden mit ausgehenden Kanten am Knotenpunkt '%'." +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2999 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2969 msgid "Lane '%' is not connected from any incoming edge at junction '%'." msgstr "" "Fahrstreifen '%' ist mit keiner ankommenden Kante am Knotenpunkt '%' " "verbunden." +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3016 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2986 #, c-format msgid "Ignoring changeLeft prohibition for '%' to avoid dead-end" msgstr "" "Ignorieren des Linkswechsel-Verbots für '%', um eine Sackgasse zu vermeiden" +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3019 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2989 #, c-format msgid "Ignoring changeRight prohibition for '%' to avoid dead-end" msgstr "" "Ignorieren des Rechtswechsel-Verbots für '%', um eine Sackgasse zu vermeiden" +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3620 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:3590 #, c-format msgid "The lane '%' on edge '%' already had a traffic light signal." msgstr "Der Fahrstreifen '%' von Kante '%' hatte bereits ein LSA-Signal." +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3626 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:3596 msgid "Could not set any signal of the tlLogic '%' (unknown group)." msgstr "Konnte kein Signal der LSA-Logik '%' anwenden (unbekannte Gruppe)." +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4117 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4079 msgid "Ignoring invalid stopOffset for edge '%' (negative offset)." msgstr "Ignoriere ungültigen Haltversatz für Kante '%' (negativer Versatz)." +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4126 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4088 msgid "Ignoring invalid stopOffset for lane '%' (negative offset)." msgstr "" "Ignoriere ungültigen Haltversatz für Fahrstreifen '%' (negativer Versatz)." +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4132 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4094 msgid "Ignoring invalid stopOffset for lane '%' (invalid lane index)." msgstr "" "Ignoriere ungültigen Halteversatz für Fahrstreifen '%' (ungültiger " "Fahrstreifenindex)." +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4395 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4357 #, c-format msgid "Edge % allows pedestrians on all lanes" msgstr "Kante % erlaubt Fußgänger auf allen Fahrstreifen" +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4453 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4415 #, c-format msgid "Edge '%' already has a dedicated lane for %s. Not adding another one." @@ -5300,6 +6448,7 @@ "Kante '%' hat bereits einen zugehörigen Fahrstreifen für %s. Kein weiterer " "wird hinzugefügt." +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4490 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4452 #, c-format msgid "Edge '%' doesn't have a dedicated lane for %s. Cannot be restored." @@ -5307,19 +6456,24 @@ "Kante '%' hat keinen zugehörigen Fahrstreifen für %s. Kann nicht " "wiederhergestellt werden." +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4538 #: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4500 msgid "Could not avoid overlapping shape at node '%' for edge '%'." msgstr "Konnte überlappende Shape am Knoten '%' für Kante '%' nicht vermeiden." +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:121 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:140 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:121 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:140 msgid "Invalid boundary: need at least 2 coordinates" msgstr "Ungültige Grenze: benötige mindestens 2 Koordinaten" +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:142 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:142 msgid "Invalid boundary: malformed coordinate" msgstr "Ungültige Grenze: missgebildete Koordinate" +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:259 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:259 msgid "" "Cannot prune edges using a geo-boundary because no projection has been loaded" @@ -5327,103 +6481,128 @@ "Kanten können nicht mithilfe einer Geogrenze gekürzt werden, da keine " "Projektion geladen wurde" +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:438 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:438 msgid "Attempt to rename edge using existing id '%'" msgstr "Versuche Kante mit der existierenden ID '%' umzubenennen" +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:498 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:499 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:501 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:498 #: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:499 #: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:501 msgid "Error on parsing a split (edge '%')." msgstr "Fehler beim Einlesen einer Auftrennung (Kante '%')." +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:556 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:556 msgid "Split at '%' lies beyond the edge's length (edge '%')." msgstr "Teilung bei '%' liegt jenseits der Kantenlänge (Kante '%')." +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:639 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:639 msgid "Could not insert edge '%' before split of edge '%'." msgstr "Kante '%' konnte nicht vor der Teilung von Kante '%' eingefügt werden." +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:643 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:643 msgid "Could not insert edge '%' after split of edge '%'." msgstr "" "Kante '%' konnte nach der Teilung von Kante '%' nicht eingefügt werden." +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:880 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:880 msgid "Moving opposite lane '%' from invalid lane '%' to lane index %." msgstr "" "Verschiebe gegenüberliegenden Fahrstreifen '%' vom ungültigen Fahrstreifen " "'%' zum Fahrstreifen-Index %." +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:882 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:882 msgid "Removing opposite lane '%' for invalid lane '%'." msgstr "" "Entferne gegenüberliegenden Fahrstreifen '%' für den ungültigen Fahrstreifen " "'%'." +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:891 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:891 msgid "Removing unknown opposite lane '%' for edge '%'." msgstr "" "Entferne unbekannten gegenüberliegenden Fahrstreifen '%' für Kante '%'." +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:896 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:896 msgid "Adapting invalid opposite lane '%' for edge '%' to '%'." msgstr "" "Passe ungültigen gegenüberliegenden Fahrstreifen '%' für Kante '%' zu '%' an." +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:902 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:902 msgid "Adapting missing opposite lane '%' for edge '%'." msgstr "Passe fehlenden gegenüberliegenden Fahrstreifen '%' für Kante '%' an." +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:908 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:908 msgid "Averaging edge lengths for lane '%' (length %) and edge '%' (length %)." msgstr "" "Mittelung der Kantenlängen für Fahrstreifen '%' (Länge %) und Kante " "'%' (Länge %)." +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:921 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:921 msgid "Opposite lane '%' does not connect the same nodes as edge '%'!" msgstr "" "Gegenüberliegender Fahrstreifen '%' verbindet nicht die selben Knoten wie " "Kante '%'!" +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1421 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1421 msgid "Replacing loaded roundabout '%' with '%'." msgstr "Ersetzte geladenen Kreisverkehr '%' mit '%'." +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1739 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1739 msgid "Edge '%' overlaps with edge '%' by %." msgstr "Kante '%' überlappt sich mit Kante '%' bei %." +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1755 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1755 #, c-format msgid "Edge '%' has a vertical jump of %m." msgstr "Kante '%' hat einen vertikalen Sprung von %m." +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1757 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1757 #, c-format msgid "Edge '%' has a grade of %%." msgstr "Kante '%' hat eine Steigung von %%." +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1767 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1767 #, c-format msgid "Connection '%' has a vertical jump of %m." msgstr "Verbindung '%' hat einen vertikalen Sprung von %m." +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1769 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1769 #, c-format msgid "Connection '%' has a grade of %%." msgstr "Verbindung '%' hat eine Steigung von %%." +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1809 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1809 msgid "Not joining tram edge '%' with % lanes." msgstr "Nicht vereinigte Straßenbahnkante '%' mit % Fahrstreifen." +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1883 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1883 msgid "Ambiguous tram edges '%' and '%' for lane '%'." msgstr "Mehrdeutige Straßenbahnkanten '%' und '%' für Fahrstreifen '%'." +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:2037 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:138 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:554 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:2037 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:138 #: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:554 @@ -5431,6 +6610,9 @@ msgid "Edge's '%' from-node '%' is not known." msgstr "Der Ausgangsknoten von Kante '%' ist nicht bekannt." +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:2041 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:142 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:566 #: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:2041 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:142 #: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:566 @@ -5438,78 +6620,95 @@ msgid "Edge's '%' to-node '%' is not known." msgstr "Der Endknoten von Kante '%' ist nicht bekannt." +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:52 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:52 msgid "The default number of lanes in an edge" msgstr "Die Standardanzahl von Fahrstreifen in einer Kante" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:56 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:56 msgid "The default width of lanes" msgstr "Die Standardbreite von Fahrstreifen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:59 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:59 -#, fuzzy msgid "The default method for computing lane shapes from edge shapes" msgstr "" "Die Standardmethode zum Berechnen von Fahrstreifen-Shapes aus Kanten-Shapes" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:63 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:63 msgid "The default speed on an edge (in m/s)" msgstr "Die Standardgeschwindigkeit auf einer Kante (in m/s)" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:67 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:67 msgid "The default friction on an edge" msgstr "Die Standardreibung an einer Kante" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:71 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:71 msgid "The default priority of an edge" msgstr "Der Standardvorrang von einer Kante" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:74 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:74 msgid "The default edge type" msgstr "Der Standardkantentyp" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:77 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:77 msgid "The default width of added sidewalks" msgstr "Die Standardbreite von hinzugefügten Gehwegen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:80 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:80 msgid "The default width of added bike lanes" msgstr "Die Standardbreite von hinzugefügten Radfahrstreifen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:83 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:83 msgid "The default width of a pedestrian crossing" msgstr "Die Standardbreite einer Fußgängerfurt" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:86 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:86 msgid "The default speed 'limit' on a pedestrian crossing (in m/s)" msgstr "" "die Standard-Geschwindigkeitsbegrenzung auf einem Fußgängerüberweg (in m/s)" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:89 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:89 msgid "The default speed 'limit' on a pedestrian walkingarea (in m/s)" msgstr "" "Die Standardgeschwindigkeit 'limit' auf einer Fußgänger walkingArea (in m/s)" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:92 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:92 msgid "The default for allowed vehicle classes" msgstr "Der Standard für erlaubte Fahrzeugklassen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:95 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:95 msgid "The default for disallowed vehicle classes" msgstr "Der Standard für nicht erlaubte Fahrzeugklassen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:98 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:98 msgid "Whether junctions should be kept clear by default" msgstr "Ob Knotenpunkte standardmäßig freigehalten werden sollen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:101 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:101 msgid "The default turning radius of intersections" msgstr "Der Standardwenderadius von Kreuzungen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:104 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:104 msgid "The default length when overriding connection lengths" msgstr "Die Standardlänge beim Überschreiben von Verbindungslängen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:107 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:107 msgid "" "The default algorithm for computing right of way rules ('default', " @@ -5518,6 +6717,7 @@ "Der Standardalgorithmus zum Berechnen von Vorfahrtsregeln ('default', " "'edgePriority')" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:110 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:110 msgid "" "Allow building right-before-left junctions when the incoming edge speeds are " @@ -5526,16 +6726,19 @@ "Erstellen von Rechts-vor-Links-Knotenpunkten, wenn die eingehenden " "Kantengeschwindigkeiten unter FLOAT (m/s) liegen, zulassen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:113 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:113 msgid "" "Build left-before-right junctions instead of right-before-left junctions" msgstr "" "Links-vor-Rechts-Knotenpunkte statt Rechts-vor-Links-Knotenpunkte erstellen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:117 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:117 msgid "Omits internal links" msgstr "Lässt interne Links weg" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:120 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:120 msgid "" "Remaps alphanumerical IDs of nodes and edges to ensure that all IDs are " @@ -5544,14 +6747,17 @@ "Ordnet alphanumerische IDs von Knoten und Kanten neu zu, um sicherzustellen, " "dass alle IDs ganze Zahlen sind" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:123 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:123 msgid "Remaps IDs of nodes to integers starting at INT" msgstr "Ordnet IDs von Knoten neu zu ganzen Zahlen zu, beginnend bei INT" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:126 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:126 msgid "Remaps IDs of edges to integers starting at INT" msgstr "Ordnet IDs von Kanten neu zu ganzen Zahlen zu, beginnend bei INT" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:130 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:130 msgid "" "Ensures that generated ids do not included any of the typed IDs from FILE " @@ -5560,29 +6766,34 @@ "Stellt sicher, dass generierte IDs keine der eingegebenen IDs aus FILE " "(Netzelementauswahlformat für sumo-gui) enthalten" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:134 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:134 msgid "Removes vehicle class restrictions from imported edges" msgstr "Entfernt Fahrzeugklasseneinschränkungen von importierten Kanten" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:138 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:138 msgid "Disables building turnarounds" msgstr "Deaktiviert das Erstellen von Kehrtwenden" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:142 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:142 msgid "Disables building turnarounds at tls-controlled junctions" msgstr "" "Deaktiviert das Erstellen von Kehrtwenden an LSA gesteuerten Knotenpunkten" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:145 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:145 msgid "Disables building turnarounds at geometry-like junctions" msgstr "" "Deaktiviert das Erstellen von Kehrtwenden an geometrieähnlichen Knotenpunkten" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:148 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:148 -#, fuzzy msgid "Disables building turnarounds except at dead end junctions" -msgstr "Deaktiviert das Erstellen von Kehrtwenden außer an Sackgassen" +msgstr "Deaktiviert die Erstellung von Kehrtwenden außer an Sackgassen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:151 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:151 msgid "" "Disables building turnarounds except at at junctions with a dedicated " @@ -5591,18 +6802,22 @@ "Deaktiviert Gebäudeumkehrungen außer an Knotenpunkten mit einer eigenen " "Abbiegefahrstreifen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:154 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:154 msgid "Disables building turnarounds at fringe junctions" msgstr "Deaktiviert das Erstellen von Wendefahrbahnen an Randknotenpunkten" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:157 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:157 msgid "Disables building connections to left" msgstr "Deaktiviert das Erstellen von Linksverbindungen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:161 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:161 msgid "Splits edges across geometry nodes" msgstr "Trennt Kanten entlang Geometrieknoten" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:165 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:165 msgid "" "Replace nodes which only define edge geometry by geometry points (joins " @@ -5611,48 +6826,54 @@ "Knoten, die nur Kantengeometrie definieren, durch Geometriepunkte ersetzen " "(Kanten verbinden)" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:168 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:168 msgid "Ensure that the given list of edges is not modified" msgstr "Stelle sicher, dass die angegebene Kantenliste nicht geändert wird" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:176 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:176 msgid "Ensure that edges with public transport stops are not modified" msgstr "" "Stelle sicher, dass Kanten mit ÖPNV-Haltestellen nicht verändert werden" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:192 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:188 msgid "splits geometry to restrict segment length" msgstr "Teilt die Geometrie, um die Segmentlänge zu beschränken" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:196 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:192 msgid "reduces too similar geometry points" msgstr "reduziert zu ähnlichen Geometriepunkten" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:199 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:195 -#, fuzzy msgid "" "Warn about edge geometries with an angle above DEGREES in successive segments" msgstr "" -"Warnt vor Kantengeometrien mit einem Winkel über Grad in " +"Warnt vor Kantengeometrien mit einem Winkel über DEGREES in " "aufeinanderfolgenden Segmenten" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:202 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:198 -#, fuzzy msgid "" "Warn about edge geometries with a turning radius less than METERS at the " "start or end" msgstr "" -"Warnt vor Kantengeometrien mit einem Wenderadius von weniger als die Meter " -"am Anfang oder Ende" +"Warnt vor Kantengeometrien mit einem Wenderadius von weniger als METERS am " +"Anfang oder Ende" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:205 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:201 -#, fuzzy msgid "" "Straighten edge geometries to avoid turning radii less than geometry.min-" "radius" msgstr "" -"Kantengeometrien, um Wenderadien kleiner als geometry.min-radius begradigen" +"Kantengeometrien begradigen, um Wenderadien kleiner als geometry.min-radius " +"zu vermeiden" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:208 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:204 msgid "" "Straighten edge geometries to avoid turning radii less than geometry.min-" @@ -5661,6 +6882,7 @@ "Kantengeometrien begradigen, um Wenderadien kleiner als geometry.min-radius " "zu vermeiden (nur Eisenbahnen)" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:211 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:207 msgid "" "Warn if the junction shape is to far away from the original node position" @@ -5668,11 +6890,13 @@ "Warnen, wenn die Knotenpunktgeometrie zu weit von der ursprünglichen " "Knotenposition entfernt ist" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:214 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:210 msgid "Warn if edges overlap by more than the given threshold value" msgstr "" "Warnt, wenn Kanten sich um mehr als den angegebenen Schwellenwert überlappen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:217 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:213 msgid "" "Ignore overlapping edges if they are separated vertically by the given " @@ -5681,21 +6905,22 @@ "Überlappende Kanten ignorieren, wenn sie vertikal durch den angegebenen " "Schwellenwert getrennt sind." +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:220 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:216 msgid "Modify edge geometries to avoid overlap at junctions" msgstr "" "Ändert Kantengeometrien um das Überlappen von Knotenpunkten zu verhindern" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:223 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:219 -#, fuzzy msgid "" "join adjacent lanes that have the same permissions and which do not admit " "lane-changing (sidewalks and disallowed lanes)" msgstr "" -"auf benachbarte Fahrstreifen auffahren, die die gleichen Berechtigungen " -"haben und die keinen Fahrstreifenwechsel zulassen (Bürgersteige und nicht " -"zugelassene Fahrstreifen)" +"benachbarte Fahrstreifen mit den gleichen Berechtigungen und " +"Fahrstreifenwechselverbot zusammenführen (Fußwege und gesperrte Fahrstreifen)" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:226 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:222 msgid "" "Matches stops outside the road network to the referencing pt line when below " @@ -5704,10 +6929,12 @@ "Ordnet Haltepunkte außerhalb des Straßennetzes der referenzierenden ÖV-Linie " "zu, wenn diese unter der angegebenen Entfernung liegen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:230 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:226 msgid "Repair topology of the railway network" msgstr "Topologie des Gleisnetzes reparieren" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:233 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:229 msgid "" "Repair topology of the railway network just enough to let loaded public " @@ -5716,47 +6943,64 @@ "Topologie des Schienennetzes das gerade ausreicht, um die ausgelastete ÖV-" "Linien zum Laufen zu bringen, reparieren" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:236 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:232 -#, fuzzy msgid "" "Allow bidirectional rail use wherever rails with opposite directions meet at " "a straight angle" msgstr "" -"Zweirichtungs Gleiseinsatz überall dort, wo Gleise mit entgegengesetzten " -"Richtungen in einem geraden Winkel aufeinander treffen, zulassen" +"Zweirichtungsnutzung der Gleise überall dort, wo Gleise entgegengesetzter " +"Richtung in einem geraden Winkel aufeinander treffen, zulassen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:239 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:235 msgid "Add turn-around connections at all loaded stops." msgstr "Wendeverbindungen an allen geladenen Haltepunkten hinzufügen." +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:242 +msgid "" +"Penalty factor for adding new bidi edges to connect public transport stops" +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:245 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:238 msgid "Make all rails usable in both direction" msgstr "Alle Gleise in beide Richtungen nutzbar machen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:248 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:241 msgid "Make all rails edge ids from FILE usable in both direction" msgstr "Alle Gleiskanten IDs von FILE in beide Richtungen nutzbar machen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:251 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:244 msgid "Set edge priority values based on estimated main direction" msgstr "" "Kantenvorrangswerte basierend auf der geschätzten Hauptrichtung einstellen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:254 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:247 msgid "Extend loaded edge priority values based on estimated main direction" msgstr "" "Prioritätswerte geladener Kanten basierend auf der geschätzten Hauptrichtung " "erweitern" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:257 +msgid "Guess signals that guard public transport stops" +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:260 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:250 msgid "The search radius for finding suitable road accesses for rail stops" msgstr "" "Der Suchradius zum Finden geeigneter Straßenzugänge für Bahnhaltestellen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:264 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:254 msgid "The maximum road accesses registered per rail stops" msgstr "Die maximal registrierten Straßenzugänge pro Bahnhaltestellen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:268 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:258 msgid "" "The walking length of the access is computed as air-line distance multiplied " @@ -5765,105 +7009,121 @@ "Die Gehlänge des Zugangs wird als Luftlinienentfernung multipliziert mit " "FLOAT berechnet" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:272 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:262 msgid "Skips automatic generation of stops on the bidi-edge of a loaded stop" msgstr "" "Überspringt die automatische Generierung von Haltepunkten an der " "Zweirichtungskante eines geladenen Haltepunktes" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:276 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:266 -#, fuzzy, c-format +#, c-format msgid "Warn about edge geometries with a grade in % above FLOAT." -msgstr "Warnung vor Kantengeometrien mit einer Steigung in % über die FLOAT." +msgstr "Warnung vor Kantengeometrien mit einer Steigung in % über FLOAT." +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:279 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:269 msgid "Smooth edge geometries with a grade above the warning threshold." msgstr "Glätte Kantengeometrien mit einer Steigung oberhalb der Warnschwelle." +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:283 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:273 msgid "Turn off normalizing node positions" msgstr "Deaktiviert die Normalisierung von Knotenpositionen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:287 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:186 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:277 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:186 msgid "Adds FLOAT to net x-positions" msgstr "Fügt FLOAT zu den x-Positionen des Netzes hinzu" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:291 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:190 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:281 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:190 msgid "Adds FLOAT to net y-positions" msgstr "Fügt FLOAT zu den y-Positionen des Netzes hinzu" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:294 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:193 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:284 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:193 msgid "Adds FLOAT to net z-positions" msgstr "Fügt FLOAT zu den z-Positionen des Netzes hinzu" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:298 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:288 msgid "Flips the y-coordinate along zero" msgstr "Kehrt die y-Koordinate entlang Null um" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:302 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:292 -#, fuzzy msgid "Enable roundabout-guessing" -msgstr "Kreisverkehr-Raten aktivieren" +msgstr "Kreisverkehrheuristik aktivieren" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:305 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:295 msgid "Default visibility when approaching a roundabout" msgstr "Standardsichtbarkeit bei Annäherung an einen Kreisverkehr" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:308 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:298 -#, fuzzy msgid "Enable guessing of opposite direction lanes usable for overtaking" -msgstr "" -"Das Annehmen von Fahrspuren in entgegengesetzter Richtung, die zum Überholen " -"verwendet werden können aktivieren" +msgstr "Heuristik für Fahrstreifen der Gegenrichtung zum Überholen aktivieren" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:311 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:301 msgid "Ensure that opposite edges have the same length" msgstr "Achte darauf, dass gegenüberliegende Kanten die gleiche Länge haben" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:314 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:304 -#, fuzzy msgid "Enable guessing of network fringe nodes" -msgstr "Schätzen von Netzrandknoten aktivieren" +msgstr "Heuristik für Netzrandknoten aktivieren" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:317 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:307 -#, fuzzy msgid "Guess disconnected edges above the given speed as outer fringe" msgstr "" -"Getrennte Kanten oberhalb der gegebenen Geschwindigkeit als äußerer Rand " +"Isolierte Kanten oberhalb der gegebenen Geschwindigkeit als äußeren Rand " "erraten" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:320 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:310 msgid "Assumes left-hand traffic on the network" msgstr "Geht von Linksverkehr im Netz aus" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:336 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:326 -#, fuzzy msgid "Interprets STR[] as list of junctions to exclude from joining" msgstr "" -"Interpretiert STRING[] als Liste von Knotenpunkten, die vom Zusammenführen " -"ausgeschlossen werden sollen" +"Interpretiert STRING[] als Liste von Knotenpunkten, die nie mit anderen " +"vereinigt werden sollen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:348 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:338 msgid "Modifies all edge speeds by adding FLOAT" msgstr "Ändert alle Kantengeschwindigkeiten durch Hinzufügen eines FLOAT" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:351 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:341 msgid "Modifies all edge speeds by multiplying by FLOAT" msgstr "" "Ändert alle Kantengeschwindigkeiten durch multiplizieren mit einen FLOAT" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:354 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:344 msgid "Modifies all edge speeds to at least FLOAT" msgstr "Ändert alle Kantengeschwindigkeiten auf mindestens FLOAT" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:362 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:352 -#, fuzzy msgid "Generate INT intermediate points to smooth out intersection corners" -msgstr "INT Zwischenpunkte zum Glätten von Schnittecken generieren" +msgstr "INT Zwischenpunkte zum Glätten von Knotenpunktecken generieren" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:365 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:355 msgid "" "Generate INT intermediate points to smooth out lanes within the intersection" @@ -5871,6 +7131,7 @@ "INT Zwischenpunkte zum Glätten von Fahrstreifen innerhalb der Kreuzung " "generieren" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:368 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:358 msgid "" "Generate longer intersections to allow for smooth s-curves when the number " @@ -5879,14 +7140,17 @@ "Längere Kreuzungen generieren, wenn sich die Anzahl der Fahrstreifen ändert, " "um glatte S-Kurven zu ermöglichen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:411 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:398 msgid "Forces rectangular cuts between lanes and intersections" msgstr "Erzwingt rechtwinklige Schnitte zwischen Fahrstreifen und Kreuzungen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:470 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:457 msgid "Always build walking areas even if there are no crossings" msgstr "Baut immer Laufflächen, auch wenn keine Kreuzungen vorhanden sind" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:473 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:460 msgid "" "Do not create a walkingarea between sidewalks that are connected by a " @@ -5895,16 +7159,18 @@ "Keine walkingArea zwischen maximal FLOAT voneinander entfernten Gehwegen " "erstellen, die durch einen Fußgängerknotenpunkt verbunden sind" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:618 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:605 msgid "Only keep edges with speed in meters/second > FLOAT" msgstr "Behalte nur Kanten mit Geschwindigkeit in Metern/Sekunde > FLOAT" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:622 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:609 msgid "Remove edges in STR[]" msgstr "Kanten in STR[] entfernen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:626 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:613 -#, fuzzy msgid "" "Only keep edges in STR[] or those which are kept due to other keep-edges or " "remove-edges options" @@ -5912,6 +7178,7 @@ "Behalte nur Kanten in STR[] oder solche, die aufgrund anderer keep-edges- " "oder remove-edge-Optionen erhalten bleiben" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:629 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:616 msgid "" "Only keep edges in FILE (Each id on a single line. Selection files from sumo-" @@ -5923,6 +7190,7 @@ "Optionen zum Beibehalten von Kanten oder zum Entfernen von Kanten " "beibehalten werden" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:632 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:619 msgid "" "Remove edges in FILE. (Each id on a single line. Selection files from sumo-" @@ -5931,10 +7199,12 @@ "Kanten in FILE entfernen. (Jede ID in einer einzelnen Zeile. Auswahldateien " "von Sumo-GUI werden ebenfalls unterstützt)" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:636 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:623 msgid "Remove edges after joining" msgstr "Kanten nach dem Zusammenführen entfernen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:640 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:627 msgid "" "Only keep edges which are located within the given boundary (given either as " @@ -5945,6 +7215,7 @@ "kartesische Eckkoordinaten oder als Polygon angegeben)" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:643 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:630 msgid "" "Only keep edges which are located within the given boundary (given either as " @@ -5955,89 +7226,108 @@ "geodätische Eckkoordinaten oder als " "Polygon angegeben)" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:647 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:634 msgid "Only keep edges which allow one of the vclasses in STR[]" msgstr "Nur Kanten behalten, die eine der Fahrzeugklassen in STR[] zulassen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:650 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:637 msgid "Remove edges which allow only vclasses from STR[]" msgstr "" "Ausschließlich für Fahrzeugklassen in STR[] zugelassene Kanten entfernen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:653 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:640 msgid "Only keep edges where type is in STR[]" msgstr "Nur Kanten behalten, deren Typ in STR[] enhalten ist" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:656 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:643 msgid "Only keep the INT largest weakly connected components" msgstr "Behalte nur die INT größten schwach verbundenen Komponenten" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:659 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:646 msgid "Remove edges where type is in STR[]" msgstr "Kanten mit einem in STR[] enthaltenen Typ entfernen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:663 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:650 msgid "Removes isolated edges" msgstr "Isolierte Kanten entfernen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:670 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:657 msgid "All nodes will be unregulated" msgstr "Alle Knoten werden unreguliert sein" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:675 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:662 msgid "Do not regulate nodes in STR[]" msgstr "Knoten in STR[] nicht regulieren" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:679 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:666 msgid "Do not regulate district nodes" msgstr "Bezirksknoten nicht regulieren" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:685 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:672 msgid "Enable ramp-guessing" msgstr "Zufahrtsrampenheuristik aktivieren" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:688 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:675 -#, fuzzy msgid "" "Guess on-ramps and mark acceleration lanes if they exist but do not add new " "lanes" msgstr "" -"Auffahrten erraten und markiere Beschleunigungsfahrstreifen, falls " -"vorhanden, aber füge keine neuen Fahrstreifen hinzu" +"Auffahrten erraten und, falls vorhanden, Beschleunigungsfahrstreifen " +"markieren, aber keine neuen Fahrstreifen hinzufügen" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:692 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:679 msgid "Treat edges with speed > FLOAT as no ramps" msgstr "Kanten mit Geschwindigkeit > FLOAT nicht als Rampen behandeln" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:696 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:683 msgid "Treat edges with speed < FLOAT as no highways" msgstr "Kanten mit Geschwindigkeit < FLOAT nicht als Autobahnen behandeln" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:700 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:687 msgid "Use FLOAT as ramp-length" msgstr "FLOAT als Rampenlänge verwenden" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:704 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:691 msgid "Use FLOAT as minimum ramp-length" msgstr "FLOAT als minimale Rampenlänge verwenden" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:708 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:695 msgid "Tries to handle the given edges as ramps" msgstr "Versucht, die angegebenen Kanten als Auffahrten zu behandeln" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:711 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:698 msgid "Do not consider the given edges as ramps" msgstr "Die angegebenen Kanten nicht als Auffahrten betrachten" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:715 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:702 msgid "Avoids edge splitting" msgstr "Vermeidet Kantenaufteilung" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:725 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:713 #, c-format msgid "unsupported value '%' for option '--tls.default-type'" msgstr "nicht unterstützter Wert '%' für die Option '--tls.default-type'" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:729 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:717 msgid "" "only one of the options 'keep-edges.in-boundary' or 'keep-edges.in-geo-" @@ -6046,6 +7336,7 @@ "nur eine der Optionen 'keep-edges.in-boundary' oder 'keep-edges.in-geo-" "boundary' darf gegeben werden" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:733 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:721 msgid "" "only one of the options 'no-internal-links' or 'crossings.guess' may be given" @@ -6053,12 +7344,14 @@ "Nur eine der Optionen 'no-internal-links' oder 'crossings.guess' darf " "gegeben werden" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:737 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:725 msgid "only one of the options 'no-internal-links' or 'walkareas' may be given" msgstr "" "Nur eine der Optionen 'no-internal-links' oder 'walkareas' darf gegeben " "werden" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:741 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:729 msgid "" "only one of the options 'tls.green.time' or 'tls.cycle.time' may be given" @@ -6066,10 +7359,12 @@ "nur einer der Optionen 'tls.green.time' oder 'tls.cycle.time' darf gegeben " "werden" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:745 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:733 msgid "default.lanenumber must be at least 1" msgstr "default.lanenumber muss mindestens 1 sein" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:753 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:741 msgid "" "only one of the options 'default.disallow' or 'default.allow' may be given" @@ -6077,10 +7372,12 @@ "nur eine der Optionen 'default.disallow' oder 'default.allow' darf gegeben " "sein" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:757 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:745 msgid "junctions.internal-link-detail must >= 2" msgstr "unctions.internal-link-detail muss >= 2" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:762 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:750 msgid "" "Option 'junctions.scurve-stretch' requires internal lanes to work. Option '--" @@ -6089,6 +7386,7 @@ "Die Option 'junctions.scurve-stretch' erfordert, dass interne Fahrstreifen " "arbeiten. Option '--no-internal-links' wird deaktiviert." +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:769 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:757 msgid "" "option 'default.junctions.radius' is smaller than option 'junctions.small-" @@ -6097,35 +7395,43 @@ "Option 'default.junctions.radius' ist kleiner als Option 'junctions.small-" "radius'" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:777 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:765 msgid "tls.layout must be 'opposites', 'incoming' or 'alternateOneWay'" msgstr "" "LSA-Layout muss entweder 'opposites', 'incoming' oder 'alternateOneWay' sein" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:782 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:770 msgid "default.right-of-way must be one of '%'" msgstr "default.right-of-way muss einer von '%' sein" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:786 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:774 msgid "roundabouts.visibility-distance must be positive or -1" msgstr "roundabouts.visibility-distance muss positiv oder -1 sein" +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:802 #: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:790 msgid "Unknown value for default.spreadtype '%'." msgstr "Unbekannter Wert für default.spreadtype '%'." +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:88 #: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:88 msgid "Cannot supply height since no height data was loaded" msgstr "Höhe kann nicht angegeben werden, da keine Höhendaten geladen wurden" +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:136 #: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:136 msgid "Could not get height data for coordinate %" msgstr "Keine Höhendaten für Koordinate % bekommen" +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:190 #: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:190 msgid "Could not open shape file '%'." msgstr "Shape-Datei '%' konnte nicht geöffnet werden." +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:204 #: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:204 msgid "" "Could not create geocoordinates converter; check whether proj.4 is installed." @@ -6133,65 +7439,79 @@ "Konnte Geokoordinaten-Konvertierer nicht erstellen; prüfe ob proj.4 " "installiert ist." +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:231 #: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:231 msgid "Ignored heightmap feature type %" msgstr "Höhenkarten-Eigenschafts-Typ % ignoriert" +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:276 #: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:276 msgid "Cannot load shape file since SUMO was compiled without GDAL support." msgstr "" "Shape-Datei konnte nicht geladen werden, da SUMO ohne GDAL Unterstützung " "kompiliert wurde." +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:288 #: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:288 msgid "Cannot load GeoTIFF file." msgstr "GeoTIFF-Datei kann nicht geladen werden." +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:303 #: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:303 msgid "Could not parse geo information from %." msgstr "Geoinformationen von % konnten nicht eingelesen werden." +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:312 #: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:312 msgid "Unknown color band in %." msgstr "Unbekannten Farbband in %." +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:319 #: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:319 msgid "Failure in reading %." msgstr "Fehler beim Lesen von %." +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:348 #: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:348 msgid "Cannot load GeoTIFF file since SUMO was compiled without GDAL support." msgstr "" "GeoTIFF-Datei konnte nicht geladen werden, da SUMO ohne GDAL Unterstützung " "kompiliert wurde." +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:89 #: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:89 msgid "Could not load names of edges too keep from '%'." msgstr "" "Konnte Namen von Kanten, die von '%' ferngehalten werden sollen nicht laden." +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:107 #: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:107 msgid "Could not load IDs from '%'." msgstr "IDs von '%' konnten nicht geladen werden." +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:123 #: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:123 msgid "Invalid lane id '%' (missing '_')." msgstr "Ungültige Fahrstreifen ID '%' ('_' fehlt)." +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:130 #: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:130 msgid "Invalid lane index '%' for lane '%'." msgstr "Ungültiger Fahrstreifenindex '%' für Fahrstreifen '%'." +#: D:\Repos\sumo/src\netbuild\NBLoadedSUMOTLDef.cpp:359 #: /home/micha/programming/sumo/src/netbuild/NBLoadedSUMOTLDef.cpp:359 #, c-format msgid "Could not patch tlLogic '%' for changed crossings" msgstr "" "LSA-Logik '%' konnte nicht ausgebessert werden für veränderte Fußgängerfurten" +#: D:\Repos\sumo/src\netbuild\NBLoadedSUMOTLDef.cpp:889 #: /home/micha/programming/sumo/src/netbuild/NBLoadedSUMOTLDef.cpp:889 msgid "Unused state in tlLogic '%', program '%' at tl-index %" msgstr "Ungenutzter Stand in LSA-Logik '%', Programm '%' beim LSA-Index %" +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:83 #: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:83 msgid "" "TYellow of signal group '%' was less than the computed one; patched (was:%, " @@ -6200,255 +7520,315 @@ "Gelb der Signalgruppe '%' war kleiner als die berechnete; eingesetzt (war:%, " "ist:%)" +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:300 #: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:300 msgid "During computation of traffic light '%'." msgstr "Während der Berechnung von LSA '%'." +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:514 #: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:514 msgid "Could not set signal on connection (signal: %, group: %)" msgstr "Konnte kein Signal für Verbindung anwenden (Signal: %, Gruppe: %)" +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:612 #: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:612 msgid "myNeedsContRelation was not propperly initialized\n" msgstr "myNeedsContRelation wurde nicht richtig initialisiert\n" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:94 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:94 msgid "Removing self-loops" msgstr "Entferne Kanten mit identischem Anfangs- und Endknotenpunkt" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:98 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:98 msgid "Finding isolated roads" msgstr "Finde isolierte Straßen" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:103 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:103 msgid "Finding largest components" -msgstr "Finde größten Komponenten" +msgstr "Suche nach den größten Komponenten" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:110 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:110 msgid "Removing unwished edges" msgstr "Entferne unerwünschte Kanten" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:117 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:117 msgid "Processing public transport stops" msgstr "Verarbeitung ÖV-Haltestellen" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:132 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:132 msgid "Revising public transport stops based on pt lines" msgstr "Überarbeitung der ÖV-Haltestellen auf der Grundlage von ÖV-Linien" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:138 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:138 msgid "Cleaning up public transport stops that are not served by any line" msgstr "Entferne ÖV-Haltestellen die von keiner Linie bedient werden" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:144 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:144 #, c-format msgid "Removed % pt stops because they could not be assigned to the network" msgstr "" "% ÖV-Haltestellen entfernt, da sie dem Netz nicht zugeordnet werden konnten" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:149 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:149 msgid "Align pt stop id signs with corresponding edge id signs" msgstr "" "Richten Sie die ÖV-Haltestellen-ID-Schilder an den entsprechenden Kanten-ID-" "Schildern aus" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:186 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:186 msgid "Joining tram edges" msgstr "Vereinige Straßenbahnkanten" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:190 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:190 msgid " Joined % tram edges into roads." msgstr " Vereinige % Straßenbahnkanten in Straßen." +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:228 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:228 msgid "Joining junction clusters" msgstr "Vereinige Knotenpunkt-Ansammlung" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:233 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:233 #, c-format msgid " Joined % junction cluster(s)." msgstr " % Knotenpunkt-Ansammlung(en) vereinigt." +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:236 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:236 msgid "Joining junctions with identical coordinates" msgstr "Vereinige Knotenpunkte mit identischen Koordinaten" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:240 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:240 #, c-format msgid " Joined % junctions." msgstr " % Knotenpunkte vereinigt." +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:245 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:245 msgid "Joining lanes" msgstr "Vereinige Fahrstreifen" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:248 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:248 #, c-format msgid " Joined lanes on % edges." msgstr " An % Kanten Fahrstreifen vereinigt." +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:258 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:258 #, c-format msgid " % nodes removed." msgstr " % Knoten entfernt." +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:278 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:278 msgid "Reducing geometries" msgstr "Reduziere Geometrien" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:285 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:285 msgid "Joining similar edges" msgstr "Vereinige gleiche Kanten" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:295 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:295 msgid "guessing opposite direction edges" msgstr "Erraten von Kanten in entgegengesetzter Richtung" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:301 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:301 msgid "Splitting geometry edges" msgstr "Trenne geometrische Kanten" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:308 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:308 #, c-format msgid " Joined % junctions after splitting geometry." msgstr " % Knotenpunkte nach Trennung der Geometrie vereinigt." +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:313 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:313 msgid "Computing turning directions" msgstr "Berechne Abbiegerichtungen" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:322 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:322 msgid "Assigning nodes to traffic lights" msgstr "Zuweisung von Knoten zu LSAs" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:345 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:345 msgid "Guessing and setting on-/off-ramps" msgstr "Erraten und setzten von Ein- und Ausfahrten" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:361 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:361 msgid "Guessed % bike lanes." msgstr "% Fahrrad-Fahrstreifen geschätzt." +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:372 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:372 #, c-format msgid "Guessed % sidewalks." msgstr "% Seitenwege geschätzt." +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:382 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:382 #, c-format msgid "Remapped % edge IDs and % node IDs." msgstr "% Kanten-IDs und % Knoten-IDs neu zugeordnet." +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:397 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:397 msgid "Sorting nodes' edges" msgstr "Sortiere Knoten-Kanten" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:402 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:402 msgid "Computing node shapes" msgstr "Berechne Knoten-Shapes" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:410 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:410 msgid "Computing edge shapes" msgstr "Berechne Kanten-Shapes" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:423 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:423 msgid "Applying speed modifications" msgstr "Anwendung von Geschwindigkeitsmodifikationen" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:436 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:436 msgid "Computing node types" msgstr "Berechne Knotentypen" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:447 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:447 #, c-format msgid "Guessed % pedestrian crossings." msgstr "% Fußgängerfurten geschätzt." +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:475 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:475 msgid "Computing priorities" msgstr "Berechne Vorränge" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:479 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:479 msgid "Computing approached edges" msgstr "Berechne angefahrene Kanten" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:484 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:484 msgid "Guessing and setting roundabouts" msgstr "Schätze und setze Kreisverkehre" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:487 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:487 msgid " Guessed % roundabout(s)." msgstr " % Kreisverkehr(e) geschätzt." +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:493 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:493 msgid "Computing approaching lanes" msgstr "Berechne Annäherungs-Fahrstreifen" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:497 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:497 msgid "Dividing of lanes on approached lanes" msgstr "Aufteilung der Fahrstreifen auf annähernden Fahrstreifen" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:503 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:503 msgid "Guessing Network fringe" msgstr "Netzrand erraten" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:506 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:506 #, c-format msgid " Guessed % fringe nodes." msgstr " % Randkanten vermutet." +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:511 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:511 msgid "Processing turnarounds" msgstr "Bearbeitung von Kehrtwenden" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:529 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:529 msgid "Rechecking of lane endings" msgstr "Nachkontrolle der Fahrstreifenenden" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:551 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:551 msgid "Joining traffic light nodes" msgstr "Vereinige LSA-Knoten" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:558 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:558 msgid "Computing traffic light control information" msgstr "Berechnung von LSA Kontrollinformation" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:565 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:565 msgid "Computing node logics" msgstr "Berechne Knotenlogiken" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:570 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:570 msgid "Computing traffic light logics" msgstr "Berechne LSA-Logiken" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:577 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:577 msgid " % traffic light(s) %computed." msgstr " % LSA(s) % berechnet." +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:588 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:585 msgid "Building inner edges" msgstr "Erstelle interne Kanten" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:601 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:598 msgid "stretching junctions to smooth geometries" msgstr "Strecken von Knotenpunkten zu glatten Geometrien" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:630 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:627 msgid "Generating street signs" msgstr "Generiere Straßenzeichen" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:641 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:638 msgid "Checking overlapping edges" msgstr "Überprüfe überlappende Kanten" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:646 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:643 msgid "Checking edge grade" msgstr "Prüfe Kantengrad" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:661 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:658 msgid "Find accesses for pt rail stops" msgstr "Finde Zugänge zu Bahnhaltestellen" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:684 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:681 msgid "" "Network contains very large coordinates and will probably flicker in the " @@ -6459,52 +7839,64 @@ "flackern. Suche nach Außenknoten und stellen sicher, dass das Netz zum " "Koordinatenursprung verschoben ist" +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:691 #: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:688 msgid "Moving network to origin" msgstr "Verschiebe Netz zum Ursprung" +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:299 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:321 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:299 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:321 msgid "Invalid node id '%'." msgstr "Ungültige Knoten-ID '%'." +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:465 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:465 msgid " Removing self-looping edge '%'" msgstr " Entferne Kante '%' wegen identischem Anfangs- und Endknotenpunkt" +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:744 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:744 msgid "Could not compute indirect left turn shape at node '%'" msgstr "" "Shape der indirekten Linkskurve am Knoten '%' konnte nicht berechnet werden" +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:760 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:760 #, c-format msgid "Connection '%' starts at a non-existant lane." msgstr "Verbindung '%' startet an einen nicht existierenden Fahrstreifen." +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:763 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:763 #, c-format msgid "Connection '%' targets a non-existant lane." msgstr "Verbindung '%' zielt einen nicht existierenden Fahrstreifen an." +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:777 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:795 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:777 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:795 msgid "Could not use custom shape for connection %." msgstr "" "Benutzerdefinierte Shape konnte nicht für die Verbindung % genutzt werden." +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:786 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:786 msgid "Custom shape has distance % to incoming lane for connection %." msgstr "" "Benutzerdefinierter Shape liegt % entfernt vom Eingangsfahrstreifen der " "Verbindung %." +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:803 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:803 msgid "Custom shape has distance % to outgoing lane for connection %." msgstr "" "Benutzerdefiniertes Shape hat einen Abstand von % zum abgehenden " "Fahrstreifen für Verbindung %." +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1003 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1003 msgid "" "Junction '%' is too complicated (% connections, max %); will be set to %." @@ -6512,20 +7904,24 @@ "Knotenpunkt '%' ist zu kompliziert (% Verbindungen, max %); wird auf % " "gesetzt." +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1144 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1144 #, c-format msgid "Shape for junction '%' has distance % to its given position." msgstr "" "Shape vom Knotenpunkt '%' hat die Distanz % zu seiner gegebenen Position." +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1148 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1148 msgid "For junction '%': could not compute shape." msgstr "Für Knotenpunkt '%': Shape konnte nicht berechnet werden." +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1850 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1852 msgid "Something went wrong during the building of a connection..." msgstr "Etwas ist schiefgegangen bei der Erstellung einer Verbindung..." +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:2878 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:2871 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (no " @@ -6534,6 +7930,7 @@ "Ungültige Fußgängerfurt '%' am Knotenpunkt '%' mit Kanten [%] wird verworfen " "(keine walkingArea gefunden)." +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3054 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3047 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (no vehicle " @@ -6542,6 +7939,7 @@ "Ungültige Fußgängerfurt '%' am Knotenpunkt '%' mit Kanten [%] wird verworfen " "(kein Fahrzeug-Fahrstreifen zum überqueren)." +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3073 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3066 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (invalid " @@ -6550,6 +7948,7 @@ "Ungültige Fußgängerfurt '%' am Knotenpunkt '%' mit Kanten [%] wird verworfen " "(ungültige Shape)." +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3224 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3217 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' targets '%' and " @@ -6558,6 +7957,7 @@ "Ungültige Fußgänger-Topologie am Knotenpunkt '%'; Fußgängerfurt '%' zielt " "auf '%' und '%'." +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3247 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3240 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' is targeted by '%' " @@ -6566,6 +7966,7 @@ "Ungültige Fußgänger-Topologie am Knotenpunkt '%'; Fußgängerfurt '%' zielt " "durch '%' und '%'." +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3252 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3245 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' starts and ends at " @@ -6574,32 +7975,40 @@ "Ungültige Fußgänger-Topologie am Knotenpunkt '%'; Fußgängerfurt '%' startet " "und endet an der walkingArea '%'." +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3472 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3465 msgid "Invalid pedestrian topology: crossing '%' across [%] has no target." msgstr "" "Ungültige Fußgänger-Topologie: Fußgängerfurt '%' über [%] hat kein Ziel." +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3692 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3685 msgid "Request for unknown crossing '%'" msgstr "Anfrage nach einer unbekannten Fußgängerfurt '%'" +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3708 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3719 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3701 #: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3712 msgid "Request for unknown crossing for the given Edges" msgstr "Anfrage nach einer unbekannten Fußgängerfurt für die gegebenen Kanten" +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:319 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:319 msgid "Removed a road without junctions: %." msgstr "Straße ohne Knotenpunkte wurde entfernt: %." +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:406 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:406 msgid "Found % components and removed % (% edges)." msgstr "% Komponenten gefunden und % entfernt (% Kanten)." +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:447 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:447 msgid "Removed % railway components (% edges)." msgstr "% Bahnkomponenten entfernt (% Kanten)." +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:663 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:658 #, c-format msgid "" @@ -6609,6 +8018,7 @@ "Ignoriere Vereinigungsausschluss für den Knotenpunkt '%', da er bereits in " "einer Liste von zu vereinigenden Knoten enthalten ist." +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:696 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:691 msgid "" "Ignoring join-cluster because junction '%' was already excluded from joining." @@ -6616,6 +8026,7 @@ "Vereinigungs-Gruppe wird ignoriert, da der Knotenpunkt '%' bereits von einer " "Vereinigung ausgeschlossen wurde." +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:699 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:694 #, c-format msgid "" @@ -6625,19 +8036,27 @@ "Vereinigungs-Gruppe wird ignoriert, da der Knotenpunkt '%' bereits in einer " "anderen Vereinigungs-Gruppe aufgetreten ist." +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:705 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:700 #, c-format msgid "Unknown junction '%' in join-cluster." msgstr "Unbekannter Knotenpunkt '%' in der Vereinigungs-Gruppe." +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:713 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:708 msgid "Ignoring join-cluster '%' because it has size '%'." msgstr "Ignoriere Vereinigungs-Gruppe '%', da sie eine Größe von '%' hat." +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:727 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:722 msgid "unknown junction '%' while joining." msgstr "unbekannter Knotenpunkt '%' beim Vereinigen." +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:785 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:826 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:833 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:838 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:845 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:780 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:821 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:828 @@ -6646,19 +8065,24 @@ msgid "Not joining junctions % (%)." msgstr "Keine vereinigten Knotenpunkte % (%)." +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:805 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:819 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:800 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:814 msgid "Reducing junction cluster % (%)." msgstr "Reduziere Knotenpunkt-Gruppe % (%)." +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1714 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1709 msgid "Could not join junctions %." msgstr "Knotenpunkte % konnten nicht vereinigt werden." +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1956 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1909 msgid "Ambiguous traffic light type for node cluster '%', setting to '%'." msgstr "Mehrdeutiger LSA-Typ für Knoten-Gruppe '%', setze auf '%'." +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2052 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2005 #, c-format msgid " The junction '%' to set as not-controlled is not known." @@ -6666,49 +8090,61 @@ " Der Knotenpunkt '%' der als nicht kontrolliert gesetzt ist, ist nicht " "bekannt." +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2221 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2174 msgid "Could not build joined tls '%'." msgstr "Konnte keine vereinigte LSA '%' erstellen." +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2266 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2219 msgid "Could not build guessed, joined tls." msgstr "Konnte vermutete vereinigte LSA nicht erstellen." +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2382 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2335 msgid "Could not build a joined tls." msgstr "Konnte nicht eine vereinigte LSA erstellen." +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2399 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2352 msgid "Building a tl-logic for junction '%' twice is not possible." msgstr "" "Das Erstellen einer doppelten LSA-Logik für den Knotenpunkt '%' ist nicht " "möglich." +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2481 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2573 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2434 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2526 msgid "-----------------------------------------------------" msgstr "-----------------------------------------------------" +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2482 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2435 msgid "Summary:" msgstr "Zusammenfassung:" +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2540 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2493 msgid " Node type statistics:" msgstr " Knotentyp-Statistiken:" +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2569 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2522 msgid " Network boundaries:" msgstr " Netz-Grenzen:" +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2602 #: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2555 msgid "Attempt to rename node using existing id '%'" msgstr "Versuche den Knoten mit einer existierenden ID '%' umzubenennen" +#: D:\Repos\sumo/src\netbuild\NBNodeShapeComputer.cpp:444 #: /home/micha/programming/sumo/src/netbuild/NBNodeShapeComputer.cpp:441 msgid "Fixing offset for edge '%' at node '%." msgstr "Repariere Versatz für Kante '%' am Knoten '%'." +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:561 #: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:561 #, c-format msgid "" @@ -6718,6 +8154,7 @@ "Geringes Grün von Kante '%' zu Kante '%' überschreitet %m/s. Vielleicht " "fehlt eine Linksabbiege-Fahrstreifen." +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:773 #: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:773 msgid "" "Generating NEMA phases is not support for traffic light '%' with % incoming " @@ -6726,45 +8163,55 @@ "Das Generieren von NEMA-Phasen wird für die LSA '%' mit % eingehenden Kanten " "nicht unterstützt. Verwenden von LSA-Typ 'actuated' als Rückfallebene" +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:799 #: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:799 msgid "The traffic light '%' cannot be adapted to a cycle time of %." msgstr "Die LSA '%' kann nicht auf eine Umlaufzeit von % angepasst werden." +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:818 #: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:818 msgid "The traffic light '%' has a high cycle time of %." msgstr "Die LSA '%' hat eine hohe Umlaufzeit von %." +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:197 #: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:197 msgid "Could not retrieve edge '%' for first stop of line '%'." msgstr "" "Kante '%' für den ersten Halt der Linie '%' konnte nicht abgerufen werden." +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:203 #: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:203 msgid "First stop edge '%' is not part of the route of line '%'." msgstr "Erste Haltekante '%' ist kein Part der Route von Linie '%'." +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:227 #: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:227 msgid "Could not retrieve edge '%' for last stop of line '%'." msgstr "" "Die Kante '%' für die letzte Haltestelle der Linie '%' konnte nicht " "abgerufen werden." +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:233 #: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:233 msgid "Last stop edge '%' is not part of the route of line '%'." msgstr "Letzte Haltkante '%' ist kein Part von der Route von Linie '%'." +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:302 #: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:294 msgid "Removed invalid stop '%' from line '%'." msgstr "Ungültiger Halt '%' von Linie '%' entfernt." +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:320 #: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:312 msgid "Removed duplicate stop '%' at area '%' from line '%'." msgstr "Doppelter Halt '%' in der Zone '%' von Linie '%' entfernt." +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:323 #: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:315 msgid "Removed duplicate stop '%' named '%' from line '%'." msgstr "Doppelter Halt '%' mit dem Namen '%' von Linie %' entfernt." +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:99 #: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:99 msgid "" "Cannot revise pt stop localization for pt line '%', which consist of one way " @@ -6773,6 +8220,7 @@ "ÖV-Haltestellen-Lokalisierung für die ÖV-Linie '%' kann nicht überarbeitet " "werden, da diese nur aus einer Richtung besteht. Ignoriere!" +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:103 #: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:103 msgid "" "Cannot revise pt stop localization for pt line '%', which has no route " @@ -6781,6 +8229,7 @@ "ÖV-Haltestellen-Lokalisierung für ÖV-Linie '%' kann nicht überarbeitet " "werden, da diese keine Routenkanten hat. Ignoriere!" +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:122 #: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:122 msgid "" "Cannot assign stop '%' on edge '%' to pt line '%' (wayNodes not found). " @@ -6789,6 +8238,8 @@ "Halt '%' an Kante '%' kann ÖV-Linie '%' nicht zugewiesen werden (Wegknoten " "nicht gefunden). Ignoriere!" +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:137 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:151 #: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:137 #: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:151 msgid "" @@ -6797,16 +8248,19 @@ "ÖV-Halt-Lokalisierung für unvollständige ÖV-Linie '%' kann nicht " "überarbeitet werden. Ignoriere!" +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:162 #: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:162 msgid "Could not re-assign PT stop '%', probably broken osm file." msgstr "" "ÖPNV-Haltestelle '%' konnte nicht neu zugewiesen werden, wahrscheinlich " "defekte OSM-Datei." +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:171 #: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:171 msgid "PT stop '%' has been moved to edge '%'." msgstr "ÖV-Haltstelle '%' ist zur Kante '%' verschoben." +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:243 #: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:243 msgid "" "Could not assign stop '%' to pt line '%' (closest edge '%', distance %). " @@ -6815,22 +8269,26 @@ "Halt '%' konnte ÖV-Linie '%' (nächste Kante '%', Abstand %) nicht zugewiesen " "werden. Ignoriere!" +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:275 #: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:275 msgid "Cannot assign stop % on edge '%' to pt line '%'. Ignoring!" msgstr "" "Halt % an Kante '%' kann ÖV-Linie '%' nicht zugewiesen werden. Ignoriere!" +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:475 #: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:458 msgid "" "Could not determine vehicle class for public transport line of type '%'." msgstr "Fahrzeugklasse für ÖV-Linie vom Typ '%' konnte nicht bestimmt werden." +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:540 #: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:523 msgid "Could not determine direction for line '%' at stop '%'." msgstr "" "Die Richtung für die Linie '%' an der Haltestelle '%' konnte nicht bestimmt " "werden." +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:110 #: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:110 msgid "" "Could not find corresponding edge or compatible lane for pt stop '%' (%). " @@ -6839,6 +8297,7 @@ "Es konnte keine entsprechende Kante oder kompatibler Fahrstreifen für die ÖV-" "Haltestelle '%' (%) gefunden werden. Somit wird es entfernt!" +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:136 #: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:136 msgid "" "Could not create reverse-direction stop for superposed edge '%' (origStop " @@ -6848,25 +8307,30 @@ "konnte nicht erstellt werden. Halt-ID '%' wird bereits vom Halt an Kante '%' " "verwendet." +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:170 #: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:170 #, c-format msgid "Added % stops for superposed rail edges." msgstr "% Halte für übereinander liegende Schienenkanten hinzugefügt." +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:272 #: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:272 msgid "Could not determine cross product for edge '%'." msgstr "Kreuzprodukt für Kante '%' konnte nicht bestimmt werden." +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:326 #: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:326 msgid "Removing pt stop '%' on non existing edge '%'." msgstr "Entferne ÖV-Halt '%' auf der nicht existierenden Kante '%'." +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:357 #: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:357 msgid "Could not re-assign pt stop '%' after replacing edge '%'." msgstr "" "ÖV-Halt '%' konnte nicht neu zugewiesen werden, nachdem Kante '%' ersetzt " "wurde." +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:446 #: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:446 msgid "" "Could not find corresponding edge or compatible lane for free-floating pt " @@ -6875,52 +8339,70 @@ "Die entsprechende Kante oder kompatibler Fahrstreifen für den " "freischwebenden ÖV-Halt '%' (%) konnte nicht gefunden werden. Wird entfernt!" +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:44 #: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:44 #, c-format msgid "Ignoring parking area on edge '%' due to invalid permissions." msgstr "Ignoriere Parkplatz an Kante '%' aufgrund ungültiger Berechtigungen." +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:51 #: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:51 #, c-format msgid "Ignoring parking area on edge '%' due to insufficient space." msgstr "Ignoriere Parkplatz an Kante '%' wegen unzureichendem Platz." +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:71 #: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:71 msgid "Could not find edge for parkingArea '%'." msgstr "Konnte Kante für Parkplatz '%' nicht finden." +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:115 #: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:115 #, c-format msgid "The traffic light '%' does not control any links; it will not be build." msgstr "Die LSA '%' kontrolliert keine Verknüpfungen; sie wird nicht erstellt." +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:229 #: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:229 msgid "Unreachable edge '%' within tlLogic '%'" msgstr "Nicht erreichbare Kante '%' innerhalb der LSA-Logik '%'" +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:509 #: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:509 #, c-format msgid "The rail crossing '%' does not have any roads." msgstr "Der Bahnübergang '%' hat keine Straßen." +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogic.cpp:100 #: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogic.cpp:100 #, c-format msgid "When adding phase: illegal character '%' in state" msgstr "Beim Hinzufügen einer Phase: illegales Zeichen '%' im Stand" +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogic.cpp:233 #: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogic.cpp:233 #, c-format msgid "Non-static traffic light '%' does not define variable phase length." msgstr "Nicht statische LSA '%' darf keine variable Phasenlängen definieren." +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:243 #: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogicCont.cpp:235 msgid "Could not build program '%' for traffic light '%'" msgstr "Konnte Programm '%' für die LSA '%' nicht erstellen" +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:384 #: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogicCont.cpp:376 msgid "Guessing signalID for link index % at traffic light '%'." msgstr "Errate Signal-ID für den Linkindex % an der LSA '%'." +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:491 +#, c-format +msgid "" +"Was not able to apply the OpenDRIVE signal group information onto the signal " +"program of traffic light % generated by SUMO." +msgstr "" + +#: D:\Repos\sumo/src\netconvert_main.cpp:98 #: /home/micha/programming/sumo/src/netconvert_main.cpp:97 msgid "" "Network importer / builder for the microscopic, multi-modal traffic " @@ -6929,16 +8411,21 @@ "Netzimport / Netzaufbau für die mikroskopische, multimodale " "Verkehrssimulation sumo." +#: D:\Repos\sumo/src\netconvert_main.cpp:121 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:273 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:93 #: /home/micha/programming/sumo/src/netconvert_main.cpp:120 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:273 #: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:93 msgid "Could not build projection!" msgstr "Projektion konnte nicht erstellt werden!" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:41 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:41 msgid "Read edge-type defs from FILE" msgstr "Kantentypdefinitionen aus FILE lesen" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:44 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:44 msgid "" "The Ids of generated nodes use an alphanumerical code for easier readability " @@ -6947,15 +8434,18 @@ "Die IDs der generierten Knoten verwenden nach Möglichkeit einen " "alphanumerischen Code für eine einfachere Lesbarkeit" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:48 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:48 msgid "Generate INT left-turn lanes" msgstr "INT Linksabbiegefahrstreifen generieren" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:50 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:50 msgid "Set the length of generated turning lanes to FLOAT" msgstr "" "Die Länge der generierten Abbiegefahrstreifen auf einen FLOAT festlegen" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:53 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:53 msgid "" "Apply random spatial perturbation in x direction according the the given " @@ -6964,6 +8454,7 @@ "Eine zufällige räumliche Störung in x-Richtung gemäß der angegebenen " "Verteilung anwenden" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:55 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:55 msgid "" "Apply random spatial perturbation in y direction according the the given " @@ -6972,6 +8463,7 @@ "Eine zufällige räumliche Störung in y-Richtung gemäß der angegebenen " "Verteilung anwenden" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:57 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:57 msgid "" "Apply random spatial perturbation in z direction according the the given " @@ -6980,54 +8472,65 @@ "Eine zufällige räumliche Störung in z-Richtung gemäß der angegebenen " "Verteilung anwenden" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:63 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:63 -#, fuzzy msgid "Defines the probability to build a reverse edge" -msgstr "Definiert die Wahrscheinlichkeit, eine Umkehrkante zu bilden" +msgstr "" +"Definiert die Wahrscheinlichkeit, eine Kante für die Gegenrichtung zu " +"erstellen" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:67 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:67 -#, fuzzy msgid "Draw lane numbers randomly from [1,default.lanenumber]" -msgstr "Fahrstreifennummern zufällig aus [1,default.lanenumber] zeichnen" +msgstr "Fahrstreifenanzahl zufällig aus [1,default.lanenumber] ziehen" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:71 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:71 -#, fuzzy msgid "Draw edge priority randomly from [1,default.priority]" -msgstr "Kantenpriorität zufällig aus [1,default.priority] zeichnen" +msgstr "Kantenpriorität zufällig aus [1,default.priority] ziehen" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:74 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:74 -#, fuzzy msgid "Draw edge type randomly from all loaded types" -msgstr "Kantentyp zufällig aus allen geladenen Typen zeichnen" +msgstr "Kantentyp zufällig aus allen geladenen Typen ziehen" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:80 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:80 msgid "Forces NETGEN to build a grid-like network" msgstr "Zwingt NETGEN, ein rasterähnliches Netz aufzubauen" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:85 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:85 msgid "The number of junctions in both dirs" msgstr "Die Anzahl an Knotenpunkten in beide Richtungen" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:90 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:90 msgid "The length of streets in both dirs" msgstr "Die Länge der Straßen in beide Richtungen" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:95 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:95 msgid "The number of junctions in x-dir; Overrides --grid-number" msgstr "Die Anzahl der Knotenpunkte in x-Richtung; Überschreibt --grid-number" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:100 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:100 msgid "The number of junctions in y-dir; Overrides --grid-number" msgstr "Die Anzahl der Knotenpunkte in y-Richtung; Überschreibt --grid-number" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:105 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:105 msgid "The length of horizontal streets; Overrides --grid-length" msgstr "Die Länge der horizontalen Straßen; Überschreibt --grid-length" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:110 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:110 msgid "The length of vertical streets; Overrides --grid-length" msgstr "Die Länge der vertikalen Straßen; Überschreibt --grid-length" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:114 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:147 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:114 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:147 msgid "" @@ -7037,6 +8540,7 @@ "Die Länge der an der Grenze angeschlossenen Straßen; 0 bedeutet, dass keine " "Straßen angeschlossen sind" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:117 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:117 msgid "" "The length of streets attached at the boundary in x direction; 0 means no " @@ -7045,6 +8549,7 @@ "Die Länge der Straßen, die an der Grenze in x-Richtung angeschlossen sind; 0 " "bedeutet, dass keine Straßen angeschlossen sind" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:119 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:119 msgid "" "The length of streets attached at the boundary in y direction; 0 means no " @@ -7053,98 +8558,121 @@ "Die Länge der an der Grenze in y-Richtung angeschlossenen Straßen; 0 " "bedeutet, dass keine Straßen angeschlossen sind" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:124 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:124 msgid "Forces NETGEN to build a spider-net-like network" msgstr "Zwingt NETGEN, ein Spinnennetz ähnliches Netz aufzubauen" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:129 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:129 msgid "The number of axes within the net" msgstr "Die Anzahl der Achsen innerhalb des Netzes" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:134 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:134 msgid "The number of circles of the net" msgstr "Die Anzahl der Kreise des Netzes" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:139 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:139 msgid "The distances between the circles" msgstr "Die Distanz zwischen Kreisen" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:144 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:144 msgid "Omit the central node of the network" msgstr "Den zentralen Knoten des Netzes weglassen" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:152 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:152 msgid "Forces NETGEN to build a random network" msgstr "Zwingt NETGEN, ein zufälliges Netz aufzubauen" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:157 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:157 msgid "Describes how many times an edge shall be added to the net" msgstr "Beschreibt, wie oft eine Kante zum Netz hinzugefügt werden soll" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:162 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:162 msgid "The maximum distance for each edge" msgstr "Die maximale Distanz für jede Kante" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:167 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:167 msgid "The minimum distance for each edge" msgstr "Die minimale Distanz für jede Kante" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:172 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:172 -#, fuzzy msgid "The minimum angle for each pair of (bidirectional) roads in DEGREES" -msgstr "Das minimale angle für jedes Paar von (Zweirichtungs-) Straßen in Grad" +msgstr "" +"Der minimale Winkel für jedes Paar von (Zweirichtungs-) Straßen in Grad" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:177 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:177 msgid "The number of tries for creating each node" msgstr "Die Anzahl der Versuche zum Erstellen jedes Knotens" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:182 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:182 msgid "Probability for roads to continue at each node" msgstr "Wahrscheinlichkeit, dass Straßen an jedem Knoten weitergeführt werden" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:187 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:187 msgid "Probability for a node having exactly 1 neighbor" msgstr "Wahrscheinlichkeit für einen Knoten mit genau einen Nachbarn" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:192 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:192 msgid "Probability for a node having exactly 2 neighbors" msgstr "Wahrscheinlichkeit für einen Knoten mit genau zwei Nachbarn" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:197 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:197 msgid "Probability for a node having exactly 3 neighbors" msgstr "Wahrscheinlichkeit für einen Knoten mit genau drei Nachbarn" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:202 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:202 msgid "Probability for a node having exactly 4 neighbors" msgstr "Wahrscheinlichkeit für einen Knoten mit genau vier Nachbarn" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:207 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:207 msgid "Probability for a node having exactly 5 neighbors" msgstr "Wahrscheinlichkeit für einen Knoten mit genau fünf Nachbarn" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:212 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:212 msgid "Probability for a node having exactly 6 neighbors" msgstr "Wahrscheinlichkeit für einen Knoten mit genau sechs Nachbarn" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:215 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:215 msgid "Place nodes on a regular grid with spacing rand.min-distance" msgstr "" "Knoten auf einem regelmäßigen Raster mit den Abständen rand.min-distance " "platzieren" +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:235 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:235 msgid "You have to specify the type of network to generate." msgstr "Du musst den zu generierenden Netztyp spezifizieren." +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:239 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:239 msgid "You may specify only one type of network to generate at once." msgstr "Du kannst du einen zu generierenden Netztypen angeben." +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:274 #: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:274 msgid "Option 'random-type' takes no effect unless 'type-files' are loaded" msgstr "" "Option 'random-type' hat keinen Effekt ohne das 'type-files' geladen sind" +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:90 #: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:90 msgid "" "[traffic_light|priority|right_before_left|left_before_right|" @@ -7152,18 +8680,24 @@ "junction type (see wiki/Networks/PlainXML#Node_types)" msgstr "" +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:120 #: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:119 msgid "Spider networks need at least 3 arms." msgstr "Spinnennetz benötigt mindestens 3 Arme." +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:124 #: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:123 msgid "Spider networks with many arms should use option spider.omit-center" msgstr "" +"Bei Spinnennetzwerken mit vielen Armen sollte die Option spider.omit-center " +"verwendet werden" +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:127 #: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:126 msgid "Spider networks need at least one circle." msgstr "Spinnennetze benötigen mindestens einen Kreis." +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:135 #: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:134 #, c-format msgid "" @@ -7173,6 +8707,7 @@ "Der Radius von Spinnennetzen solle mindestens % für die gegebene " "Fahrstreifenanzahl, Fahrstreifenbreite und Knotenpunktradius betragen" +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:177 #: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:176 msgid "" "The number of nodes must be positive and at least 2 in one direction if " @@ -7181,6 +8716,7 @@ "Die Anzahl der Knoten muss positiv sein und mindestens 2 in einer Richtung, " "wenn keine Befestigungen vorhanden sind." +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:185 #: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:184 #, c-format msgid "" @@ -7190,6 +8726,8 @@ "Der Abstand zwischen den Knoten sollte mindestens % für die gegebene " "Fahrstreifennummer, Fahrstreifenbreite und den Knotenpunktradius betragen" +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:191 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:196 #: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:190 #: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:195 #, c-format @@ -7200,6 +8738,7 @@ "Die Länge der angeschlossenen Straßen sollte mindestens % für die gegebene " "Fahrstreifennummer, Fahrstreifenbreite und den Knotenpunktradius betragen" +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:231 #: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:230 msgid "" "Synthetic network generator for the microscopic, multi-modal traffic " @@ -7208,65 +8747,80 @@ "Generator synthetischer Netze für die mikroskopische, multimodale " "Verkehrssimulation sumo." +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:267 #: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:266 msgid " Generation done;" msgstr " Generierung fertig;" +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:268 #: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:267 #, c-format msgid " % nodes generated." msgstr " % Knoten generiert." +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:269 #: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:268 #, c-format msgid " % edges generated." msgstr " % Kanten generiert." +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:274 #: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:273 msgid " Removed % traffic lights at geometry-like nodes" msgstr " % LSAs am geometrieähnlichen Knoten entfernt" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:53 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:53 msgid "Read SUMO-net from FILE" msgstr "SUMO-Netz aus FILE lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:60 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:60 msgid "Read XML-node defs from FILE" msgstr "XML-Knotendefinitionen aus FILE lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:66 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:66 msgid "Read XML-edge defs from FILE" msgstr "XML-Kantendefinitionen aus FILE lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:72 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:72 msgid "Read XML-connection defs from FILE" msgstr "XML-Verbindungsdefinitionen aus FILE lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:75 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:75 msgid "Read XML-traffic light defs from FILE" msgstr "XML-LSA-Definitionen aus FILE lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:81 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:81 msgid "Read XML-type defs from FILE" msgstr "XML-Typdefinitionen aus FILE lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:86 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:86 msgid "Reads public transport stops from FILE" msgstr "Liest ÖV-Haltepunkte aus FILE" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:88 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:88 msgid "Reads public transport lines from FILE" msgstr "Liest ÖV-Linien aus FILE" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:90 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:90 msgid "Reads polygons from FILE for embedding in network where applicable" msgstr "Liest Polygone aus FILE, um sie ggf. in ein Netzwerk einzubetten" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:97 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:97 msgid "Read shapefiles (ArcView, Tiger, ...) from files starting with 'FILE'" msgstr "" "Shape-Dateien (ArcView, Tiger, ...) aus Dateien die mit 'FILE' beginnen lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:102 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:102 msgid "" "Read converted Navteq GDF data (unsplitted Elmar-network) from path 'FILE'" @@ -7274,65 +8828,81 @@ "Konvertierte Navteq GDF-Daten (ungesplittetes Elmar-Netz) aus Pfad 'FILE' " "lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:106 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:106 msgid "Read OSM-network from path 'FILE(s)'" msgstr "OSM-Netz aus Pfad 'FILE(s)' lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:110 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:110 msgid "Read OpenDRIVE-network from FILE" msgstr "OpenDRIVE-Netz aus FILE lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:114 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:114 msgid "Read VISUM-net from FILE" msgstr "VISUM-Netz aus FILE lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:118 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:118 msgid "Read VISSIM-net from FILE" msgstr "VISSIM-Netz aus FILE lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:123 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:123 msgid "Read RoboCup-net from DIR" msgstr "RoboCup-Netz aus DIR lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:127 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:127 msgid "Read MATsim-net from FILE" msgstr "MATsim-Netz aus FILE lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:131 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:131 msgid "Read ITSUMO-net from FILE" msgstr "ITSUMO-Netz aus FILE lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:134 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:134 msgid "Read heightmap from ArcGIS shapefile" msgstr "Höhenkarte aus ArcGIS-Shapefile lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:137 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:137 msgid "Read heightmap from GeoTIFF" msgstr "Höhenkarte von GeoTIFF lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:145 +#: D:\Repos\sumo/src\od2trips_main.cpp:159 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:199 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:145 #: /home/micha/programming/sumo/src/od2trips_main.cpp:159 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:199 msgid "Continue on broken input" msgstr "An gesprochener Eingabe fortfahren" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:148 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:148 msgid "Continue on invalid connections" msgstr "An ungültigen Verbindungen fortfahren" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:151 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:151 msgid "Show errors in connections at parsing" msgstr "Fehler in Verbindungen beim Einlesen anzeigen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:154 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:154 msgid "Continue on unknown edge types" msgstr "Mit unbekannten Kantentypen fortfahren" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:157 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:157 -#, fuzzy msgid "vmax is parsed as given in km/h" -msgstr "maximale Geschwindigkeit wurde in km/h eingelesen" +msgstr "maximale Geschwindigkeit wird in km/h eingelesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:160 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:160 msgid "" "Use YYYY-MM-DD date to determine the readiness of features under construction" @@ -7340,15 +8910,17 @@ "JJJJ-MM-TT Datumsdarstellung um die Bereitschaft der im Bau befindlichen " "Funktionen zu bestimmen verwenden" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:163 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:163 msgid "Remove all z-data" msgstr "Alle z-Daten entfernen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:166 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:166 -#, fuzzy msgid "Remove the list of keys from all params" -msgstr "Die Schlüsselliste für alle Parameter entfernen" +msgstr "Alle in der Liste angegebenen Schlüssel aus den Parametern entfernen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:169 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:169 msgid "" "List vehicle classes that may ignore lane changing restrictions ('all' " @@ -7357,18 +8929,22 @@ "Fahrzeugklassen auflisten, die Fahrstreifenwechselbeschränkungen ignorieren " "können ('alle' verwirft alle Beschränkungen)" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:174 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:174 msgid "If edge shapes do not end at the node positions, extend them" msgstr "Wenn Kantenshapes nicht an den Knotenpositionen enden, verlängre sie" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:178 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:178 msgid "Skips the check for duplicate nodes and edges" msgstr "Überspringt die Prüfung auf doppelte Knoten und Kanten" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:181 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:181 msgid "Imports elevation data" msgstr "Importiert Höhendaten" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:184 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:184 msgid "" "Reconstruct (relative) elevation based on layer data. Each layer is raised " @@ -7377,6 +8953,7 @@ "Rekonstruiert (relative) Höhen basierend auf Layer-Daten. Jede Schicht wird " "um den FLOAT in m angehoben" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:187 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:187 #, c-format msgid "" @@ -7386,54 +8963,64 @@ "Schwellwert der maximalen Steigung in % bei 50 km/h bei Höhenrekonstruktion " "aus Layerdaten. Der Wert wird entsprechend der Fahrgeschwindigkeit skaliert." +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:190 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:190 msgid "Whether one-way roads should be spread to the side instead of centered" msgstr "Ob Einbahnstraßen zur Seite gespreizt statt zentriert werden sollen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:193 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:193 msgid "Import lane-specific access restrictions" msgstr "Fahrstreifenspezifische Zugangsbeschränkungen importieren" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:197 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:197 -#, fuzzy msgid "Import bike lanes and fix directions and permissions on bike paths" msgstr "" -"Radwege und Wegbeschreibungen und Genehmigungen auf Radwegen festlegen " -"importieren" +"Radwege importieren und Fahrtrichtungen und Berechtigungen im Radnetz " +"korrigieren" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:200 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:200 msgid "Import sidewalks" msgstr "Seitenwege importieren" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:203 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:203 msgid "Import crossings" msgstr "Fußgängerfurten importieren" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:206 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:206 -#, fuzzy msgid "Import turning arrows from OSM to help with connection building" -msgstr "Drehpfeile aus OSM, um beim Verbindungsaufbau zu helfen importieren" +msgstr "Abbiegepfeile aus OSM importieren, um beim Verbindungsaufbau zu helfen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:209 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:209 msgid "The default length of a public transport stop in FLOAT m" msgstr "Die Standardlänge einer ÖV-Haltestelle als FLOAT in m" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:211 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:211 msgid "The default length of a bus stop in FLOAT m" msgstr "Die Standardlänge einer Bushaltestelle als FLOAT in m" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:213 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:213 msgid "The default length of a tram stop in FLOAT m" msgstr "Die Standardlänge einer Straßenbahnhaltestelle als FLOAT in m" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:215 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:215 msgid "The default length of a train stop in FLOAT m" msgstr "Die Standardlänge einer Bahnhaltestelle als FLOAT in m" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:219 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:218 msgid "Whether additional attributes shall be imported" msgstr "Ob zusätzliche Attribute importiert werden sollen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:223 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:221 msgid "" "List of additional attributes that shall be imported from OSM via osm.all-" @@ -7442,6 +9029,7 @@ "Liste der zusätzlichen Attribute, die aus OSM über osm.all-attributes " "importiert werden sollen (setze 'all', um alle zu importieren)" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:226 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:224 msgid "" "The speed limit to be set when there is no actual speed limit in reality" @@ -7449,166 +9037,193 @@ "Die einzustellende Geschwindigkeitsbegrenzung, wenn es in Wirklichkeit keine " "tatsächliche Geschwindigkeitsbegrenzung gibt" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:230 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:228 msgid "The edge lengths given in the MATSIM-file will be kept" msgstr "Die in der MATSIM-Datei angegebenen Kantenlängen werden beibehalten" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:233 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:231 msgid "The lane number will be computed from the capacity" msgstr "Die Fahrstreifennummer wird aus der Kapazität berechnet" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:239 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:237 msgid "Read edge ids from column STR" msgstr "Kanten IDs aus Spalte STR lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:243 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:241 msgid "Read from-node ids from column STR" msgstr "Ausgangsknoten IDs aus Spalte STR lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:247 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:245 msgid "Read to-node ids from column STR" msgstr "Endknoten IDs aus Spalte STR lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:251 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:249 msgid "Read type ids from column STR" msgstr "Typen IDs aus Spalte STR lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:254 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:252 msgid "Read lane number from column STR" msgstr "Fahrstreifennummer aus Spalte STR lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:257 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:255 msgid "Read speed from column STR" msgstr "Geschwindigkeit aus Spalte STR lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:260 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:258 msgid "Read custom edge length from column STR" msgstr "Benutzerdefinierte Kantenlänge aus Spalte STR lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:263 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:261 msgid "Read total edge width from column STR" msgstr "Totale Kantenbreite aus Spalte STR lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:266 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:264 -#, fuzzy msgid "Read (non-unique) name from column STR" -msgstr "(nicht einheitlichen) Namen aus Spalte STR lesen" +msgstr "(nicht einzigartigen) Namen aus Spalte STR lesen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:269 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:267 -#, fuzzy msgid "" "Distance threshold for determining whether distinct shapes are connected " "(used when from-id and to-id are not available)" msgstr "" -"Abstandsschwellenwert zum Bestimmen, ob unterschiedliche Shapes verbunden " -"sind (wird verwendet, wenn Ausgangs-ID und End-ID nicht verfügbar sind)" +"Abstandsschwellwert zum Bestimmen, ob separate Shapes verbunden sind (wird " +"verwendet, wenn Ausgangs-ID und End-ID nicht verfügbar sind)" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:272 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:270 msgid "Add the list of field names as edge params" msgstr "Die Liste der Feldnamen als Kantenparameter hinzufügen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:276 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:274 -#, fuzzy msgid "Uses edge type defaults on problems" -msgstr "Nutzt Kantentypstandard bei Problemen" +msgstr "Nutzt Kantentypstandardwerte bei Problemen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:281 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:279 msgid "Insert edges in both directions" msgstr "Kanten in beide Richtungen einfügen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:285 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:283 -#, fuzzy msgid "Guess the proper projection" -msgstr "Die richtige Projektion annehmen" +msgstr "Die richtige Projektion erraten" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:288 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:125 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:286 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:125 msgid "Use traditional axis order (lon, lat)" msgstr "Traditionelle Achsenreihenfolge (länge, breite) verwenden" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:293 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:291 msgid "Allow more vehicle classes by default" msgstr "Standardmäßig mehr Fahrzeugklassen zulassen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:296 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:294 msgid "The edge lengths given in the DLR Navteq-file will be kept" msgstr "" "Die in der DLR Navteq-Datei angegebenen Kantenlängen werden beibehalten" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:302 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:300 -#, fuzzy msgid "Structure join offset" msgstr "Strukturvereinigungsversatz" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:305 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:303 msgid "Use FLOAT as default speed" msgstr "FLOAT als Standardgeschwindigkeit verwenden" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:308 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:306 msgid "Factor for edge velocity" msgstr "Faktor für Kantengeschwindigkeit" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:311 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:309 msgid "Writes lanes without an explicit speed set" msgstr "Schreibt Fahrstreifen ohne explizite Geschwindigkeitseinstellung" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:316 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:95 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:314 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:95 msgid "Load language mappings from FILE" msgstr "Sprachzuordnungen aus FILE laden" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:319 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:317 -#, fuzzy msgid "Uses priorities from types" msgstr "Verwendet Vorränge von Typen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:322 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:320 -#, fuzzy msgid "Uses lane numbers from types" -msgstr "Verwendet Fahrstreifennummern von Typen" +msgstr "Verwendet Fahrstreifenanzahl aus Typen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:325 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:323 -#, fuzzy msgid "Uses speeds from types" -msgstr "Verwendet Geschwindigkeiten von Typen" +msgstr "Verwendet Geschwindigkeiten aus Typen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:328 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:326 -#, fuzzy msgid "Sets connector speed" msgstr "Stellt die Verbindungsgeschwindigkeit ein" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:332 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:330 -#, fuzzy msgid "Sets connector lane number" msgstr "Stellt die Verbindungsfahrstreifennummer ein" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:335 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:333 -#, fuzzy msgid "Excludes connectors" msgstr "Schließt Konnektoren aus" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:339 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:337 msgid "Computes the number of lanes from the edges' capacities" msgstr "Berechnet die Anzahl der Fahrstreifen aus den Kapazitäten der Kanten" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:342 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:340 msgid "Prints all warnings, some of which are due to VISUM misbehaviour" msgstr "" "Gibt alle Warnungen aus, von denen einige auf Fehlverhalten von VISUM " "zurückzuführen sind" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:347 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:345 msgid "The factor for flow to no. lanes conversion" msgstr "Der Faktor zur Ableitung der Fahrstreifenanzahl aus dem Fluss" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:352 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:350 msgid "Imports all lane types" msgstr "Importiert alle Fahrstreifentypen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:354 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:352 msgid "Whether lane widths shall be ignored." msgstr "Ob Kantenbreiten ignoriert werden sollen." +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:356 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:354 msgid "" "The geometry resolution in m when importing curved geometries as line " @@ -7617,6 +9232,7 @@ "Die Geometrieauflösung in m beim Import gekrümmter Geometrien als " "Liniensegmente." +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:358 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:356 msgid "" "Allow stop lines to be built beyond the start of the junction if the " @@ -7625,6 +9241,7 @@ "Den Bau von Haltelinien über den Beginn des Knotenpunkts hinaus, wenn die " "Geometrien dies zulassen erlauben" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:360 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:358 msgid "" "The minimum lane width for determining start or end of variable-width lanes" @@ -7632,31 +9249,40 @@ "Die minimale Fahrstreifenbreite zur Bestimmung des Anfangs oder Endes von " "Fahrstreifen mit variabler Breite" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:362 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:360 msgid "Import internal lane shapes" msgstr "Interne Fahrstreifen-Shapes importieren" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:364 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:362 msgid "Sets edge-id based on road-id and offset in m (legacy)" msgstr "" "Legt die Kanten ID basierend auf der Straßen ID und dem Versatz in m fest " "(Legacy)" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:366 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:364 msgid "Use custom lane shapes to compensate discarded lane types" msgstr "" "Benutzerdefinierte Fahrstreifen-Shapes, um verworfene Fahrstreifentypen zu " "kompensieren verwenden" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:368 +msgid "" +"Use the OpenDRIVE controller information for the generated signal program" +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:379 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:375 -#, fuzzy msgid "" "Discard all railway signal information loaded from other formats than plain-" "xml" msgstr "" "Alle Eisenbahnsignalinformationen, die aus anderen Formaten als plain-XML " -"geladen wurden verwerfen" +"geladen wurden, verwerfen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:400 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:397 msgid "" "Cannot import network data without PROJ-Library. Please install package proj " @@ -7665,38 +9291,48 @@ "Ohne die PROJ-Bibliothek können keine Netzdaten importiert werden. Bitte " "installieren Sie das Paket proj, bevor Sie sumo erstellen" +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:425 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:314 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:422 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:314 msgid "Environment variable SUMO_HOME is not set, using built in type maps." msgstr "" "Umgebungsvariable SUMO_HOME ist nicht gesetzt, nutze eingebaute Typkarten." +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:458 #: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:455 msgid "It is recommend to use option osm.crossings with osm.sidewalks" msgstr "" "Es wird empfohlen die Option osm.crossings mit osm.sidewalks zu verwenden" +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:138 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:139 #: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:138 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:139 msgid "Could not open shape description '%'." msgstr "Shape-Beschreibung '%' konnte nicht geöffnet werden." +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:187 #: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:187 msgid "Needed field '%' (street-id) is missing." msgstr "Benötigtes Feld '%' (Straßen-ID) fehlt." +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:198 #: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:198 msgid "Needed field '%' (from node id) is missing." msgstr "Benötigtes Feld '%' (Ausgangsknoten ID) fehlt." +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:202 #: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:202 msgid "Needed field '%' (to node id) is missing." msgstr "Benötigtes Feld '%' (Endkanten ID) fehlt." +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:218 #: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:218 msgid "Unknown type '%' for edge '%'" msgstr "Unbekannter Typ '%' für Kante '%'" +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:233 #: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:233 #, c-format msgid "" @@ -7706,6 +9342,7 @@ "Erforderliches Feld '%' oder '%' fehlt (Felder hinzufügen oder Option --" "shapefile.use-defaults-on-failure festlegen)." +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:249 #: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:249 msgid "" "Road geometry must be of type 'linestring' or 'linestring25D' (found '%')" @@ -7713,6 +9350,8 @@ "Straßengeometrie muss vom Typ her 'linestring' oder 'linestring25D' sein " "(gefunden '%')" +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:261 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:90 #: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:261 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:90 msgid "No coordinate system found and coordinates look already projected." @@ -7720,11 +9359,18 @@ "Kein Koordinatensystem gefunden und die Koordinaten sehen bereits projiziert " "aus." +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:264 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:93 #: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:264 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:93 msgid "Could not find geo coordinate system, assuming WGS84." msgstr "Kein Geo-Koordinatensystem gefunden, nehme WGS84 an." +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:277 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1562 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:600 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimAbstractEdge.cpp:44 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:171 #: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:277 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1488 #: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:600 @@ -7733,107 +9379,137 @@ msgid "Unable to project coordinates for edge '%'." msgstr "Koordinaten für die Kante '%' können nicht projiziert werden." +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:304 #: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:290 #: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:304 #, c-format msgid "Node '%' could not be added" msgstr "Knoten '%' konnte nicht hinzugefügt werden" +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:312 #: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:312 #, c-format msgid "Edge '%' connects identical nodes, skipping." msgstr "Kante '%' verbindet identische Knoten, überspringe." -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:329 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:329 #, c-format -msgid "Edge '% is not unique." -msgstr "Kante '%' ist nicht einzigartig." +msgid "Edge '%' is not unique." +msgstr "" +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:338 #: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:338 msgid "Edge '%' is not unique. Renaming subsequent edge to '%'." msgstr "Kante '%' ist nicht einzigartig. Umbenennung der Kante zu '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:354 #: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:354 msgid "Could not create edge '%'. An edge with the same id already exists." msgstr "" "Kante '%' konnte nicht erstellt werden. Ein Kante mit der gleichen ID " "existiert bereits." +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:368 #: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:368 msgid "Could not create edge '-%'. An edge with the same id already exists." msgstr "" "Kante '-%' konnte nicht erstellt werden. Ein Kante mit der gleichen ID " "existiert bereits." +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:382 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:331 #: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:382 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:331 msgid "SUMO was compiled without GDAL support." msgstr "SUMO wurde ohne GDAL Unterstützung kompiliert." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:76 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:76 msgid "Loading nodes" msgstr "Lade Knoten" +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:80 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:105 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:80 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:105 #, c-format msgid "The file '%' could not be opened." msgstr "Die Datei '%' konnte nicht geöffnet werden." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:90 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:90 msgid "Loading street names" msgstr "Lade Straßennamen" +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:95 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:95 msgid "Output will not contain street names because the file '%' was not found" msgstr "" "Die Ausgabe enthält keine Straßennamen, da die Datei '%' nicht gefunden wurde" +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:100 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:100 msgid "Loading edges" msgstr "Lade Kanten" +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:114 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:114 msgid "Loading traffic lights" msgstr "Lade LSAs" +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:123 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:123 msgid "Loading prohibited manoeuvres" msgstr "Lade verbotene Manöver" +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:132 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:132 msgid "Loading connected lanes" msgstr "Lade Verbindungsfahrstreifen" +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:141 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:141 msgid "Loading time restrictions" msgstr "Lade Zeitrestriktionen" +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:210 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:210 msgid "Non-numerical value for intermediate status in node %." msgstr "Nicht nummerischer Wert für den Zwischenstand in Knoten %." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:215 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:215 msgid "Non-numerical value for number of geometries in node %." msgstr "Kein nummerischer Wert für die Geometrien in Knoten %." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:222 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:222 msgid "Non-numerical value for x-position in node %." msgstr "Kein nummerischer Wert für die x-Position in Knoten %." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:226 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:226 msgid "Non-numerical value for y-position in node %." msgstr "Kein nummerischer Wert für die y-Position in Knoten %." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:230 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:321 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:230 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:321 msgid "Unable to project coordinates for node %." msgstr "Koordinaten für den Knoten % können nicht projiziert werden." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:240 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:240 msgid "Could not add add node '%'" msgstr "Hinzufügen des Knotens '%' konnte nicht hinzugefügt werden" +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:242 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:267 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:386 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:481 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1424 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:242 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:260 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:379 @@ -7842,30 +9518,40 @@ msgid "Could not add node '%'." msgstr "Knoten '%' konnte nicht hinzugefügt werden." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:299 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:299 msgid "Missing version string in file '%'." msgstr "Fehlender Versions-String in der Datei '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:309 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:309 msgid "Non-numerical value for form_of_way of link '%'." msgstr "Nicht nummerischer Wert für form_of_way vom Link '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:316 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:316 msgid "Non-numerical value for brunnel_type of link '%'." msgstr "Nicht nummerischer Wert für brunnel_type vom Link '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:329 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:329 msgid "Non-numerical value for street_type of link '%')." msgstr "Nicht nummerischer Wert für street_type vom Link '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:351 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:351 msgid "Non-numerical value for the SPEED_RESTRICTION of link '%'." msgstr "Nicht nummerischer Wert für die SPEED_RESTRICTION vom Link '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:366 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:366 msgid "Non-numerical value for the number of lanes of link '%'." msgstr "Nicht nummerischer Wert für die Anzahl von Fahrstreifen vom Link '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:420 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:545 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:603 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:760 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:420 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:538 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:596 @@ -7873,41 +9559,52 @@ msgid "Could not add edge '%'." msgstr "Kante '%' konnte nicht hinzugefügt werden." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:431 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:431 msgid "Missing column %." msgstr "Fehlende Spalte %." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:442 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:442 msgid "Missing optional column % without default value." msgstr "Fehlende optionale Spalte % ohne Standardwert." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:499 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:499 #, c-format msgid "The traffic light edge '%' could not be found." msgstr "Die LSA-Kante '%' konnte nicht gefunden werden." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:511 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:511 msgid "Could not allocate tls for '%'." msgstr "LSA konnte nicht zu '%' zugewiesen werden." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:702 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:702 msgid "Could not parse YYYY-MM-DD date '%'" msgstr "YYYY-MM-DD Datum '%' konnte nicht eingelesen werden" +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:747 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:747 msgid "Ignoring temporary prohibited manoeuvre (%)." msgstr "Ignoriere zeitliches Verbotsmanöver (%)." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:756 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:801 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:756 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:801 msgid "Ignoring prohibition from unknown start edge '%'." msgstr "Ignoriere Verbot von unbekannter Startkante '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:761 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:806 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:761 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:806 msgid "Ignoring prohibition from unknown end edge '%'." msgstr "Ignoriere Verbot von unbekannter Endkante '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:811 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:811 msgid "" "Ignoring invalid lane index '%' in connection from edge '%' with % lanes." @@ -7915,20 +9612,25 @@ "Ignoriere ungültigen Fahrstreifenindex '%' in der Verbindung von Kante '%' " "mit % Fahrstreifen." +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:816 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:816 msgid "Ignoring invalid lane index '%' in connection to edge '%' with % lanes" msgstr "" "Ignoriere ungültigen Fahrstreifenindex '%' in der Verbindung Endkante '%' " "mit % Fahrstreifen" +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:821 #: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:821 msgid "Could not set loaded connection from '%' to '%'." msgstr "Geladene Verbindungen von '%' zu '%' konnten nicht angewendet werden." +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:117 #: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:117 msgid "Could not open itsumo-file '%'." msgstr "Itsumo-Datei '%' konnte nicht geöffnet werden." +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:217 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:180 #: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:217 #: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:180 msgid "Could not add edge '%'. Probably declared twice." @@ -7936,6 +9638,10 @@ "Kante '%' konnte nicht hinzugefügt werden. Wahrscheinlich wurde sie zweimal " "deklariert." +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:232 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:142 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:703 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:148 #: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:232 #: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:142 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:703 @@ -7943,6 +9649,8 @@ msgid "Unable to project coordinates for node '%'." msgstr "Koordinaten für den Knoten '%' können nicht projiziert werden." +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:237 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:147 #: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:237 #: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:147 msgid "Could not add node '%'. Probably declared twice." @@ -7950,118 +9658,168 @@ "Knoten '%' konnte nicht hinzugefügt werden. Wahrscheinlich wurde er zweimal " "deklariert." +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:240 #: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:240 msgid "Not numeric position information for node '%'." msgstr "Keine nummerische Positionsinformation für Knoten '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:242 #: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:242 msgid "Missing data in node '%'." msgstr "Fehlen Daten im Knoten '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:260 #: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:260 msgid "Missing node in laneset '%'." msgstr "Fehlender Knoten im Fahrstreifensatz '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:263 #: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:263 msgid "Fond laneset-id '%' twice." msgstr "Fahrstreifensatz-ID '%' zweimal gefunden." +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:277 #: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:277 msgid "Not numeric value in laneset '%'." msgstr "Kein nummerischer Wert im Fahrstreifensatz '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:279 #: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:279 msgid "Missing data in laneset '%'." msgstr "Fehlende Daten im Fahrstreifensatz '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:290 #: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:290 msgid "Not numeric value in lane '%'." msgstr "Kein nummerischer Wert in Fahrstreifen '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:292 #: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:292 msgid "Missing data in lane '%'." msgstr "Fehlende Daten im Fahrstreifen '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:202 #: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:202 msgid "Bogus capacity period format; requires 'hh:mm:ss'." msgstr "Falsches Kapazitätenzeitformat; benötige 'hh:mm:ss'." +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:234 #: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:234 msgid "Could not find from-node for edge '%'." msgstr "Kein Ausgangsknoten für die Kante '%' gefunden." +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:237 #: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:237 msgid "Could not find to-node for edge '%'." msgstr "Kein Endknoten für die Kante '%' gefunden." +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:253 #: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:253 msgid "Could not add intermediate node to split loop edge '%'." msgstr "" "Es konnte kein Zwischenknoten zur geteilten Schleifenkante '%' hinzugefügt " "werden." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:217 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:211 msgid "Could not find signal reference '%'." msgstr "Signalreferenz '%' konnte nicht gefunden werden." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:281 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:319 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:274 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:312 msgid "Could not build node '%'." msgstr "Knoten '%' konnte nicht erstellt werden." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:418 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:411 msgid "Ignoring road '%' without geometry." msgstr "Ignoriere Straße '%' ohne Geometrie." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:442 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:435 msgid "Could not apply laneOffsets for edge '%'" msgstr "Fahrstreifenversatze für die Kante '%' konnten nicht angewendet werden" +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:633 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:668 #, c-format msgid "Edge '%' has no lanes." msgstr "Kante '%' hat keine Fahrstreifen." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:674 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:704 #, c-format msgid "While setting connections: from-edge '%' is not known." msgstr "Beim Setzten von Verbindungen: Ausgangskante '%' ist nicht bekannt." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:684 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:714 #, c-format msgid "While setting connections: to-edge '%' is not known." msgstr "Beim Setzten von Verbindungen: Endkante '%' ist nicht bekannt." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:710 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:713 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:740 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:743 msgid "Could not find fromEdge representation of '%' in connection '%'." msgstr "" "Konnte Ausgangskanten-Darstellung von '%' in der Verbindung '%' nicht finden." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:766 +#, c-format +msgid "" +"Controlling multiple junctions by the same controller '%' is currently not " +"implemented." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:787 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:792 #, c-format msgid "Edge '%' has signals but no lane sections." msgstr "Kante '%' hat Signale aber keine Fahrstreifen-Abschnitte." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:809 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:814 msgid "Ambiguous start of connection." msgstr "Mehrdeutiger Verbindungsbeginn." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:826 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:831 msgid "Ambiguous end of connection." msgstr "Mehrdeutiges Verbindungsende." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:839 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:854 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:901 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:844 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:859 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:892 msgid "Could not find edge '%' for signal '%'." msgstr "Kante '%' konnte nicht gefunden werden für das Signal '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:875 +msgid "" +"The signaling of the connection from '%' to '%' (controller '%') is " +"ambiguous because it is overwritten signal '%' and with controller '%'." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:890 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:881 msgid "Found a traffic light signal on an unknown edge (original edge id='%')." msgstr "" "LSA-Signal auf einer unbekannten Kante gefunden (Ursprungskanten-ID='%')." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:921 +msgid "" +"The signaling of the connection from '%' to '%' (controller '%') is " +"ambiguous because it is overwritten with signal '%' and controller '%'." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1361 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1393 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1287 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1319 #, c-format @@ -8069,21 +9827,25 @@ msgstr "" "Beim Setzten von Verbindungen: ankommende Straße '%' ist nicht bekannt." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1436 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1362 msgid "Could not find node '%'." msgstr "Knoten '%' konnte nicht gefunden werden." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1529 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1455 msgid "Mismatched geometry for edge '%' between geometry segments % and %." msgstr "" "Nicht übereinstimmende Geometrie für Kante '%' zwischen den " "Geometrieabschnitten % und %." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1710 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1636 #, c-format msgid "The sections of edge '%' are not sorted properly." msgstr "Die Abschnitte der Kante '%' sind nicht richtig sortiert." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1722 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1648 msgid "" "Almost duplicate s-value '%' for lane sections occurred at edge '%'; second " @@ -8092,25 +9854,37 @@ "Nahezu doppelter S-Wert '%' für die Fahrstreifenabschnitte traten an Kante " "'%' auf; zweiter Eintrag wurde entfernt." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1765 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1691 msgid "Could not compute spiral geometry for edge '%' (cDot=% length=%)." msgstr "" "Konnte Spiralgeometrie für Kante '%' nicht berechnen (Kurvigkeit=% Länge=%)." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1814 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1740 msgid "Could not compute spiral geometry for edge '%' (%)." msgstr "Konnte spiralförmige Geometrie für Kante '%' nicht berechnen (%)." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2086 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2012 msgid "" "Will discard access settings as both denied and allowed classes have been " "specified." msgstr "" +"Zugangseinstellungen werden verworfen, da sowohl erlaubte als auch verbotene " +"Klassen angegeben worden." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2392 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2320 msgid "Ignoring invalid pRange value '%' for road '%'." msgstr "Ignoriere ungültigen pRange-Wert '%' für die Straße '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2470 +msgid "Ignoring missing signal '%' in controller '%'." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2508 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2704 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2420 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2617 #, c-format @@ -8118,78 +9892,96 @@ msgstr "" "Im Fahrstreifenverbindungs-Element: ankommenden Straße '%' ist nicht bekannt." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2603 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2516 msgid "Ignoring object without id at edge '%'." msgstr "Ignoriere Objekt ohne ID an Kante '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2621 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2534 msgid "Repeat without object at edge '%'." msgstr "Wiederhole ohne Objekt an Kante '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2675 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2588 msgid "Could not set projection (%). This can be ignored with --ignore-errors." msgstr "" "Konnte Projektion (%) nicht festgelegen. Dies kann mit --ignore-errors " "ignoriert werden." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2679 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2592 #, c-format msgid "geoReference format '%' currently not supported" msgstr "geoReference-Format '%' wird derzeit nicht unterstützt" +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2752 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2661 msgid "Mismatching parenthesis in geometry definition for road '%'" msgstr "Nicht übereinstimmende Klammern in Geometriedefinition für Straße '%'" +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2756 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2665 msgid "Double geometry information for road '%'" msgstr "Doppelte Geometrieinformation für Straße '%'" +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:156 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:104 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:156 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:104 msgid "Could not open osm-file '%'." msgstr "Osm-Datei '%' konnte nicht geöffnet werden." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:168 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:168 #, c-format msgid "Found and substituted % osm nodes." msgstr "% osm-Knoten gefunden und ersetzt." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:192 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:192 msgid "Removing duplicate edges" msgstr "Entferne doppelte Kanten" +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:207 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:207 #, c-format msgid "Removed % duplicate osm edges." msgstr "% doppelte osm-Kanten entfernt." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:241 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:241 msgid "Discarding way '%' because it has only % node(s)" msgstr "Verwerfe Weg '%', da er nur % Kante(n) hat" +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:404 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:404 msgid "Could not insert junction '%'." msgstr "Knotenpunkt '%' konnte nicht eingefügt werden." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:462 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:462 msgid "" "Discarding edge '%' which connects two identical nodes without geometry." msgstr "" "Verwerfe Kante '%', welche zwei identische Knoten ohne Geometrie verbindet." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:574 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:574 msgid "New value for oneway found: %" msgstr "Neuer Wert für eine einfache Fahrt gefunden: %" +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:607 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:606 msgid "Skipping edge '%' because it has zero lanes." msgstr "Überspringe Kante '%', da sie null Fahrstreifen hat." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:627 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:626 msgid "Skipping edge '%' because it has speed %." msgstr "Überspringe Kante '%', da sie eine Geschwindigkeit von % hat." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:747 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:746 msgid "" "Forward lanes count for edge '%' ('%') is not matching the number of lanes " @@ -8199,6 +9991,7 @@ "der Anzahl an Fahrstreifen überein, die im width:lanes:forward-Schlüssel " "('%') definiert wurden. Nutze Standardbreitenwerte." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:793 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:792 msgid "" "Backward lanes count for edge '%' ('%') is not matching the number of lanes " @@ -8208,10 +10001,12 @@ "der Anzahl an Fahrstreifen überein, die im width:lanes:backward-Schlüssel " "('%') definiert wurden. Nutze Standardbreitenwerte." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:806 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:805 msgid "Could not add edge '-%'." msgstr "Kante '-%' konnte nicht hinzugefügt werden." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:894 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:893 msgid "" "Attribute 'id' in the definition of a node is not of type long long int." @@ -8219,23 +10014,29 @@ "Das Attribut 'id' in der Definition eines Knotens ist nicht vom Typ long " "long int." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:900 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:899 msgid "Tag element on wrong XML hierarchy level." msgstr "Tag-Element auf falscher XML-Hierarchiestufe." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:942 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:941 msgid "Value of key '%' is invalid ('%') in node '%'." msgstr "Wert von Schlüssel '%' ist ungültig ('%') im Knoten '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:947 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:946 msgid "Value of key '%' is not numeric ('%') in node '%'." msgstr "Wert von Schlüssel '%' ist nicht nummerisch ('%') im Knoten '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1092 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:592 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1091 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:592 msgid "The referenced geometry information (ref='%') is not known" msgstr "Die referenzierte Geometrie-Information (ref='%') ist nicht bekannt" +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1331 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1329 #, c-format msgid "Using default lane width for edge '%' as key '%' could not be parsed." @@ -8243,6 +10044,7 @@ "Die Verwendung der Standard-Fahrstreifenbreite für Kante '%' als Schlüssel " "'%' konnte nicht eigelesen werden." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1334 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1332 #, c-format msgid "Using default lane width for edge '%' as value '%' could not be parsed." @@ -8250,10 +10052,17 @@ "Die Verwendung der Standard-Fahrstreifenbreite für Kante '%' als Wert '%' " "konnte nicht eigelesen werden." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1377 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1375 msgid "Using minimum lane number from list (%) for edge '%'." msgstr "Verwende minimale Fahrstreifenanzahl aus der Liste (%) für Kante '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1379 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1383 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1394 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1406 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1429 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1439 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1377 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1381 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1392 @@ -8263,52 +10072,63 @@ msgid "Value of key '%' is not numeric ('%') in edge '%'." msgstr "Wert vom Schlüssel '%' ist nicht nummerisch ('%') in Kante '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1436 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1434 msgid "Ignoring track count % for edge '%'." msgstr "Spuranzahl % für Kante '%' wird ignoriert." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1607 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1605 -#, fuzzy msgid "Unknown lane use specifier '%' ignored for way '%'" msgstr "" "Unbekannter Fahrstreifennutzungsbezeichner '%' wird für Weg '%' ignoriert" +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1716 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1714 msgid "No node found for reference '%' in relation '%'." msgstr "Kein Knoten für Referenz '%' in Beziehung '%' gefunden." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1778 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1776 msgid "Found unknown restriction type '%' in relation '%'" msgstr "Unbekannten Beschränkungstyp '%' in Beziehung '%' gefunden" +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1816 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1814 msgid "Invalid color value '%' in relation %" msgstr "Ungültiger Farbenwert '%' in Beziehung %" +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1834 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1832 msgid "No way found for reference '%' in relation '%'" msgstr "Kein Weg gefunden für Referenz '%' in Beziehung '%'" +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1846 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1844 msgid "Ignoring restriction relation '%' with unknown type." msgstr "Ignoriere Restriktions-Beziehung '%' mit unbekanntem Typ." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1850 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1848 msgid "Ignoring restriction relation '%' with unknown from-way." msgstr "Ignorieren der Restriktions-Beziehung '%' mit unbekanntem Ausgangsweg." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1854 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1852 msgid "Ignoring restriction relation '%' with unknown to-way." msgstr "Ignorieren der Restriktions-Beziehung '%' mit unbekanntem Endweg." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1858 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1856 msgid "Ignoring restriction relation '%' with unknown via." msgstr "Ignorieren der Restriktions-Beziehung '%' mit unbekanntem Zwischenweg." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1862 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1860 msgid "Ignoring restriction relation '%'." msgstr "Ignoriere Restriktions-Beziehung '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1887 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1885 #, c-format msgid "" @@ -8318,6 +10138,7 @@ "Plattform '%' in Beziehung: '%' wird als Polygon angegeben, was derzeit " "nicht unterstützt wird." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1908 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1906 #, c-format msgid "" @@ -8327,6 +10148,7 @@ "Referenzierte Plattform: '%' in Beziehung: '%' ist beschädigt. " "Wahrscheinlich ist die OSM-Datei unvollständig." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1947 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1945 #, c-format msgid "PT line '%' in relation % seems to be split, only keeping first part." @@ -8334,6 +10156,7 @@ "Die ÖV-Linie '%' in Relation auf % scheint geteilt zu sein, wobei nur der " "erste Teil beibehalten wird." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1980 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1978 msgid "" "PT line in relation % with no stops ignored. Probably OSM file is incomplete." @@ -8341,35 +10164,43 @@ "ÖV-Linie in Relation auf % ohne Halte ignoriert. Wahrscheinlich ist die OSM-" "Datei unvollständig." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1986 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:222 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1984 #: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:222 msgid "Ignoring duplicate PT line '%'." msgstr "Ignoriere doppelte ÖV- Linie '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2001 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1999 msgid "Via-node '%' was not instantiated" msgstr "Zwischenknoten '%' wurde nicht realisiert" +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2007 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2005 #, c-format msgid "from-edge '%' of restriction relation could not be determined" msgstr "" "Ausgangskante '%' der Beschränkungsbeziehung konnte nicht bestimmt werden" +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2011 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2009 #, c-format msgid "to-edge '%' of restriction relation could not be determined" msgstr "Endkante '%' der Beschränkungsbeziehung konnte nicht bestimmt werden" +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2041 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2039 msgid "direction of restriction relation could not be determined%" msgstr "Richtung der Restriktionsbeziehung konnte nicht bestimmt werden%" +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2062 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2060 #, c-format msgid "Ambiguous way reference '%' in restriction relation" msgstr "Mehrdeutiger Verweis auf '%' in Restriktions-Beziehung" +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2314 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2311 msgid "" "Discarding unknown compound '%' in type '%' (first occurrence for edge '%')." @@ -8377,30 +10208,37 @@ "Unbekannte Verbindung '%' in Typ '%' wird verworfen (erstes Vorkommen für " "Kante '%')." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2320 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2315 msgid "Discarding unusable type '%' (first occurrence for edge '%')." msgstr "Verwerfen des unbrauchbaren Typs '%' (erstes Vorkommen für Kante '%')." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2365 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2364 msgid "Discarding compound type '%' (first occurrence for edge '%')." msgstr "Verwerfen des berechneten Typs '%' (erstes Vorkommen für Kante '%')." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2380 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2369 msgid "Adding new type '%' (first occurrence for edge '%')." msgstr "Neuer Typ '%' wird hinzugefügt (erstes Auftreten für Kante '%')." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2415 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2404 msgid "Ambiguous railway kilometrage direction for way '%' (assuming forward)" msgstr "Mehrdeutige Bahnkilometerrichtung für Weg '%' (nehme vorwärts an)" +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2422 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2411 msgid "Inconsistent railway kilometrage direction for way '%': % (skipping)" msgstr "Inkonsistente Bahnkilometerrichtung für Weg '%': % (Überspringen)" +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2467 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2456 msgid "Value of railway:position is not numeric ('%') in node '%'." msgstr "Wert der Eisenbahn: Position ist nicht nummerisch ('%') im Knoten '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2559 #: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2548 msgid "" "Ignoring turn sign information for % lanes on edge % with % driving lanes" @@ -8408,19 +10246,25 @@ "Ignorieren von Abbiegeschildinformationen für % Fahrstreifen auf Kante % mit " "% Fahrstreifen" +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:118 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:118 msgid "Could not open sumo-net-file '%'." msgstr "Sumo-Netzdatei '%' konnte nicht geöffnet werden." +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:146 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:146 #, c-format msgid "Edge's '%' from-node and to-node '%' are identical." msgstr "Ausgangsknoten '%' und Endknoten '%' für die Kante sind identisch." +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:165 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:165 msgid "Could not insert edge '%'." msgstr "Kante '%' konnte nicht eingefügt werden." +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:191 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:787 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:318 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:191 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:787 #: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:318 @@ -8428,12 +10272,18 @@ msgid "Unknown edge '%' given in connection." msgstr "Unbekannte Kante '%' in der Verbindung gegeben." +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:230 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:272 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:230 #: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:272 #, c-format msgid "The traffic light '%' is not known." msgstr "Die Lichtsignalanlage '%' ist nicht bekannt." +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:288 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:292 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:294 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:288 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:290 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:292 @@ -8442,43 +10292,53 @@ msgid "Edge '%' in prohibition was not built." msgstr "Kante '%' im Verbot wurde nicht erstellt." +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:345 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:345 #, c-format msgid "Deprecated vehicle class(es) '%' in input network." msgstr "Veraltete Fahrzeugklasse(en) '%' im Eingabenetz." +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:403 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1688 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:403 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1683 #, c-format msgid "Unknown edge '%' in roundabout" msgstr "Unbekannte Kante '%' im Kreisverkehr" +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:520 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:520 #, c-format msgid "Edge '%' occurred at least twice in the input." msgstr "Kante '%' kam mindestens zweimal in der Eingabe vor." +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:542 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:542 msgid "Unmatched closing tag for tl-logic." msgstr "Nicht übereinstimmendes schließendes Tag für LSA-Logik." +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:545 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:545 msgid "Could not add program '%' for traffic light '%'" msgstr "Konnte Programm '%' für die LSA '%' nicht hinzufügen" +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:615 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:615 msgid "Unknown spreadType '%' for edge '%'." msgstr "Unbekannter Verteilungstyp '%' für die Kante '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:628 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:628 #, c-format msgid "Found lane '%' not within edge element." msgstr "Fahrstreifen '%' ohne Kantenelemente gefunden." +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:633 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:633 msgid "Renaming lane '%' to '%'." msgstr "Benenne Fahrstreifen '%' zu '%' um." +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:699 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:699 msgid "" "Duplicate definition of stopOffset for edge %.\n" @@ -8487,6 +10347,7 @@ "Doppelte Definiton von stopOffset für die Kante %.\n" "Ignoriere doppelte Spezifizierung." +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:705 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:705 msgid "" "Duplicate definition of lane's stopOffset on edge %.\n" @@ -8495,79 +10356,100 @@ "Doppelte Definition vom Versatz des Fahrstreifens an Kante %.\n" "Ignoriere doppelte Spezifikationen." +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:742 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:742 #, c-format msgid "Junction '%' occurred at least twice in the input." msgstr "Knotenpunkt '%' kam mindestens zweimal in der Eingabe vor." +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:839 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:839 msgid "Invalid lane index '%' for connection from '%'." msgstr "Ungültiger Fahrstreifenindex '%' für die Verbindung von '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:929 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:929 msgid "Definition of tl-logic '%' was not finished." msgstr "Definition der LSA-Logik '%' wurde nicht beendet." +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:941 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:127 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:941 #: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:127 msgid "Unknown traffic light type '%' for tlLogic '%'." msgstr "Unbekannter LSA-Typ '%' für die LSA-Logik '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:955 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:955 msgid "found phase without tl-logic" msgstr "Phase ohne LSA-Logik gefunden" +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:963 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:963 msgid "Phase duration for tl-logic '%/%' must be positive." msgstr "Die Phasendauer für die LSA-Logik '%/%' muss positiv sein." +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1019 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1019 msgid "Missing connection divider in prohibition attribute '%'" msgstr "Fehler Verbindungsteiler im Verbots-Attribut '%'" +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1026 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1030 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1026 #: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1030 msgid "Unknown edge prohibition '%'" msgstr "Unbekanntes Kantenverbot '%'" +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:205 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:205 msgid "Can not open visum-file '%'." msgstr "Visum-Datei '%' konnte nicht geöffnet werden." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:247 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:247 #, c-format msgid "Too short value line in % occurred." msgstr "Zu kurze Wertlinie in % aufgetreten." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:249 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:249 msgid "A value in % should be numeric but is not (id='%')." msgstr "Ein Wert in % sollte nummerisch sein, ist es aber nicht (ID='%')." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:251 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:251 msgid "One of the needed values ('%') is missing in %." msgstr "Einer der benötigten Werte ('%') fehlt in %." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:326 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:326 msgid "Duplicate node occurred ('%')." msgstr "Doppelter Knoten entdeckt ('%')." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:344 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:344 msgid "Unable to project coordinates for district %." msgstr "Koordinaten für den Bezirk % können nicht projiziert werden." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:350 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:350 msgid "Duplicate district occurred ('%')." msgstr "Doppelter Bezirk aufgetreten ('%')." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:368 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:368 msgid "Unable to project coordinates for point %." msgstr "Koordinaten für den Punkt % können nicht projiziert werden." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:458 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:475 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:458 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:475 msgid "Duplicate edge occurred ('%')." msgstr "Doppelte Kante aufgetreten ('%')." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:580 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:580 msgid "" "Incoming connector '%' will not be build - would be not connected to network." @@ -8575,17 +10457,22 @@ "Eingehender Verbinder '%' wird nicht erstellt - wird nicht mit dem Netz " "verbunden." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:584 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:618 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:584 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:618 #, c-format msgid "The district '%' could not be built." msgstr "Der Bezirk '%' kann nicht erstellt werden." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:594 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:629 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:594 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:629 msgid "A duplicate edge id occurred (ID='%')." msgstr "Eine doppelte Kanten-ID ist aufgetreten (ID='%')." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:614 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:614 msgid "" "Outgoing connector '%' will not be build - would be not connected to network." @@ -8593,41 +10480,52 @@ "Ausgehender Verbinder '%' wird nicht erstellt - wird nicht mit dem Netz " "verbunden." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:665 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:671 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:720 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:665 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:671 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:720 msgid "There is no edge from node '%' to node '%'." msgstr "Keine Kante für Ausgangsknoten '%' zum Endknoten '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:698 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:698 msgid "Error in geometry description from node '%' to node '%'." msgstr "" "Fehler in der Geometriebeschreibung für Ausgangsknoten '%' zum Endknoten '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:757 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:757 msgid "A lane number for edge '%' is not numeric (%)." msgstr "Eine Fahrstreifennummer für Kante '%' ist nicht nummerisch (%)." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:762 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:762 msgid "A lane number for edge '%' is not positive (%)." msgstr "Eine Fahrstreifenummer für Kante '%' ist nicht positiv (%)." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:781 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:781 msgid "A lane length for edge '%' is not numeric (%)." msgstr "Eine Fahrstreifenlänge für die Kante '%' ist nicht nummerisch (%)." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:785 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:785 msgid "A lane length for edge '%' is not positive (%)." msgstr "Eine Fahrstreifenlänge für die Kante '%' ist nicht positiv (%)." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:846 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:846 msgid "Could not find split position for edge '%'." msgstr "Auftrennungsposition für die Kante '%' konnte nicht gefunden werden." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:856 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:856 msgid "Ups - could not insert node!" msgstr "Ups - Knoten konnte nicht eingefügt werden!" +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:917 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:917 #, c-format msgid "Could not find TLS '%' for setting the signal group." @@ -8635,18 +10533,22 @@ "Lichtsignalanlage '%' zum erstellen der Signalgruppe konnte nicht gefunden " "werden." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:930 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:930 msgid "Ignoring SIGNALGRUPPEZUFSABBIEGER because LsaNr is not known" msgstr "Ignoriere SIGNALGRUPPEZUFSABBIEGER da LsaNr is nicht bekannt ist" +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:987 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:987 msgid "Unknown edge in TEILFLAECHENELEMENT" msgstr "Unbekannte Kante im TEILFLAECHENELEMENT" +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1007 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1007 msgid "Unknown are for area part '%'." msgstr "Unbekannt für Bereichspart '%'." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1069 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1069 msgid "" "Ignoring lane-to-lane connection (not yet implemented for this format " @@ -8655,24 +10557,29 @@ "Ignoriere Fahrstreifen-zu-Fahrstreifen-Verbindung (noch nicht implementiert " "für diese Format-Version)" +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1107 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1107 msgid "A from-lane number for edge '%' is not numeric (%)." msgstr "" "Eine Ausgangsfahrstreifennummer für die Kante '%' ist nicht nummerisch (%)." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1112 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1112 msgid "A from-lane number for edge '%' is not positive (%)." msgstr "" "Eine Ausgangsfahrstreifennummer für die Kante '%' ist nicht positiv (%)." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1121 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1121 msgid "A to-lane number for edge '%' is not numeric (%)." msgstr "Eine Endfahrstreifennummer für die Kante '%' ist nicht nummerisch (%)." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1126 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1126 msgid "A to-lane number for edge '%' is not positive (%)." msgstr "Eine Endfahrstreifennummer für die Kante '%' ist nicht positiv (%)." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1142 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1142 msgid "" "A from-lane number for edge '%' is larger than the edge's lane number (%)." @@ -8680,6 +10587,7 @@ "Eine Ausgangsfahrstreifennummer für die Kante '%' ist größer als die von der " "Kanten Fahrstreifennummer (%)." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1146 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1146 msgid "" "A to-lane number for edge '%' is larger than the edge's lane number (%)." @@ -8687,14 +10595,17 @@ "Eine Endfahrstreifennummer für die Kante '%' ist größer als die von der " "Kanten Fahrstreifennummer (%)." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1162 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1162 msgid "Ignoring stopping place '%' without edge id" msgstr "Ignoriere Haltepunkt '%' ohne Kanten ID" +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1164 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1164 msgid "Ignoring stopping place '%' without node informatio" msgstr "Ignoriere Haltepunkt '%' ohne Knoteninformation" +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1171 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1171 msgid "" "Could not find edge with from-node '%' and base id '%' for stopping place '%'" @@ -8702,10 +10613,12 @@ "Konnte Kante mit Ausgangsknoten '%' und Basis-ID '%' für Halteplatz '%' " "nicht finden" +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1176 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1176 msgid "Unexpected from-node '%' for edge '%' of stopping place '%'" msgstr "Unerwarteter Ausgangsknoten '%' für Kante '%' des Halteplatzes '%'" +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1182 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1182 msgid "" "Could not find edge with to-node '%' and base id '%' for stopping place '%'" @@ -8713,117 +10626,144 @@ "Konnte Kante mit dem Zielknoten '%' und der Basis-ID '%' für den Haltepunkt " "'%' nicht finden" +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1187 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1187 msgid "Unexpected to-node '%' for edge '%' of stopping place '%'" msgstr "Unerwarteter Endknoten '%' für Kante '%' des Halteplatzes '%'" +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1271 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1271 #, c-format msgid "The node '%' is not known." msgstr "Der Knoten '%' ist nicht bekannt." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1508 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1508 msgid "Could not build connector node '%'." msgstr "Verbindungsknoten '%' konnte nicht erstellt werden." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1518 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1518 msgid " The from-node was not found within the net" msgstr " Der Ausgangknoten wurde nicht im Netz gefunden" +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1521 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1521 msgid " The to-node was not found within the net" msgstr " Der Endknoten wurde nicht im Netz gefunden" +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1524 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1524 msgid " Both nodes are the same" msgstr " Beide Knoten sind gleich" +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1539 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:431 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1539 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:431 msgid "Could not load VISUM language map from '%'." msgstr "VISUM-Sprachkarte von '%' konnte nicht geladen werden." +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1551 #: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1551 #, c-format msgid "Unknown entry '%' in VISUM language map" msgstr "Unbekannter Eintrag '%' in der VISUM Sprachkarte" +#: D:\Repos\sumo/src\netimport\NILoader.cpp:103 #: /home/micha/programming/sumo/src/netimport/NILoader.cpp:103 msgid " Removed % traffic lights before loading plain-XML" msgstr " % Lichtsignalanlagen wurden vor dem Laden der Flächen-XML entfernt" +#: D:\Repos\sumo/src\netimport\NILoader.cpp:112 #: /home/micha/programming/sumo/src/netimport/NILoader.cpp:112 msgid "No nodes loaded." msgstr "Keine Knoten geladen." +#: D:\Repos\sumo/src\netimport\NILoader.cpp:115 #: /home/micha/programming/sumo/src/netimport/NILoader.cpp:115 msgid "No edges loaded." msgstr "Keine Kanten geladen." +#: D:\Repos\sumo/src\netimport\NILoader.cpp:126 #: /home/micha/programming/sumo/src/netimport/NILoader.cpp:126 msgid " Import done:" msgstr " Import fertig:" +#: D:\Repos\sumo/src\netimport\NILoader.cpp:128 #: /home/micha/programming/sumo/src/netimport/NILoader.cpp:128 #, c-format msgid " % districts loaded." msgstr " % Bezirke geladen." +#: D:\Repos\sumo/src\netimport\NILoader.cpp:130 #: /home/micha/programming/sumo/src/netimport/NILoader.cpp:130 #, c-format msgid " % nodes loaded." msgstr " % Knoten geladen." +#: D:\Repos\sumo/src\netimport\NILoader.cpp:132 #: /home/micha/programming/sumo/src/netimport/NILoader.cpp:132 msgid " % types loaded." msgstr " % Typen geladen." +#: D:\Repos\sumo/src\netimport\NILoader.cpp:134 #: /home/micha/programming/sumo/src/netimport/NILoader.cpp:134 #, c-format msgid " % edges loaded." msgstr " % Kanten geladen." +#: D:\Repos\sumo/src\netimport\NILoader.cpp:136 #: /home/micha/programming/sumo/src/netimport/NILoader.cpp:136 #, c-format msgid "The split of edges was performed % times." msgstr "Die Teilung der Kanten wurde % mal durchgeführt." +#: D:\Repos\sumo/src\netimport\NILoader.cpp:144 #: /home/micha/programming/sumo/src/netimport/NILoader.cpp:144 msgid "Proj projection parameters used: '%'." msgstr "Proj Projektionsparameter genutzt: '%'." +#: D:\Repos\sumo/src\netimport\NILoader.cpp:165 #: /home/micha/programming/sumo/src/netimport/NILoader.cpp:165 #, c-format msgid "Deprecated vehicle class(es) '%' in input edge files." msgstr "Veraltete Fahrzeugklasse(en) '%' in der Eingabekanten-Datei." +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:61 #: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:61 msgid "Invalid speed code (edge '%')." msgstr "Ungültige Geschwindigkeitsvorschrift (Kante '%')." +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:64 #: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:64 msgid "Non-numerical value for an edge's speed type occurred (edge '%')." msgstr "" "Nicht nummerischer Wert für einen Kanten Geschwindigkeitstypen aufgetreten " "(Kante '%')." +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:90 #: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:90 msgid "Invalid lane number (edge '%')." msgstr "Ungültige Fahrstreifennummer (Kante '%')." +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:94 #: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:94 msgid "Non-numerical value for an edge's lane number occurred (edge '%'." msgstr "" "Nicht numerischer Wert für eine Fahrstreifennummer entdeckt (Kante '%')." +#: D:\Repos\sumo/src\netimport\NITypeLoader.cpp:62 #: /home/micha/programming/sumo/src/netimport/NITypeLoader.cpp:62 msgid "Could not open %-file '%'." msgstr "Konnte %-Datei '%' nicht öffnen." +#: D:\Repos\sumo/src\netimport\NIVisumTL.cpp:76 #: /home/micha/programming/sumo/src/netimport/NIVisumTL.cpp:76 msgid "invalid node for traffic light '%'" msgstr "ungültiger Knoten für die Lichtsignalanlage '%'" +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:85 #: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:85 msgid "" "Target edge '%' is not connected with '%'; the connection cannot be reset." @@ -8831,223 +10771,276 @@ "Vorgegebene Kante '%' ist nicht mit '%' verbunden; die Verbindung kann nicht " "zurückgesetzt werden." +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:99 #: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:99 msgid "Edge '%' has no connection to lane '%'; the connection cannot be reset." msgstr "" "Kante '%' hat keine Verbindung zum Fahrstreifen '%'; die Verbindung kann " "nicht zurückgesetzt werden." +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:267 #: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:267 msgid "Unable to project shape for connection from edge '%' to edge '%'." msgstr "" "Shape für Verbindung von Kante '%' zu Kante '%' kann nicht projiziert werden." +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:275 #: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:275 msgid "Could not set loaded connection from lane '%' to lane '%'." msgstr "" "Geladene Verbindung vom Fahrstreifen '%' zum Fahrtreifen '%' konnte nicht " "angewendet werden." +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:347 #: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:347 #, c-format msgid "Node '%' in crossing is not known." msgstr "Knoten '%' in der Fußgängerfurt ist nicht bekannt." +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:356 #: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:356 msgid "No edges specified for crossing at node '%'." msgstr "Keine Kanten für die Fußgängerfurt am Knoten '%' spezifiziert." +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:364 #: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:364 #, c-format msgid "Edge '%' for crossing at node '%' is not known." msgstr "Kante '%' für die Fußgängerfurt am Knoten '%' ist nicht bekannt." +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:372 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:450 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:455 #: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:372 #: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:450 #: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:455 msgid "Edge '%' does not touch node '%'." msgstr "Kante '%' berührt den Knoten '%' nicht." +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:385 #: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:385 #, c-format msgid "Crossing at controlled node '%' must be prioritized" msgstr "Fußgängerfurt am kontrollierten Knoten '%' muss priorisiert werden" +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:390 #: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:390 msgid "Unable to project shape for crossing at node '%'." msgstr "" "Shape für die Fußgängerfurt am Knoten '%' konnte nicht projiziert werden." +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:403 #: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:403 msgid "Crossing with edges '%' already exists at node '%'." msgstr "Fußgängerfurt mit den Kanten '%' existiert am Knoten '%' bereits." +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:435 #: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:435 msgid "No edges specified for walkingArea at node '%'." msgstr "Keine Kanten für die walkingArea am Knoten '%' spezifiziert." +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:441 #: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:441 #, c-format msgid "Edge '%' for walkingArea at node '%' is not known." msgstr "Kante '%' für die walkingArea am Knoten '%' ist nicht bekannt." +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:467 #: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:467 msgid "Unable to project shape for walkingArea at node '%'." msgstr "Shape für die walkingArea am Knoten '%' kann nicht projiziert werden." +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:222 #: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:222 msgid "Duplicate edge id occurred ('%'); assuming overwriting is wished." msgstr "" "Doppelte Kanten-ID aufgetreten ('%'); nehme eine gewünschte Überschreibung " "an." +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:227 #: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:227 #, c-format msgid "Edge '%' changed it's type; assuming type override is wished." msgstr "" "Kante '%' hat ihren Typ geändert; nehme eine gewünschte Überschreibung an." +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:315 #: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:315 msgid "Ignoring self-looped edge '%' at junction '%'" msgstr "Ignoriere selbst geloopte Kante '%' am Knotenpunkt %'" +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:393 #: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:393 #, c-format msgid "'%' is deprecated, please use '%' instead." msgstr "'%' ist veraltet, bitte nutze statt dessen '%'." +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:403 #: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:403 msgid "Lane index is larger than number of lanes (edge '%')." msgstr "" "Fahrstreifenindex ist größer als die Anzahl an Fahrstreifen (Kante '%')." +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:447 #: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:447 msgid "Unable to project coordinates for lane '%'." msgstr "Koordinaten für den Fahrstreifen '%' können nicht projiziert werden." +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:472 #: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:472 msgid "Ignoring 'split' because it cannot be assigned to an edge" msgstr "Ignoriere 'split', da es keiner Kante zugewiesen werden kann" +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:481 #: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:481 msgid "Edge '%' has a split at invalid position %." msgstr "Kante '%' hat an einer ungültigen Position % eine Auftrennung." +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:486 #: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:486 msgid "Edge '%' has already a split at position %." msgstr "Kante '%' hat an der Position % bereits eine Trennung." +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:520 #: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:520 msgid "Invalid split node id for edge '%' (from- and to-node are forbidden)" msgstr "" "Ungültige Trennungsknoten-ID für die Kante '%' (Ausgangs- und Endknoten sind " "verboten)" +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:558 #: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:558 msgid "The from-node is not given for edge '%'." msgstr "Der Ausgangsknoten ist nicht gegeben für Kante '%'." +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:570 #: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:570 msgid "The to-node is not given for edge '%'." msgstr "Der Endknoten ist nicht gegeben für Kante '%'." +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:616 #: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:616 msgid "Ignoring unknown spreadType '%' for edge '%'." msgstr "Ignoriere unbekannten Verteilungstyp '%' für die Kante '%'." +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:674 #: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:674 #, c-format msgid "Duplicate edge '%' occurred." msgstr "Doppelte Kante '%' aufgetreten." +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:683 #: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:683 msgid "An important information is missing in edge '%'." msgstr "Eine wichtige Information für die Kante '%' fehlt." +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:705 #: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:705 #, c-format msgid "Unknown edge '%' in roundabout." msgstr "Unbekannte Kante '%' im Kreisverkehr." +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:151 #: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:151 msgid "Missing position (at node ID='%')." msgstr "Fehlende Position (am Knoten ID ='%')." +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:184 #: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:184 msgid "Could not insert node though checked this before (id='%')." msgstr "" "Knoten konnte nicht eingefügt werden obwohl dieser zuvor überprüft wurde " "(ID='%')." +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:213 #: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:213 msgid "Unable to project node shape at node '%'." msgstr "Die Knoten-Shape am Knoten '%' kann nicht projiziert werden." +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:321 #: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:321 msgid "Unknown traffic light type '%' for node '%'." msgstr "Unbekannter LSA-Typ '%' für Knoten '%'." +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:330 #: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:330 msgid "Unknown traffic light layout '%' for node '%'." msgstr "Unbekanntes LSA-Layout '%' für den Knoten '%'." +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:341 #: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:341 msgid "Changing traffic light type '%' to '%' for tl '%'." msgstr "Änderung des LSA-Typs '%' in '%' an LSA '%'." +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:153 #: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:153 #, c-format msgid "Edge '%' for stop '%' not found" msgstr "Kante '%' für den Halt '%' nicht gefunden" +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:161 #: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:161 #, c-format msgid "Lane '%' for stop '%' not found" msgstr "Fahrstreifen '%' für Halt '%' nicht gefunden" +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:173 #: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:173 msgid "Could not add public transport stop '%' (already exists)" msgstr "ÖV-Haltestelle '%' konnte nicht hinzugefügt werden (existiert bereits)" +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:192 #: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:192 #, c-format msgid "Edge '%' for access to stop '%' not found" msgstr "Kante '%' für den Zugang zum Halt '%' nicht gefunden" +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:253 #: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:253 msgid "Found route outside line definition" msgstr "Route außerhalb der Zeilendefinition gefunden" +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:263 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:283 #: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:263 #: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:283 #, c-format msgid "Edge '%' in route of line '%' not found" msgstr "Kante '%' in der Route der Linie '%' nicht gefunden" +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:302 #: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:302 msgid "Stop '%' within line '%' not found" msgstr "Halt '%' innerhalb der Linie '%' nicht gefunden" +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:318 #: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:318 msgid "Stop '%' within route '%' not found" msgstr "Halt '%' innerhalb der Route '%' nicht gefunden" +#: D:\Repos\sumo/src\netimport\NIXMLShapeHandler.cpp:46 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1749 #: /home/micha/programming/sumo/src/netimport/NIXMLShapeHandler.cpp:46 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1744 #, c-format msgid "Lane '%' to place poi '%' on is not known." msgstr "Fahrstreifen '%' der auf Pol '%' platziert werden soll nicht bekannt." +#: D:\Repos\sumo/src\netimport\NIXMLShapeHandler.cpp:59 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1762 #: /home/micha/programming/sumo/src/netimport/NIXMLShapeHandler.cpp:59 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1757 #, c-format msgid "lane position % for poi '%' is not valid." msgstr "Fahrstreifenposition % für den Pol '%' ist nicht zulässig." +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:114 #: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:114 msgid "Definition of tlLogic '%' was not finished." msgstr "Definition von tlLogic '%' wurde nicht beendet." +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:140 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:158 #: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:140 #: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:158 msgid "Cannot load traffic light program for unknown id '%', programID '%'." @@ -9055,43 +11048,53 @@ "LSA-Programm für unbekannte ID '%' kann nicht geladen werden, Programm-ID " "'%'." +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:331 #: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:331 msgid "Invalid lane index '%' for edge '%'." msgstr "Ungültiger Fahrstreifenindex '%' für Kante '%'." +#: D:\Repos\sumo/src\netimport\NIXMLTypesHandler.cpp:85 #: /home/micha/programming/sumo/src/netimport/NIXMLTypesHandler.cpp:85 msgid "Invalid lane spread type '%'. Using default 'right'" msgstr "Ungültiger Fahrstreifenverteilungstyp '%'. Nutze Standard 'right'" +#: D:\Repos\sumo/src\netimport\NIXMLTypesHandler.cpp:114 #: /home/micha/programming/sumo/src/netimport/NIXMLTypesHandler.cpp:114 msgid "Invalid lane index % for edge type '%' with % lanes" msgstr "Ungültiger Fahrstreifenindex % für Kantentyp '%' mit % Fahrstreifen" +#: D:\Repos\sumo/src\netimport\vissim\NIImporter_Vissim.cpp:887 #: /home/micha/programming/sumo/src/netimport/vissim/NIImporter_Vissim.cpp:887 msgid "Could not open vissim-file '%'." msgstr "Vissim-Datei '%' konnte nicht geöffnet werden." +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnection.cpp:241 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnection.cpp:241 msgid "Could not build connection between '%' and '%'." msgstr "Konnte keine Verbindung zwischen '%' und '%' erstellen." +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnection.cpp:248 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnection.cpp:248 msgid "Lane sizes differ for connection '%'." msgstr "Fahrstreifengrößen unterscheiden sich für die Verbindung '%'." +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnectionCluster.cpp:496 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnectionCluster.cpp:496 msgid "NIVissimConnectionCluster:More than a single node" msgstr "" +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnectionCluster.cpp:662 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnectionCluster.cpp:662 msgid "NIVissimConnectionCluster: how to get an edge's position?" msgstr "" +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:205 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:205 #, c-format msgid "Could not build district '%' - edge '%' is missing." msgstr "Konnte Bezirk '%' nicht erstellen - Kante '%' fehlt." +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:360 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:360 msgid "" "No streams assigned at district'%'.\n" @@ -9100,73 +11103,91 @@ "Keine Ströme dem Bezirk '%' zugewiesen.\n" "Nutze Standardgeschwindigkeit 200km/h" +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:377 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:526 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:377 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:526 #, c-format msgid "The referenced speed distribution '%' is not known." msgstr "Die referenzierte Geschwindigkeitsverteilung '%' ist nicht bekannt." +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:378 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:385 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:378 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:385 msgid ". Using default." msgstr ". Nutze Standard." +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:143 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:143 msgid "Ugly split to prohibit '%' by '%'." msgstr "Ungünstige Aufteilung, um '%' durch '%' zu verhindern." +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:186 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:186 msgid "Could not prohibit '%' by '%'. Have not found disturbance." msgstr "Konnte '%' von '%' nicht verbieten. Habe keine Störung festgestellt." +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:191 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:191 msgid "Could not prohibit '%' by '%'. Disturbance connects same node." msgstr "" "Konnte '%' von '%' nicht verbieten. Störung verbindet denselben Knoten." +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:210 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:262 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:210 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:262 -#, fuzzy, c-format +#, c-format msgid "Would have to split edge '%' to build a prohibition" msgstr "Müsste Kante '%' teilen, um ein Verbot zu erstellen" +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:237 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:237 #, c-format msgid "Could not prohibit '%' - it was not built." msgstr "Konnte '%' nicht verbieten - es wurde nicht erstellt." +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:243 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:243 -#, fuzzy msgid "Could not prohibit '%' by '%'." msgstr "Konnte '%' von '%' nicht verbieten." +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:307 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:307 msgid "NIVissimDisturbance: no connection" msgstr "" +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:340 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:340 #, c-format msgid "Could not build % of % disturbances." msgstr "Konnte % von % Störungen nicht erstellen." +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:439 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:439 msgid "Will not build edge '%'." msgstr "Kante '%' wird nicht erstellt." +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:464 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:472 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:464 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:472 #, c-format msgid "Could not insert node '%' to nodes container." msgstr "Konnte Knoten '%' nicht in den Knotencontainer einfügen." +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:490 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:490 msgid "Could not build edge '%'; would connect same node." msgstr "Konnte Kante '%' nicht erstellen; würde denselben Knoten verbinden." +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:532 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:532 msgid "What about distribution '%' " msgstr "Was ist mit Verteilung '%' " +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:138 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:138 #, c-format msgid "Could not set tls signal at edge '%' - the edge was not built." @@ -9174,10 +11195,12 @@ "Konnte LSA-Signal an Kante '%' nicht anwenden - die Kante wurde nicht " "erstellt." +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:152 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:152 msgid "Edge '%': Lanes were not assigned." msgstr "Kante '%': Fahrstreifen wurden nicht vergeben." +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:375 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:375 msgid "" "Error on adding a traffic light\n" @@ -9186,80 +11209,99 @@ "Fehler beim Hinzufügen einer LSA\n" "Muss eine mehrfache ID sein ('%')" +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:383 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:383 msgid "The signal group '%' could not be assigned to tl '%'." msgstr "Die Signalgruppe '%' konnte der LSA '%' nicht zugeordnet werden." +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:392 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:392 msgid "The signal '%' could not be assigned to tl '%'." msgstr "Das Signal '%' konnte der LSA '%' nicht zugeordnet werden." +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:399 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:399 msgid "Could not set % of % traffic lights." msgstr "Konnte nicht % von % LSAs anwenden." +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:402 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:402 #, c-format msgid "Could not set % of % groups." msgstr "Konnte % von % Gruppen nicht anwenden." +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:405 #: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:405 #, c-format msgid "Could not set % of % signals." msgstr "Konnte % von % Signalen nicht anwenden." +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Lichtsignalanlagendefinition.cpp:84 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:93 #: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Lichtsignalanlagendefinition.cpp:84 #: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:93 #, c-format msgid "Unsupported LSA-Type '%' occurred." msgstr "Nicht unterstützter LSA-Typ '%' aufgetreten." +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgeberdefinition.cpp:73 #: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgeberdefinition.cpp:73 msgid "Omitting unknown traffic light." msgstr "Auslassen einer unbekannten LSA." +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:142 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:170 #: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:142 #: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:170 msgid "VAS traffic lights are not supported (lsa=%)" msgstr "VAS-LSAs werden nicht unterstützt (lsa=%)" +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:154 #: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:154 msgid "VSPLUS traffic lights are not supported (lsa=%)" msgstr "VSPLUS-LSAs werden nicht unterstützt (lsa=%)" +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:162 #: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:162 msgid "TRENDS traffic lights are not supported (lsa=%)" msgstr "TRENDS-LSAs werden nicht unterstützt (lsa=%)" +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:178 #: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:178 msgid "TL traffic lights are not supported (lsa=%)" msgstr "TL-LSAs werden nicht unterstützt (lsa=%)" +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:186 #: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:186 -#, fuzzy msgid "POS traffic lights are not supported (lsa=%)" -msgstr "POS-LSAs werden nicht unterstützt (lsa=%)" +msgstr "POS-LSA werden nicht unterstützt (lsa=%)" +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:194 #: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:194 msgid "externally defined traffic lights are not supported (lsa=%)" msgstr "extern definierte LSA werden nicht unterstützt (lsa=%)" +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Simdauer.cpp:49 #: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Simdauer.cpp:49 msgid "Simulation duration could not be parsed" msgstr "Simulationsdauer konnte nicht eingelesen werden" +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:85 #: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:85 msgid "Trying to set the effort for the unknown edge '%'." msgstr "Versuche an der unbekannten Kante '%' den Aufwand zu setzen." +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:100 #: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:100 msgid "Trying to set the travel time for the unknown edge '%'." msgstr "Versuch die Reisezeit für die unbekannte Kante '%' zu setzten." +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:129 #: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:129 msgid "Invalid network, no network version declared." msgstr "Ungültiges Netz, keine Netzversion deklariert." +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:133 #: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:133 msgid "" "Network contains internal links which are ignored. Vehicles will 'jump' " @@ -9268,11 +11310,14 @@ "Das Netz enthält interne Links, die ignoriert werden. Fahrzeuge 'springen' " "über Knotenpunkte und unterschätzen somit Streckenlängen und Fahrzeiten." +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:163 #: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:163 msgid "State was written at a different time=% than the begin time %!" msgstr "" "Stand wurde zur einer anderen Zeit=% geschrieben als die Anfangszeit %!" +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:197 +#: D:\Repos\sumo/src\router\RONet.cpp:223 #: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:197 #: /home/micha/programming/sumo/src/router/RONet.cpp:223 #, c-format @@ -9281,6 +11326,7 @@ "Eine Verkehrsumlegungszone mit der ID '%' existiert bereits. Es wird keine " "Verkehrsumlegungszone für den Knotenpunkt erstellt." +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:228 #: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:228 msgid "" "Loading vehicles ahead of a state file is not supported. Correct --begin " @@ -9290,27 +11336,39 @@ "Korrigieren Sie die Option --begin oder laden Sie Fahrzeuge mit der Option --" "route-files" +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:256 #: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:256 msgid "Loading weights from '%'..." msgstr "Lade Gewichte von '%'..." +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:285 #: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:285 msgid "Loading done." msgstr "Fertig geladen." +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:390 #: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:390 msgid "Wrong number of state file names!" msgstr "Falsche Nummer von Stand-Datei-Namen!" +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:425 #: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:425 msgid "Loading % from '%'" msgstr "Lade % aus '%'" +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:445 #: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:445 #, c-format msgid "The route file '%' is not accessible." msgstr "Die Routendatei '%' ist nicht erreichbar." +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:461 +msgid "" +"LaneData requested for mesoscopic simulation but --meso-lane-queue is not " +"active. Falling back to edgeData." +msgstr "" + +#: D:\Repos\sumo/src\netload\NLDetectorBuilder.cpp:526 #: /home/micha/programming/sumo/src/netload/NLDetectorBuilder.cpp:526 msgid "" "The netstate type 'hbefa' is deprecated. Please use the type 'emissions' " @@ -9319,10 +11377,12 @@ "Der Netzstatustyp 'hbefa' ist veraltet. Bitte nutze statt dessen den Typ " "'emissions'." +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:198 #: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:198 msgid "Asymmetrical neigh lane '%' for lane '%'" msgstr "Unsymmetrischer Nachbarfahrstreifen '%' für den Fahrstreifen '%'" +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:218 #: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:218 #, c-format msgid "" @@ -9332,14 +11392,17 @@ "Interne Kante '%' ist nicht richtig verbunden (wahrscheinlich eine manuell " "modifizierte net.xml)." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:391 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:391 msgid "Unknown from-node '%' for edge '%'." msgstr "Unbekannter Ausgangsknoten '%' für Kante '%'." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:395 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:395 msgid "Unknown to-node '%' for edge '%'." msgstr "Unbekannter Endknoten '%' für Kante '%'." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:535 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:535 #, c-format msgid "" @@ -9349,21 +11412,25 @@ "Shape des Fahrstreifens '%' ist gebrochen.\n" "Entsprechende Kante kann nicht erstellt werden." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:557 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:557 #, c-format msgid "Another lane with the id '%' exists." msgstr "Ein anderer Fahrstreifen mit der ID '%' existiert." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:627 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:627 msgid "An unknown lane ('%') was tried to be set as incoming to junction '%'." msgstr "" "Es wurde versucht, einen unbekannten Fahrstreifen('%') als ankommend für den " "Knotenpunkt '%' festzulegen." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:781 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:781 msgid "Traffic light '%' has unknown type '%'." msgstr "LSA '%' hat einen unbekannten Typ '%'." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:785 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:785 #, c-format msgid "" @@ -9373,18 +11440,22 @@ "LSA-Typ '%' kann nicht in einer mesoskopischen Simulation verwendet werden. " "Nutze '%' als Rückfall." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:874 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:874 msgid "maxDur % should not be smaller than minDir % in phase of tlLogic %" msgstr "maxDur % muss kleiner sein als minDir% in der Phase von tlLogic %" +#: D:\Repos\sumo/src\netload\NLHandler.cpp:889 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:889 msgid "Duplicate condition '%' in tlLogic '%'" msgstr "Doppelte Kondition '%' in LSA-Logik '%'" +#: D:\Repos\sumo/src\netload\NLHandler.cpp:942 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:942 msgid "Invalid person mode '%' in E1 detector definition '%'" msgstr "Ungültiger Personenmodus '%' in E1-Detektor-Definition '%'" +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1001 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1001 msgid "" "VTypeProbes are deprecated. Use fcd-output devices (assigned to the vType) " @@ -9393,14 +11464,17 @@ "VTypeProbes sind veraltet. Nutze stattdessen dem vtype zugewiesene fcd-" "output-Einrichtungen." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1061 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1061 msgid "Ignoring deprecated argument 'cont' for E2 detector '%'" msgstr "Ignoriere veraltetes Argument 'cont' des E2-Detektor '%'." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1077 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1077 msgid "Invalid person mode '%' in E2 detector definition '%'" msgstr "Ungültiger Personenmodus '%' in E2-Detektor-Definition '%'" +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1091 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1091 msgid "" "Trying to specify detector's lane by the given id since the argument 'lane' " @@ -9409,6 +11483,7 @@ "Es wird versucht den Fahrstreifen-Detektor anhand der gegeben ID zu " "spezifizieren, da das Argument 'lane' fehlt." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1131 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1131 msgid "" "Missing argument 'pos' for E2Detector '%'. Assuming detector start == lane " @@ -9417,6 +11492,7 @@ "Fehlendes Argument 'pos' für E2-Detektor '%'. Nehme Detektorstart == " "Fahrstreifenanfang von Fahrstreifen '%' an." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1136 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1136 msgid "" "Missing argument 'endPos' for E2Detector '%'. Assuming detector end == lane " @@ -9425,6 +11501,7 @@ "Fehlendes Argument 'endPos' für E2-Detektor '%'. Nehme Detektorende == " "Fahrstreifenende von Fahrstreifen '%' an." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1205 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1205 #, c-format msgid "" @@ -9433,46 +11510,62 @@ "Ignoriere Argument 'period' für den E2-Detektor '%', da das Argument 'tl' " "angegeben wurde." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1262 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1262 msgid "Invalid person mode '%' in E3 detector definition '%'" msgstr "Ungültiger Personenmodus '%' in E3-Detektor-Definition '%'" +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1341 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1341 msgid "Invalid person mode '%' in edgeData definition '%'" msgstr "Ungültiger Personenmodus '%' in edgeData-Definition '%'" +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1365 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1365 msgid "Unknown edge '%' in edgeData definition '%'" msgstr "Unbekannte Kante '%' in edgeData-Definition '%'" +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1372 +msgid "" +"LaneData '%' requested for mesoscopic simulation but --meso-lane-queue is " +"not active. Falling back to edgeData." +msgstr "" + +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1419 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1414 #, c-format msgid "Unknown from-edge '%' in connection." msgstr "Unbekannte Abfahrtskante '%' in der Verbindung." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1425 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1420 #, c-format msgid "Unknown to-edge '%' in connection." msgstr "Unbekannte Endkante '%' in der Verbindung." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1430 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1425 msgid "Invalid lane index in connection from '%' to '%'." msgstr "Ungültiger Fahrstreifenindex in der Verbindung von '%' zu '%'." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1511 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1506 #, c-format msgid "Unknown from-edge '%' in conflict." -msgstr "" +msgstr "Unbekannte Zufahrtskante '%' im Konflikt." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1516 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1511 #, c-format msgid "Unknown to-edge '%' in connflict." -msgstr "" +msgstr "Unbekannte Ausfahrtskante '%' im Konflikt." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1521 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1516 msgid "Invalid lane index in conflict with '%' to '%'." -msgstr "" +msgstr "Ungültiger Fahrstreifenindex im Konflikt von '%' nach '%'." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1573 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1568 msgid "" "no valid geo projection loaded from network. fcd-output.geo will not work" @@ -9480,60 +11573,80 @@ "Es wurde keine gültige Geoprojektion vom Netz geladen. Fcd-output.geo " "arbeitet nicht" +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1601 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1596 msgid "Replacing junction-taz '%' with loaded TAZ." msgstr "" "Ersetzte die Knotenpunkt-Verkehrsumlegungszone '%' mit geladener " "Verkehrsumlegungszone." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1644 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1639 msgid "Skipping visualization of taz '%', polygon already exists." msgstr "" "Überspringe Visualisierung der Verkehrsumlegungszone '%', Polygon existiert " "bereits." +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1675 #: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1670 msgid "At district '%': succeeding edge '%' does not exist." msgstr "Beim Bezirk '%': die nachfolgende Kante '%' existiert nicht." +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:116 #: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:116 msgid "Information about the number of nodes was missing." msgstr "Die Information über die Anzahl der Knoten fehlte." +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:126 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:143 #: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:126 #: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:143 msgid "Ignoring junction logic for junction '%'." msgstr "Ignoriere Knotenpunkt-Logik für den Knotenpunkt '%'." +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:333 #: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:333 msgid "Invalid traffic light type '%'" msgstr "Ungültiger LSA-Typ '%'" +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:344 #: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:344 #, c-format msgid "Another logic with id '%' and programID '%' exists." msgstr "Eine andere Logik mit der ID '%' und Programm-ID '%' existiert." +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:471 #: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:471 msgid "Traffic lights could not be built." msgstr "Lichtsignalanlagen konnten nicht erstellt werden." +#: D:\Repos\sumo/src\netload\NLNetShapeHandler.cpp:163 +#, c-format +msgid "" +"% edges of the primary network did not occur in the alternative-net-file" +msgstr "" + +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:75 #: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:75 msgid "Vaporizers are deprecated. Use rerouters instead." msgstr "Vaporizers sind veraltet. Nutze anstelle Rerouter." +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:84 #: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:84 msgid "Unknown edge ('%') referenced in a vaporizer." msgstr "Unbekannte Kante ('%') referenziert in einem Vaporizer." +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:93 #: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:93 msgid "A vaporization begin time is negative (edge id='%')." msgstr "Die Startzeit eines Vaporizers ist negativ (Kanten-ID='%')." +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:97 #: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:97 msgid "A vaporization ends before it starts (edge id='%')." msgstr "Eine Vaporization endet bevor sie startet (Kanten-ID='%')." +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:191 #: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:191 msgid "" "The overheadWireSegment '%' was not created as it is attached to internal " @@ -9542,6 +11655,7 @@ "Der Oberleitungsabschnitt '%' wurde nicht erstellt, da es an einen internen " "Fahrstreifen angeschlossen ist. Es wird automatisch erstellt." +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:196 #: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:196 #, c-format msgid "" @@ -9551,6 +11665,7 @@ "Der Oberleitungsabschnitt '%' wurde nicht erstellt, da es an einen internen " "Fahrstreifen angeschlossen ist. Es wird automatisch erstellt." +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:208 #: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:208 #, c-format msgid "" @@ -9560,6 +11675,7 @@ "Das Oberleitungssegment '%' hat eine falsche Position. Es wird automatisch " "von 0 bis zur Länge des Fahrstreifens gesetzt." +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:216 #: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:216 msgid "" "Overhead wire solver (Eigen) not compiled in, expect errors in overhead wire " @@ -9568,6 +11684,7 @@ "Oberleitungs-Löser (Eigen) ist nicht einkompiliert, Fehler in der " "Oberleitungssimulation erwartet" +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:376 #: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:376 msgid "" "A connecting overhead wire start segment '%' defined for overhead wire clamp " @@ -9577,6 +11694,7 @@ "Oberleitungsklemme '%' definiert ist, ist der Umspannstation '%' nicht " "zugewiesen." +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:378 #: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:378 msgid "" "A connecting overhead wire end segment '%' defined for overhead wire clamp " @@ -9585,6 +11703,7 @@ "Ein verbindendes Oberleitungs-Endsegment '%', das für die Oberleitungsklemme " "'%' definiert ist, ist der Umspannstation '%' nicht zugeordnet." +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:382 #: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:382 msgid "" "The overhead wire clamp '%' defined in an overhead wire section was not " @@ -9596,6 +11715,7 @@ " in zusätzlichen Dateien, bevor Sie den " "Oberleitungsabschnitt definieren." +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:397 #: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:397 msgid "" "Cannot check circuit, overhead circuit solver support (Eigen) not compiled " @@ -9604,6 +11724,7 @@ "Schaltkreis kann nicht geprüft werden, Oberleitungsschaltkreis-Löser (Eigen) " "ist nicht einkompiliert." +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:469 #: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:469 msgid "" "Not building overhead wire clamps, overhead wire solver support (Eigen) not " @@ -9612,6 +11733,7 @@ "Oberleitungsklemme wird nicht erstellt, Oberleitungs-Lösungsunterstützung " "(Eigen) nicht ein kompiliert." +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:472 #: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:472 msgid "" "Ignoring overhead wire clamps, they make no sense when overhead wire circuit " @@ -9620,48 +11742,58 @@ "Ignoriere Oberleitungsklammern, sie machen keinen Sinn wenn der " "Oberleitungsschaltkreis-Löser inaktiv ist." +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:526 #: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:526 msgid "Ignoring invalid access from non-pedestrian lane '%' in busStop '%'." msgstr "" "Ignoriere einen ungültigen Zugang vom nicht für Fußgänger zulässigen " "Fahrstreifen '%' in der Bushaltestelle '%'." +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:54 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:54 msgid "The generated net will be written to FILE" msgstr "Das generierte Netz wird nach FILE geschrieben" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:59 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:59 msgid "Prefix of files to write plain xml nodes, edges and connections to" msgstr "" "Präfix von Dateien, in die Plain-XML-Knoten, Kanten und Verbindungen " "geschrieben werden sollen" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:62 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:62 msgid "Write all lanes and their attributes even when they are not customized" msgstr "" "Alle Fahrstreifen und ihre Attribute, auch wenn sie nicht angepasst wurden, " "schreiben" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:69 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:69 msgid "Defines a prefix for edge and junction names" msgstr "Definiert ein Präfix für Kanten- und Knotenpunktnamen" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:74 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:74 msgid "Write geo coordinates in plain-xml" msgstr "Geokoordinaten in plain-xml schreiben" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:79 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:79 msgid "The generated net will be written to FILE using Amitran format" msgstr "Das generierte Netz wird im Amitran-Format in FILE geschrieben" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:82 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:82 msgid "The generated net will be written to FILE using MATsim format" msgstr "Das generierte Netz wird im MATsim-Format in FILE geschrieben" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:85 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:85 msgid "The generated net will be written to FILE using OpenDRIVE format" msgstr "Das generierte Netz wird im OpenDRIVE-Format in FILE geschrieben" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:88 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:88 msgid "" "The generated net will be written to dlr-navteq files with the given PREFIX" @@ -9669,6 +11801,7 @@ "Das generierte Netz wird mit dem angegebenen Präfix in dlr-navteq-Dateien " "geschrieben" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:91 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:91 msgid "" "The network coordinates are written with the specified level of output " @@ -9676,38 +11809,47 @@ msgstr "" "Die Netzkoordinaten werden mit der angegebenen Ausgabegenauigkeit geschrieben" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:94 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:94 msgid "Street names will be included in the output (if available)" msgstr "Straßennamen werden in die Ausgabe aufgenommen (falls verfügbar)" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:97 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:97 msgid "Writes original names, if given, as parameter" msgstr "Schreibt Originalnamen, falls angegeben, als Parameter" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:100 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:100 msgid "Writes street signs as POIs to FILE" msgstr "Schreibt Straßenschilder als Pol in FILE" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:104 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:104 msgid "Writes public transport stops to FILE" msgstr "Schreibt Haltepunkte des ÖV in FILE" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:106 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:106 msgid "Writes public transport lines to FILE" msgstr "Schreibt ÖV-Linien in FILE" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:108 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:108 msgid "Clean-up pt stops that are not served by any line" msgstr "Haltestellen, die von keiner Linie bedient werden, entfernen" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:111 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:111 msgid "Writes parking areas to FILE" msgstr "Schreibt Parkplätze in FILE" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:114 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:114 msgid "Analyze topology of the railway network" msgstr "Topologie des Eisenbahnnetzes analysieren" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:118 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:118 msgid "" "Write shapes that are embedded in the network input and that are not " @@ -9716,6 +11858,7 @@ "Shapes, die in die Netzwerkeingabe eingebettet sind und nicht von " "polyconvert (OpenDRIVE) unterstützt werden, schreiben" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:123 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:123 msgid "" "Builds parameterized curves whenever the angular change between straight " @@ -9724,12 +11867,14 @@ "Erstellt parametrisierte Kurven, wenn die Winkeländerung zwischen geraden " "Segmenten in Grad FLOAT überschreitet" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:127 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:127 msgid "Write lanes in lefthand networks on the left side (positive indices)" msgstr "" "Fahrstreifen in Linksverkehrnetzen von der linken Seite aus (positive " "Indizes) schreiben" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:130 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:130 msgid "" "Match loaded shapes to the closest edge within FLOAT and export as road " @@ -9738,10 +11883,12 @@ "Geladene Shapes der nächstgelegenen Kante in FLOAT zuordnen und Export als " "Straßenobjekte" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:153 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:154 msgid "OpenDRIVE export needs internal links computation." msgstr "OpenDRIVE-Export benötigt eine interne Link-Berechnung." +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:163 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:164 msgid "" "OpenDRIVE cannot represent oblique lane cuts and should use option " @@ -9750,10 +11897,12 @@ "OpenDRIVE kann keine schrägen Fahrstreifenschnitte darstellen und sollte die " "Option 'rechteckiger Fahrstreifenschnitt' verwenden." +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:173 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:173 msgid "public transport lines output requires 'ptstop-output' to be set" msgstr "Die Ausgabe der ÖV-Linien erfordert, dass 'ptstop-output' gesetzt ist" +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:177 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:177 msgid "" "'ptline-clean-up' only works in conjunction with 'ptline-output'. Ignoring " @@ -9762,10 +11911,12 @@ "'ptline-clean-up' arbeitet nur in Verbindung mit 'ptline-output'. Ignoriere " "ungültige Option." +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:186 #: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:186 msgid "Writing network" msgstr "Schreibe Netz" +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:91 #: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:91 msgid "" "DlrNavteq node data will be written in (floating point) cartesian coordinates" @@ -9773,15 +11924,19 @@ "DlrNavteq-Knotendaten werden in (Gleitkomma-)kartesischen Koordinaten " "geschrieben" +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:155 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:162 #: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:155 #: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:162 msgid "Could not reconstruct shape for edge:'%' (%)." msgstr "Konnte Shape für Kante: '%' nicht rekonstruieren (%)." +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:313 #: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:307 msgid "Could not compute smooth shape for edge '%'." msgstr "Glatte Shape für die Kante '%' konnte nicht berechnet werden." +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:456 #: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:450 msgid "" "Could not compute smooth shape from lane '%' to lane '%'. Use option " @@ -9791,6 +11946,7 @@ "Nutze Option 'junctions.scurve-stretch' oder vergrößere den Radius des " "Knotenpunktes '%', um dies zu beheben." +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:963 #: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:957 msgid "" "Uneven stop line at lane '%' (dist=%) cannot be represented in OpenDRIVE." @@ -9798,6 +11954,7 @@ "Eine unebene Haltelinie auf den Fahrstreifen '%' (dist=%) kann in OpenDRIVE " "nicht dargestellt werden." +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:235 #: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:231 msgid "" "Embedding TAZ-data inside the network is deprecated. Use option --taz-output " @@ -9806,16 +11963,20 @@ "Einbetten von Verkehrsumlegungszonen-daten in das Netz ist veraltet. Nutze " "anstelle die Option --taz-output" +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:458 #: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:351 msgid "Could not find bidi-connection for edge '%'" msgstr "" "Es konnte keine Zweirichtungs-Verbindung für die Kante '%' gefunden werden" +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:545 #: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:517 #, c-format msgid "Lane '%' has a maximum allowed speed of 0." msgstr "Fahrstreifen '%' hat eine Höchstgeschwindigkeit von 0." +#: D:\Repos\sumo/src\netwrite\NWWriter_XML.cpp:88 +#: D:\Repos\sumo/src\polyconvert\PCPolyContainer.cpp:105 #: /home/micha/programming/sumo/src/netwrite/NWWriter_XML.cpp:88 #: /home/micha/programming/sumo/src/polyconvert/PCPolyContainer.cpp:105 msgid "" @@ -9823,41 +11984,179 @@ msgstr "" "Ignoriere Option \"proj.plain-geo\", da keine geo-conversion definiert wurde" +#: D:\Repos\sumo/src\od2trips_main.cpp:80 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:80 +msgid "Loads TAZ (districts; also from networks) from FILE(s)" +msgstr "Ladet Verkehrsumlegungszone (Bezirke; auch von Netzen) aus FILE(s)" + +#: D:\Repos\sumo/src\od2trips_main.cpp:102 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:102 +msgid "Writes trip definitions into FILE" +msgstr "Schreibt Fahrtendefinitionen in FILE" + +#: D:\Repos\sumo/src\od2trips_main.cpp:105 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:105 +msgid "Writes flow definitions into FILE" +msgstr "Schreibt Flussdefinitionen in FILE" + +#: D:\Repos\sumo/src\od2trips_main.cpp:108 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:108 +msgid "Writes probabilistic flow instead of evenly spaced flow" +msgstr "" +"Schreibt probabilistischen Fluss anstatt eines Flusses mit gleichmäßigen " +"Abständen" + +#: D:\Repos\sumo/src\od2trips_main.cpp:111 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:111 +msgid "Writes pedestrians instead of vehicles" +msgstr "Schreibt Fußgänger anstelle von Fahrzeugen" + +#: D:\Repos\sumo/src\od2trips_main.cpp:114 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:114 +msgid "Writes persontrips instead of vehicles" +msgstr "Schreibt Personenfahrten anstelle von Fahrzeugen" + +#: D:\Repos\sumo/src\od2trips_main.cpp:117 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:117 +msgid "Add modes attribute to personTrips" +msgstr "modes-Attribut zu Personenfahrten (personTrip) hinzufügen" + +#: D:\Repos\sumo/src\od2trips_main.cpp:124 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:124 +msgid "Writes trips between junctions" +msgstr "Schreibt Fahrten zwischen Knotenpunkten" + +#: D:\Repos\sumo/src\od2trips_main.cpp:129 +#: D:\Repos\sumo/src\router\ROFrame.cpp:116 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:129 +#: /home/micha/programming/sumo/src/router/ROFrame.cpp:116 +msgid "Defines the begin time; Previous trips will be discarded" +msgstr "Definiert die Startzeit; Frühere Fahrten werden verworfen" + +#: D:\Repos\sumo/src\od2trips_main.cpp:132 +#: D:\Repos\sumo/src\router\ROFrame.cpp:119 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:132 +#: /home/micha/programming/sumo/src/router/ROFrame.cpp:119 +msgid "" +"Defines the end time; Later trips will be discarded; Defaults to the maximum " +"time that SUMO can represent" +msgstr "" +"Definiert die Endzeit; Spätere Fahrten werden verworfen; Standardmäßig die " +"maximale Zeit, die SUMO darstellen kann" + +#: D:\Repos\sumo/src\od2trips_main.cpp:140 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:140 +msgid "Spreads trips uniformly over each time period" +msgstr "Verteilt Fahrten gleichmäßig über jedes Zeitintervall" + +#: D:\Repos\sumo/src\od2trips_main.cpp:143 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:143 +msgid "Always choose source and sink edge which are not identical" +msgstr "Wähle immer eine von der Quellkante verschiedene Zielkante" + +#: D:\Repos\sumo/src\od2trips_main.cpp:149 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:149 +msgid "Defines the prefix for vehicle names" +msgstr "Definiert das Präfix für Fahrzeugnamen" + +#: D:\Repos\sumo/src\od2trips_main.cpp:162 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:162 +msgid "Disable console output of current time step" +msgstr "Konsolenausgabe des aktuellen Zeitschritts deaktivieren" + +#: D:\Repos\sumo/src\od2trips_main.cpp:193 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:193 +msgid "No TAZ input file (-n) specified." +msgstr "Keine Verkehrsumlegungszonen-Eingabedatei (-n) spezifiziert." + +#: D:\Repos\sumo/src\od2trips_main.cpp:197 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:197 +msgid "No input specified." +msgstr "Keine Eingabe spezifiziert." + +#: D:\Repos\sumo/src\od2trips_main.cpp:201 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:201 +msgid "No trip table output file (-o) or flow-output is specified." +msgstr "" +"Keine Fahrtenverzeichnis Ausgabedatei (-o) oder Fluss-Ausgabedatei ist " +"spezifiziert." + +#: D:\Repos\sumo/src\od2trips_main.cpp:205 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:205 +msgid "Only one of the the options 'pedestrians' and 'persontrips' may be set." +msgstr "" +"Nur eine der Optionen 'pedestrians' und 'persontrips' darf angewendet werden." + +#: D:\Repos\sumo/src\od2trips_main.cpp:248 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:248 +msgid "" +"Importer of O/D-matrices for the microscopic, multi-modal traffic simulation " +"SUMO." +msgstr "" +"Import von Quelle-Ziel-Matrizen für die mikroskopische, multimodale " +"Verkehrssimulation sumo." + +#: D:\Repos\sumo/src\od2trips_main.cpp:270 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:270 +msgid "You must supply a TAZ, network or districts file ('-n')." +msgstr "" +"Sie müssen eine Verkehrsumlegungszone-, Netz- oder Bezirksdatei ('-n') " +"angeben." + +#: D:\Repos\sumo/src\od2trips_main.cpp:276 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:276 +msgid "No districts loaded." +msgstr "Keine Bezirke geladen." + +#: D:\Repos\sumo/src\od2trips_main.cpp:282 +#: /home/micha/programming/sumo/src/od2trips_main.cpp:282 +msgid "No vehicles loaded." +msgstr "Keine Fahrzeuge geladen." + +#: D:\Repos\sumo/src\od\ODAmitranHandler.cpp:48 #: /home/micha/programming/sumo/src/od/ODAmitranHandler.cpp:48 msgid "Invalid duration for timeSlice starting %." msgstr "Ungültige Dauer für den Zeitabschnitt ab %." +#: D:\Repos\sumo/src\od\ODDistrictCont.cpp:72 #: /home/micha/programming/sumo/src/od/ODDistrictCont.cpp:72 #, c-format msgid "Could not access network file '%' to load." msgstr "Zugriff auf Netz-Datei '%' zum Laden nicht möglich." +#: D:\Repos\sumo/src\od\ODDistrictHandler.cpp:130 #: /home/micha/programming/sumo/src/od/ODDistrictHandler.cpp:130 msgid "'probability' must be positive (in definition of % '%')." msgstr "'probability' muss positiv sein (in der Definition von % '%')." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:80 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:80 msgid "Missing origin '%' and destination '%' (% vehicles)." msgstr "Fehlender Start '%' und Ziel '%' (% Fahrzeuge)." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:86 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:86 msgid "Missing origin '%' (% vehicles)." msgstr "Fehlender Ursprung '%' (% Fahrzeuge)." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:91 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:91 msgid "Missing destination '%' (% vehicles)." msgstr "Fehlendes Ziel '%' (% Fahrzeuge)." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:97 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:97 #, c-format msgid "District '%' has no source." msgstr "Bezirk '%' hat keine Quelle." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:101 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:101 #, c-format msgid "District '%' has no sink." msgstr "Bezirk '%' hat kein Ziel." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:193 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:193 msgid "" "Cannot find different source and sink edge for origin '%' and destination " @@ -9866,6 +12165,8 @@ "Unterschiedliche Quell- und Zielkante für den Ursprung '%' und Ziel '%' kann " "nicht gefunden werden." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:364 D:\Repos\sumo/src\od\ODMatrix.cpp:384 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:410 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:364 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:384 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:410 @@ -9877,45 +12178,56 @@ "Wahrscheinlichkeit dargestellt werden. Es wird auf einfache Abstände " "zurückgefallen." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:434 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:434 msgid "End of file while reading %." msgstr "Dateiende beim Lesen von %." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:461 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:461 msgid "Broken period definition '%'." msgstr "Ungültige Perioden-Definition '%'." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:475 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:475 msgid "Broken factor: '%'." msgstr "Gebrochener Faktor: '%'." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:509 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:509 #, c-format msgid "Missing line with % district names." msgstr "Fehlende Zeile mit % Bezirksnamen." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:519 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:519 msgid "Missing line for district %." msgstr "Fehlende Zeile für Bezirk %." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:533 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:533 msgid "More entries than districts found." msgstr "Mehr Einträge als Bezirke gefunden." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:538 D:\Repos\sumo/src\od\ODMatrix.cpp:586 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:538 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:586 msgid "Not numeric vehicle number in line '%'." msgstr "Keine nummerische Fahrzeuganzahl in Zeile '%'." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:584 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:584 msgid "Missing at least one information in line '%'." msgstr "Mindestens eine Information in Zeile '%' fehlt." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:647 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:154 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:647 #: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:154 msgid "Could not open '%'." msgstr "Konnte '%' nicht öffnen." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:658 D:\Repos\sumo/src\od\ODMatrix.cpp:664 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:658 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:664 #, c-format @@ -9923,171 +12235,86 @@ msgstr "" "'%' enthält nicht die benötigten Informationen für die beschriebene Zeit." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:674 D:\Repos\sumo/src\od\ODMatrix.cpp:687 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:674 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:687 #, c-format msgid "Could not access matrix file '%' to load." msgstr "Kein Zugriff auf die Matrix-Datei '%' zum Laden." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:714 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:714 #, c-format msgid "Could not access route file '%' to load." msgstr "Kein Zugriff auf die Routen-Datei '%' zum Laden." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:731 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:731 msgid "Assuming 24 entries for a day timeline, but got %." msgstr "Nehme 24 Einträge für eine Tages-Zeitlinie an, aber bekam %." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:741 #: /home/micha/programming/sumo/src/od/ODMatrix.cpp:741 msgid "Broken time line definition: missing a value in '%'." msgstr "Gebrochene Zeitlinien-Definition: fehlender Wert in '%'." -#: /home/micha/programming/sumo/src/od2trips_main.cpp:80 -msgid "Loads TAZ (districts; also from networks) from FILE(s)" -msgstr "Ladet Verkehrsumlegungszone (Bezirke; auch von Netzen) aus FILE(s)" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:102 -msgid "Writes trip definitions into FILE" -msgstr "Schreibt Fahrtendefinitionen in FILE" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:105 -msgid "Writes flow definitions into FILE" -msgstr "Schreibt Flussdefinitionen in FILE" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:108 -msgid "Writes probabilistic flow instead of evenly spaced flow" -msgstr "" -"Schreibt probabilistischen Fluss anstatt eines Flusses mit gleichmäßigen " -"Abständen" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:111 -msgid "Writes pedestrians instead of vehicles" -msgstr "Schreibt Fußgänger anstelle von Fahrzeugen" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:114 -msgid "Writes persontrips instead of vehicles" -msgstr "Schreibt Personenfahrten anstelle von Fahrzeugen" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:117 -msgid "Add modes attribute to personTrips" -msgstr "modes-Attribut zu Personenfahrten (personTrip) hinzufügen" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:124 -msgid "Writes trips between junctions" -msgstr "Schreibt Fahrten zwischen Knotenpunkten" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:129 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:116 -msgid "Defines the begin time; Previous trips will be discarded" -msgstr "Definiert die Startzeit; Frühere Fahrten werden verworfen" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:132 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:119 -msgid "" -"Defines the end time; Later trips will be discarded; Defaults to the maximum " -"time that SUMO can represent" -msgstr "" -"Definiert die Endzeit; Spätere Fahrten werden verworfen; Standardmäßig die " -"maximale Zeit, die SUMO darstellen kann" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:140 -msgid "Spreads trips uniformly over each time period" -msgstr "Verteilt Fahrten gleichmäßig über jedes Zeitintervall" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:143 -msgid "Always choose source and sink edge which are not identical" -msgstr "Wähle immer eine von der Quellkante verschiedene Zielkante" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:149 -msgid "Defines the prefix for vehicle names" -msgstr "Definiert das Präfix für Fahrzeugnamen" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:162 -msgid "Disable console output of current time step" -msgstr "Konsolenausgabe des aktuellen Zeitschritts deaktivieren" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:193 -msgid "No TAZ input file (-n) specified." -msgstr "Keine Verkehrsumlegungszonen-Eingabedatei (-n) spezifiziert." - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:197 -msgid "No input specified." -msgstr "Keine Eingabe spezifiziert." - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:201 -msgid "No trip table output file (-o) or flow-output is specified." -msgstr "" -"Keine Fahrtenverzeichnis Ausgabedatei (-o) oder Fluss-Ausgabedatei ist " -"spezifiziert." - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:205 -msgid "Only one of the the options 'pedestrians' and 'persontrips' may be set." -msgstr "" -"Nur eine der Optionen 'pedestrians' und 'persontrips' darf angewendet werden." - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:248 -msgid "" -"Importer of O/D-matrices for the microscopic, multi-modal traffic simulation " -"SUMO." -msgstr "" -"Import von Quelle-Ziel-Matrizen für die mikroskopische, multimodale " -"Verkehrssimulation sumo." - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:270 -msgid "You must supply a TAZ, network or districts file ('-n')." -msgstr "" -"Sie müssen eine Verkehrsumlegungszone-, Netz- oder Bezirksdatei ('-n') " -"angeben." - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:276 -msgid "No districts loaded." -msgstr "Keine Bezirke geladen." - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:282 -msgid "No vehicles loaded." -msgstr "Keine Fahrzeuge geladen." - +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:471 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:168 #: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:471 #: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:168 msgid "Could not load '%'." msgstr "'%' konnte nicht geladen werden." +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:491 #: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:491 msgid "Loaded decal '%' with bounding box % %." msgstr "Aufkleber '%' mit Begrenzungsrahmen % % geladen." +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:597 #: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:597 msgid "Could not load '%'. The model is replaced by a cone shape." msgstr "" "'%' konnte nicht geladen werden. Das Model wird durch eine Kegel-Shape " "ersetzt." +#: D:\Repos\sumo/src\osgview\GUIOSGManipulator.cpp:257 #: /home/micha/programming/sumo/src/osgview/GUIOSGManipulator.cpp:257 #, c-format msgid "Currently in % camera mode. Press [F] to switch." msgstr "Derzeit im Kameramodus %. Drücke [F] zum Umschalten." +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:166 #: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:166 msgid "Could not load traffic light files." msgstr "LSA-Dateien konnten nicht geladen werden." +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:454 #: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:454 msgid "Invalid link index in '%'." msgstr "Ungültiger Verbindungsindex in '%'." +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:456 #: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:456 msgid "Unknown traffic light in '%'." msgstr "Unbekannte LSA in '%'." +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:992 #: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:992 msgid " (No projection defined)" msgstr " (Keine Projektion definiert)" +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:996 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:997 #: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:996 #: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:997 msgid "N/A" msgstr "Nicht verfügbar" +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:107 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:208 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:263 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:341 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:240 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:107 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:208 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:263 @@ -10096,10 +12323,17 @@ msgid "Unable to project coordinates for polygon '%'." msgstr "Koordinaten für das Polygon '%' können nicht projiziert werden." +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:184 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:184 msgid "Missing id under '%'" msgstr "Fehlende ID unter '%'" +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:232 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:265 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:140 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:299 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:271 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:385 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:232 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:265 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:140 @@ -10109,48 +12343,59 @@ msgid "Unable to project coordinates for POI '%'." msgstr "Unfähig Koordinaten für den Pol '%' zu projizieren." +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:300 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:300 msgid "Unsupported shape type occurred (id='%')." msgstr "Nicht unterstützter Shape-Typ aufgetreten (id='%')." +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:71 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:71 msgid "Could not open dlr-navteq-poi-file '%'." msgstr "dlr-navteq-poi-file '%' konnte nicht geöffnet werden." +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:86 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:86 msgid "Could not open dlr-navteq-poly-file '%'." msgstr "dlr-navteq-poly-file '%' konnte nicht geöffnet werden." +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:128 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:128 msgid "Invalid x coordinate for POI '%'." msgstr "Ungültige x-Koordinate für Pol '%'." +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:132 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:132 msgid "Invalid y coordinate for POI '%'." msgstr "Ungültige y-Koordinate für Pol '%'." +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:137 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:137 msgid "The name of a POI is missing." msgstr "Der Name vom Pol fehlt." +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:191 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:191 msgid "Invalid dlr-navteq-polygon - line: '%'." msgstr "Ungültiges dlr-navteq-polygon - Zeile: '%'." +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:220 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:220 #, c-format msgid "The polygon '%' is empty." msgstr "Das Polygon '%' ist leer." +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:224 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:224 msgid "The name of a polygon is missing; it will be discarded." msgstr "Fehlender Name für ein Polygon; es wird verworfen." +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:157 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:157 msgid "Could not import polygon from relation '%' (missing ways)" msgstr "" "Polygon aus der Beziehung '%' konnte nicht importiert werden (fehlende Wege)" +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:212 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:212 msgid "" "Could not import polygon from relation '%' (name:% reason: found gap of %m " @@ -10161,45 +12406,55 @@ "Lücke von %m zu Weg '%' gefunden)\n" " Gesamtlänge der verbleibenden Wege: %m." +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:230 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:230 msgid "Assembled polygon from relation '%' (name:%)" msgstr "Zusammengesetztes Polygon aus der Beziehung '%' (Name:%)" +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:254 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:254 #, c-format msgid "Polygon '%' has no shape." msgstr "Polygon '%' hat keine Shape." +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:114 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:114 msgid "Could not open visum-file '%'." msgstr "Visum-Datei '%' konnte nicht geöffnet werden." +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:149 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:149 msgid "Unable to project coordinates for point '%'." msgstr "Koordinaten für den Punkt '%' können nicht projiziert werden." +#: D:\Repos\sumo/src\polyconvert\PCLoaderXML.cpp:63 #: /home/micha/programming/sumo/src/polyconvert/PCLoaderXML.cpp:63 msgid "Could not open xml-file '%'." msgstr "XML-Datei '%' konnte nicht geöffnet werden." +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:55 #: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:55 msgid "Could not open net-file '%'." msgstr "Netz-Datei '%' konnte nicht geöffnet werden." +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:71 #: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:71 msgid "Could not find projection parameter in net." msgstr "Keine Projektions-Parameter im Netz gefunden." +#: D:\Repos\sumo/src\polyconvert\PCTypeDefHandler.cpp:71 #: /home/micha/programming/sumo/src/polyconvert/PCTypeDefHandler.cpp:71 msgid "Could not add polygon type '%' (probably the id is already used)." msgstr "" "Der Polygon-Typ '%' konnte nicht hinzugefügt werden (wahrscheinlich wird die " "ID bereits verwendet)." +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:81 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:81 msgid "Loads SUMO-network FILE as reference to offset and projection" msgstr "Lädt SUMO-Netz FILE als Referenz für den Versatz und die Projektion" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:85 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:85 msgid "" "Reads polygons from FILE assuming they're coded in DLR-Navteq (Elmar)-format" @@ -10207,6 +12462,7 @@ "Liest Polygone aus FILE unter der Annahme, dass sie im DLR-Navteq (Elmar)-" "Format kodiert sind" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:87 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:87 msgid "" "Reads pois from FILE+ assuming they're coded in DLR-Navteq (Elmar)-format" @@ -10214,29 +12470,35 @@ "Liest Pole aus FILE unter der Annahme, dass sie im DLR-Navteq (Elmar)-Format " "codiert sind" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:92 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:92 msgid "Reads polygons from FILE assuming it's a Visum-net" msgstr "" "Liest Polygone aus FILE unter der Annahme, dass es sich um ein Visum-Netz " "handelt" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:100 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:100 msgid "Reads pois and shapes from FILE assuming they're coded in XML" msgstr "" "Liest PoI und Shapes aus FILE unter der Annahme, dass sie in XML kodiert sind" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:105 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:105 msgid "Reads pois from FILE+ assuming they're coded in OSM" msgstr "Liest Pol aus FILE unter der Annahme, dass sie in OSM codiert sind" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:107 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:107 msgid "The type will be made of the key-value - pair" msgstr "Der Typ wird aus dem Schlüsselwertpaar gebildet" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:109 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:109 msgid "The id will be set from the given 'name' attribute" msgstr "Die ID wird aus dem angegebenen 'name'-Attribut festgelegt" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:111 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:111 msgid "" "If FLOAT >= 0, assemble one polygon from all ways of a relation if they all " @@ -10245,33 +12507,38 @@ "Wenn FLOAT >= 0 ist, setze ein Polygon aus allen Wegen einer Beziehung " "zusammen, wenn diese eine maximale Lücke FLOAT zum Nachbarweg haben" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:118 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:118 msgid "Reads shapes from shapefiles FILE+" msgstr "Liest Shapes aus Shapedatei FILE" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:122 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:122 -#, fuzzy msgid "Guesses the shapefile's projection" -msgstr "Errät die Shapedatei Projektion" +msgstr "Errät die Projektion der Shape-Datei" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:130 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:130 msgid "Defines in which column the id can be found" msgstr "Definiert, in welcher Spalte die ID zu finden ist" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:134 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:134 msgid "Defines which columns form the type id (comma separated list)" msgstr "Definiert, welche Spalten die Typ ID bilden (kommaseparierte Liste)" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:137 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:137 msgid "A running number will be used as id" msgstr "Als ID wird eine laufende Nummer verwendet" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:140 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:140 msgid "Extract all additional columns as params" msgstr "Alle zusätzlichen Spalten als Parameter extrahieren" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:143 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:143 -#, fuzzy msgid "" "[auto|true|false]. Forces the 'fill' status to the given value. Default " "'auto' tries to determine it from the data type" @@ -10279,21 +12546,28 @@ "[auto|true|false]. Erzwingt den Füllstatus auf den angegebenen Wert. " "Standard 'auto' versucht es aus dem Datentyp zu ermitteln" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:148 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:148 msgid "Reads types from FILE" msgstr "Liest Typen aus FILE" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:156 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:156 msgid "Write generated polygons/pois to FILE" msgstr "Generierte Polygone/Pole in FILE schreiben" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:159 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:159 -#, fuzzy msgid "Write generated polygons/pois to a dlr-tdp file with the given prefix" msgstr "" "Generierte Polygone/Pole in eine dlr-tdp Datei mit der gegebenen Präfix " "schreiben" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:165 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:169 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:172 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:177 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:181 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:165 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:169 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:172 @@ -10302,10 +12576,12 @@ msgid "Pruning" msgstr "Beschneidet" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:165 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:165 msgid "Enables pruning on net boundaries" msgstr "Aktiviert das Beschneiden an Netzgrenzen" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:169 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:169 msgid "" "Uses FLOAT,FLOAT,FLOAT,FLOAT as offset definition added to the net boundary. " @@ -10316,22 +12592,27 @@ "addiert wird. Positive Werte vergrößern die Grenze auf allen Seiten, während " "negative Werte sie verkleinern." +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:172 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:172 msgid "Uses STR as pruning boundary" msgstr "Verwendet STR als Beschneidungsgrenze" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:177 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:177 msgid "Items in STR will be kept though out of boundary" msgstr "Gegenstände in STR werden außerhalb der Grenzen gehalten" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:181 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:181 msgid "Items with names in STR[] will be removed" msgstr "Elemente mit Namen in STR[] werden entfernt" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:196 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:196 msgid "Imports all attributes as key/value pairs" msgstr "Importiert alle Attribute als Schlüssel/Werte-Paare" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:202 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:202 msgid "" "Adds FLOAT to the layer value for each poi (i.e. to raise it above polygons)" @@ -10339,35 +12620,42 @@ "Fügt FLOAT zum Layer-Wert für jeden PoI hinzu (d.h. um ihn über Polygone zu " "erheben)" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:206 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:206 msgid "Sets STR as default color" msgstr "Legt STR als Standardfarbe fest" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:209 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:209 msgid "Sets STR as default prefix" msgstr "Legt STR als Standardpräfix fest" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:212 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:212 msgid "Sets STR as default type" msgstr "Legt STR als Standardtyp fest" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:215 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:215 -#, fuzzy msgid "Fills polygons by default" -msgstr "Füllt standardmäßig Polygone" +msgstr "Füllt Polygone standardmäßig" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:218 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:218 msgid "Sets FLOAT as default layer" msgstr "Legt FLOAT als Standardebene fest" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:221 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:221 msgid "Sets default action to discard" msgstr "Legt die Standardaktion zum Verwerfen fest" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:225 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:225 msgid "Write geo coordinates in output" msgstr "Geokoordinaten in Ausgabe schreiben" +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:232 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:232 msgid "" "Importer of polygons and POIs for the microscopic, multi-modal traffic " @@ -10376,11 +12664,13 @@ "Import von Polygonen und PoI für die mikroskopische, multimodale " "Verkehrssimulation sumo." +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:285 #: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:285 msgid "In order to prune the input on the net, you have to supply a network." msgstr "" "Um die Eingabe im Netz zu beschneiden, müssen Sie ein Netz bereitstellen." +#: D:\Repos\sumo/src\router\ROEdge.cpp:204 #: /home/micha/programming/sumo/src/router/ROEdge.cpp:204 msgid "" "No interval matches passed time=% in edge '%'.\n" @@ -10389,6 +12679,7 @@ "Kein Intervall stimmt überein mit der Zeit=% in Kante '%'.\n" " Kantenlänge / maximale Geschwindigkeit verwenden." +#: D:\Repos\sumo/src\router\ROEdge.cpp:230 #: /home/micha/programming/sumo/src/router/ROEdge.cpp:230 msgid "" "No interval matches passed time=% in edge '%'.\n" @@ -10397,6 +12688,7 @@ "Kein Intervall stimmt überein mit der Zeit=% in Kante '%'.\n" " Kantenlänge / Kantengeschwindigkeit verwenden." +#: D:\Repos\sumo/src\router\ROEdge.cpp:453 #: /home/micha/programming/sumo/src/router/ROEdge.cpp:453 msgid "" "Option weights.priority-factor does not take effect because all edges have " @@ -10405,65 +12697,79 @@ "Die Option weights.priority-factor bewirkt keinen Effekt, da alle Kanten den " "gleichen Vorrang haben." +#: D:\Repos\sumo/src\router\ROFrame.cpp:47 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:47 msgid "Write generated routes to FILE" msgstr "Generierte Routen in FILE schreiben" +#: D:\Repos\sumo/src\router\ROFrame.cpp:53 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:53 msgid "Write used vehicle types into separate FILE" msgstr "Verwendete Fahrzeugtypen in separaten FILE schreiben" +#: D:\Repos\sumo/src\router\ROFrame.cpp:56 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:56 -#, fuzzy msgid "Keep vTypeDistribution ids when writing vehicles and their types" msgstr "" "Fahrzeugtypverteilungs-IDs beibehalten, wenn Fahrzeuge und ihre Typen " "geschrieben werden" +#: D:\Repos\sumo/src\router\ROFrame.cpp:63 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:63 msgid "Use FILE as SUMO-network to route on" msgstr "FILE als SUMO-Netz für Routen verwenden" +#: D:\Repos\sumo/src\router\ROFrame.cpp:66 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:66 msgid "Write vehicles that reference routes by their id" msgstr "Fahrzeuge, die Routen anhand ihrer ID referenzieren schreiben" +#: D:\Repos\sumo/src\router\ROFrame.cpp:73 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:73 msgid "Read additional network data (districts, bus stops) from FILE(s)" msgstr "Zusätzliche Netzdaten (Bezirke, Haltestellen) aus FILE(s) lesen" +#: D:\Repos\sumo/src\router\ROFrame.cpp:87 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:87 msgid "Read sumo routes, alternatives, flows, and trips from FILE(s)" msgstr "Sumo-Routen, Alternativen, Abläufe und Fahrten aus FILE(s) lesen" +#: D:\Repos\sumo/src\router\ROFrame.cpp:101 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:101 msgid "Read network weights from FILE(s)" msgstr "Netzgewichte aus FILE(s) lesen" +#: D:\Repos\sumo/src\router\ROFrame.cpp:104 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:104 msgid "Read lane-based network weights from FILE(s)" msgstr "Fahrstreifenbasierte Netzgewischte aus FILE(s) lesen" +#: D:\Repos\sumo/src\router\ROFrame.cpp:125 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:125 msgid "Continue if a route could not be build" msgstr "Fortfahren wenn eine Route nicht erstellt werden konnte" +#: D:\Repos\sumo/src\router\ROFrame.cpp:128 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:128 msgid "Prune the number of alternatives to INT" msgstr "Reduziere die Anzahl der Alternativen zu INT" +#: D:\Repos\sumo/src\router\ROFrame.cpp:131 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:131 msgid "Use origin and destination zones (districts) for in- and output" msgstr "Herkunfts- und Zielzonen (Bezirke) für Ein- und Ausgabe verwenden" +#: D:\Repos\sumo/src\router\ROFrame.cpp:139 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:139 msgid "Assume input is unsorted" msgstr "Die Eingabe ist unsortiert annehmen" +#: D:\Repos\sumo/src\router\ROFrame.cpp:148 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:148 msgid "generate random departure times for flow input" msgstr "generiert zufällige Abfahrtszeiten für die Flusseingabe" +#: D:\Repos\sumo/src\router\ROFrame.cpp:151 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:151 msgid "" "Remove loops within the route; Remove turnarounds at start and end of the " @@ -10472,10 +12778,12 @@ "Schleifen innerhalb der Route entfernen; Entferne Wendepunkte am Anfang und " "Ende der Route" +#: D:\Repos\sumo/src\router\ROFrame.cpp:154 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:154 msgid "Tries to correct a false route" msgstr "Versuch eine falsche Route zu korrigieren" +#: D:\Repos\sumo/src\router\ROFrame.cpp:157 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:157 msgid "" "Tries to correct an invalid starting edge by using the first usable edge " @@ -10484,6 +12792,7 @@ "Versuch eine ungültige Anfangskante zu korrigieren, indem stattdessen die " "erste verwendbare Kante verwendet wird" +#: D:\Repos\sumo/src\router\ROFrame.cpp:160 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:160 msgid "" "Tries to correct an invalid destination edge by using the last usable edge " @@ -10492,6 +12801,7 @@ "Versuch eine ungültige Zielkante zu korrigieren, indem stattdessen die " "letzte verwendbare Kante verwendet wird" +#: D:\Repos\sumo/src\router\ROFrame.cpp:163 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:163 msgid "" "Maximum distance when mapping input coordinates (fromXY etc.) to the road " @@ -10500,19 +12810,22 @@ "Maximale Entfernung bei der Zuordnung von Eingabekoordinaten (von x, y usw.) " "zum Straßennetz" +#: D:\Repos\sumo/src\router\ROFrame.cpp:166 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:166 -#, fuzzy msgid "Match positions to junctions instead of edges" -msgstr "Ordnet Positionen zu Knotenpunkten statt Kanten zu" +msgstr "Ordnet Positionen Knotenpunkten statt Kanten zu" +#: D:\Repos\sumo/src\router\ROFrame.cpp:169 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:169 msgid "Aggregate routing queries with the same origin" msgstr "Routingabfragen mit demselben Ursprung aggregieren" +#: D:\Repos\sumo/src\router\ROFrame.cpp:173 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:173 msgid "The number of parallel execution threads used for routing" msgstr "Die Anzahl paralleler Threads, die für das Routing verwendet werden" +#: D:\Repos\sumo/src\router\ROFrame.cpp:177 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:177 msgid "" "Select among routing algorithms ['dijkstra', 'astar', 'CH', 'CHWrapper']" @@ -10520,6 +12833,7 @@ "Einen der Routing-Algorithmen ['dijkstra', 'astar', 'CH', 'CHWrapper'] " "auswählen" +#: D:\Repos\sumo/src\router\ROFrame.cpp:181 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:181 msgid "" "Comma separated list of param keys to compare for additional restrictions" @@ -10527,15 +12841,18 @@ "Durch Kommata getrennte Liste von Parameterschlüsseln, die auf zusätzliche " "Einschränkungen verglichen werden sollen" +#: D:\Repos\sumo/src\router\ROFrame.cpp:186 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:186 msgid "Interpolate edge weights at interval boundaries" msgstr "Kantengewichte an Intervallgrenzen interpolieren" +#: D:\Repos\sumo/src\router\ROFrame.cpp:190 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:190 msgid "Expand the end of the last loaded weight interval to infinity" msgstr "" "Das Ende des zuletzt geladenen Gewichtsintervalls auf unendlich expandieren" +#: D:\Repos\sumo/src\router\ROFrame.cpp:194 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:194 msgid "" "Apply the given time penalty when computing routing costs for minor-link " @@ -10544,22 +12861,30 @@ "Die gegebene Zeitstrafe bei der Berechnung der Routing-Kosten für interne " "Fahrstreifen kleinerer Verbindungen anwenden" +#: D:\Repos\sumo/src\router\ROFrame.cpp:217 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:217 msgid "Defaults will override given values" msgstr "Standardwerte überschreiben die angegebenen Werte" +#: D:\Repos\sumo/src\router\ROFrame.cpp:222 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:222 msgid "Defines how often statistics shall be printed" msgstr "Legt fest, wie oft Statistiken ausgegeben werden sollen" +#: D:\Repos\sumo/src\router\ROFrame.cpp:233 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:233 msgid "No output specified." msgstr "Keine Ausgabe spezifiziert." +#: D:\Repos\sumo/src\router\ROFrame.cpp:238 #: /home/micha/programming/sumo/src/router/ROFrame.cpp:238 msgid "A positive number of alternatives must be enabled." msgstr "Eine positive Anzahl von Alternativen muss bereitgestellt sein." +#: D:\Repos\sumo/src\router\ROLoader.cpp:62 +#: D:\Repos\sumo/src\router\ROLoader.cpp:64 +#: D:\Repos\sumo/src\router\ROLoader.cpp:83 +#: D:\Repos\sumo/src\router\ROLoader.cpp:85 #: /home/micha/programming/sumo/src/router/ROLoader.cpp:62 #: /home/micha/programming/sumo/src/router/ROLoader.cpp:64 #: /home/micha/programming/sumo/src/router/ROLoader.cpp:83 @@ -10567,77 +12892,94 @@ msgid "Trying to set a weight for the unknown edge '%'." msgstr "Versuche ein Gewicht zu setzten für die unbekannte Kante '%'." +#: D:\Repos\sumo/src\router\ROLoader.cpp:114 #: /home/micha/programming/sumo/src/router/ROLoader.cpp:114 #, c-format msgid "The network file '%' is not accessible." msgstr "Die Netz-Datei '%' ist nicht erreichbar." +#: D:\Repos\sumo/src\router\ROLoader.cpp:140 #: /home/micha/programming/sumo/src/router/ROLoader.cpp:140 #, c-format msgid "The additional file '%' is not accessible." msgstr "Die Zusatz-Datei '%' ist nicht erreichbar." +#: D:\Repos\sumo/src\router\ROLoader.cpp:217 #: /home/micha/programming/sumo/src/router/ROLoader.cpp:217 msgid "Routes found between time steps % and %." msgstr "Routen zwischen den Zeitschritten % und % gefunden." +#: D:\Repos\sumo/src\router\ROLoader.cpp:243 #: /home/micha/programming/sumo/src/router/ROLoader.cpp:243 msgid "The loader for % from file '%' could not be initialised (%)." msgstr "Der Lader für % aus Datei '%' konnte nicht initialisiert werden (%)." +#: D:\Repos\sumo/src\router\ROLoader.cpp:281 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:183 #: /home/micha/programming/sumo/src/router/ROLoader.cpp:281 #: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:158 msgid "failed." msgstr "fehlgeschlagen." +#: D:\Repos\sumo/src\router\RONet.cpp:162 #: /home/micha/programming/sumo/src/router/RONet.cpp:162 #, c-format msgid "The edge '%' occurs at least twice." msgstr "Die Kante '%' kommt mindestens zweimal vor." +#: D:\Repos\sumo/src\router\RONet.cpp:176 #: /home/micha/programming/sumo/src/router/RONet.cpp:176 #, c-format msgid "The TAZ '%' occurs at least twice." msgstr "Die Verkehrsumlegungszone '%' kommt mindestens zweimal vor." +#: D:\Repos\sumo/src\router\RONet.cpp:199 #: /home/micha/programming/sumo/src/router/RONet.cpp:199 #, c-format msgid "The TAZ '%' is unknown." msgstr "Die Verkehrsumlegungszone '%' ist unbekannt." +#: D:\Repos\sumo/src\router\RONet.cpp:204 #: /home/micha/programming/sumo/src/router/RONet.cpp:204 #, c-format msgid "The edge '%' for TAZ '%' is unknown." msgstr "Die Kante '%' für die Verkehrsumlegungszone '%' ist nicht bekannt." +#: D:\Repos\sumo/src\router\RONet.cpp:259 #: /home/micha/programming/sumo/src/router/RONet.cpp:259 #, c-format msgid "The bidi edge '%' is not known." msgstr "Die Zweichrichtungs-Kante '%' ist nicht bekannt." +#: D:\Repos\sumo/src\router\RONet.cpp:270 #: /home/micha/programming/sumo/src/router/RONet.cpp:270 #, c-format msgid "The node '%' occurs at least twice." msgstr "Der Knoten '%' kommt mindestens zweimal vor." +#: D:\Repos\sumo/src\router\RONet.cpp:279 #: /home/micha/programming/sumo/src/router/RONet.cpp:279 msgid "The % '%' occurs at least twice." msgstr "Das % '%' kommt mindestens zweimal vor." +#: D:\Repos\sumo/src\router\RONet.cpp:446 #: /home/micha/programming/sumo/src/router/RONet.cpp:446 #, c-format msgid "The vehicle type '%' occurs at least twice." msgstr "Der Fahrzeugtyp '%' kommt mindestens zweimal vor." +#: D:\Repos\sumo/src\router\RONet.cpp:498 #: /home/micha/programming/sumo/src/router/RONet.cpp:498 msgid "Requesting departure time for unknown vehicle '%'" msgstr "Abfahrtszeit für das unbekannte Fahrzeug '%' anfordern" +#: D:\Repos\sumo/src\router\RONet.cpp:528 #: /home/micha/programming/sumo/src/router/RONet.cpp:528 #, c-format msgid "Another person with the id '%' exists." msgstr "Eine andere Person mit der ID '%' existiert." +#: D:\Repos\sumo/src\router\RONet.cpp:637 #: /home/micha/programming/sumo/src/router/RONet.cpp:637 msgid "" "Bulking different maximum speeds ('%' and '%') may lead to suboptimal routes." @@ -10645,6 +12987,7 @@ "Das Sammeln unterschiedlicher Höchstgeschwindigkeiten ('%' und '%') kann zu " "suboptimalen Routen führen." +#: D:\Repos\sumo/src\router\RONet.cpp:640 #: /home/micha/programming/sumo/src/router/RONet.cpp:640 msgid "" "Bulking different vehicle classes ('%' and '%') may lead to invalid routes." @@ -10652,43 +12995,52 @@ "Das Sammeln unterschiedlicher Fahrzeugklassen ('%' und '%') kann zu " "ungültigen Routen führen." +#: D:\Repos\sumo/src\router\RONetHandler.cpp:137 #: /home/micha/programming/sumo/src/router/RONetHandler.cpp:137 msgid "Unknown node '%'." msgstr "Unbekannter Knoten '%'." +#: D:\Repos\sumo/src\router\RONetHandler.cpp:243 #: /home/micha/programming/sumo/src/router/RONetHandler.cpp:243 msgid "Ignoring lane '%' with broken shape." msgstr "Ignoriere Fahrstreifen '%' mit gebrochener Shape." +#: D:\Repos\sumo/src\router\RONetHandler.cpp:280 #: /home/micha/programming/sumo/src/router/RONetHandler.cpp:280 msgid "Skipping isolated junction '%'." msgstr "Isolierter Knotenpunkt '%' wird übersprungen." +#: D:\Repos\sumo/src\router\RONetHandler.cpp:299 #: /home/micha/programming/sumo/src/router/RONetHandler.cpp:299 #, c-format msgid "unknown from-edge '%' in connection" msgstr "unbekannte Ausgangskante '%' in der Verbindung" +#: D:\Repos\sumo/src\router\RONetHandler.cpp:302 #: /home/micha/programming/sumo/src/router/RONetHandler.cpp:302 #, c-format msgid "unknown to-edge '%' in connection" msgstr "unbekannte Endkante '%' in Verbindung" +#: D:\Repos\sumo/src\router\RONetHandler.cpp:316 #: /home/micha/programming/sumo/src/router/RONetHandler.cpp:316 #, c-format msgid "unknown via-edge '%' in connection" msgstr "unbekannte Zwischenkante '%' in Verbindung" +#: D:\Repos\sumo/src\router\RONetHandler.cpp:368 #: /home/micha/programming/sumo/src/router/RONetHandler.cpp:368 msgid "Ignoring invalid access from non-pedestrian edge '%'." msgstr "" "Ignoriere ungültigen Zugriff auf eine nicht für Fußgänger zugelassene Kante " "'%'." +#: D:\Repos\sumo/src\router\RORouteDef.cpp:123 #: /home/micha/programming/sumo/src/router/RORouteDef.cpp:123 msgid "Repaired route of vehicle '%'." msgstr "Reparierte Route vom Fahrzeug '%'." +#: D:\Repos\sumo/src\router\RORouteDef.cpp:222 #: /home/micha/programming/sumo/src/router/RORouteDef.cpp:222 msgid "" "There are stop edges which were not part of the original route for vehicle " @@ -10697,15 +13049,18 @@ "Es gibt Haltekanten, welche kein Part der originalen Route für Fahrzeug '%' " "sind." +#: D:\Repos\sumo/src\router\RORouteDef.cpp:237 #: /home/micha/programming/sumo/src/router/RORouteDef.cpp:237 msgid "Edge '%' not connected to edge '%' for vehicle '%'." msgstr "Kante '%' wurde nicht mit Kante '%' für das Fahrzeug '%' verbunden." +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:200 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:200 msgid "Triggered departure for person '%' requires starting with a ride." msgstr "" "Die ausgelöste Abfahrt für Person '%' erfordert das Starten einer Fahrt." +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:202 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:202 msgid "" "Triggered departure for container '%' requires starting with a transport." @@ -10713,106 +13068,128 @@ "Die ausgelöste Abfahrt für den Container '%' erfordert das Starten eines " "Transportes." +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:224 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:224 #, c-format msgid "Found % outside container element" msgstr "% außerhalb des Containerelements gefunden" +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:338 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:338 msgid "No probability for route %, using default." msgstr "Keine Wahrscheinlichkeit für Route %, nutze Standard." +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:493 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:493 msgid "Ids of internal route distributions are ignored (vehicle '%')." msgstr "IDs von internen Routenverteilungen werden ignoriert (Fahrzeug '%')." +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:609 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:609 msgid "Discarding person '%' because her plan is empty" msgstr "Verwerfe Person '%', da ihr Plan leer ist" +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:635 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:635 msgid "Discarding personFlow '%' because their plan is empty" msgstr "Verwerfe Personenfluss '%', da ihr Plan leer ist" +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:643 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:643 #, c-format msgid "probabilistic personFlow '%' must specify end time" msgstr "" "für den probabilistischen Personenfluss '%' muss eine Endzeit angeben werden" +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:716 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:716 msgid "Discarding container '%' because it's plan is empty" msgstr "Container '%' wird verworfen, weil sein Plan leer ist" +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:733 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:733 msgid "Discarding containerFlow '%' because it's plan is empty" msgstr "Containerfluss '%' wird verworfen, da sein Plan leer ist" +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1041 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1036 msgid "Triggered departure for container '%' requires a unique lines value." msgstr "" "Die ausgelöste Abfahrt für den Container '%' benötigt einen eindeutigen " "Zeilenwert." +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1081 #: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1076 msgid "Cannot convert geo-positions because the network has no geo-reference" msgstr "" "Geopositionen können nicht konvertiert werden, da das Netz keine Georeferenz " "hat" +#: D:\Repos\sumo/src\sumo_main.cpp:49 #: /home/micha/programming/sumo/src/sumo_main.cpp:49 msgid "Another interrupt signal received, hard exit." msgstr "Weiterer Interrupt, harter Abbruch." +#: D:\Repos\sumo/src\sumo_main.cpp:52 #: /home/micha/programming/sumo/src/sumo_main.cpp:52 msgid "Interrupt signal received, trying to exit gracefully." msgstr "Unterbrechungssignal empfangen, versuche ordnungsgemäß zu beenden." +#: D:\Repos\sumo/src\sumo_main.cpp:86 #: /home/micha/programming/sumo/src/sumo_main.cpp:86 msgid "A microscopic, multi-modal traffic simulation." msgstr "" "Grafische Version der mikroskopischen, multimodalen Verkehrssimulation SUMO." +#: D:\Repos\sumo/src\sumo_main.cpp:114 D:\Repos\sumo/src\sumo_main.cpp:123 #: /home/micha/programming/sumo/src/sumo_main.cpp:114 #: /home/micha/programming/sumo/src/sumo_main.cpp:123 msgid "Quitting (on error)." msgstr "Abbruch wegen Fehler." +#: D:\Repos\sumo/src\sumo_main.cpp:126 #: /home/micha/programming/sumo/src/sumo_main.cpp:126 msgid "Quitting (on unknown error)." msgstr "Abbruch (unbekannter Fehler)." +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:76 #: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:76 msgid "Unknown actor configuration '%' for vehicle '%'!" msgstr "Unbekannte Akteur-Konfiguration '%' für Fahrzeug '%'!" +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:94 #: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:94 msgid "Motion state for unknown vehicle '%'!" msgstr "Bewegungsstand für unbekanntes Fahrzeug '%'!" +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:136 #: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:136 msgid "Acceleration information is missing; try running with --compute-a." msgstr "" "Beschleunigungsinformation fehlt; versuche die Ausführung mit --compute-a." +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:62 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:62 msgid "Computes emissions by driving a time line using SUMO's emission models." msgstr "" "Berechnet Emissionen aus Fahrzyklen mithilfe der sumo-Emissionsmodelle." +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:70 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:70 msgid "Defines the file to read the driving cycle from." msgstr "Definiert die Datei, aus der der Fahrzyklus gelesen werden soll." +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:74 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:74 -#, fuzzy msgid "Skips the first NUM lines." msgstr "Überspringt die ersten NUM Zeilen." +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:78 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:78 msgid "Defines the entry separator." msgstr "Definiert das Eintragstrennzeichen." +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:83 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:83 msgid "" "Defines the netstate, route and trajectory files to read the driving cycles " @@ -10821,19 +13198,23 @@ "Definiert die Netzstand-, Routen- und Trajektoriendateien, aus denen die " "Fahrzyklen gelesen werden sollen." +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:86 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:86 msgid "Load emission parameters (vTypes) from FILE(s)" msgstr "Emissionsparameter (Fahrzeugtypen) aus FILE(s) laden" +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:89 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:89 msgid "Defines for which emission class the emissions shall be generated. " msgstr "" "Definiert, für welche Emissionsklasse die Emissionen erzeugt werden sollen. " +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:92 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:92 msgid "Defines the vehicle type to use for emission parameters." msgstr "Definiert den für Emissionsparameter zu verwendenden Fahrzeugtyp." +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:96 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:96 msgid "" "If set, the acceleration is computed instead of being read from the file. " @@ -10841,6 +13222,7 @@ "Wenn angewendet, wird die Beschleunigung berechnet, anstatt aus der Datei " "gelesen zu werden. " +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:99 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:99 msgid "" "If set, the acceleration for time t is computed from v(t+1) - v(t) instead " @@ -10849,29 +13231,34 @@ "Wenn angewendet, wird die Beschleunigung für die Zeit t aus v(t+1) - v(t) " "statt aus v(t) - v(t-1) berechnet. " +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:102 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:102 msgid "If set, the acceleration for time t is set to 0 if the speed is 0. " msgstr "" "Wenn angewendet, wird die Beschleunigung für die Zeit t auf 0 gesetzt, wenn " "die Geschwindigkeit 0 ist. " +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:105 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:105 msgid "If set, the first line of the read file is skipped." msgstr "" "Wenn angewendet, wird die erste Zeile der gelesenen Datei übersprungen." +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:108 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:108 msgid "If set, the given speed is interpreted as being given in km/h." msgstr "" "Wenn angewendet, wird die angegebene Geschwindigkeit als Angabe in km/h " "interpretiert." +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:111 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:111 msgid "If set, the fourth column is read and used as slope (in deg)." msgstr "" "Wenn angewendet, wird die vierte Spalte gelesen und als Steigung (in Grad) " "verwendet." +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:114 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:114 msgid "" "Sets a global slope (in deg) that is used if the file does not contain slope " @@ -10880,54 +13267,64 @@ "Legt eine globale Neigung (in Grad) fest, die verwendet wird, wenn die Datei " "keine Neigungsinformation enthält." +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:119 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:119 msgid "Defines the file to write the emission cycle results into." msgstr "" "Definiert die Datei, in die die Ergebnisse des Emissionszyklus geschrieben " "werden." +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:122 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:122 msgid "Defines the attributes to write." msgstr "Definiert die zu schreibenden Attribute." +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:125 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:125 -#, fuzzy msgid "Save the emission values of each vehicle in XML" msgstr "Die Emissionswerte jedes Fahrzeugs in XML speichern" +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:129 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:129 msgid "Save the aggregated and normed emission values of each vehicle in CSV" msgstr "" "Die aggregierten und normierten Emissionswerte jedes Fahrzeugs in CSV " "speichern" +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:145 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:145 msgid "Defines the begin time in seconds;" msgstr "Definiert die Startzeit in Sekunden;" +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:148 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:148 msgid "Defines the end time in seconds;" msgstr "Definiert die Endzeit in Sekunden;" +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:152 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:152 msgid "Not writing anything." msgstr "Nichts schreiben." +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:169 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:169 msgid "Either a timeline or a netstate / amitran file must be given." msgstr "" "Es muss entweder eine Zeitlinie oder eine Netzstand/ amitran-Datei angegeben " "werden." +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:172 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:172 msgid "The output file must be given." msgstr "Die Ausgabedatei muss gegeben sein." +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:185 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:185 #, c-format msgid "Unknown attribute '%' to write in output." msgstr "Unbekanntes Attribut '%' zum Schreiben in eine Ausgabe." +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:213 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:213 msgid "" "Option --vtype requires option --additional-files for loading vehicle types" @@ -10935,64 +13332,78 @@ "Option --vtype erfordert die Option --additional-files zum Laden von " "Fahrzeugtypen" +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:225 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:225 #, c-format msgid "Vehicle type '%' is not defined" msgstr "Fahrzeugtyp '%' ist nicht definiert" +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:245 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:245 msgid "Unreadable file '%'." msgstr "Nicht lesbare Datei '%'." +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:276 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:276 msgid "Missing an entry in line '%'." msgstr "Fehlender Eintrag in Zeile '%'." +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:278 #: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:278 msgid "Not numeric entry in line '%'." msgstr "Kein nummerischer Eintrag in Zeile '%'." +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:58 #: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:58 msgid "Writing map of '%' into '%'." msgstr "Schreibe Karte von '%' in '%'." +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:62 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:291 #: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:62 #: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:291 #, c-format msgid "Could not open file '%' for writing." msgstr "Datei '%' kann nicht geöffnet werden zum Schreiben." +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:86 #: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:86 msgid "Builds and writes an emissions map for SUMO's emission models." msgstr "Baut und schreibt eine Emissionskarte für das SUMOs Emissionsmodelle." +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:92 #: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:92 msgid "If set, maps for all available emissions are written." msgstr "" "Wenn angewendet, werden Karten für alle verfügbaren Emissionen geschrieben." +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:95 #: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:95 msgid "Defines the name of the emission class to generate the map for." msgstr "" "Definiert den Namen der Emissionsklasse, für die die Karte erstellt werden " "soll." +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:98 #: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:98 msgid "Defines the minimum velocity boundary of the map to generate (in m/s)." msgstr "" "Definiert die minimale Geschwindigkeitsgrenze der zu generierenden Karte (in " "m/s)." +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:100 #: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:100 msgid "Defines the maximum velocity boundary of the map to generate (in m/s)." msgstr "" "Definiert die maximale Geschwindigkeitsgrenze der zu generierenden Karte (in " "m/s)." +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:102 #: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:102 msgid "Defines the velocity step size (in m/s)." msgstr "Definiert die Schrittweite der Geschwindigkeit (in m/s)." +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:104 #: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:104 msgid "" "Defines the minimum acceleration boundary of the map to generate (in m/s^2)." @@ -11000,6 +13411,7 @@ "Definiert die minimale Beschleunigungsgrenze der zu generierenden Karte (in " "m/s^2)." +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:106 #: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:106 msgid "" "Defines the maximum acceleration boundary of the map to generate (in m/s^2)." @@ -11007,24 +13419,29 @@ "Definiert die maximale Beschleunigungsgrenze der zu generierenden Karte (in " "m/s^2)." +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:108 #: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:108 msgid "Defines the acceleration step size (in m/s^2)." msgstr "Definiert die Beschleunigungsschrittgröße (in m/s^2)." +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:110 #: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:110 msgid "Defines the minimum slope boundary of the map to generate (in deg)." msgstr "" "Definiert die minimale Neigungsgrenze der zu generierenden Karte (in Grad)." +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:112 #: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:112 msgid "Defines the maximum slope boundary of the map to generate (in deg)." msgstr "" "Definiert die maximale Neigungsgrenze der zu erstellenden Karte (in Grad)." +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:114 #: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:114 msgid "Defines the slope step size (in deg)." msgstr "Definiert die Steigungsschrittgröße (in Grad)." +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:119 #: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:119 msgid "" "Defines the file (or the path if --iterate was set) to write the map(s) into." @@ -11032,31 +13449,38 @@ "Definiert die Datei (oder den Pfad, wenn --iterate gesetzt wurde), in die " "die Karte(n) geschrieben werden sollen." +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:159 #: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:159 msgid "The emission class (-e) must be given." msgstr "Die Emissionsklasse (-e) muss gegeben sein." +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:162 #: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:162 msgid "The output file (-o) must be given." msgstr "Die Ausgabedatei (-o) muss gegeben sein." +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:314 #: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:314 msgid "Starting TraCI without using internal lanes!" msgstr "Starte TraCI ohne Verwendung interne Fahrstreifen!" +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:320 #: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:320 msgid "***Starting server on port % ***" msgstr "***Starte Server am Anschluss % ***" +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:323 #: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:323 #, c-format msgid " waiting for % clients..." msgstr " warte auf % Clienten..." +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:347 #: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:347 msgid " client connected" msgstr " Client verbunden" +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:480 #: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:480 msgid "" "Execution order (libsumo::CMD_SETORDER) was not set for all TraCI clients in " @@ -11065,32 +13489,39 @@ "Die Ausführungsreihenfolge (libsumo::CMD_SETORDER) wurde nicht für alle " "TraCI-Clients in der Vorausführungsphase festgelegt." +#: D:\Repos\sumo/src\utils\common\FileHelpers.cpp:73 #: /home/micha/programming/sumo/src/utils/common/FileHelpers.cpp:73 msgid "Cannot get file attributes for file '%'!" msgstr "Dateiattribute für die Datei '%' können nicht abgerufen werden!" +#: D:\Repos\sumo/src\utils\common\FileHelpers.h:318 #: /home/micha/programming/sumo/src/utils/common/FileHelpers.h:318 msgid "Invalid follower index in route '%'!" msgstr "Ungültiger Verfolgerindex in der Route '%'!" +#: D:\Repos\sumo/src\utils\common\FileHelpers.h:328 #: /home/micha/programming/sumo/src/utils/common/FileHelpers.h:328 #, c-format msgid "An edge within the route '%' is not known!" msgstr "Eine Kante in der Route '%' ist nicht bekannt!" +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:178 #: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:153 #, c-format msgid "done (%ms)." msgstr "abgeschlossen (%ms)." +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:180 #: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:155 msgid "done." msgstr "abgeschlossen." +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:278 #: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:253 msgid "Could not set locale to '%'." msgstr "Gebietsschema konnte nicht angewendet werden auf '%'." +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:283 #: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:258 msgid "" "Environment variable SUMO_HOME is not set, could not find localized messages." @@ -11098,61 +13529,75 @@ "Umgebungsvariable SUMO_HOME ist nicht gesetzt, es können keine lokalen " "Meldungen gefunden werden." +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:289 #: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:264 msgid "Could not find localized messages." msgstr "Lokalisierte Meldungen konnten nicht gefunden werden." +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:87 #: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:87 msgid "Invalid conversion from string to double (%)" msgstr "Ungültige Konvertierung von String zu Double (%)" +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:90 #: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:90 msgid "Invalid conversion from string to double (empty value)" msgstr "Ungültige Konvertierung von String zu Double (leerer Wert)" +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:109 #: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:109 msgid "Invalid conversion from string to doubles (%)" msgstr "Ungültige Konvertierung von String zu Doubles (%)" +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:112 #: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:112 msgid "Invalid conversion from string to doubles (empty value)" msgstr "Ungültige Konvertierung von String zu Doubles (leerer Wert)" +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:205 #: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:205 msgid "Invalid format of parameter (%)" msgstr "Ungültiges Format für den Parameter (%)" +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:230 #: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:230 msgid "Invalid format of attribute '%'. Attribute must start with a letter" msgstr "" "Ungültiger Format für Attribut '%'. Attribute müssen mit einem Buchstaben " "anfangen" +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:237 #: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:237 msgid "Invalid format of attribute (%)" msgstr "Ungültiges Format für Attribut (%)" +#: D:\Repos\sumo/src\utils\common\RandHelper.cpp:65 #: /home/micha/programming/sumo/src/utils/common/RandHelper.cpp:65 msgid "Initialises the random number generator with the current system time" msgstr "Initialisiert den Zufallszahlengenerator mit der aktuellen Systemzeit" +#: D:\Repos\sumo/src\utils\common\RandHelper.cpp:69 #: /home/micha/programming/sumo/src/utils/common/RandHelper.cpp:69 msgid "Initialises the random number generator with the given value" msgstr "Initialisiert den Zufallszahlengenerator mit dem angegebenen Wert" +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:187 #: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:187 msgid "Simultaneous specification of vClasses and exceptions is not allowed" msgstr "Die gleichzeitige Angabe von vClasses und Exceptions ist nicht erlaubt" +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:191 #: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:191 msgid "StopOffset requires an offset value" msgstr "Haltversatz erfordert einen Versatzwert" +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:341 #: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:341 #, c-format msgid "Unknown vehicle class '%' encountered." msgstr "Unbekannte Fahrzeugklasse '%' angetroffen." +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:382 #: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:382 msgid "" "SVCPermissions must be specified either via 'allow' or 'disallow'. Ignoring " @@ -11161,81 +13606,100 @@ "SVCPermissions muss entweder mittels 'allow' oder 'disallow' spezifiziert " "sein. Ignoriere 'disallow'" +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:408 #: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:408 #, c-format msgid "The vehicle class '%' is deprecated, use '%' instead." msgstr "Die Fahrzeugklasse '%' ist veraltet, nutze statt dessen '%'." +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:43 #: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:43 msgid "Loads the named config on startup" msgstr "Lädt die benannte Konfiguration beim Start" +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:48 #: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:48 msgid "Saves current configuration into FILE" msgstr "Speichert die aktuelle Konfiguration in FILE" +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:52 #: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:52 msgid "Enforce relative paths when saving the configuration" msgstr "Relative Pfade beim Speichern der Konfiguration erzwingen" +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:55 #: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:55 msgid "Saves a configuration template (empty) into FILE" msgstr "Speichert eine Konfigurationsvorlage (leer) in FILE" +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:58 #: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:58 msgid "Saves the configuration schema into FILE" msgstr "Speichert das Konfigurationsschema in FILE" +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:62 #: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:62 msgid "Adds comments to saved template, configuration, or schema" msgstr "" "Fügt Kommentare zu gespeicherten Vorlagen, Konfigurationen oder Schemata " "hinzu" +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:71 #: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:71 msgid "Switches to verbose output" msgstr "Wechselt zur ausführlichen Ausgabe" +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:74 #: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:74 msgid "Prints option values before processing" msgstr "Gibt Optionswerte vor der Verarbeitung aus" +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:77 #: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:77 msgid "Prints this screen or selected topics" msgstr "Gibt diesen Bildschirm oder ausgewählte Themen aus" +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:80 #: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:80 msgid "Prints the current version" msgstr "Gibt die aktuelle Version aus" +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:97 #: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:97 msgid "Disables output of warnings" msgstr "Deaktiviert die Ausgabe von Warnungen" +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:100 #: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:100 msgid "Aggregate warnings of the same type whenever more than INT occur" msgstr "Warnungen des gleichen Typs, wenn mehr als INT auftreten aggregieren" +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:104 #: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:104 msgid "Writes all messages to FILE (implies verbose)" msgstr "Schreibt alle Meldungen in FILE (impliziert ausführlich)" +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:107 #: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:107 msgid "Writes all non-error messages to FILE (implies verbose)" msgstr "Schreibt alle Nicht-Fehlermeldungen in FILE (impliziert ausführlich)" +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:110 #: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:110 msgid "Writes all warnings and errors to FILE" msgstr "Schreibt alle Warnungen und Fehler in FILE" +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:113 #: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:113 msgid "Language to use in messages" msgstr "Sprache die für Meldungen verwendet wird" +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:116 #: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:116 msgid "Include license info into every output file" msgstr "Lizenzinformationen jeder Ausgabedatei beifügen" +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:119 #: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:119 msgid "" "Prefix which is applied to all output files. The special string 'TIME' is " @@ -11244,16 +13708,19 @@ "Auf alle Ausgabedateien anzuwendendes Präfix. Die besondere Zeichenfolge " "'TIME' wird durch die aktuelle Uhrzeit ersetzt." +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:122 #: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:122 msgid "Defines the number of digits after the comma for floating point output" msgstr "Definiert die Anzahl der Nachkommastellen für die Fließkommaausgabe" +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:125 #: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:125 msgid "Defines the number of digits after the comma for lon,lat output" msgstr "" "Definiert die Anzahl der Nachkommastellen für die Ausgabe von geographischen " "Koordinaten (Länge, Breite)" +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:128 #: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:128 msgid "" "Write time values as hour:minute:second or day:hour:minute:second rather " @@ -11262,118 +13729,153 @@ "Zeitwerte als Stunde:Minute:Sekunde oder Tag:Stunde:Minute:Sekunde statt " "Sekunden schreiben" +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:43 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:184 #: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:43 #: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:184 msgid "Process Error" msgstr "Prozessfehler" +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:72 #: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:72 msgid "Empty Data" msgstr "Leere Daten" +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:99 #: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:99 msgid "Invalid Number Format %" msgstr "Ungültiges Nummernformat %" +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:112 #: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:112 msgid "Invalid Time Format %" msgstr "Ungültiges Zeitformat %" +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:125 #: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:125 msgid "Invalid Bool Format %" msgstr "Ungültiges Bool-Format %" +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:137 #: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:137 msgid "Out Of Bounds" msgstr "Außerhalb der Grenzen" +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:151 #: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:151 msgid "Unknown Element" msgstr "Unbekanntes Element" +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:74 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:76 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:93 #: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:74 #: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:76 #: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:93 msgid "Invalid format of distribution parameterized" msgstr "Ungültiges Verteilungsformat parametrisiert" +#: D:\Repos\sumo/src\utils\emissions\EnergyParams.cpp:153 #: /home/micha/programming/sumo/src/utils/emissions/EnergyParams.cpp:153 msgid "Vehicle device '%' doesn't have a valid value for parameter % (%)." msgstr "Fahrzeugeinrichtung '%' hat keinen gültigen Wert für Parameter % (%)." +#: D:\Repos\sumo/src\utils\emissions\HelpersEnergy.cpp:225 #: /home/micha/programming/sumo/src/utils/emissions/HelpersEnergy.cpp:225 msgid "An acceleration given by the power was not found." msgstr "Eine durch die Leistung gegebene Beschleunigung wurde nicht gefunden." +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:74 #: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:71 msgid "Add decal" msgstr "Hintergrund hinzufügen" +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:74 #: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:71 msgid "Add decal." msgstr "Hintergrund hinzufügen." +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:160 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:171 #: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:151 #: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:162 msgid "Invalid row or column" msgstr "Ungültige Zeile oder Spalte" +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:195 #: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:186 msgid "Invalid row" msgstr "Ungültige Zeile" +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:205 #: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:196 msgid "Invalid column" msgstr "Ungültige Spalte" +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:341 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:798 #: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:332 #: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:790 msgid "Open decal" msgstr "Hintergrund öffnen" +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:346 #: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:337 msgid "All files (*)" msgstr "Alle Dateien (*)" +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:798 #: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:790 msgid "Open decal." msgstr "Öffne Hintergrund." +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:806 #: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:798 msgid "Remove decal" msgstr "Hintergrund entfernen" +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:806 #: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:798 msgid "Remove decal." msgstr "Hintergrund entfernen." +#: D:\Repos\sumo/src\utils\foxtools\MFXTextFieldSearch.cpp:66 +msgid "Type to search..." +msgstr "" + +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:87 #: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:87 msgid "Ignoring geoidgrids and vgridshift in projection" msgstr "Ignoriere geoidgrids und vgridshift in der Projektion" +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:232 #: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:232 msgid "Inverse projection works only with explicit proj parameters." msgstr "" "Inverse Projektion arbeitet nur mit expliziten Projektierungs-Parametern." +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:237 #: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:237 msgid "The projection method needs to be uniquely defined." msgstr "Die Projektionsmethode muss eindeutig definiert sein." +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:288 #: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:288 msgid "Uses a simple method for projection" msgstr "Nutzt eine einfache Methode für die Projektion" +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:291 #: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:291 msgid "Scaling factor for input coordinates" msgstr "Skalierungsfaktor für die Eingabekoordinaten" +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:294 #: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:294 msgid "Rotation (clockwise degrees) for input coordinates" msgstr "Drehung (Grad im Uhrzeigersinn) für Eingabekoordinaten" +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:298 #: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:298 -#, fuzzy msgid "" "Determine the UTM zone (for a universal transversal mercator projection " "based on the WGS84 ellipsoid)" @@ -11381,23 +13883,27 @@ "Bestimme die UTM-Zone (für eine universelle transversale Mercator-Projektion " "basierend auf dem WGS84-Ellipsoid)" +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:304 #: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:304 -#, fuzzy msgid "Uses STR as proj.4 definition for projection" msgstr "Verwendet STR als proj.4-Definition für die Projektion" +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:307 #: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:307 msgid "Inverses projection" msgstr "Inverse Projektion" +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:310 #: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:310 msgid "Convert from Gauss-Krueger to UTM" msgstr "Konvertieren von Gauß-Krüger zu UTM" +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:434 #: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:434 msgid "Could not transform (%,%)" msgstr "Konnte nicht transformieren (%,%)" +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:578 #: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:578 #, c-format msgid "" @@ -11406,35 +13912,43 @@ "Ignoriere geladenes Standortattribut nr. % zur Verfolgung des ursprünglichen " "Standortes" +#: D:\Repos\sumo/src\utils\geom\GeomHelper.cpp:238 #: /home/micha/programming/sumo/src/utils/geom/GeomHelper.cpp:238 msgid "GeomHelper::makeCircle() requires nPoints>=3" msgstr "GeomHelper::makeCircle() benötigt nPoints>=3" +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:607 #: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:607 msgid "Splitting vector close to end (pos: %, length: %)" msgstr "Teilungsvektor kurz vor dem Ende (Position: %, Länge: %)" +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:1503 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:1517 #: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:1503 #: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:1517 msgid "Trying to subtract PositionVectors of different lengths." msgstr "Versuch Positionsvektoren unterschiedlicher Länge zu subtrahieren." +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:963 #: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:960 msgid "'lane' and 'length' must be defined together in a lane area detector." msgstr "" "'lane' und 'length' müssen zusammen in einem Fahrstreifen-Zonen Detektor " "definiert sein." +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:968 #: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:965 msgid "'lanes' and 'endPos' must be defined together in a lane area detector." msgstr "" "'lanes' und 'endPos' müssen zusammen definiert sein in einem " "Fahrstreifenbereich-Detektor." +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1245 #: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1242 msgid "Calibrators need either an edge or a lane" msgstr "Kalibratoren benötigen entweder eine Kante oder Fahrstreifen" +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1292 #: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1289 msgid "" "CalibratorFlows need either the attribute vehsPerHour or speed or type (or " @@ -11443,6 +13957,9 @@ "Kalibrationsfluss braucht entweder das Attribut Fahrzeuge pro Stunde, die " "Geschwindigkeit oder den Typ (oder eine Kombination von diesen)" +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1431 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1457 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1482 #: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1428 #: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1454 #: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1479 @@ -11450,22 +13967,28 @@ msgid "Probability of % must be equal or greater than 0" msgstr "Wahrscheinlichkeit von % muss gleich oder größer als 0 sein" +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1668 #: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1665 msgid "X and Y must be be defined together in POIs" msgstr "X und Y müssen zusammen in POIs definiert sein" +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1674 #: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1671 msgid "lane and position must be be defined together in POIs" msgstr "Fahrstreifen und Position müssen zusammen in POIs definiert sein" +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1680 #: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1677 msgid "lon and lat must be be defined together in POIs" msgstr "lon und lat müssen zusammen in POIs definiert sein" +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1746 #: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1743 msgid "Parameters must be defined within an object." msgstr "Parameter müssen innerhalb eines Objektes definiert werden." +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1748 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:857 #: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1745 #: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:848 msgid "Parameters cannot be defined in the additional file's root." @@ -11473,12 +13996,15 @@ "Parameter könne nicht im Stammverzeichnis der zusätzlichen Datei definiert " "werden." +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1750 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:859 #: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1747 #: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:850 msgid "Parameters cannot be defined within another parameter." msgstr "" "Parameter können nicht innerhalb eines anderen Parameters definiert werden." +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1758 #: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1755 #, c-format msgid "Error parsing key from % generic parameter. Key cannot be empty." @@ -11486,6 +14012,7 @@ "Fehler beim Einlesen des Schlüssels von % generischem Parameter. Schlüssel " "kann nicht leer sein." +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1760 #: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1757 #, c-format msgid "" @@ -11494,14 +14021,17 @@ "Fehler beim Einlesen des Schlüssels vom % generischen Parameter. Schlüssel " "enthält ungültige Zeichen." +#: D:\Repos\sumo/src\utils\handlers\DataHandler.cpp:111 #: /home/micha/programming/sumo/src/utils/handlers/DataHandler.cpp:111 msgid "Data elements cannot load attributes as params" msgstr "Datenelemente können keine Attribute laden wie Parameter" +#: D:\Repos\sumo/src\utils\handlers\MeanDataHandler.cpp:54 #: /home/micha/programming/sumo/src/utils/handlers/MeanDataHandler.cpp:54 msgid "MeanData elements cannot load attributes as params" msgstr "MeanData-Elemente können keine Attribute als Parameter laden" +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:373 #: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:370 msgid "" "Could not build % with ID '%' in netedit; ID contains invalid characters." @@ -11509,6 +14039,7 @@ "Konnte % mit der ID '%' nicht in netedit erstellen; ID beinhaltet ungültige " "Zeichen." +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:423 #: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:420 msgid "" "a route must be defined either within a vehicle/flow or with an ID attribute" @@ -11516,31 +14047,39 @@ "eine Route muss entweder innerhalb eines Fahrzeuges/Flusses oder mit einem " "ID-Attribut definiert werden" +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:440 #: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:437 #, c-format msgid "cycleTime of % must be equal or greater than 0" msgstr "Durchlaufzeit von % muss gleich oder größer als 0 sein" +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:485 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:552 #: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:482 #: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:549 msgid "Attributes 'from' and 'fromJunction' cannot be defined together" msgstr "" "Attribute 'from' und 'fromJunction' können nicht zusammen definiert werden" +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:487 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:554 #: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:484 #: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:551 msgid "Attributes 'to' and 'toJunction' cannot be defined together" msgstr "Attribute 'to' und 'toJunction' können nicht zusammen definiert werden" +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:518 #: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:515 msgid "trip definition needs either 'from/to' or 'fromJunction/toJunction'" msgstr "" "Fahrt-Definition braucht entweder 'from/to' oder 'fromJunction/toJunction'" +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:855 #: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:846 msgid "Parameters must be defined within an object" msgstr "Parameter müssen innerhalb eines Objektes definiert werden" +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:867 #: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:858 #, c-format msgid "Error parsing key from % generic parameter. Key cannot be empty" @@ -11548,6 +14087,7 @@ "Fehler beim Einlesen des Schlüssels von % generischem Parameter. Schlüssel " "kann nicht leer sein" +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:869 #: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:860 #, c-format msgid "" @@ -11556,13 +14096,21 @@ "Fehler beim Einlesen des Schlüssels von % generischem Parameter. Schlüssel " "beinhaltet ungültige Zeichen" +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:885 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:225 #: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:876 #: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:224 msgid "" "Defining car-following parameters in a nested element is deprecated in vType " "'%', use attributes instead!" msgstr "" +"Die Definition von Fahrzeugfolgeparametern als Kindelemente des vType '%' is " +"veraltet —verwende stattdessen Attribute!" +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:893 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:895 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:228 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:230 #: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:884 #: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:886 #: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:227 @@ -11570,48 +14118,58 @@ msgid "Invalid parsing embedded VType" msgstr "Ungültiger eingelesener eingebetteter VType" +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:979 #: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:970 msgid "A stop must be defined either with an edge or with an lane, not both" msgstr "" "Ein Halt muss entweder mit einer Kante oder mit einen Fahrstreifen definiert " "werden, nicht beides" +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:995 #: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:984 msgid "A stop must be defined only in a StoppingPlace" msgstr "Ein Halt darf nur innerhalb eines Halteplatzes definiert werden" +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:998 #: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:987 msgid "A stop must be defined in an edge, a lane, or in a StoppingPlace" msgstr "" "Ein Halt muss innerhalb einer Kante, Fahrstreifen oder in einem Halteplatz " "definiert werden" +#: D:\Repos\sumo/src\utils\handlers\TemplateHandler.cpp:67 #: /home/micha/programming/sumo/src/utils/handlers/TemplateHandler.cpp:67 msgid "Could not load template '%'." msgstr "Vorlage '%' konnte nicht geladen werden." +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice.cpp:86 #: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice.cpp:86 msgid "No port number given." msgstr "Keine Anschlussnummer (Port-Nummer) ist gegeben." +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice.cpp:161 #: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice.cpp:161 msgid "Error on closing output devices." msgstr "Fehler beim Schließen des Ausgabegerätes." +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice_File.cpp:46 #: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice_File.cpp:46 msgid "Could not redirect to NUL device (%)." msgstr "NUL Einrichtung (%) konnte nicht umgeleitet werden." +#: D:\Repos\sumo/src\utils\options\Option.cpp:352 #: /home/micha/programming/sumo/src/utils/options/Option.cpp:315 #, c-format msgid "'%' is not a valid float." msgstr "'%' ist kein gültiger float." +#: D:\Repos\sumo/src\utils\options\Option.cpp:386 #: /home/micha/programming/sumo/src/utils/options/Option.cpp:349 #, c-format msgid "'%' is not a valid bool." msgstr "'%' ist kein gültiger bool." +#: D:\Repos\sumo/src\utils\options\Option.cpp:446 #: /home/micha/programming/sumo/src/utils/options/Option.cpp:409 msgid "" "Please note that using ';' as list separator is deprecated and not accepted " @@ -11620,11 +14178,13 @@ "Bitte beachte, dass die Verwendung von ';' als Listentrennzeichen veraltet " "ist und nicht mehr akzeptiert wird." +#: D:\Repos\sumo/src\utils\options\Option.cpp:456 #: /home/micha/programming/sumo/src/utils/options/Option.cpp:419 #, c-format msgid "'%' is not a valid integer vector." msgstr "'%' ist kein gültiger integer-Vektor." +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:66 #: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:65 msgid "" "Copyright (C) 2001-2023 German Aerospace Center (DLR) and others; https://" @@ -11633,15 +14193,18 @@ "Copyright (C) 2001-2023 Deutsches Zentrum für Luft- und Raumfahrt (DLR) und " "Andere; https://sumo.dlr.de" +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:152 #: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:151 msgid "Internal request for unknown option '%'!" msgstr "Interne Anfrage für unbekannte Option '%!" +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:175 #: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:174 #, c-format msgid "No option with the name '%' exists." msgstr "Es existiert keine Option mit dem Namen %'." +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:192 #: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:191 #, c-format msgid "" @@ -11651,28 +14214,35 @@ "Bitte beachte das '%' veraltet ist.\n" "Nutze statt dessen '%'." +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:388 #: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:387 #, c-format msgid "The file list for '%' is empty." msgstr "Die Listendatei für '%' ist leer." +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:394 #: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:393 msgid "File '%' is not accessible (%)." msgstr "Datei '%' ist nicht erreichbar (%)." +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:397 #: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:396 msgid "Empty file name given; ignoring." msgstr "Leerer Dateiname gegeben; wird ignoriert." +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:418 #: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:417 msgid "Option '%' needs option '%'." msgstr "Option '%' benötigt Option '%'." +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:621 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:643 #: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:616 #: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:638 msgid " Build features: " msgstr " Baue Eigenschaften: " +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:625 #: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:620 msgid "" " License EPL-2.0: Eclipse Public License Version 2 " +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:626 #: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:621 msgid " Use --help to get the list of options." msgstr " Verwende --help um eine Liste von Optionen zu bekommen." +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:674 #: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:669 msgid "Could not save configuration to '%'" msgstr "Die Konfiguration konnte nicht in '%' gespeichert werden" +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:678 #: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:673 msgid "Written configuration to '%'" msgstr "Schreibe Konfiguration nach '%'" +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:691 #: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:686 msgid "Could not save template to '%'" msgstr "Vorlage konnte nicht nach '%' gespeichert werden" +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:695 #: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:690 msgid "Written template to '%'" msgstr "Vorlage nach '%' geschrieben" +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:707 #: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:702 msgid "Could not save schema to '%'" msgstr "Schema konnte nicht in '%' gespeichert werden" +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:711 #: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:706 msgid "Written schema to '%'" msgstr "Schema nach '%' geschrieben" +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:88 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:135 #: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:88 #: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:135 msgid "Could not parse commandline options." msgstr "Kommandozeilen-Optionen konnten nicht eingelesen werden." +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:103 #: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:103 msgid "Could not access configuration '%'." msgstr "Zugriff auf die Konfiguration '%' nicht möglich." +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:107 #: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:107 msgid "Loading configuration" msgstr "Lade Konfiguration" +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:121 #: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:121 msgid "Could not load configuration '%'." msgstr "Konfiguration '%' konnte nicht geladen werden." +#: D:\Repos\sumo/src\utils\options\OptionsLoader.cpp:77 #: /home/micha/programming/sumo/src/utils/options/OptionsLoader.cpp:77 msgid "Could not set option '%' (probably defined twice)." msgstr "" "Option '%' konnte nicht gesetzt werden (wahrscheinlich wurde sie zweimal " "definiert)." +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:127 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:134 #: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:127 #: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:134 msgid "Missing value for parameter '%'." msgstr "Fehlender Wert für den Parameter '%'." +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:146 #: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:146 #, c-format msgid "" @@ -11746,44 +14332,54 @@ "Der Parameter '%' ist in diesem Kontext nicht erlaubt.\n" "Es wird ein Schalter oder Parametername erwartet." +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:150 #: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:150 msgid "Mixed parameter syntax in '%'." msgstr "Gemischte Parametersyntax in '%'." +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:124 #: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:124 msgid "Could not load landmark-lookup-table from '%'." msgstr "Landmark-Nachschlagetabelle aus '%' konnte nicht geladen werden." +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:138 #: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:138 #, c-format msgid "Duplicate edge '%' in landmark file." msgstr "Doppelte Kante '%' in der Landmark-Datei." +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:143 #: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:143 #, c-format msgid "Landmark edge '%' does not exist in the network." msgstr "Landmark-Kante '%' existiert nicht im Netz." +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:154 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:167 #: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:154 #: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:167 #, c-format msgid "Unknown or unordered edge '%' in landmark file." msgstr "Unbekannte oder untergeordnete Kante '%' in der Landmark-Datei." +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:164 #: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:164 msgid "Broken landmark file, unexpected number of entries (%) for edge '%'." msgstr "" "Gebrochene Landmark-Datei, unerwartete Anzahl von Einträgen (%) für die " "Kante '%'." +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:187 #: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:187 msgid "Calculating new lookup table." msgstr "Berechnen einer neuen Nachschlagetabelle." +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:194 #: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:194 msgid "No lookup table for landmark edge '%', recalculating." msgstr "Keine Nachschlagetabelle für die Landmark-Kante '%', neu berechnen." +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:196 #: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:196 msgid "" "Not all network edges were found in the lookup table '%' for landmark edge " @@ -11792,34 +14388,42 @@ "Nicht alle Netz-Kanten wurden in der Nachschlagetabelle '%' für die Landmark-" "Kante '%' gefunden." +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:293 #: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:293 msgid "Saving new matrix to '%'." msgstr "Speicher neue Matrix in '%'." +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:295 #: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:295 #, c-format msgid "Edge '%' not found in intermodal network.'" msgstr "Kante '%' wurde nicht im intermodalen Netz gefunden.'" +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:304 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:338 #: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:304 #: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:338 #, c-format msgid "Depart edge '%' not found in intermodal network." msgstr "Abfartskante '%' wurde nicht im intermodalen Netz gefunden." +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:350 #: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:350 #, c-format msgid "Arrival edge '%' not found in intermodal network." msgstr "Ankunftskante '%' wurde nicht im intermodalen Netz gefunden." +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:620 #: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:620 msgid "Ignoring unordered stop at '%' until % for vehicle '%'." msgstr "Ignoriere untergeordneten Halt bei '%' bis % für Fahrzeug '%'." +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:632 #: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:632 msgid "Ignoring stop at '%' until % for vehicle '%'." msgstr "Ignoriere Halt bei '%' bis % für Fahrzeug '%'." +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:637 #: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:637 #, c-format msgid "" @@ -11829,27 +14433,33 @@ "Linie '%' des öffentlichens Verkehrs wird nicht für die Routen von Personen " "verwendet. Sie hat weniger als zwei nutbare Halte." +#: D:\Repos\sumo/src\utils\router\IntermodalRouter.h:220 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:125 #: /home/micha/programming/sumo/src/utils/router/IntermodalRouter.h:214 #: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:125 msgid "Do not use this method" msgstr "Benutzen Sie nicht diese Methode" +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:87 #: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:87 #, c-format msgid "Departure edge '%' does not allow pedestrians." msgstr "Ankunftskante '%' erlaubt keine zu Fuß Gehenden." +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:91 #: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:91 #, c-format msgid "Destination edge '%' does not allow pedestrians." msgstr "Zielkante '%' erlaubt keine zu Fuß Gehenden." +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:84 #: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:84 msgid "Error parsing key from shape generic parameter. Key cannot be empty" msgstr "" "Fehler beim Einlesen des Schlüssels vom generischen Shape-Parameter. " "Schlüssel kann nicht leer sein" +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:86 #: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:86 msgid "" "Error parsing key from shape generic parameter. Key contains invalid " @@ -11858,16 +14468,19 @@ "Fehler beim Einlesen des Schlüssels vom generischen Shape-Parameter. " "Schlüssel enthält ungültige Zeichen" +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:139 #: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:139 msgid "Invalid characters for PoI ID" msgstr "Ungültige Datentypen für POI ID" +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:170 #: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:170 msgid "Either (x, y), (lon, lat) or (lane, pos) must be specified for PoI '%'." msgstr "" "Entweder (x, y), (lon, lat) oder (lane, pos) müssen für den Pol '%' " "spezifiziert sein." +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:173 #: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:173 msgid "" "(lon, lat) is specified for PoI '%' but no geo-conversion is specified for " @@ -11876,74 +14489,93 @@ "Für PoI '%' liegen (Länge, Breite) vor, aber es wurde im Nez kein " "geografisches Konvertierungsverfahren angegeben." +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:185 #: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:185 msgid "Unable to project coordinates for PoI '%'." msgstr "Koordinaten für den Pol '%' können nicht projiziert werden." +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:191 #: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:191 #, c-format msgid "PoI '%' already exists." msgstr "Pol '%' existiert bereits." +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:209 #: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:209 msgid "Invalid characters for Poly ID" msgstr "Ungültiges Zeichen für Pol ID" +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:252 #: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:252 msgid "Polygon's shape cannot be empty." msgstr "Die Form von Polygonen kann nicht leer sein." +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:257 #: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:257 msgid "Polygon's lineWidth must be greater than 0." msgstr "Polygons lineWidth muss größer als 0 sein." +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:262 #: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:262 #, c-format msgid "Polygon '%' already exists." msgstr "Polygon '%' existiert bereits." +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:279 #: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:279 #, c-format msgid "Loading of shapes from % failed." msgstr "Laden von Formen von % fehlgeschlagen." +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:44 #: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:44 #, c-format msgid "The node: '%' already exists." msgstr "Der Knoten: '%' existiert bereits." +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:239 #: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:239 msgid "Index of renumbered node exceeded the reduced number of equations." msgstr "" "Der Index des neu nummerierten Knoten hat die reduzierte Anzahl von " "Gleichungen überschritten." +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:250 #: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:250 msgid "Index of renumbered element exceeded the reduced number of equations." msgstr "" "Der Index des neu nummerierten Element hat die reduzierte Anzahl von " "Gleichungen überschritten." +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:257 #: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:257 msgid "Structural error in reduced circuit matrix." msgstr "Strukturfehler in reduzierter Kreislaufmatrix." +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:288 #: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:288 msgid "Initial solution x used during solving DC circuit is out of bounds.\n" msgstr "" "Die anfängliche Lösung x, die beim Lösen des DC-Kreislaufes verwendet wurde " "ist außerhalb der Grenzen.\n" +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:312 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:456 #: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:312 #: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:456 msgid "wrongly assigned row of matrix A during solving the circuit" msgstr "falsch zugeordnete Zeile der Matrix A beim Lösen der Schaltung" +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:354 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:479 #: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:354 #: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:479 msgid "The negative node of current source is not the groud." msgstr "Der negative Knoten von der Stromquelle ist nicht die Masse." +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:508 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:518 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:526 #: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:508 #: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:518 #: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:526 @@ -11952,6 +14584,7 @@ "Die Bereitstellung der Ergebnisse während der Schaltungsevaluierung war " "nicht erfolgreich." +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:576 #: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:576 msgid "" "Cannot assign unambigous electric current value to two voltage sources " @@ -11960,6 +14593,7 @@ "Kann zwei parallel geschalteten Spannungsquellen am selben Knoten keinen " "eindeutigen Stromwert zuordnen." +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:798 #: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:798 msgid "" "Trying to add resistor element into the overhead wire circuit with " @@ -11968,6 +14602,7 @@ "Versuche ein Widerstandselement in den Oberleitungskreis mit einen " "Widerstand < 1e-6 hinzuzufügen. " +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:800 #: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:800 msgid "" "Trying to add resistor element into the overhead wire circuit with " @@ -11976,6 +14611,7 @@ "Versuch ein Widerstandselement mit einem Widerstand < 0 in den " "Oberleitungsschaltkreis einzufügen. " +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:919 #: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:919 msgid "" "Circuit Voltage Source '%' is connected to less than two nodes, please " @@ -11984,6 +14620,7 @@ "Stromkreisspannungsquelle '%' ist mit weniger als zwei Knoten verbunden, " "bitte passe die Definition des Abschnitts an (mit Unterstation '%')." +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:927 #: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:927 msgid "" "Circuit Element '%' is connected to less than two nodes, please adjust the " @@ -11992,6 +14629,7 @@ "Stromkreiselement '%' ist mit weniger als zwei Knoten verbunden, bitte passe " "die Definition des Abschnitts an (mit Unterstation '%')." +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:942 #: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:942 msgid "" "Circuit Node with id '-1' is not the grounded, please adjust the definition " @@ -12000,6 +14638,7 @@ "Stromkreisknoten mit der ID '-1' ist nicht auf Masse, bitte passe die " "Definition des Abschnitts an (mit Unterstation '%')." +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:966 #: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:966 msgid "" "A Circuit Resistor Element connects the ground, please adjust the definition " @@ -12008,6 +14647,7 @@ "Ein Schaltungswiderstand-Element verbindet die Masse, bitte passe die " "Definition des Abschnittes an (mit Unterstation '%')." +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:975 #: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:975 msgid "" "Circuit Node or Voltage Source with internal id '%' has been not visited " @@ -12019,19 +14659,23 @@ "getrennt, bitte passe die Definition des Abschnitts an (mit Unterstation " "'%')." +#: D:\Repos\sumo/src\utils\traction_wire\Element.cpp:53 #: /home/micha/programming/sumo/src/utils/traction_wire/Element.cpp:53 msgid "Undefined element type for '%'." msgstr "Undefinierter Elemententyp für '%'." +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:64 #: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:63 msgid "Route file should be sorted by departure time, ignoring '%'!" msgstr "" "Die Routendatei sollte nach der Abfahrtszeit sortiert werden, ignoriere '%'!" +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParameter.cpp:658 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParameter.cpp:653 msgid "Invalid % % given for %. Using edge end instead." msgstr "Ungültig(es) %% gegeben für %. Nutze statt dessen Kante." +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParameter.cpp:708 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParameter.cpp:703 msgid "" "Value of stop attribute 'trigger' must be 'person', 'container', 'join' or a " @@ -12040,30 +14684,36 @@ "Wert von Halt-Attribut 'trigger muss entweder 'person', 'container', 'join' " "oder ein boolean sein" +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:267 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:268 msgid "Undefined end for % '%', defaulting to 24hour duration." msgstr "Undefiniertes Ende für % '%', standardmäßig 24 Stunden Dauer." +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:401 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:402 msgid "Invalid % id '%'." msgstr "Ungültig % ID '%'." +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:403 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:404 msgid "Invalid % id '%'. Contains invalid characters." msgstr "Ungültig % ID '%'. Beinhaltet ungültige Zeichen." +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:946 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:947 msgid "Lane change model 'JE2013' is deprecated. Using default model instead." msgstr "" "Fahrstreifenwechsel-Model 'JE2013' ist veraltet. Nutze statt dessen " "Standardmodel." +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1138 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1139 msgid "maneuverAngleTimes format for vType '%' % contains an invalid triplet." msgstr "" "ManeuverAngleTimes Format für den Fahrzeugtyp '%' % enthält ein ungültiges " "Triplett." +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1147 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1148 #, c-format msgid "" @@ -12073,14 +14723,18 @@ "Triplett '%' für Fahrzeugtyp '%' maneuverAngleTimes kann nicht eingelesen " "werden zu 'int double double'" +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1173 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1174 msgid "Unknown car-following model % when parsing vType '%'" -msgstr "" +msgstr "Unbekanntes Fahrzeugfolgemodell % im vType % gefunden" +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1175 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1176 msgid "Unknown car-following model when parsing vType '%'" -msgstr "" +msgstr "Unbekanntes Fahrzeugfolgemodell im vType '%' gefunden" +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1208 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1224 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1209 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1225 msgid "Invalid Car-Following-Model Attribute %. Cannot be parsed to float" @@ -12088,11 +14742,14 @@ "Ungültiges Fahrzeugfolgemodell Attribut %. Konnte nicht im float eingelesen " "werden" +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1212 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1235 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1213 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1236 msgid "Invalid Car-Following-Model Attribute %. Must be greater than 0" msgstr "Ungültiges Fahrzeugfolgemodell-Attribut %. Muss größer als 0 sein" +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1246 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1247 msgid "" "Invalid Car-Following-Model Attribute %. Only values between [0-1] are " @@ -12101,34 +14758,40 @@ "Ungültiges Fahrzeugfolgemodell-Attribut %. Es sind nur Werte zwischen [0-1] " "erlaubt" +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1505 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1506 msgid "Invalid Lane-Change-Model Attribute %. Cannot be parsed to float" msgstr "" "Ungültiger Fahrstreifenwechsel-Model Attribut %. Konnte nicht in float " "eingelesen werden" +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1522 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1523 msgid "Invalid Lane-Change-Model Attribute %. Must be equal or greater than 0" msgstr "" "Ungültiges Fahrstreifenwechsel-Model Attribut %. Muss gleich oder größer 0 " "sein" +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1533 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1534 msgid "Invalid Lane-Change-Model Attribute %. Must be greater than 0" msgstr "" "Ungültiges Fahrstreifenwechsel-Model Attribut %. Muss größer als 0 sein" +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1544 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1545 msgid "Invalid Lane-Change-Model Attribute %. Must be between -1 and 1" msgstr "" "Ungültiges Fahrstreifenwechsel-Model Attribut %. Muss zwischen -1 und 1 sein" +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1576 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1591 msgid "Invalid Junction-Model Attribute %. Cannot be parsed to float" msgstr "" "Ungültiges Knotenpunktmodel-Attribut %. Konnte nicht im float eingelesen " "werden" +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1585 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1600 msgid "" "Invalid Junction-Model Attribute %. Only values between [0-1] are allowed" @@ -12136,74 +14799,96 @@ "Ungültiges Knotenpunkt-Model Attribut %. Es sind nur Werte zwischen [0-1] " "erlaubt" +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1591 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1606 msgid "Invalid Junction-Model Attribute %. Must be equal or greater than 0" msgstr "" "Ungültiges Knotenpunkt-Model Attribut %. Es muss gleich oder größer 0 sein" +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1621 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1636 msgid "The vehicle class '%' for % '%' is not known." msgstr "Die Fahrzeugklasse '%' für % '%' ist nicht bekannt." +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1639 #: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1654 msgid "The shape '%' for % '%' is not known." msgstr "Die Shape '%' für % '%' ist nicht bekannt." +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:271 #: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:271 msgid "Undefined vehicleType parameter" msgstr "Undefinierter Fahrzeugtyp-Parameter" +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:281 #: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:281 msgid "Undefined vehicle parameter" msgstr "Undefinierter Fahrzeugparameter" +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:291 #: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:291 msgid "Undefined stop parameter" msgstr "Undefinierter Haltepunkt-Parameter" +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:513 #: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:513 msgid "Trying to get undefined % attribute '%' in SUMOBaseObject '%'" msgstr "" "Es wird versucht, das undefinierte % Attribut '%' in SUMOBaseObject '%' " "abzurufen" +#: D:\Repos\sumo/src\utils\xml\GenericHandler.cpp:83 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:105 #: /home/micha/programming/sumo/src/utils/xml/GenericHandler.cpp:83 #: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:105 msgid "Found root element '%' in file '%' (expected '%')." msgstr "Stammelement '%' in Datei '%' gefunden (erwartet '%')." +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:209 #: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:209 msgid " In file '" msgstr " In Datei '" +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:210 #: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:210 msgid " At line/column " msgstr " In Zeile/Spalte " +#: D:\Repos\sumo/src\utils\xml\SAXWeightsHandler.cpp:145 #: /home/micha/programming/sumo/src/utils/xml/SAXWeightsHandler.cpp:145 msgid "Missing value '%' in edge '%'." msgstr "Fehlender Wert '%' in Kante '%'." +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:110 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:136 #: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:110 #: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:136 msgid "Cannot read file '%'!" msgstr "Datei %' ist nicht lesbar!" +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:113 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:139 #: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:113 #: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:139 #, c-format msgid "File '%' is a directory!" msgstr "Datei '%' ist ein Verzeichnis!" +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:156 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:165 #: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:156 #: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:165 msgid "The XML-parser was not initialized." msgstr "Der XML-Einleseprozess wurde nicht initialisiert." +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:191 #: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:191 msgid "The XML-parser could not be build." msgstr "Der XML-Einleseprozess konnte nicht erstellt werden." +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:92 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:98 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:105 #: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:92 #: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:98 #: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:105 @@ -12215,6 +14900,7 @@ "Validierung deaktiviert. Wähle 'auto' oder 'always', um das Schema " "herunterzuladen." +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:111 #: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:111 msgid "" "Environment variable SUMO_HOME is not set properly, XML validation will fail " @@ -12224,10 +14910,12 @@ "Validierung entweder fehlschlagen oder durch das Herunterladen des Schemas " "verlangsamt wird." +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:120 #: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:120 msgid "Cannot read local schema '%'." msgstr "Lokales Schema '%' kann nicht gelesen werden." +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:167 #: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:167 msgid "" "Disabling XML validation for external file '%'. Use 'auto' or 'always' to " @@ -12236,14 +14924,17 @@ "XML-Validierung für externe Datei '%' wird deaktiviert. Verwende zum " "Aktivieren 'auto' oder 'always'." +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:189 #: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:189 msgid "Runtime error: % while parsing '%'" msgstr "Laufzeitfehler: % beim Einlesen von '%'" +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:191 #: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:191 msgid "Error occurred: % while parsing '%'" msgstr "Fehler aufgetreten: % beim Einlesen von '%'" +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:193 #: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:193 msgid "" "SAX error occured while parsing '%':\n" @@ -12252,10 +14943,56 @@ "Beim Einlesen von '%' ist ein SAX-Fehler aufgetreten:\n" " %" +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:195 #: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:195 msgid "Unspecified error occurred wile parsing '%'" msgstr "Unbekannter Fehler beim Einlesen von '%' aufgetreten" +#: /home/micha/programming/sumo/src/libsumo/Person.cpp:929 +msgid "Could not determine position on lane '% at lateral position %." +msgstr "" +"Konnte Position auf Fahrstreifen '% an seitlicher Position % nicht bestimmen." + +#: /home/micha/programming/sumo/src/mesosim/MEVehicle.h:188 +#: /home/micha/programming/sumo/src/mesosim/MEVehicle.h:194 +msgid "parkingZoneReroute not implemented for meso" +msgstr "" +"parkingZoneReroute ist nicht implementiert für die mesoskopische Simulation" + +#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:885 +msgid "Ignoring departEdge % for vehicle '% with % route edges" +msgstr "Ignoriere Abfahrtskante % für das Fahrzeug '%' mit % Routenkanten" + +#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1658 +msgid "" +"Vehicle '%' collision with person '%', lane='%', gap=%, time=%, stage=%." +msgstr "" +"Fahrzeug '%' kollidiert mit Person '%', Fahrstreifen='%', Abstand=%, zur " +"Zeit=%, Etappe=%." + +#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1800 +msgid "Vehicle '%' collision with person '%', lane='%', time=%, stage=%." +msgstr "" +"Fahrzeug '%' kollidiert mit Person '%', Fahrstreifen='%', zur Zeit=%, Etappe=" +"%." + +#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:4184 +msgid "Invalid collision.action '%'." +msgstr "Ungültige collision.action '%'." + +#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:220 +msgid "" +"Specifies which measures will be logged (as a space or comma-separated " +"sequence of IDs in ('TTC', 'DRAC', 'PET'))" +msgstr "" +"Gibt an, welche Maßnahmen protokolliert werden (als Leerzeichen oder durch " +"Kommata getrennte Folge von IDs in ('TTC', 'DRAC', 'PET'))" + +#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:329 +#, c-format +msgid "Edge '% is not unique." +msgstr "Kante '%' ist nicht einzigartig." + #~ msgid "Driver State Device" #~ msgstr "Fahrerstandeinrichtung" diff -Nru sumo-1.17.0/data/po/es_gui.po sumo-1.18.0/data/po/es_gui.po --- sumo-1.17.0/data/po/es_gui.po 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/po/es_gui.po 2023-06-28 20:02:17.000000000 +0000 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: sumo\n" "Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" -"POT-Creation-Date: 2023-04-15 12:21+0200\n" -"PO-Revision-Date: 2023-04-12 12:59+0000\n" +"POT-Creation-Date: 2023-06-15 09:59+0200\n" +"PO-Revision-Date: 2023-05-17 15:37+0000\n" "Last-Translator: Pablo Alvarez Lopez \n" "Language-Team: Spanish \n" @@ -17,332 +17,332 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.17-dev\n" +"X-Generator: Weblate 4.18-dev\n" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:292 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:295 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2208 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2209 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2211 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:507 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:510 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:513 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1558 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1559 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1560 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:292 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:295 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2218 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2219 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2221 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:513 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:516 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:519 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1567 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1568 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1569 msgid "N/A" msgstr "N/A" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:292 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:507 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:292 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:513 msgid "Original coordinate (before coordinate transformation in netconvert)" msgstr "" "Coordenadas originales (antes de la transformación de coordenadas en " "netconvert)" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:295 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:510 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:295 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:516 msgid "Network coordinate" msgstr "Coordenadas de la red" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:323 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:528 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:323 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:534 msgid "Ready." msgstr "Listo." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:444 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1322 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:444 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1329 msgid "&File" msgstr "&Archivo" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:446 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:200 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:446 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:200 msgid "New Window" msgstr "Nueva ventana" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:446 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:446 msgid "Open a new sumo-gui window." msgstr "Abrir una nueva ventana de sumo-gui." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:450 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:450 msgid "&Open Simulation..." msgstr "&Abrir simulación..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:450 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:450 msgid "Open a simulation (Configuration file)." msgstr "Abrir simulación (archivo de configuración)." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:453 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:453 msgid "Open &Network..." msgstr "&Abrir red..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:453 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:453 msgid "Open a network." msgstr "Abrir red." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:456 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:456 msgid "Open Shapes " msgstr "Abrir archivo con formas (shapes). " -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:456 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:456 msgid "Load POIs and Polygons for visualization." msgstr "Abrir POIs y polígonos, para visualización." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:459 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:459 msgid "Open EdgeData " msgstr "Abrir EdgeDatas. " -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:459 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:459 msgid "Load edge related data for visualization." msgstr "Abrir datos relacionados a la calle (edge), para visualización." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:462 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1009 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:256 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:462 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1015 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:256 msgid "&Reload" msgstr "&Recargar" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:462 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:462 msgid "Reloads the simulation / the network." msgstr "Recarga la simulación / red." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:465 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:465 msgid "Quick-Reload" msgstr "Recarga rápida" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:465 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:465 msgid "Reloads the simulation (but not network)." msgstr "Recargar simulación (pero no la red)." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:469 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:469 msgid "Save Configuration" msgstr "Guardar configuración" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:469 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:469 msgid "Save current options as a configuration file." msgstr "Guardar opciones en un archivo de configuración." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:472 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:300 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:91 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:87 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:88 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:472 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:300 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:95 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:95 msgid "Close" msgstr "Cerrar" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:472 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:472 msgid "Close the simulation." msgstr "Cerrar la simulación." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:480 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1343 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:480 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1350 msgid "&Quit" msgstr "&Salir" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:480 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1343 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:480 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1350 msgid "Quit the Application." msgstr "Cerrar la aplicación." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:489 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1357 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:489 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1364 msgid "&Edit" msgstr "&Edición" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:491 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:491 msgid "Edit Selected..." msgstr "Editar selección..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:491 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:491 msgid "Opens a dialog for editing the list of selected items." msgstr "Abrir ventana para editar la lista de elementos seleccionados." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:494 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:494 msgid "Select lanes which allow..." msgstr "Seleccionar carriles (lanes) que permitan..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:494 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:494 msgid "Opens a menu for selecting a vehicle class by which to selected lanes." msgstr "" "Abre un menú para escoger una clase de vehículo (vclass) que seleccionará " "los carriles (lanes) permitidos." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:498 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:498 msgid "Edit Breakpoints" msgstr "Editar puntos de interrupción" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:498 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:498 msgid "Opens a dialog for editing breakpoints." msgstr "Abrir ventana para editar puntos de interrupción." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:501 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1268 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:501 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1302 msgid "Edit Visualisation" msgstr "Editar visualización" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:501 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1268 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:501 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1302 msgid "Opens a dialog for editing visualization settings." msgstr "Abre una ventana para editar las opciones de visualización." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:504 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1271 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:124 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:1587 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1305 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:124 +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:1596 msgid "Edit Viewport" msgstr "Editar parámetros de la vista" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:504 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1271 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1305 msgid "Opens a dialog for editing viewing area, zoom and rotation." msgstr "Abrir ventana para editar area, zoom y rotación." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:508 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:508 msgid "Open network in netedit" msgstr "Abrir red en netedit" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:508 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:508 msgid "Opens current network in NETEDIT." msgstr "Abrir red actual en NETEDIT." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:515 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:515 msgid "&Settings" msgstr "&Ajustes" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:517 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:53 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:517 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:53 msgid "Application Settings" msgstr "Ajustes de la aplicación" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:517 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:517 msgid "Open a Dialog for Application Settings editing." msgstr "Abrir ventana para editar los ajustes de la aplicación." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:520 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:520 msgid "Gaming Mode\tCtrl+G\tToggle gaming mode on/off." msgstr "Modo de juego\tCtrl+G\tAlternar modo de juego." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:523 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:523 msgid "Full Screen Mode" msgstr "Modo a pantalla completa" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:523 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:523 msgid "Toggle full screen mode on/off." msgstr "Alternar modo de pantalla completa." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:527 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1393 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:527 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1400 msgid "&Locate" msgstr "&Localizar" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:529 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1314 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1945 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1348 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1979 msgid "&Junctions" msgstr "&Cruces (Junctions)" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:529 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:529 msgid "Open a Dialog for Locating a Junction." msgstr "Abrir una ventana para localizar cruces (junctions)." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:532 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1319 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1948 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1353 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1982 msgid "&Edges" msgstr "&Calles" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:532 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:532 msgid "Open a Dialog for Locating an Edge." msgstr "Abrir una ventana para localizar calles." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:535 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1374 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1954 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:535 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1408 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1988 msgid "&Vehicles" msgstr "&Vehículos" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:535 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:535 msgid "Open a Dialog for Locating a Vehicle." msgstr "Abrir ventana para localizar vehículos." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:538 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1379 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1957 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:538 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1413 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1991 msgid "&Persons" msgstr "&Personas" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:538 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:538 msgid "Open a Dialog for Locating a Person." msgstr "Abrir una ventana para localizar personas." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:541 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:541 msgid "&Container" msgstr "&Contenedor" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:541 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:541 msgid "Open a Dialog for Locating a Container." msgstr "Abrir una ventana para localizar contenedores." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:544 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1966 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:544 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2000 msgid "&TLS" msgstr "&Semáforos" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:544 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:544 msgid "Open a Dialog for Locating a Traffic Light." msgstr "Abrir una ventana para localizar semáforos." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:547 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:604 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1969 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:547 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:630 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2003 msgid "&Additional" msgstr "&Elemento adicional" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:547 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:547 msgid "Open a Dialog for Locating an Additional Structure." msgstr "Abrir una ventana para localizar estructuras adicionales." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:550 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1972 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:550 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2006 msgid "P&oI" msgstr "&Puntos de interés" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:550 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:550 msgid "Open a Dialog for Locating a Point of Interest." msgstr "Abrir una ventana para localizar puntos de interés." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:553 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1975 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:553 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2009 msgid "Po&lygon" msgstr "&Polígonos" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:553 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:553 msgid "Open a Dialog for Locating a Polygon." msgstr "Abrir ventana para localizar polígonos." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:557 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:557 msgid "Show Internal Structures" msgstr "Mostrar estructuras internas" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:557 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:557 msgid "Show internal junctions and streets in locator dialog." msgstr "" "Mostrar cruces (junctions) y calles (edges) internos en la ventana de " "localización." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:560 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:560 msgid "Show Parking Vehicles" msgstr "Mostrar vehículos parqueados" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:560 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:560 msgid "Show parking vehicles in locator dialog." msgstr "Mostrar vehículos parqueados en la ventana de localización." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:564 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:564 msgid "Show vehicles outside the road network" msgstr "Mostrar vehículos fuera de la red vial" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:564 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:564 msgid "" "Show vehicles that are teleporting or driving remote-controlled outside the " "road network in locator dialog." @@ -350,254 +350,252 @@ "Mostrar vehículos teletransportados o controlados remotamente fuera de la " "red en la ventana de localización." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:570 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:570 msgid "Simulation" msgstr "Simulación" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:572 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:90 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:89 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:277 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:572 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:373 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:90 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:93 msgid "Run" msgstr "Ejecutar" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:572 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:572 msgid "Start/ Resume the simulation." msgstr "Iniciar/Continuar la simulación." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:575 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:575 msgctxt "Simulation" msgid "Stop" msgstr "Parar" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:575 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:575 msgid "Halt the simulation." msgstr "Detener la simulación." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:578 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:578 msgid "Step" msgstr "Paso" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:578 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:578 msgid "Perform one simulation step." msgstr "Lleva a cabo un paso en la simulación." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:581 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:581 msgid "Delay+" msgstr "Aumentar dilación" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:581 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:581 msgid "Increase simulation step delay." msgstr "Incrementar dilación entre pasos." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:583 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:583 msgid "Delay-" msgstr "Reducir dilación" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:583 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:583 msgid "Decrease simulation step delay." msgstr "Decrementar delación entre pasos." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:585 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:288 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:284 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:281 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:255 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1365 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2876 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:67 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:585 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:289 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:286 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:256 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1393 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2904 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:67 msgid "Save" msgstr "Guardar" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:585 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:585 msgid "Save the current simulation state to a file." msgstr "Guardar el estado actual de la simulación en un archivo." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:588 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:287 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:283 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:280 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:73 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:257 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2874 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:65 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:588 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:288 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:285 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:258 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2902 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:65 msgid "Load" msgstr "Cargar" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:588 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:588 msgid "Load simulation state for the current network from file." msgstr "Cargar estado de la simulación desde un archivo para la red actual." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:592 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1458 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1465 msgid "&Window" msgstr "&Ventana" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:593 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:747 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:593 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:747 msgid "Open new view" msgstr "Abrir una nueva vista" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:595 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:750 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:595 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:750 msgid "Open new 3D view" msgstr "Abrir una nueva vista 3D" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:598 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:598 msgid "Tile &Horizontally" msgstr "&Mosaico horizontal" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:601 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:601 msgid "Tile &Vertically" msgstr "&Mosaico vertical" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:604 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:604 msgid "Cascade" msgstr "Cascada" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:608 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:97 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:100 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:608 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:98 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:100 msgid "&Close" msgstr "&Cerrar" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:618 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:618 msgid "&Others..." msgstr "&Otros..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:622 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2092 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:622 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2126 msgid "Show Status Line" msgstr "Mostrar barra de estado" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:622 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:622 msgid "Toggle the Status Bar on/off." msgstr "Mostrar/ocultar la barra de estado." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:625 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2095 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:625 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2129 msgid "Show Message Window" msgstr "Mostrar ventana de mensajes" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:625 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2095 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:625 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2129 msgid "Toggle the Message Window on/off." msgstr "Mostrar/ocultar ventana de mensajes." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:628 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:628 msgid "Show Simulation Time" msgstr "Mostrar el tiempo de la simulación" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:628 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:628 msgid "Toggle the Simulation Time on/off." msgstr "Mostrar/ocultar el tiempo de simulación." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:631 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:631 msgid "Show Simulation Delay" msgstr "Mostrar retardo (delay) de la simulación" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:631 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:631 msgid "Toggle the Simulation Delay Entry on/off." msgstr "Mostrar/ocultar el retardo (delay) de la simulación." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:637 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2099 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:637 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2133 msgid "Clear Message Window" msgstr "Limpiar ventana de mensajes" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:637 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:637 msgid "Clear the message window." msgstr "Limpiar la ventana de mensajes." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:644 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1463 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:644 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1470 msgid "&Help" msgstr "&Ayuda" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:646 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2115 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:646 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2149 msgid "&Online Documentation" msgstr "&Documentación online" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:646 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2115 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:646 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2149 msgid "Open Online documentation." msgstr "Abrir documentación online." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:649 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2118 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:649 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2152 msgid "&Changelog" msgstr "&Registro de cambios" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:649 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2118 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:649 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2152 msgid "Open Changelog." msgstr "Abrir registro de cambios." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:651 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2120 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:651 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2154 msgid "&Hotkeys" msgstr "&Teclas de acceso rápido" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:651 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2120 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:651 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2154 msgid "Open Hotkeys." msgstr "Abrir teclas de acceso rápido." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:653 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2122 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:653 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2156 msgid "&Tutorial" msgstr "&Tutorial" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:653 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2122 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:653 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2156 msgid "Open Tutorial." msgstr "Abrir tutorial." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:655 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2124 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:655 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2158 msgid "&Feedback" msgstr "&Feedback" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:655 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:655 msgid "Open feedback dialog." msgstr "Abrir un diálogo con los canales para proveer feedback." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:658 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2127 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:658 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2161 msgid "&About" msgstr "&Acerca de" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:658 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:658 msgid "About sumo-gui." msgstr "Acerca de sumo-gui." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:673 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:673 msgid "\tOpen simulation\tOpen a simulation (Configuration file)." msgstr "\tAbrir simulación\tAbrir una simulación (Archivo de configuración)." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:675 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:675 msgid "\tOpen network\tOpen a network." msgstr "\tAbrir red\tAbrir una red." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:677 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:677 msgid "\tReload\tReloads the simulation / the network." msgstr "\tRecargar\tRecargar la simulación / red." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:686 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:686 msgid "\tRun\tStart/Resume the loaded simulation." msgstr "\tEjecutar\tIniciar o continuar simulación." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:688 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:688 msgid "\tStop\tHalt the running simulation." msgstr "\tDetener\tDetener la simulación." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:690 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:690 msgid "\tStep\tPerform a single simulation step." msgstr "\tPaso\tLleva a cabo un solo paso en la simulación." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:698 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:698 msgid "" "Time:\tToggle between time formats\tToggle between seconds and hour:minute:" "seconds display." @@ -605,17 +603,17 @@ "Tiempo:\tAlternar entre formatos de tiempo\tAlterna entre segundos y horas:" "minutos:segundos en el contador." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:712 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:712 msgid "" "Delay (ms):\tDelay per simulated second\tDelay per simulated second. Click " "to toggle between the last two delay values." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:735 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:735 msgid "Scale Traffic:" msgstr "Escalar tráfico:" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:735 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:735 msgid "" "Scale traffic from flows and vehicles that are loaded incrementally from " "route files." @@ -623,732 +621,742 @@ "Escalar el tráfico de flujos y vehículos que se cargan de forma incremental " "desde los archivos de rutas." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:747 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:747 msgid "Open a new microscopic view." msgstr "Abrir una nueva vista microscópica." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:750 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:750 msgid "Open a new 3D view." msgstr "Abrir una nueva vista 3D." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:760 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:760 msgid "Waiting Time:" msgstr "Tiempo de espera:" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:760 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:760 msgid "Time spent waiting accumulated for all vehicles" msgstr "Tiempo de espera acumulado para todos los vehículos" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:771 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:771 msgid "Time Loss:" msgstr "Tiempo perdido:" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:771 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:771 msgid "" "Time lost due to being unable to drive with maximum speed for all vehicles" msgstr "" "Tiempo perdido por no poder conducir a máxima velocidad para todos los " "vehículos" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:782 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:782 msgid "Distance (km):" msgstr "Distancia (km):" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:782 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:782 msgid "Total distance driven by DRT vehicles" msgstr "Distancia total recorrida por vehículos DRT" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:793 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:793 msgid "Emergency Vehicle waiting time:" msgstr "Tiempo de espera de vehículos de emergencia:" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:793 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:793 msgid "Time spent waiting accumulated for emergency vehicles" msgstr "Tiempo de espera acumulado de los vehículos de emergencia" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:818 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:150 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:818 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:150 msgid "Cl&ear Recent Networks" msgstr "&Limpiar redes recientes" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:819 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:151 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:819 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:151 msgid "No Recent Networks" msgstr "No hay redes recientes" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:823 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:155 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:823 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:155 msgid "Recent Networks" msgstr "Redes recientes" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:841 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:173 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:841 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:173 msgid "Cl&ear Recent Configs" msgstr "&Limpiar configuraciones recientes" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:842 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:174 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:842 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:174 msgid "No Recent Configs" msgstr "No hay configuraciones recientes" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:846 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:178 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:846 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:178 msgid "Recent Configs" msgstr "Configuraciones recientes" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:986 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1021 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1058 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:986 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1021 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1058 msgid "Running %." msgstr "Ejecutando %." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1068 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1068 msgid "Open Simulation Configuration" msgstr "Abrir configuración de simulación" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1088 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1088 msgid "Open Network" msgstr "Abrir red" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1108 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1108 msgid "Open Shapes" msgstr "Abrir archivo de formas (shapes)" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1122 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1150 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4634 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4669 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4704 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4736 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1122 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1150 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4650 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4685 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4720 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4752 #, c-format msgid "Loading of % failed." msgstr "La carga de % falló." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1139 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1139 msgid "Open EdgeData" msgstr "Abrir datos para calles" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1173 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1174 +msgid "Auto-Reloading." +msgstr "" + +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1174 +msgid "TraCI-Loading." +msgstr "" + +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1176 msgid "Reloading." msgstr "Recargando." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1183 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1187 msgid "Quick-Reloading." msgstr "Recarga-rápida." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1193 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1081 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1197 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1087 msgid "Already loading!" msgstr "¡Actualmente cargando!" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1205 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1209 msgid "Save SUMO Configuration" msgstr "Guardar configuración para SUMO" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1220 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1224 msgid "Configuration saved to %." msgstr "Configuración guardada en %." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1222 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1226 msgid "Could not save configuration to %." msgstr "No se pudo guardar configuración en %." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1278 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1304 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2134 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1282 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1308 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2144 msgid "No simulation loaded!" msgstr "¡No hay ninguna simulación cargada!" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1320 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1324 msgid "Save Simulation State" msgstr "Guardar estado de la simulación" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1334 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1338 msgid "Simulation state saved to '%'." msgstr "Estado de simulación guardado en '%'." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1342 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1346 msgid "Load Simulation State" msgstr "Cargar estado de la simulación" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1354 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1358 msgid "State loaded from '%'." msgstr "Estado cargado de '%'." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1356 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1360 msgid "Failed to load state from '%' (%)." msgstr "Fallo al cargar estado desde '%' (%)." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1813 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1817 #, c-format msgid "Loading of '%' failed!" msgstr "¡El cargado de '%' falló!" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1827 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1831 #, c-format msgid "'%' loaded." msgstr "'%' cargado." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2027 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2031 +msgid "Simulation ended at time: %. (%)" +msgstr "" + +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2037 msgid "Simulation ended" msgstr "Simulación finalizada" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2125 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2135 msgid "Loading '%'." msgstr "Cargando '%'." -#: /home/micha/programming/sumo/src/gui/GUILoadThread.cpp:206 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2288 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2290 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2291 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2292 +msgid "seconds" +msgstr "" + +#: D:\Repos\sumo/src\gui\GUILoadThread.cpp:206 msgid "Could not load edgedata-files '%'" msgstr "No se puede cargar el archivo de datos de calles (edgeDatas) '%'" -#: /home/micha/programming/sumo/src/gui/GUIRunThread.cpp:100 -#: /home/micha/programming/sumo/src/gui/GUIRunThread.cpp:106 +#: D:\Repos\sumo/src\gui\GUIRunThread.cpp:100 +#: D:\Repos\sumo/src\gui\GUIRunThread.cpp:106 msgid "Quitting (on error)." msgstr "Saliendo (debido a un error)." -#: /home/micha/programming/sumo/src/gui/GUIRunThread.cpp:265 +#: D:\Repos\sumo/src\gui\GUIRunThread.cpp:265 msgid "Simulation started with time: %." msgstr "Simulación iniciada con tiempo:%." -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:142 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:448 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:142 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:455 msgid "Save Snapshot" msgstr "Salvar captura de pantalla" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:167 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:468 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:167 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:475 msgid "No file extension was specified - saving Snapshot as PNG." msgstr "" "No se ha especificado ninguna extensión de archivo. Salvando captura de " "pantalla como PNG." -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:173 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:475 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:173 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:482 msgid "Saving failed." msgstr "El guardado ha fallado." -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:175 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:479 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:175 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:486 msgid "Snapshot successfully saved!" msgstr "¡La captura de pantalla se guardó con éxito!" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:219 -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:268 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:219 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:268 msgid "Unknown Message ID in onCmdLocate" msgstr "ID de mensaje desconocido en onCmdLocate" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:233 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:505 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:233 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:512 msgid "Junction Chooser" msgstr "Selección de cruce" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:237 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:513 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:237 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:520 msgid "Edge Chooser" msgstr "Selección de calle (edge)" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:241 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:529 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:87 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:241 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:536 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:87 msgid "Vehicle Chooser" msgstr "Selección de vehículo" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:245 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:576 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:245 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:583 msgid "Person Chooser" msgstr "Selección de persona" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:249 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:249 msgid "Container Chooser" msgstr "Selección de contenedor" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:253 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:253 msgid "Traffic Lights Chooser" msgstr "Selección de semáforo" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:257 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:257 msgid "Additional Objects Chooser" msgstr "Selección de objetos adicionales" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:261 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:655 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:261 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:667 msgid "POI Chooser" msgstr "Selección de punto de interés" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:265 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:265 msgid "Polygon Chooser" msgstr "Selección de polígono" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:269 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:269 msgid "phase names" msgstr "nombre de las fases" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:272 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:272 msgid "detectors" msgstr "detectores" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:273 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:273 msgid "conditions" msgstr "condiciones" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:336 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:336 msgid "Overflow in time computation occurred." msgstr "Ha ocurrido un desbordamiento (Overflow) en tiempo de computación." -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:114 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:332 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:114 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:334 msgid "Locate Junctions" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:114 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:114 msgid "Locate a junction within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:119 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:336 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:119 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:338 msgid "Locate Edges" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:119 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:119 msgid "Locate an edge within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:124 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:344 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:124 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:346 msgid "Locate Vehicles" msgstr "Localizar vehículos" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:124 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:124 msgid "Locate a vehicle within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:129 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:348 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:129 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:350 msgid "Locate Persons" msgstr "Localizar personas" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:129 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:129 msgid "Locate a person within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:134 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:134 msgid "Locate Container" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:134 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:134 msgid "Locate a container within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:139 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:367 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:139 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:369 msgid "Locate TLS" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:139 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:139 msgid "Locate a tls within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:144 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:371 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:144 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:373 msgid "Locate Additional" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:144 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:144 msgid "Locate an additional structure within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:149 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:375 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:149 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:377 msgid "Locate PoI" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:149 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:149 msgid "Locate a PoI within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:154 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:379 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:154 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:381 msgid "Locate Polygon" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:154 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:154 msgid "Locate a Polygon within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AboutSUMO.cpp:69 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:58 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_HallOfFame.cpp:57 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:415 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:411 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:408 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:234 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:247 -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:285 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:384 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:559 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:298 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:487 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:96 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:173 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:280 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AboutSUMO.cpp:69 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:58 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_HallOfFame.cpp:57 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:416 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:413 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:408 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:375 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:380 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:298 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:487 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:97 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:173 msgid "OK" msgstr "OK" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:62 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:62 msgid "Quit on Simulation End" msgstr "Salir al finalizar simulación" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:64 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:64 msgid "Autostart Simulation on Load and Reload" msgstr "Empezar automáticamente simulación al cargar y recargar" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:66 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:66 msgid "Reload Simulation after finish (Demo mode)" msgstr "Recargar simulación tras finalizar (modo demostración)" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:68 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:68 msgid "Locate elements when clicking on messages" msgstr "Localizar elementos al hacer click en mensajes" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:74 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:74 msgid "Breakpoint offset when clicking on time message" msgstr "Compensar punto de interrupción al hacer clic en el mensaje de tiempo" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:98 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:98 msgid "Allow Textures" msgstr "Permitir texturas" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:101 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:76 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:133 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:995 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2352 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:101 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:76 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:133 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:995 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2354 msgid "&OK" msgstr "&OK" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:102 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:64 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:72 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:639 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:390 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:134 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:996 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2353 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:102 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:72 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:639 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:390 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:134 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:996 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2355 msgid "&Cancel" msgstr "&Cancelar" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:69 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:69 msgid "Breakpoints Editor" msgstr "Edición de puntos de interrupción" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:89 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:90 msgid "&Load" msgstr "&Cargar" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:91 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:92 msgid "&Save" msgstr "&Guardar" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:94 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:95 msgid "Clea&r" msgstr "&Despejar" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:126 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2391 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2397 msgid "Time" msgstr "Tiempo" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:141 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:142 msgid "Load Breakpoints" msgstr "Cargar puntos de interrupción (breakpoints)" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:162 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:163 msgid "Save Breakpoints" msgstr "Guardar puntos de interrupción (breakpoints)" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:172 -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:155 -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:258 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:240 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1102 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1183 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:173 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:155 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:258 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:240 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1102 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1183 msgid "Storing failed!" msgstr "¡Guardado fallido!" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:241 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:244 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:242 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:245 msgid "Time format error" msgstr "Error de formato de tiempo" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:46 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:46 msgid "- General problem solving" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:50 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:50 msgid "- Sumo-user mailing list" msgstr "- Lista de correo SUMO-user" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:54 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:54 msgid "- Send us an Email" msgstr "- Envíenos un correo electrónico" -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_InductionLoop.cpp:55 -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_InductionLoop.cpp:59 -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_TrafficLight.cpp:56 -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_TrafficLight.cpp:60 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_InductionLoop.cpp:55 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_InductionLoop.cpp:59 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_TrafficLight.cpp:56 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_TrafficLight.cpp:60 #, c-format msgid "Hotkey '%' is not supported" msgstr "El atajo '%' no es soportado" -#: /home/micha/programming/sumo/src/guisim/GUIBaseVehicle.cpp:300 +#: D:\Repos\sumo/src\guisim\GUIBaseVehicle.cpp:300 msgid "GUI-triggered stop not implemented for meso" msgstr "GUI-triggered stop no implementada para meso" -#: /home/micha/programming/sumo/src/guisim/GUIBaseVehicle.cpp:876 -#: /home/micha/programming/sumo/src/guisim/GUIVehicle.cpp:668 +#: D:\Repos\sumo/src\guisim\GUIBaseVehicle.cpp:876 +#: D:\Repos\sumo/src\guisim\GUIVehicle.cpp:663 msgid "Vehicle parameter '%' key '%' is not a number for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:326 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:326 msgid "Network size exceeds 1 Lightyear. Please reconsider your inputs.\n" msgstr "" "El tamaño de la red excede un año luz. Por favor revisa los archivos de " "entrada.\n" -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:666 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:666 msgid "Trying to set data value for the unknown edge '%'." msgstr "Intentando establecer datos para el edge desconocido '%'." -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:690 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:690 msgid "" "Trying to set data value for the unknown relation from edge '%' to edge '%'." msgstr "" "Intentando establecer un valor de dato para la relación desconocida desde " "calle (edge) '%' hasta calle (edge) '%'." -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:708 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:708 msgid "No data defined after simulation begin time." msgstr "" "No se han definidos datos después del tiempo de comienzo de la simulación." -#: /home/micha/programming/sumo/src/guisim_main.cpp:57 +#: D:\Repos\sumo/src\guisim_main.cpp:57 msgid "GUI version of the microscopic, multi-modal traffic simulation SUMO." msgstr "" "Versión gráfica de la herramienta de simulación de tráfico microscópico y " "multimodal SUMO." -#: /home/micha/programming/sumo/src/guisim_main.cpp:77 -#: /home/micha/programming/sumo/src/netedit/netedit_main.cpp:81 +#: D:\Repos\sumo/src\guisim_main.cpp:77 +#: D:\Repos\sumo/src\netedit\netedit_main.cpp:81 msgid "This system has no OpenGL support. Exiting." msgstr "Este sistema no tiene soporte para OpenGL. Saliendo." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:468 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:469 msgid "A microscopic, multi-modal traffic simulation." msgstr "Una simulación de tráfico microscópica y multi-modal." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:510 msgid "Recomputing" msgstr "Computando" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:510 msgid "Recomputing is needed" msgstr "Es necesario recalcular" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:513 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:519 msgid "Test coordinate" msgstr "Coordenadas para tests" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:827 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:850 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:833 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:856 msgid "loading TLS Programs from '" msgstr "cargando programa TLS desde '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:892 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:898 msgid "Loaded edge types from '" msgstr "Edge types cargados desde '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:894 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:927 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:900 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:933 msgid "load edgeTypes" msgstr "cargar edgeTypes" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:925 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:931 msgid "Reloaded edge types from '" msgstr "Recargados edge types desde '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:982 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:988 msgid "Reloading netedit config file '" msgstr "Recargando archivo de configuración de netedit '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:986 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:992 msgid "Reloading sumo config file '" msgstr "Recargando archivo de configuración de sumo '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:990 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1051 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:996 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1057 msgid "Reloading network file '" msgstr "Recargando archivo de red '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1006 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1012 msgid "&Reload Netedit config" msgstr "&Recargar configuración de netedit" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1007 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1013 msgid "&Reload Sumo config" msgstr "&Recargar configuración de sumo" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1008 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1014 msgid "&Reload Network" msgstr "&Recargar red" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1253 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1260 msgid "Loading of '" msgstr "La carga de '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1258 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1265 msgid "'" msgstr "'" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1258 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1265 msgid "' loaded." msgstr "' cargado." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1347 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1354 msgid "&Modes" msgstr "&Modos" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1382 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1389 msgid "L&ock" msgstr "&Bloquear" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1389 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1396 msgid "&Processing" msgstr "&Procesar" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1414 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1421 msgid "&Tools" msgstr "&Herramientas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1416 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1423 msgid "Detectors" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1417 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1424 msgid "Districts" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1418 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1425 msgid "DRT" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1419 -msgid "Emissions" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1420 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1427 msgid "CityBrain" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1421 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1428 msgid "GTFS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1422 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1429 msgid "Vissim" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1423 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1430 msgid "Visum" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1431 msgid "Import" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1425 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1432 msgid "Net" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1426 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:673 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2744 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1433 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:699 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2750 msgid "Route" msgstr "Ruta" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1427 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1434 msgid "Output" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1428 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:227 -msgid "Shapes" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1429 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1436 msgid "TLS" msgstr "Semáforo (TLS)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1430 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1437 msgid "Turn-defs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1431 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1438 msgid "Visualization" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1432 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1439 msgid "XML" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1519 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1526 msgid "Network computed" msgstr "Red computada" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1523 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1530 msgid "Press F5" msgstr "Presiona F5" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1524 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1531 msgid "Network requires recomputing" msgstr "Se requiere recalcular la red" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1591 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1600 msgid "Loading console arguments" msgstr "Cargando argumentos de consola" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1619 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1628 msgid "Creating new network." msgstr "Creando red nueva." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1630 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1639 msgid "Trying to load an empty network" msgstr "No hay calles (edges) ni cruces (junctions) en la red" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1646 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1655 msgid "Loading network file '" msgstr "Abriendo archivo de red '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1658 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1667 msgid "Trying to load an empty configuration" msgstr "Intentando cargar una configuración vacía" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1674 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1683 msgid "Loading configuration file '" msgstr "Abriendo archivo de configuración '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1704 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1713 msgid "Select Import Options" msgstr "Seleccionar opciones de importación" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1710 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1719 msgid "Loading OSM file '" msgstr "Cargando archivo OSM '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1732 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1739 msgid "Recompute with volatile options" msgstr "Recalcular con opciones volátiles" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1733 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1740 msgid "" "Changes produced in the net due a recomputing with volatile options cannot " "be undone. Continue?" @@ -1356,1447 +1364,1471 @@ "Los cambios producidos en la red durate la recalculación con opciones " "volátiles no se pueden deshacer. Continuar?" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1973 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2033 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1980 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2040 msgid "Running " msgstr "Ejecutando " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1996 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2003 msgid "Loading network '" msgstr "Cargando red '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1996 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2005 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2003 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2012 msgid "' in SUMO-GUI" msgstr "' en sumo-gui" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2005 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2012 msgid "Loading sumo config '" msgstr "Cargando configuración de sumo '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2317 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2325 msgid "Netedit options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2334 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1826 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2342 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1860 msgid "Sumo options" msgstr "Opciones de sumo" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2351 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2359 msgid "Netgenerate options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2368 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1253 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:102 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2376 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1287 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:103 msgid "Undo" msgstr "Deshacer" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2400 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1256 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:105 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2408 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1290 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:106 msgid "Redo" msgstr "Rehacer" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3072 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3080 msgid "Saving Network failed!" msgstr "¡El guardado de la red falló!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3078 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3086 msgid "Network saved in '" msgstr "Red guardada en '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3084 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3092 msgid "Could not save network in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3130 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3148 msgid "Plain XML saved with prefix '" msgstr "Xml plano guardado con prefijo '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3135 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3153 msgid "Saving plain xml failed!" msgstr "¡El guardado en xml plano falló!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3159 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3177 msgid "Joined junctions saved to '" msgstr "Unión de cruces (joined junctions) guardado en '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3164 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3182 msgid "Saving joined junctions failed!" msgstr "¡El guardado de las unión de cruces (joined junctions) falló!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3227 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3245 msgid "Netedit configuration saved in '" msgstr "Configuración de netedit guardada en '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3233 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3251 msgid "Could not save netedit configuration in '" msgstr "No se pudo guardar la configuración de netedit en '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3337 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3355 msgid "SUMO configuration saved in '" msgstr "Configuración de sumo guardada en '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3345 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3363 msgid "Could not save SUMO configuration in '" msgstr "No se puede guardar la configuración de sumo en '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3399 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3417 msgid "TLS Programs saved in '" msgstr "Programa de semáforos guardado en '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3422 msgid "Saving TLS Programs failed!" msgstr "¡El guardado de los programas de los semáforos falló!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3447 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3465 msgid "EdgeType saved in '" msgstr "Tipos de calle guardado en '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3452 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3470 msgid "Saving edgeTypes failed!" msgstr "¡El guardado de los tipos de calles falló!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3556 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3574 msgid "load additionals from '" msgstr "Cargar elementos adicionales desde '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3560 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1304 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3578 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1307 msgid "Loading of additional file failed: " msgstr "La carga de elementos adicionales falló: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3566 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1306 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3584 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1309 msgid "Loading of additional file sucessfully: " msgstr "Elementos adicionales cargados con éxito: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3610 msgid "reloading additionals from '" msgstr "recarga de elementos adicionales desde '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3597 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3615 msgid "Reloading of additional file failed: " msgstr "Fallo en la recarga de elementos adicionales: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3640 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3658 msgid "Additionals saved in '" msgstr "Elementos adicionales guardados en '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3650 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3667 msgid "Saving additionals failed!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3720 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4659 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4662 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3737 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4675 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4678 msgid "loading demand elements from '" msgstr "Cargando elementos de demanda desde '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3724 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1315 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3741 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1318 msgid "Loading of route file failed: " msgstr "Fallo en la carga de archivo de rutas: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3730 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1317 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3747 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1320 msgid "Loading of route file sucessfully: " msgstr "Elementos de ruta cargados con éxito: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3761 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3778 msgid "Reloading of route file failed: " msgstr "La recarga del archivo de demanda falló: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3802 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3819 msgid "Demand elements saved in '" msgstr "Elementos de demanda guardados en '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3812 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3828 msgid "Saving demand elements failed!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3884 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4728 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3900 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4744 msgid "loading data elements from '" msgstr "carga de elementos de datos de '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3888 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1326 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3904 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1329 msgid "Loading of data file failed: " msgstr "La carga de elementos de datos falló: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3894 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1328 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3910 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1331 msgid "Loading of data file sucessfully: " msgstr "Elementos de datos cargados con éxito: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3924 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3940 msgid "reloading data elements from '" msgstr "recarga de elementos de datos desde '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3929 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3945 msgid "Reloading of data file failed: " msgstr "La recarga de elementos de datos falló: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3971 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3987 msgid "Data elements saved in '" msgstr "Elementos de datos guardaos en '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3976 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3992 msgid "Saving data elements failed!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4048 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4064 msgid "load meanDatas from '" msgstr "carga de meanDatas de '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4052 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1337 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4068 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1340 msgid "Loading of meandata file failed: " msgstr "La carga de meanDatas falló: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4058 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4089 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1339 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4074 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4105 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1342 msgid "Loading of meandata file sucessfully: " msgstr "MeanDatas cargados con éxito: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4084 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4100 msgid "reloading meanDatas from '" msgstr "recarga de meanDatas desde '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4128 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4144 msgid "MeanDatas saved in '" msgstr "MeanDatas guardados en '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4133 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4149 msgid "Saving meanData failed!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4182 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4198 msgid "Confirm close Network" msgstr "Confirmar cierre de la red" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4183 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4199 msgid "You have unsaved changes in the network." msgstr "Tiene cambios sin guardar en la red." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4184 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4250 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4294 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4338 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4382 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4200 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4266 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4310 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4354 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4398 msgid "Do you wish to close and discard all changes?" msgstr "¿Quiere cerrar y descartar todos los cambios?" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4248 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4264 msgid "Save additional elements before close" msgstr "Guardar elementos adicionales antes de cerrar" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4249 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4265 msgid "You have unsaved additional elements." msgstr "Tiene elementos adicionales sin guardar." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4292 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4308 msgid "Save demand elements before close" msgstr "Guardar elementos adicionales antes de cerrar" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4293 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4309 msgid "You have unsaved demand elements." msgstr "Tiene elementos de demanda sin guardar." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4336 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4352 msgid "Save data elements before close" msgstr "Guardar elementos de datos antes de cerrar" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4337 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4353 msgid "You have unsaved data elements." msgstr "Tiene elementos de datos sin guardar." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4380 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4396 msgid "Save meanData elements before close" msgstr "Guardar elementos meanData antes de cerrar" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4381 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4397 msgid "You have unsaved meanData elements." msgstr "Tiene elementos meanData sin guardar." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4624 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4640 msgid "loading additional elements from '" msgstr "abriendo elementos adicionales de '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4627 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4643 msgid "loading additionals from '" msgstr "abriendo elementos adicionales de '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4694 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4710 msgid "loading meanDatas from '" msgstr "abriendo elementos meanData de '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4697 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4713 msgid "loading meandatas from '" msgstr "abriendo elementos meanDatas from '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4731 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4747 msgid "Loading data elements from '" msgstr "Cargando elementos de datos de '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:130 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:130 msgid "nets" msgstr "redes" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:131 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:131 msgid "configs" msgstr "configuraciones" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:196 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:196 msgid "&New Network" msgstr "&Nueva red" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:196 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:196 msgid "Create a new network." msgstr "Crear una red nueva." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:200 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:200 msgid "Open a new netedit window." msgstr "Abrir una nueva ventana de netedit." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:204 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:204 msgid "Generate Network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:204 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:204 msgid "Create network using netgenerate." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:211 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:211 msgid "Load Netedit config..." msgstr "Cargar una configuración de netedit..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:211 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:211 msgid "Load a netedit configuration file." msgstr "Cargar un archivo de configuración de netedit." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:215 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:215 msgid "Load Sumo config..." msgstr "Cargar una configuración de sumo..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:215 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:215 msgid "Load a SUMO configuration file." msgstr "Cargar un archivo de configuración de sumo." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:222 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:222 msgid "&Open Network..." msgstr "&Abrir red..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:222 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:222 msgid "Open a SUMO network." msgstr "Abrir una red de sumo." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:226 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:226 msgid "Open Netconvert Configura&tion..." msgstr "Abrir configuración de netconvert..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:226 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:226 msgid "Open a configuration file with NETCONVERT options." msgstr "Abrir un archivo de configuración con opciones de netconvert." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:230 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:230 msgid "Import &Foreign Network..." msgstr "&Importar una red externa..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:230 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:230 msgid "Import a foreign network such as OSM." msgstr "Importar una red externa de OSM." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:237 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:237 msgid "&Save Network" msgstr "&Guardar red" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:237 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:237 msgid "Save the network." msgstr "Guardar la red." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:241 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:241 msgid "Save Net&work As..." msgstr "&Guardar red como..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:241 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:241 msgid "Save the network to another file." msgstr "Guardar la red en otro archivo." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:245 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:245 msgid "Save Plain XM&L..." msgstr "&Guardar red en XML plano..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:245 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:245 msgid "Save a plain XML representation of the network." msgstr "Guardar una representación de la red en XML plano." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:249 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:249 msgid "Save &Joined Junctions..." msgstr "Guardar y unir cruces (joined junctions)..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:249 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:249 msgid "Save log of joined junctions (allows reproduction of joins)." msgstr "" "Guardar registro de cruces unidos (joined junctions) (Permite la " "reproducción de uniones)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:256 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:260 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:256 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:260 msgid "Reload the network." msgstr "Recargar la red." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:260 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:260 msgid "Reload Network" msgstr "Recargar red" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:267 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:267 msgid "Netedit Config" msgstr "Configuración de netedit" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:271 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:271 msgid "Sumo Config" msgstr "Configuración de sumo" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:275 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:275 msgid "Traffic Lights" msgstr "Semáforos (TLS)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:279 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:279 msgid "Edge Types" msgstr "Tipos de edge" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:283 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:283 msgid "Additionals and Shapes" msgstr "Elementos adicionales y formas (shapes)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:287 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:287 msgid "Demand Elements" msgstr "Elementos de demanda" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:291 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:291 msgid "Data Elements" msgstr "Elementos de datos" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:295 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:295 msgid "MeanData Elements" msgstr "Elementos meanData" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:300 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:300 msgid "Close the network." msgstr "Cerrar la red." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:334 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:334 msgid "Save Netedit Config" msgstr "Guardar configuración de netedit" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:334 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:334 msgid "Save netedit configuration file." msgstr "Guardar configuración de netedit en un archivo." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:338 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:338 msgid "Save Netedit Config As..." msgstr "Guardar configuración de netedit como..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:338 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:338 msgid "Save netedit configuration in a new file." msgstr "Guardar configuración de netedit en un nuevo archivo." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:344 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:344 msgid "Reload Netedit Config" msgstr "Recargar configuración de netedit" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:344 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:344 msgid "Reload netedit configuration." msgstr "Recargar configuración de netedit." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:352 msgid "Save Sumo Config" msgstr "Guardar configuración de sumo" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:352 msgid "Save sumo configuration file." msgstr "Guardar configuración de sumo en un archivo." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:356 msgid "Save Sumo Config As..." msgstr "Guardar configuración de sumo como..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:356 msgid "Save sumo configuration in a new file." msgstr "Guardar configuración de sumo en un nuevo archivo." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:362 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:362 msgid "Reload Sumo Config" msgstr "Recargar configuración de sumo" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:362 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:362 msgid "Reload sumo configuration." msgstr "Recargar configuración de sumo." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:370 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:370 msgid "Load TLS Programs..." msgstr "Cargar programa de semáforos (TLS)..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:370 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:370 msgid "Load programs for traffic lights in the current net." msgstr "Cargar programa de configuración para los semáforos de la red actual." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:376 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:376 msgid "Save TLS Programs" msgstr "Guardar programas de semáforos (TLS)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:376 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:376 msgid "Save all traffic light programs of the current network." msgstr "Guardar todos los programas de semáforos de la red actual." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:380 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:380 msgid "Save TLS Programs As..." msgstr "Guardar programas de semáforos (TLS) como..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:380 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:380 msgid "Save all traffic light programs of the current network to another file." msgstr "" "Guardar todos los programas semafóricos (de la red actual) en un archivo " "aparte." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:386 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:386 msgid "Reload TLS Programs" msgstr "Recargar programas semafóricos" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:386 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:386 msgid "Reload TLS Programs." msgstr "Recargar programas semafóricos." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:394 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:394 msgid "Load Edge Types..." msgstr "Cargando tipos de calles (edgeTypes)..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:394 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:394 msgid "Load edge types in the current net." msgstr "Cargar tipos de calle (EdgeTypes) en la red actual." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:400 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:400 msgid "Save Edge Types" msgstr "Salvar tipos de calle (edgeTypes)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:400 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:400 msgid "Save edge types of the current net." msgstr "Guardar los tipos de calle (edgeTypes) de la red actual." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:404 msgid "Save Edge Types As..." msgstr "Guardar tipos de calles (edgeTypes) como..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:404 msgid "Save edge types of the current net to another file." msgstr "Guardar tipos de calles (edgeTypes) de la red actual en otro archivo." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:410 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:410 msgid "Reload edge types" msgstr "Recargar tipos de calles (edgeTypes)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:410 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:410 msgid "Reload edge types." msgstr "Recargar tipos de calles (edgeTypes)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:418 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:418 msgid "Load Additionals..." msgstr "Cargar elementos adicionales..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:418 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:418 msgid "Load additionals and shapes." msgstr "Cargar elementos adicionales y formas (shapes)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:424 msgid "Save Additionals" msgstr "Guardar elementos adicionales" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:424 msgid "Save additionals and shapes." msgstr "Guardar elementos adicionales y formas (shapes)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:428 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:428 msgid "Save Additionals As..." msgstr "Guardar elementos adicionales como..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:428 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:428 msgid "Save additional elements to another file." msgstr "Guardar elementos adicionales en otro archivo." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:434 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:434 msgid "Reload Additionals" msgstr "Recargar elementos adicionales" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:434 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:434 msgid "Reload additionals." msgstr "Recargar elementos adicionales." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:442 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:442 msgid "Load Demand Elements..." msgstr "Cargar elementos de demanda..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:442 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:442 msgid "Load demand elements." msgstr "Cargar elementos de demanda." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:448 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:448 msgid "Save Demand Elements" msgstr "Guardar elementos de demanda" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:448 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:448 msgid "Save demand elements." msgstr "Guardar elementos de demanda." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:452 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:452 msgid "Save Demand Elements As..." msgstr "Guardar elementos de demanda como..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:452 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:452 msgid "Save demand elements to another file." msgstr "Guardar elementos de demanda en otro archivo." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:458 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:458 msgid "Reload Demand Elements" msgstr "Recargar elementos de demanda" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:458 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:458 msgid "Reload demand elements." msgstr "Recargar elementos de demanda." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:466 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:466 msgid "Load Data Elements..." msgstr "Cargar elementos de demanda..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:466 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:466 msgid "Load data elements." msgstr "Cargar elementos de demanda." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:472 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:472 msgid "Save Data Elements" msgstr "Guardar elementos de demanda" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:472 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:472 msgid "Save data elements." msgstr "Guardar elementos de demanda." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:476 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:476 msgid "Save Data Elements As..." msgstr "Guardar elementos de demanda como..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:476 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:476 msgid "Save data elements to another file." msgstr "Guardar elementos de demanda en otro archivo." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:482 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:482 msgid "Reload Data Elements" msgstr "Recargar elementos de datos" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:482 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:482 msgid "Reload data elements." msgstr "Recargar elementos data." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:490 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:490 msgid "Load MeanDatas..." msgstr "Abrir MeanDatas..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:490 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:490 msgid "Load meanDatas and shapes." msgstr "Abrir meanDatas y formas (shapes)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:496 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:496 msgid "Save MeanDatas" msgstr "Guardar MeanDatas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:496 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:496 msgid "Save meanDatas and shapes." msgstr "Guardar meanDatas y formas (shapes)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:500 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:500 msgid "Save MeanDatas As..." msgstr "Guardar MeanDatas como..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:500 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:500 msgid "Save meanData elements to another file." msgstr "Guardar elementos meanData en otro archivo." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:506 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:506 msgid "Reload MeanDatas" msgstr "Recargar MeanDatas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:506 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:506 msgid "Reload meanDatas." msgstr "Recargar meanDatas." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:526 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:526 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2197 +msgid "&Network" +msgstr "&Red" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:526 +msgid "Supermode network." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2200 +msgid "&Demand" +msgstr "&Demanda" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:529 +msgid "Sueprmode demand." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2203 +msgid "&Data" +msgstr "&Datos" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:532 +msgid "Supermode data." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:552 msgid "&Inspect" msgstr "&Inspeccionar" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:526 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:552 msgid "Inspect elements and change their attributes." msgstr "Inspeccionar elementos y cambiar sus atributos." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:555 msgid "&Delete" msgstr "&Eliminar" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:555 msgid "Delete elements." msgstr "Eliminar elementos." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:558 msgid "&Select" msgstr "&Seleccionar" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:558 msgid "Select elements." msgstr "Seleccionar elementos." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:589 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:670 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:615 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:696 msgid "&Move" msgstr "&Mover" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:589 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:670 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:615 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:696 msgid "Move elements." msgstr "Mover elementos." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:618 msgid "&Edge" msgstr "&Calle (Edge)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:618 msgid "Create junction and edges." msgstr "Crear cruces (junctions) y calles (edges)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:595 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:621 msgid "&Connection" msgstr "&Conexión" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:595 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:621 msgid "Modes connections between lanes." msgstr "Modo para conexión entre carriles (lanes)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:598 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:624 msgid "Pro&hibition" msgstr "Pro&hibición" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:598 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:624 msgid "Modes connection prohibitions." msgstr "Modo para conexiones prohibidas." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:601 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:627 msgid "Modes traffic lights over junctions." msgstr "Modo para crear semáforos (TLS) sobre cruces (junctions)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:604 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:630 msgid "Create additional elements." msgstr "Crear elementos adicionales." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:607 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:633 msgid "C&rossing" msgstr "C&ruce" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:607 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:633 msgid "Create crossings between edges." msgstr "Crear cruces entre edges." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:610 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:636 msgid "TA&Z" msgstr "&Zona de análisis de tráfico (TAZ)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:610 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:636 msgid "Create Traffic Assignment Zones." msgstr "Crear zona de análisis de tráfico (TAZ)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:613 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:639 msgid "Create Points-Of-Interest and polygons." msgstr "Crear puntos de interés (POI) y polígonos." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:616 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:642 msgid "&Wire" msgstr "&Catenaria (Wire)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:616 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:642 msgid "Create wires." msgstr "Crear catenarias (wires)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:673 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:699 msgid "Create Routes." msgstr "Crear rutas." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:676 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:702 msgid "Vehicle" msgstr "Vehículo" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:676 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:702 msgid "Create vehicles." msgstr "Crear vehículos." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:679 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:705 msgid "Type" msgstr "Tipo" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:679 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:705 msgid "Create types (vehicles, person an containers)." msgstr "Crear tipos de vehículos, personas y contenedores." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:682 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:708 +msgid "TypeDistribution" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:708 +msgid "Create type distributions." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:711 msgid "Stop" msgstr "Parar" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:682 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:711 msgid "Create stops." msgstr "Crear paradas (stops)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:685 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:714 msgid "Person" msgstr "Persona" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:685 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:714 msgid "Create persons." msgstr "Crear personas." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:688 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:717 msgid "Person plan" msgstr "Planes de personas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:688 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:717 msgid "Create person plans." msgstr "Crear planes de personas." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:691 -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:179 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:720 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:179 msgid "Container" msgstr "Contenedor" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:691 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:720 msgid "Create containers." msgstr "Crear contenedores." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:694 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:723 msgid "Container plan" msgstr "Planes de contenedores" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:694 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:723 msgid "Create container plans." msgstr "Crear planes de contenedores." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:729 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:758 msgid "&EdgeData" msgstr "&Dato de calle (edge)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:729 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:758 msgid "Create edgeData elements." msgstr "Crear elementos edgeData." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:732 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:761 msgid "Edge&Relation" msgstr "Relación entre calles (edges)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:732 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:761 msgid "Create edgeRelation elements." msgstr "Crear elementos edgeRelation." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:735 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:764 msgid "TA&ZRelation" msgstr "Relación entre TA&Zs" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:735 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:764 msgid "Create TAZRelation elements." msgstr "Crear relación entre zona de análisis de tráfico (TAZ)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:738 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:767 msgid "&MeanData" msgstr "&Medidas de tráfico" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:738 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:767 msgid "Create MeanData edge/lanes." msgstr "Crear MeanData para calles (edges) o carriles (lanes)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:800 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:997 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2316 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2627 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:834 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1031 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2316 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2627 msgid "Show grid" msgstr "Mostrar rejilla" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:805 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1002 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1137 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2324 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2635 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2922 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:839 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1036 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1171 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2324 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2635 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2922 msgid "Hide junction shape" msgstr "Ocultar la forma del cruce (junction)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:810 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:844 msgid "Draw vehicles spread in lane or in depart position" msgstr "" "Dibujar vehículos repartidos en el carril (lane) o en posición de partida" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:815 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1152 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2340 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2944 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:849 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1186 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2340 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2944 msgid "Show demand elements" msgstr "Mostrar elementos de demanda" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:820 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:854 msgid "Clicking should target lanes" msgstr "Hacer click debe referirse a carriles (lanes)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:825 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2355 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:859 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2355 msgid "Show connections over junctions" msgstr "Mostrar conexiones sobre los cruces (junctions)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:830 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2363 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:864 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2363 msgid "Hide connections" msgstr "Ocultar conexiones" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:835 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:869 msgid "Show sub-additional elements" msgstr "Mostrar elementos sub-adicionales" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:840 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2379 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:874 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2379 msgid "Show TAZ elements" msgstr "Mostrar elementos de zona de análisis de tráfico (TAZ)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:845 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:879 msgid "Selecting multiple edges automatically select their junctions" msgstr "" "Seleccionar múltiples calles (edges) automáticamente selecciona su cruce " "(junction)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:850 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:884 msgid "Clicking should apply state changes to all phases of TLS plan" msgstr "" "Clickar debe aplicar el cambio de estado a todas las fases del plán del " "semáforo (TLS)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:855 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:889 msgid "Ask for confirmation before merging junction" msgstr "Preguntar por confirmación antes de fusionar cruce (junction)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:860 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:894 msgid "Show bubbles over junctions shapes" msgstr "Mostrar burbujas sobre las formas de los cruces (junctions)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:865 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:899 msgid "Apply mouse movement to elevation" msgstr "Aplicar movimiento del cursor a la elevación" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:870 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:904 msgid "Create consecutive edges" msgstr "Crear calles (edges) sucesivas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:875 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:909 msgid "Create an edge in the opposite direction" msgstr "Crear una calle (edge) en la dirección opuesta" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1007 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2643 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1041 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2643 msgid "Draw vehicles spread/depart position" msgstr "Dibujar vehículos separados / posición de salida" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1012 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1147 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2651 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2937 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1046 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1181 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2651 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2937 msgid "Show shapes" msgstr "Mostrar formas (shapes)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1017 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2659 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1051 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2659 msgid "Show all trips" msgstr "Mostrar todos los viajes (trips)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1022 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2667 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1056 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2667 msgid "Show all person plans" msgstr "Mostrar todos los planes de personas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1027 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2675 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1061 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2675 msgid "Lock selected person" msgstr "Bloquear persona seleccionada" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1032 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1066 msgid "Show all container plans" msgstr "Mostrar todos los planes de contenedor" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1037 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2691 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1071 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2691 msgid "Lock selected container" msgstr "Bloquear contenedor seleccionado" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1042 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2699 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1076 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2699 msgid "Show non-inspected demand elements" msgstr "Mostrar elementos de demanda no inspeccionados" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1047 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2707 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1081 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2707 msgid "Show number of overlapped routes" msgstr "Mostrar número de rutas superpuestas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1142 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2930 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1176 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2930 msgid "Show additionals" msgstr "Mostrar elementos adicionales" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1157 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1191 msgid "Draw TAZRel from center" msgstr "Dibujar relación TAZ desde el centro" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1162 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1196 msgid "Draw TAZ fill" msgstr "Dibujar zona de análisis de tráfico (TAZ) rellena" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1167 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1201 msgid "Only draw TAZRel from" msgstr "Dibujar solo relación TAZ origen" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1172 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1206 msgid "Only draw TAZRel to" msgstr "Dibujar solo relación TAZ destino" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1253 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1287 msgid "Undo the last change." msgstr "Deshacer el último cambio." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1256 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1290 msgid "Redo the last change." msgstr "Rehacer el último cambio." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1259 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1293 msgid "Show undo/redo history" msgstr "Mostrar el historial de deshacer/rehacer" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1259 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1293 msgid "Open undo/redo history dialog." msgstr "Mostrar la ventana del historial de deshacer/rehacer." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1280 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1314 msgid "Clear front element" msgstr "Despejar elemento frontal" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1280 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1314 msgid "Clear current front element" msgstr "Despejar elemento frontal actual" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1289 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1323 msgid "Load additionals in sumo-gui" msgstr "Cargar elementos adicionales en sumo-gui" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1289 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1323 msgid "Load additionals in sumo-gui." msgstr "Cargar elementos adicionales en sumo-gui." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1293 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1327 msgid "Load demand in sumo-gui" msgstr "Cargar elementos de demanda en sumo-gui" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1293 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1327 msgid "Load demand in sumo-gui." msgstr "Cargar demanda en sumo-gui." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1297 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1331 msgid "Open in sumo-gui" msgstr "Abrir en sumo-gui" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1297 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1331 msgid "Opens the sumo-gui application with the current network." msgstr "Abre la aplicación sumo-gui con la actual red (network)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1324 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1358 msgid "&Lanes" msgstr "&Carriles (lanes)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1329 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1363 msgid "&Connections" msgstr "&Conexiones" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1334 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1368 msgid "C&rossings" msgstr "&Cruces" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1339 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1373 msgid "Walkin&gAreas" msgstr "&Áreas peatonales (walkingAreas)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1344 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1378 msgid "&Additionals" msgstr "&Elementos adicionales" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1349 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1383 msgid "&TAZs" msgstr "&Zonas de análisis de tráfico (TAZs)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1354 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1388 msgid "&Wires" msgstr "&Catenarias (wires)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1359 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1393 msgid "&Polygons" msgstr "&Polígonos" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1364 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1398 msgid "P&OIs" msgstr "&Puntos de interes" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1369 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1403 msgid "&Routes" msgstr "&Rutas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1384 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1418 msgid "Person&Trips" msgstr "Viajes de personas (Person Trips)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1389 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1423 msgid "&Walks" msgstr "&Caminatas (Walks)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1394 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1428 msgid "Ri&des" msgstr "&Trayectos" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1399 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1433 msgid "&Containers" msgstr "&Contenedores" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1438 msgid "Tra&nsports" msgstr "Tra&nsportes" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1409 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1443 msgid "Trans&hips" msgstr "Transbordos (Tranships)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1414 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1448 msgid "Stop&s" msgstr "&Paradas (stops)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1419 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1453 msgid "&EdgeDatas" msgstr "&Datos sobre calles (edgeDatas)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1458 msgid "E&dgeRelDatas" msgstr "&Datos de relaciones de edges" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1429 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1463 msgid "Edge&TAZRel" msgstr "&Relación TAZ" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1437 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1471 msgid "Lock selected elements" msgstr "Bloquear elementos seleccionados" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1437 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1471 msgid "selected elements" msgstr "elementos seleccionados" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1444 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1478 msgid "Lock all elements" msgstr "Bloquear todos los elementos" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1444 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1478 msgid "all elements" msgstr "todos los elementos" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1448 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1482 msgid "Unlock all elements" msgstr "Desbloquear todos los elementos" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1784 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1818 msgid "Compute Junctions" msgstr "Computar cruces (junctions)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1784 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1818 msgid "Compute junction shape and logic." msgstr "Computar forma y lógica de los cruces (junctions)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1821 msgid "Compute Junctions with volatile options" msgstr "Computar cruces (junctions) con opciones volátiles" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1821 msgid "Compute junction shape and logic using volatile junctions." msgstr "" "Computar forma y lógica de los cruces (junctions) usando opciones volátiles." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1790 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1824 msgid "Clean Junctions" msgstr "Limpiar cruces (junctions)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1790 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1824 msgid "Remove solitary junctions." msgstr "Eliminar cruces (junctions) solitarios." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1793 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1827 msgid "Join Selected Junctions" msgstr "Unir cruces (junctions) seleccionados" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1793 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1827 msgid "Join selected junctions into a single junction." msgstr "Unir cruces (junctions) seleccionados en un solo cruce (junction)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1796 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1830 msgid "Clean invalid crossings" msgstr "Limpiar pasos peatonales (crossings) inválidos" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1796 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1830 msgid "Clear invalid crossings." msgstr "Eliminar pasos peatonales (crossings) inválidos." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1802 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1836 msgid "Recompute Network in Data Mode" msgstr "Recalcular red en modo de datos" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1808 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1842 msgid "Compute demand" msgstr "Calcular demanda" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1808 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1842 msgid "Computes demand elements." msgstr "Calcular elementos de demanda." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1811 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1845 msgid "Clean routes" msgstr "Limpiar rutas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1811 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1845 msgid "Removes routes without vehicles." msgstr "Eliminar rutas sin vehículos." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1814 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1848 msgid "Join routes" msgstr "Unir rutas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1814 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1848 msgid "Joins routes with the same edges." msgstr "Unir rutas con las mismas calles (edges)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1817 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1851 msgid "Adjust person plans" msgstr "Ajustar planes de personas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1817 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1851 msgid "Adjust person plans (start/end positions, arrival positions, etc.)" msgstr "" "Ajustar planes de personas (posiciones de inicio/fin, lugares de llegada, " "etc.)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1820 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1854 msgid "Clean invalid route elements" msgstr "Limpiar elementos de ruta inválidos" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1820 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1854 msgid "Clear elements with an invalid path (routes, Trips, Flows...)." msgstr "" "Eliminar elementos de demanda con un camino inválido (rutas, viajes, flujos, " "etc.)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1826 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1860 msgid "Configure sumo Options." msgstr "Configurar opciones de sumo." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1832 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:53 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1866 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:312 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:61 msgid "Options" msgstr "Opciones" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1832 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1866 msgid "Configure netedit Options." msgstr "Configurar opciones de netedit." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1945 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1979 msgid "Open a dialog for locating a Junction." msgstr "Abrir ventana para localizar cruces (junctions)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1948 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1982 msgid "Open a dialog for locating an Edge." msgstr "Abrir una ventana para localizar una calle (edge)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1951 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1985 msgid "&WalkingAreas" msgstr "&Areas peatonales (walkingAreas)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1951 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1985 msgid "Open a dialog for locating a Walking Area." msgstr "Abrir una ventana para localizar un area peatonal." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1954 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1988 msgid "Open a dialog for locating a Vehicle." msgstr "Abrir una ventana para localizar un vehículo." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1957 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1991 msgid "Open a dialog for locating a Person." msgstr "Abrir una ventana para localizar personas." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1960 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1994 msgid "&Route" msgstr "&Route (Ruta)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1960 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1994 msgid "Open a dialog for locating a Route." msgstr "Abrir una ventana para localizar rutas." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1963 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1997 msgid "&Stops" msgstr "&Paradas (stops)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1963 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1997 msgid "Open a dialog for locating a Stop." msgstr "Abrir una ventana para localizar paradas (stops)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1966 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2000 msgid "Open a dialog for locating a Traffic Light." msgstr "Abrir una ventana para localizar semáforos." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1969 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2003 msgid "Open a dialog for locating an Additional Structure." msgstr "Abrir una ventana para localizar elementos adicionales." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1972 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2006 msgid "Open a dialog for locating a Point of Interest." msgstr "Abrir una ventana para localizar un punto de interés (POI)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1975 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2009 msgid "Open a dialog for locating a Polygon." msgstr "Abrir una ventana para localizar un polígono." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2092 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2126 msgid "Toggle this Status Bar on/off." msgstr "Activar/desactivar esta barra de estado." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2099 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2133 msgid "Clear the Message Window." msgstr "Limpiar la ventana de mensajes." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2124 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2158 msgid "Open feedback channels." msgstr "Abrir un diálogo con los canales para proveer feedback." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2127 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2161 msgid "About netedit." msgstr "Acerca de netedit." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2163 -msgid "&Network" -msgstr "&Red" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2163 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2197 msgid "Select network mode." msgstr "Seleccionar modo de red." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2166 -msgid "&Demand" -msgstr "&Demanda" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2166 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2200 msgid "Select demand mode." msgstr "Seleccionar modo de demanda." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2169 -msgid "&Data" -msgstr "&Datos" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2169 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2203 msgid "Select data mode." msgstr "Seleccionar modo de datos." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2201 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2205 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2238 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2242 msgid "Could not load SUMO configuration '" msgstr "No se pudo cargar la configuración de sumo '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2250 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2254 -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:145 -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:149 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2289 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2293 msgid "Could not load netedit configuration '" msgstr "No se pudo cargar la configuración de netedit '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2700 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2739 msgid "Save file as" -msgstr "" +msgstr "Guardar archivo como" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2701 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2705 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2721 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2731 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2746 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2799 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2804 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2815 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2820 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2831 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2836 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2847 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2852 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2863 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2868 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2879 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2884 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2894 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2898 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2740 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2744 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2760 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2770 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2778 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2841 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2846 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2857 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2862 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2873 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2878 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2889 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2894 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2905 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2910 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2921 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2926 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2936 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2940 msgid "XML files (*.xml)" msgstr "Archivos XML (*.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2702 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2706 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2722 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2732 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2747 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2755 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2771 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2775 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2785 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2789 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2800 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2805 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2816 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2821 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2832 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2837 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2848 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2853 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2864 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2869 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2880 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2885 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2895 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2899 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2741 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2761 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2771 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2779 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2788 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2796 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2812 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2817 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2827 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2831 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2842 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2847 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2858 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2863 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2874 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2879 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2890 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2895 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2906 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2911 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2922 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2927 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2937 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2941 msgid "All files (*)" msgstr "Todos los archivos (*)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2704 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2743 msgid "Open file" -msgstr "" +msgstr "Abrir archivo" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2714 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2753 msgid "Save Network file as" msgstr "Guardar archivo de red como" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2715 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2754 msgid "SUMO Network files (*.net.xml)" msgstr "Archivos de red de SUMO (*.net.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2716 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2755 msgid "SUMO Network files zipped (*.net.xml.gz)" msgstr "Archivos de red comprimidos de SUMO (*.net.xml.gz)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2717 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2756 msgid "" "XML files (*.xml)\n" "All files (*)" @@ -2804,176 +2836,180 @@ "Archivos XML (*.xml)\n" "Todos los archivos (*)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2719 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2758 msgid "Open Network file" msgstr "Abrir archivo de red" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2720 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2759 msgid "SUMO Network files (*.net.xml,*.net.xml.gz)" msgstr "Archivos de red de SUMO (*.net.xml,*.net.xml.gz)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2729 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2768 msgid "Open NetConvert file" msgstr "Abrir archivo de NetConvert" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2730 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2769 msgid "Netconvert files (*.netccfg)" msgstr "Archivos de netconvert (*.netccfg)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2738 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2777 msgid "Save plain XML as" msgstr "Guardar XML plano como" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2744 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2785 msgid "Save joined Junctions as" msgstr "Guardar cruces unidos (joined junctions) como" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2786 msgid "Junction files (*.nod.xml)" msgstr "Archivos de cruces (*.nod.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2753 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2794 msgid "Save tool log" -msgstr "" +msgstr "Guardar log de la herramienta" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2754 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2795 msgid "Text file (*.txt)" -msgstr "" +msgstr "Archivo de texto (*.txt)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2761 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2802 msgid "Open OSM file" msgstr "Abrir archivo OSM" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2762 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2803 msgid "OSM net (*.osm.xml,*.osm)" msgstr "Red de OSM (*.osm.xml,*.osm)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2769 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2810 msgid "Save netedit Config file as" msgstr "Guardar archivo de configuración de netedit como" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2770 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2774 -msgid "Netedit Config files (*.neteditcfg)" -msgstr "Archivos de configuración de netedit (*.neteditcfg)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2811 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2815 +msgid "Netedit Config files (*.netecfg)" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2773 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2814 msgid "Open netedit Config file" msgstr "Abrir archivo de configuración de netedit" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2783 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2816 +msgid "Netedit Config files (*.neteditcfg)" +msgstr "Archivos de configuración de netedit (*.neteditcfg)" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2825 msgid "Save SUMO Config file as" msgstr "Guardar archivo de configuración de SUMO como" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2784 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2788 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2826 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2830 msgid "SUMO Config files (*.sumocfg)" msgstr "Archivos de configuración de SUMO (*.sumocfg)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2829 msgid "Open SUMO Config file" msgstr "Abrir archivo de configuración de sumo" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2797 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2839 msgid "Save TLS file as" msgstr "Guardar archivo TLS como" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2798 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2803 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2840 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2845 msgid "TLS files (*.tll.xml)" msgstr "Archivos TLS (*.tll.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2802 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2844 msgid "Open TLS file" msgstr "Abrir archivo TLS" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2813 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2855 msgid "Save EdgeType file as" msgstr "Guardar archivo EdgeType como" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2814 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2856 msgid "EdgeType files (*.tll.xml)" msgstr "Archivos EdgeType (*.tll.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2818 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2860 msgid "Open EdgeType file" msgstr "Abrir archivo EdgeType" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2819 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2861 msgid "EdgeType files (*.typ.xml)" msgstr "Archivos EdgeType (*.typ.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2829 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2871 msgid "Save Additionals file as" msgstr "Guardar elementos adicionales como" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2830 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2835 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2872 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2877 msgid "Additional files (*.add.xml)" msgstr "Archivos adicionales (*.add.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2834 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2876 msgid "Open Additionals file" msgstr "Abrir archivo de elementos adicionales" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2845 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2887 msgid "Save Route file as" msgstr "Guardar archivo de ruta como" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2846 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2851 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2888 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2893 msgid "Route files (*.rou.xml)" msgstr "Archivos de ruta (*.rou.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2850 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2892 msgid "Open Route file" msgstr "Abrir archivo de rutas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2861 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2903 msgid "Save Data file as" msgstr "Guardar archivo de datos como" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2862 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2867 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2904 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2909 msgid "Data files (*.dat.xml)" msgstr "Archivo de datos (*.dat.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2866 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2908 msgid "Open Data file" msgstr "Abrir archivo de datos" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2877 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2919 msgid "Save MeanData file as" msgstr "Guardar archivo de meanDatas como" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2878 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2883 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2920 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2925 msgid "Meandata files (*.add.xml)" msgstr "Archivos meanData (*.add.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2882 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2924 msgid "Open MeanData file" msgstr "Abrir archivo de meanDatas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2893 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2935 msgid "Save options file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2897 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2939 msgid "Open options file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:95 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:100 #, c-format msgid "Loading of sumo config file '%' failed." msgstr "La carga del archivo de configuración de sumo '%' falló." -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:108 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:113 #, c-format msgid "Loading of netedit config file '%' failed." msgstr "La carga del archivo de configuración de netedit '%' falló." -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:117 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:122 msgid "" "Invalid input network option. Load with either sumo/netedit/netconvert " "config or with -new option" @@ -2981,252 +3017,252 @@ "Opción de inicio para la red inválida. Abrir con configuración de sumo/" "netedit/netconvert o con la opción -new" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:130 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:136 msgid "Invalid Options. Nothing loaded" msgstr "Opciones inválidas. Nada que cargar" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:144 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:150 msgid "Could not build projection!" msgstr "No se puede crear la proyección!" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:172 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:178 msgid "Performing initial computation ..." msgstr "Llevando a cabo el cálculo inicial ..." -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:206 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:212 msgid "Failed to build network." msgstr "No se pudo construir la red." -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:251 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:257 msgid "Start plain GUI with empty net" msgstr "Iniciar la GUI con una red vacía" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:252 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:258 msgid "Open a SUMO network" msgstr "Abrir una red de SUMO" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:253 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:259 msgid "Open a configuration file (netedit or netconvert config)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:254 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:260 msgid "Open a SUMO config file" msgstr "Abrir un archivo de configuración de SUMO" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:279 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:285 msgid "Load sumo config" msgstr "Cargar configuración de sumo" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:283 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:289 msgid "Load additional and shapes descriptions from FILE(s)" msgstr "Abrir elementos adicionales y formas desde archivo(s)" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:287 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:293 msgid "Load demand elements descriptions from FILE(s)" msgstr "Abrir elementos de demanda desde archivo(s)" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:291 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:297 msgid "Load data elements descriptions from FILE(s)" msgstr "Abrir elementos de datos desde archivo(s)" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:295 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:301 msgid "Load meanData descriptions from FILE(s)" msgstr "Abrir meanDatas desde archivos (s)" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:300 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:306 msgid "File in which TLS Programs must be saved" msgstr "El archivo en el que el programa TLS debe ser guardado" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:303 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:309 msgid "File in which edgeTypes must be saved" msgstr "El archivo en el que los edgeTypes deben ser guardados" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:309 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:315 msgid "Start netedit with a new network" msgstr "Iniciar netedit con una nueva red" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:312 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:318 msgid "Write attribute help to file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:317 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:323 msgid "Prefix for node naming" msgstr "Prefijo para el nombre de los cruces (junctions)" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:320 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:326 msgid "Prefix for edge naming" msgstr "Prefijo para el nombre de las calles (edges)" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:323 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:329 msgid "Enable edge-infix ()" msgstr "" "Activar infijo para calles calle (edge) ()" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:328 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:334 msgid "Prefix for busStop naming" msgstr "Prefijo para el nombre de las paradas de bus" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:331 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:337 msgid "Prefix for trainStop naming" msgstr "Prefijo para el nombre de las paradas de tren" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:334 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:340 msgid "Prefix for containerStop naming" msgstr "Prefijo para el nombre de las paradas para contenedores" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:337 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:343 msgid "Prefix for chargingStation naming" msgstr "Prefijo para el nombre de las estaciones de carga" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:340 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:346 msgid "Prefix for parkingArea naming" msgstr "Prefijo para el nombre de las áreas de parqueo" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:343 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:349 msgid "Prefix for e1Detector naming" msgstr "Prefijo para el nombre de los detectores e1" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:346 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:352 msgid "Prefix for e2Detector naming" msgstr "Prefijo para el nombre de los detectores e2" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:349 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:355 msgid "Prefix for e3Detector naming" msgstr "Prefijo para el nombre de los detectores e3" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:352 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:358 msgid "Prefix for e1InstantDetector naming" msgstr "Prefijo para el nombre de los detectores e1 instant" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:355 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:361 msgid "Prefix for rerouter naming" msgstr "Prefijo para el nombre del rerouter" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:358 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:364 msgid "Prefix for calibrator naming" msgstr "Prefijo para el nombre del calibrator" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:361 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:367 msgid "Prefix for routeProbe naming" msgstr "Prefijo para el nombre de los routeProbes" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:364 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:370 msgid "Prefix for variable speed sign naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:367 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:373 msgid "prefix for traction substation naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:370 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:376 msgid "Prefix for overhead wire naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:373 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:379 msgid "Prefix for polygon naming" msgstr "Prefijo para el nombre de los polígonos" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:376 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:382 msgid "Prefix for poi naming" msgstr "Prefijo para el nombre de los puntos de interés (POI)" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:381 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:387 msgid "Prefix for route naming" msgstr "Prefijo para el nombre de las rutas" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:384 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:390 msgid "Prefix for vType naming" msgstr "Prefijo para el nombre de los tipos de vehículos" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:387 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:393 msgid "Prefix for vehicle naming" msgstr "Prefijo para el nombre de los vehículos" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:390 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:396 msgid "Prefix for trip naming" msgstr "Prefijo para el nombre de los viajes" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:393 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:399 msgid "Prefix for flow naming" msgstr "Prefijo para el nombre de los flujos" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:396 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:402 msgid "Prefix for person naming" msgstr "Prefijo para el nombre de las personas" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:399 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:405 msgid "Prefix for personFlow naming" msgstr "Prefijo para el nombre de los flujos de personas" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:402 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:408 msgid "Prefix for container naming" msgstr "Prefijo para el nombre de los contenedores" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:405 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:411 msgid "Prefix for containerFlow naming" msgstr "Prefijo para el nombre de los flujos de contenedores" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:412 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:418 msgid "Prefix for meanDataEdge naming" msgstr "Prefijo para el nombre de los meanDatas sobre calles (edges)" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:415 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:421 msgid "Prefix for meanDataLane naming" msgstr "Prefijo para el nombre de los meanDatas sobre carriles (lanes)" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:422 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:428 msgid "Disable icons of special lanes" msgstr "Desactivar iconos sobre carriles (lanes)" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:425 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:431 msgid "Disable textures" msgstr "Desactivar texturas" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:428 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:434 msgid "Load visualisation settings from FILE" msgstr "Cargar configuración de visualización desde archivo" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:433 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:439 msgid "Load current viewport from registry" msgstr "Cargar ventana gráfica actual desde el registro" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:436 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:442 msgid "Create initial window with the given x,y size" msgstr "Crear ventana inicial con el tamaño x,y dado" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:439 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:445 msgid "Create initial window at the given x,y position" msgstr "Crear ventana inicial en la posición x,y dada" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:444 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:450 msgid "Enable overlay for screen recognition" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:447 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:453 msgid "Enable output messages during GUI-Testing" msgstr "Habilitar mensajes de salida durante la prueba de GUI" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:450 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:456 msgid "Enable output messages during GUI-Testing specific of gl functions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:453 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:459 msgid "Save gui settings in the given settings-output file" msgstr "Guardar los ajustes de la GUI en este archivo de ajustes" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:460 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:466 msgid "Defines the begin time in seconds; The simulation starts at this time" msgstr "" "Define el tiempo de inicio en segundos; La simulación comienza en este " "momento" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:463 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:469 msgid "Defines the end time in seconds; The simulation ends at this time" msgstr "" "Define el tiempo de finalización en segundos; La simulación termina en este " "momento" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:466 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:472 msgid "" "Length of the default interval length between action points for the car-" "following and lane-change models (in seconds). If not specified, the " @@ -3235,788 +3271,786 @@ "length." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:469 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:475 msgid "" "Select default speed deviation. A negative value implies vClass specific " "defaults (0.1 for the default passenger class" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:508 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:514 msgid "Failed to reset options." msgstr "Error al restablecer las opciones." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:370 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:370 msgid "delete junction" msgstr "eliminar cruce (junction)" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:412 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:412 msgid "delete edge" msgstr "eliminar calle (edge)" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:491 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:491 msgid "replace edge" msgstr "reemplazar calle (edge)" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:553 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:553 msgid "delete lane" msgstr "eliminar carril (lane)" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:588 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:588 msgid "delete connection" msgstr "eliminar conexión" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:603 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:603 msgid "delete crossing" msgstr "eliminar paso peatonal (crossing)" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:621 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:650 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:672 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:685 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:698 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:728 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:621 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:650 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:672 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:685 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:698 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:728 msgid "delete " msgstr "eliminar " -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:644 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:644 msgid "Trying to delete a default Vehicle Type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:737 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2685 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:737 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2690 msgid "duplicate lane" msgstr "duplicar carril (lane)" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:856 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:856 msgid "split edge" msgstr "dividir calle (edge)" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:973 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:973 msgid "split edges" msgstr "dividir calles (edges)" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:995 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:995 msgid "reverse edge" msgstr "invertir calle (edge)" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1008 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1012 msgid "add reversed edge" msgstr "añadir calle (edge) invertida" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1043 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1046 msgid "merge junctions" msgstr "unir calles (junctions)" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1079 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1082 msgid "select roundabout" msgstr "seleccionar rotonda (roundabout)" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1095 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1098 msgid "create roundabout" msgstr "crear rotonda (roundabout)" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1273 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1276 msgid "Forced computing junctions with volatile options ..." msgstr "Forzar computación de los cruces (junctions) con opciones volátiles..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1275 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1278 msgid "Forced computing junctions ..." msgstr "Forzar computación de los cruces (junctions)..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1282 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1285 msgid "Computing junctions with volatile options ..." msgstr "Computar cruces (junctions) con opciones volátiles..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1284 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1287 msgid "Computing junctions ..." msgstr "Computar cruces (junctions)..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1347 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1350 msgid "Finished computing junctions." msgstr "Computación de cruces (junctions) finalizada." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1353 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1356 msgid "Computing demand elements ..." msgstr "Computando elementos de demanda..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1367 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1370 msgid "Finished computing demand elements." msgstr "Computación de elementos de demanda finalizada." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1373 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1376 msgid "Computing data elements ..." msgstr "Computar elementos de datos ..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1380 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1383 msgid "Finished computing data elements." msgstr "Computación de elementos de datos finalizada." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1459 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1462 msgid "Position of joined junction" msgstr "Posición de la unión de cruces" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1460 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1463 msgid "" "There is another unselected junction in the same position of joined junction." msgstr "" "Hay otro cruce (junction) no seleccionado en la misma posición que la unión " "de cruces." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1461 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1464 msgid "It will be joined with the other selected junctions. Continue?" msgstr "Se unirá con los otros cruces (junctions) seleccionados. ¿Continuar?" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1582 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1592 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1585 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1595 msgid "Clear crossings" msgstr "Limpiar pasos peatonales (crossings)" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1583 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1586 msgid "There are no invalid crossings to remove." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1593 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1596 msgid "Crossings will be cleared. Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1604 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1607 msgid "clear crossings" msgstr "Limpiar pasos peatonales (crossings)" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1617 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1620 msgid "clear junctions" msgstr "limpiar cruces (junctions)" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1646 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1649 msgid "clear unused routes" msgstr "limpiar rutas no usadas" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1701 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1704 msgid "merge routes" msgstr "unir rutas" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1755 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1758 msgid "adjust person plans" msgstr "ajustar planes de personas" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1795 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1798 msgid "remove invalid demand elements" msgstr "eliminar elementos de demanda inválidos" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1810 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1813 msgid "replace junction by geometry" msgstr "reemplazar cruce (junction) por geometría" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1855 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1858 msgid "Junction isn't removable" msgstr "el cruce (junction) no se puede eliminar" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1867 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1870 msgid "split junction" msgstr "dividir cruce (junction)" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1907 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1910 msgid "Could not rename split node to '%'" msgstr "No se puede renombrar el cruce (junction) dividido a '%'" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1946 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1949 msgid "clear junction connections" msgstr "limpiar conexiones de cruces (junctions)" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1958 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1961 msgid "reset junction connections" msgstr "resetear conexiones de cruces (junctions)" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1969 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1972 msgid "clear additional elements" msgstr "limpiar elementos adicionales" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1982 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1985 msgid "clear demand elements" msgstr "limpiar elementos de demanda" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1995 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1998 msgid "clear data elements" msgstr "limpiar elementos de datos" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2006 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2009 msgid "clear meanData elements" msgstr "limpiar elementos meanData" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2326 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2403 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2331 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2413 msgid "Duplicated ID" msgstr "ID duplicada" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2689 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2689 msgid "Network size exceeds 1 Lightyear. Please reconsider your inputs." msgstr "" "El tamaño de la red excede un año luz. Por favor revisa las entradas de " "datos." -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:1461 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:1468 msgid "Default vType doesn't exist" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2478 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2486 msgid "Invalid meanData pointer" msgstr "Puntero hacia un meanData inválido" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2739 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2747 msgid "Redo replace in TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2753 msgid "Undo replace in TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:332 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:334 msgid "Locate a junction within the network. (Shift+J)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:336 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:338 msgid "Locate an edge within the network. (Shift+E)" msgstr "Localizar una calle (edge) dentro de la red. (Shift+E)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:340 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:342 msgid "Locate WalkingAreas" msgstr "Localizar areas peatonales (WalkingAreas)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:340 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:342 msgid "Locate a walkingArea within the network. (Shift+W)" msgstr "Localizar una area peatonal (WalkingArea) dentro de la red. (Shift+W)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:344 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:346 msgid "Locate a vehicle within the network. (Shift+V)" msgstr "Localizar vehículos dentro de la red. (Shift+V)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:348 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:350 msgid "Locate a person within the network. (Shift+P)" msgstr "Localizar personas dentro de la red. (Shift+P)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:354 msgid "Locate Route" msgstr "Localizar rutas" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:354 msgid "Locate a route within the network. (Shift+R)" msgstr "Localizar rutas dentro de la red. (Shift+R)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:358 msgid "Locate Stops" msgstr "Localizar parada" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:358 msgid "Locate a stop within the network. (Shift+S)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:367 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:369 msgid "Locate a tls within the network. (Shift+T)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:371 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:373 msgid "Locate an additional structure within the network. (Shift+A)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:375 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:377 msgid "Locate a PoI within the network. (Shift+O)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:379 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:381 msgid "Locate a Polygon within the network. (Shift+L)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:453 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:455 msgid "Remove from Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:455 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:457 msgid "Add to Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:612 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:614 msgid "GUI-Settings cannot be saved in " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:805 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:807 msgid "Confirm Junction Merger" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:806 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:808 msgid "Do you wish to merge junctions '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:807 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:205 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:809 msgid "' and '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:808 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:810 msgid "' will be eliminated and its roads added to '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:836 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:838 msgid " requires switch to network mode. Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:838 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:840 msgid " requires switch to demand mode. Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:840 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:842 msgid " requires switch to data mode. Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:845 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:847 msgid "Confirm switch mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1423 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1425 msgid "Cannot delete in this mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1426 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1428 msgid "delete network inspected elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1434 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1436 msgid "delete network selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1442 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1444 msgid "delete demand inspected elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1450 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1452 msgid "delete demand selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1458 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1460 msgid "delete data inspected elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1466 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1468 msgid "delete data selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2101 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2106 msgid "Reverse selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2108 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2113 msgid "Reverse edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2122 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2127 msgid "Add Reverse edge for selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2129 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2134 msgid "Add reverse edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2143 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2148 msgid "Add Reverse disconnected edge for selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2150 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2155 msgid "Add reverse disconnected edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2179 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2184 msgid "reset geometry points" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2200 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2205 msgid "straighten selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2208 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2213 msgid "straighten edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2222 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2227 msgid "smooth selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2229 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2234 msgid "smooth edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2243 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2248 msgid "straighten elevation of selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2250 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2255 msgid "straighten edge elevation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2264 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2269 msgid "smooth elevation of selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2271 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2276 msgid "smooth edge elevation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2285 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2290 msgid "reset edge lengths" -msgstr "" +msgstr "reiniciar largos de la calles (edge)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2314 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2319 msgid "copy edge template" -msgstr "" +msgstr "copiar plantilla de calle (edge)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2335 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2340 msgid "simplify shapes" msgstr "simplificar formas (shapes)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2377 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2382 msgid "close polygon shapes" -msgstr "" +msgstr "cerrar formas de los polígonos" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2408 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2413 msgid "open polygon shapes" -msgstr "" +msgstr "abrir formas de los polígonos" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2457 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2462 msgid "select within polygon boundary" -msgstr "" +msgstr "seleccionar dentro del area del polígono" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2502 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2507 #, c-format msgid "No lanes around % to attach it" msgstr "No hay carriles (lanes) alrededor de % para adjuntar" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2525 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2530 msgid "attach POI into lane" msgstr "adjuntar punto de interés (POI) al carril (lane)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2538 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2543 msgid "release POI from lane" -msgstr "" +msgstr "desanclar punto de interés (POI) del carril (lane)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2572 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2577 msgid "change edge Geometry Point position" -msgstr "" +msgstr "cambiar posición del punto geométrico de la calle (edge)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2604 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2609 msgid "change polygon Geometry Point position" -msgstr "" +msgstr "cambiar posición del punto geométrico del polígono" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2624 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2629 msgid "change TAZ Geometry Point position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2648 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2653 msgid "reset end points of selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2659 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2664 msgid "reset end points of edge '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2678 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2683 msgid "duplicate selected lanes" msgstr "duplicar carriles seleccionados" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2715 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2720 msgid "reset custom lane shapes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2722 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2727 msgid "reset custom lane shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2738 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2743 msgid "reset opposite lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2750 msgid "reset opposite lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2799 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2804 msgid "select lane reachability" msgstr "seleccionar accesibilidad del carril" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2841 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2846 msgid "Multiple lane in the same edge selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2842 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2847 msgid "There are selected lanes that belong to the same edge." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2843 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2848 msgid "Only one lane per edge will be restricted for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2858 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2866 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2863 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2871 msgid "Set vclass for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2859 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2867 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2940 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2948 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2864 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2872 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2945 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2953 msgid " to selected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2860 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2941 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2865 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2946 msgid "" "All lanes own already another lane in the same edge with a restriction for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2868 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2873 msgid " lanes will be restricted for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2869 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2874 msgid ". Continue?" msgstr ". ¿Continuar?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2896 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2901 msgid "restrict lane to " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2939 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2947 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2944 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2952 msgid "Add vclass for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2949 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3044 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2954 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3049 msgid " restrictions for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2950 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2955 msgid " will be added. Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2967 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2972 msgid "add restrictions for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2977 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2982 msgid "add vclass for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3034 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3042 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3072 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3039 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3047 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3077 msgid "Remove vclass for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3035 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3040 msgid " from selected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3036 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3041 msgid "Selected lanes and edges haven't a restriction for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3043 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3048 msgid " in selected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3045 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3050 msgid " will be removed. Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3214 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3219 msgid "reset edge endpoints" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3259 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3526 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3561 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3584 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3264 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3531 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3566 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3589 msgid "Grid is still active, press ctrl+g to deactivate" msgstr "La cuadrícula aún está activa, presione ctrl+g para desactivarla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3278 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3283 msgid "reset custom junction shapes" msgstr "restablecer formas de cruce (junction) personalizadas" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3285 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3290 msgid "reset custom junction shape" msgstr "restablecer forma de cruce (junction) personalizada" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3396 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3401 msgid "clear connections of selected junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3428 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3433 msgid "reset connections of selected junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3452 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3479 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3457 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3484 msgid "add TLS in multiple junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:5564 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:5579 msgid "Shift + click to create two additionals in the same position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:5813 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:5828 msgid "Control + click to create two stop in the same position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1467 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1488 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1467 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1488 msgid "moving selection" msgstr "mover selección" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1668 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1668 msgid "Selection width:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1669 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1669 msgid " height:" msgstr " altura:" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1670 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1670 msgid " diagonal:" msgstr " diagonal:" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1834 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1834 msgid "selection using rectangle" msgstr "Selección usando un rectángulo" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1868 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1868 #, c-format msgid "Invalid windows size-format: %for option 'window-size'" msgstr "Formato de tamaño de ventana inválido: % para opción 'window-size'" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1946 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1946 msgid "Save NETEDITConfig" msgstr "Guardar neteditconfig" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1946 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1946 msgid "Save NETEDITConfig. (Ctrl+Shift+E)" msgstr "Guardar neteditconfig. (Ctrl+Shift+E)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1952 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1952 msgid "Save SumoConfig" msgstr "Guardar sumoconfig" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1952 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1952 msgid "Save SumoConfig. (Ctrl+Shift+S)" msgstr "Guardar sumoconfig. (Ctrl+Shift+S)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1958 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1958 msgid "Save network" msgstr "Guardar red" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1958 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1958 msgid "Save network. (Ctrl+S)" msgstr "Guardar red. (Ctrl+S)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1966 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1966 msgid "Save individual files" msgstr "Guardar archivos individuales" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1966 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1966 msgid "Save individual files." msgstr "Guardar archivos individuales." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1972 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1972 msgid "Save additional elements" msgstr "Guardar elementos adicionales" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1972 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1972 msgid "Save additional elements. (Ctrl+Shift+A)" msgstr "Guardar elementos adicionales. (Ctrl+Shift+A)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1978 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1978 msgid "Save demand elements" msgstr "Guardar elementos de demanda" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1978 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1978 msgid "Save demand elements. (Ctrl+Shift+D)" msgstr "Guardar elementos de demanda. (Ctrl+Shift+D)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1984 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1984 msgid "Save data elements" msgstr "Guardar elementos de datos" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1984 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1984 msgid "Save data elements. (Ctrl+Shift+B)" msgstr "Guardar elementos de datos. (Ctrl+Shift+B)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1990 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1990 msgid "Save mean data elements" msgstr "Guardar elementos meanData" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1990 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1990 msgid "Save mean data elements. (Ctrl+Shift+M)" msgstr "Guardar elementos meanData. (Ctrl+Shift+M)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 msgid "Network" msgstr "Red" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 msgid "Edit network elements" msgstr "Editar elementos de red" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 msgid "Set mode for edit network elements. (F2)" msgstr "Establecer modo para editar elementos de red (F2)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2067 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2069 msgid "Demand" msgstr "Demanda" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 msgid "Edit traffic demand elements" msgstr "Editar elementos de demanda de tráfico" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 msgid "Set mode for edit traffic demand. (F3)" msgstr "Establecer modo para editar demanda de tráfico. (F3)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2211 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2213 msgid "Data" msgstr "Datos" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 msgid "Edit data elements" msgstr "Editar elementos de datos" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 msgid "Set mode for edit data demand. (F4)" msgstr "Establecer modo para editar elementos de datos. (F4)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2065 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2065 msgid "Mode already selected" msgstr "Modo ya seleccionado" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2150 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2150 msgid "Network mode already selected" msgstr "Modo de red ya seleccionado" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2155 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2155 msgid "Save modifications in TLS before change mode" msgstr "Guardar modificaciones en semáforos (TLS) antes de cambiar de modo" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2200 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2200 msgid "Demand mode already selected" msgstr "Modo de demanda ya seleccionado" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2235 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2235 msgid "Data mode already selected" msgstr "Modo de datos ya seleccionado" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2316 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2627 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2316 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2627 msgid "" "Show grid and restrict movement to the grid - define grid size in " "visualization options. (Ctrl+G)" @@ -4024,64 +4058,64 @@ "Mostrar cuadrícula y restringir el movimiento a la cuadrícula - El tamaño de " "la cuadrícula se puede modificar en las opciones de visualización. (Ctrl + G)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2324 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2635 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2922 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2324 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2635 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2922 msgid "Toggle hiding junction shape. (Ctrl+J)" msgstr "Alternar mostrar formas de los cruces (junction). (Ctrl+J)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2332 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2332 msgid "Draw vehicles spread in lane or depart position" msgstr "" "Dibujar vehículos extendidos en el carril (lane) o en la posición de inicio" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2332 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2643 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2332 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2643 msgid "Draw vehicles spread in lane or in depart position." msgstr "" "Dibujar vehículos extendidos en el carril (lane) o en la posición de inicio." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2340 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2944 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2340 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2944 msgid "Toggle show demand elements." msgstr "Alternar mostrar elementos de demanda." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2348 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2348 msgid "Clicks target lanes" msgstr "Clicks seleccionan carriles (lanes)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2348 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2348 msgid "" "Toggle whether clicking should inspect/select/delete lanes instead of edges." msgstr "" "Alternar si clickar debe inspeccionar/seleccionar/eliminar carriles (lanes) " "en lugar de calles (edges)." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2355 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2355 msgid "Toggle show connections over junctions." msgstr "Alternar mostrar conexiones sobre cruces (junctions)." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2363 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2363 msgid "Toggle hide connections." msgstr "Alternar ocultar conexiones." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2371 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2371 msgid "Show additional sub-elements" msgstr "Mostar sub-elementos adicionales" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2371 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2371 msgid "Toggle show additional sub-elements." msgstr "Alternar mostrar sub-elementos adicionales." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2379 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2379 msgid "Toggle show TAZ elements." msgstr "Alternar mostrar elementos de zona de análisis de tráfico (TAZ)." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2387 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2387 msgid "Automatic select junctions" msgstr "Seleccionar cruces (junctions) automáticamente" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2387 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2387 msgid "" "Toggle whether selecting multiple edges should automatically select their " "junctions." @@ -4089,11 +4123,11 @@ "Alternar si seleccionar multiples calles (edges) debe seleccionar o no " "también sus cruces (junctions)." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2395 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2395 msgid "Apply state to all phases" msgstr "Aplicar estado a todas las fases" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2395 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2395 msgid "" "Toggle whether clicking should apply state changes to all phases of the " "current TLS plan." @@ -4101,567 +4135,568 @@ "Alternar si clicar debe aplicar o no los cambios de estado a todas las fases " "del plan actual del semáforo (TLS)." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2403 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2403 msgid "Automatic merging junction" msgstr "Unir cruce automáticamente" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2403 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2403 msgid "Toggle ask for confirmation before merging junction." msgstr "Alternar entre preguntar o no antes de unir un cruce (junction)." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2410 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2410 msgid "Show bubbles" msgstr "Mostrar burbujas" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2410 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2410 msgid "Toggle show bubbles over junctions shapes." msgstr "" "Alternar entre mostrar o no burbujas sobre la forma de los cruces " "(junctions)." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2418 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2418 msgid "Move elevation" msgstr "Mover elevación" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2418 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2418 msgid "Apply mouse movement to elevation instead of x,y position." msgstr "" "Aplicar movimiento del ratón a la elevación en lugar de la las posiciones x " "e y." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2426 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2426 msgid "Edge chain mode" msgstr "Modo cadenas de calles (edges)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2426 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2426 msgid "Create consecutive edges with a single click (hit ESC to cancel chain)." msgstr "" "Crear calles (edges) consecutivos con un solo clic (Pulsar ESC para cancelar " "la cadena)." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2434 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2434 msgid "Edge opposite direction" msgstr "Calle (edge) en dirección contraria" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2434 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2434 msgid "Automatically create an edge in the opposite direction." msgstr "Crear calle (edge) en la dirección opuesta automáticamente." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2651 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2937 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2651 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2937 msgid "Toggle show shapes (Polygons and POIs)." msgstr "" "Alternar entre mostrar o no formas (shapes) (Polígonos y puntos de interés)." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2659 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2659 msgid "Toggle show all trips (requires updated demand - F5)." msgstr "" "Alternar entre mostrar o no todos los viajes (Requiere actualizar demanda - " "F5)." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2667 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2667 msgid "Toggle show all person plans." msgstr "Alternar entre mostrar o no todos los planes para personas." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2675 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2675 msgid "Toggle lock selected person." msgstr "Alternar entre bloquear o no a la persona seleccionada." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2683 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2683 msgid "Show all containers plans" msgstr "Mostar todos los planes para contendores" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2683 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2683 msgid "Toggle show all container plans." msgstr "Alterna entre mostrar o no todos los planes para contenedores." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2691 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2691 msgid "Toggle lock selected container." msgstr "Alternar entre bloquear o no el contenedor seleccionado." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2699 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2699 msgid "Toggle show non-inspected demand elements." msgstr "Alternar entre mostrar o no elementos de demanda no inspeccionados." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2707 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2707 msgid "Toggle show number of overlapped routes." msgstr "Alternar mostrar o no el número de rutas superpuestas." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2930 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2930 msgid "Toggle show additionals." msgstr "Alternar entre mostrar o no elementos adicionales." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2951 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2951 msgid "Draw TAZREL drawing mode" msgstr "Modo para dibujar TAZRel" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2951 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2951 msgid "Toggle draw TAZREL drawing mode." msgstr "Alternar el modo para dibujar TAZRels." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2958 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2958 msgid "Toggle draw TAZ fill" msgstr "Alternar entre dibujar o no los TAZ rellenos" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2965 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2965 msgid "Toggle draw TAZRel only from" msgstr "Alternar entre mostrar o no solamente los TAZRel de origen" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2972 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2972 msgid "Toggle draw TAZRel only to" msgstr "Alternar entre mostrar o no solamente los TAZRel de destino" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3471 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3471 msgid "Set inspect mode" msgstr "Ir a modo de inspección" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3471 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3471 msgid "Mode for inspect elements and change their attributes. (I)" msgstr "Modo para inspeccionar elementos y cambiar sus atributos. (I)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3477 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3477 msgid "Set delete mode" msgstr "Ir a modo de borrado" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3477 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3477 msgid "Mode for delete elements. (D)" msgstr "Modo para borrar elementos. (D)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3546 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3690 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3546 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3681 msgid "Set move mode" msgstr "Ir a modo de movimiento" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3546 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3690 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3546 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3681 msgid "Mode for move elements. (M)" msgstr "Modo para mover elementos. (M)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3552 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3552 msgid "Set create edge mode" msgstr "Ir a modo para crear calles (edges)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3552 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3552 msgid "Mode for creating junction and edges. (E)" msgstr "Modo para crear cruces (junctions) y calles (edges). (E)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3558 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3558 msgid "Set connection mode" msgstr "Ir a modo de conexiones" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3558 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3558 msgid "Mode for edit connections between lanes. (C)" msgstr "Modo para editar conexiones entre carriles (lanes). (C)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3564 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3564 msgid "Set prohibition mode" msgstr "Ir a modo de prohibiciones" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3564 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3564 msgid "Mode for editing connection prohibitions. (H)" msgstr "Modo para editar conexiones prohibidas. (H)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3570 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3570 msgid "Set traffic light mode" msgstr "Ir a modo de semáforos (TLS)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3570 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3570 msgid "Mode for edit traffic lights over junctions. (T)" msgstr "Modo para editar semáforos (TLS) sobre cruces (junctions). (T)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3576 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3576 msgid "Set additional mode" msgstr "Ir a modo de elementos adicionales" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3576 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3576 msgid "Mode for adding additional elements. (A)" msgstr "Modo para editar elementos adicionales. (A)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3582 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3582 msgid "Set crossing mode" msgstr "Ir a modo de cruces peatonales (crossings)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3582 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3582 msgid "Mode for creating crossings between edges. (R)" msgstr "" "Modo para crear cruces peatonales (crossings) entre calles (edges). (R)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3588 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3588 msgid "Set TAZ mode" msgstr "ir al modo para zonas de análisis de tráfico (TAZ)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3588 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3588 msgid "Mode for creating Traffic Assignment Zones. (Z)" msgstr "Modo para crear zonas de análisis de tráfico (TAZ). (Z)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3594 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3594 msgid "Set polygon mode" msgstr "Ir al modo para editar polígonos" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3594 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3594 msgid "Mode for creating polygons and POIs. (P)" msgstr "Modo para crear polígonos y puntos de interés (POI). (P)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3600 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3600 msgid "Set wire mode" msgstr "Ir al modo de catenarias (wires)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3600 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3600 msgid "Mode for editing wires. (W)" msgstr "Modo para editar catenarias (wires). (W)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3696 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3687 msgid "Create route mode" msgstr "Ir al modo para crear rutas" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3696 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3687 msgid "Mode for creating routes. (R)" msgstr "Modo para crear rutas. (R)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3702 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3693 msgid "Create vehicle mode" msgstr "Ir al modo para crear vehículos" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3702 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3693 msgid "Mode for creating vehicles. (V)" msgstr "Modo para crear vehículos. (V)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3708 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3699 msgid "Create type mode" msgstr "Ir al modo para crear tipos de vehículos/personas/contenedores" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3708 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3699 msgid "Mode for creating types (vehicles, person and containers). (T)" msgstr "Modo para crear tipos de vehículos/personas/contendores. (T)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3714 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3705 +msgid "Create type distribution mode" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3705 +msgid "Mode for creating type distribution. (U)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3711 msgid "Create stop mode" msgstr "Ir al modo para crear paradas" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3714 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3711 msgid "Mode for creating stops. (A)" msgstr "Modo para crear paradas. (A)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3720 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3717 msgid "Create person mode" msgstr "Ir al modo para crear personas" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3720 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3717 msgid "Mode for creating persons. (P)" msgstr "Modo para crear personas. (P)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3726 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3723 msgid "Create person plan mode" msgstr "Ir al modo para crear planes para personas" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3726 -msgid "Mode for creating person plans. (C)" -msgstr "Modo para crear planes para personas. (C)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3723 +msgid "Mode for creating person plans. (L)" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3732 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3729 msgid "Create container mode" msgstr "Ir al modo para crear contenedores" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3732 -msgid "Mode for creating containers. (P)" -msgstr "Modo para crear contenedores (P)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3729 +msgid "Mode for creating containers. (C)" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3738 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3735 msgid "Create container plan mode" msgstr "Ir al modo para crear planes para contenedores" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3738 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3735 msgid "Mode for creating container plans. (H)" msgstr "Modo para crear planes para contenedores. (H)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3815 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3816 msgid "Create edge data mode" msgstr "Ir al modo para crear datos sobre calles (edgeDatas)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3815 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3816 msgid "Mode for creating edge datas. (E)" msgstr "Modo para crear datos para calles (edgeDatas). (E)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3821 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3822 msgid "Create edge relation data mode" msgstr "Ir al modo para crear datos de relación entre calles (edgeRelDatas)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3821 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3822 msgid "Mode for creating edge relation datas. (R)" msgstr "Modo para crear datos de relación entre calles (edgeRelDatas). (R)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3827 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3828 msgid "Create TAZ relation data mode" msgstr "" "Ir al modo para crear datos de relación entre zonas de análisis de tráfico " "(TAZRelDatas)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3827 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3828 msgid "Mode for creating TAZ relation datas. (Z)" msgstr "" "Modo para crear datos de relación entre zonas de análisis de tráfico " "(TAZRelDatas). (Z)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3833 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3834 msgid "MeanData mode" msgstr "Ir al modo para crear y editar meanDatas" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3833 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3834 msgid "Mode for MeanData elements. (M)" msgstr "Modo para crear y editar meanDatas. (M)" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:102 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:103 msgid "Undo the last change. (Ctrl+Z)" msgstr "Deshacer el último cambio. (Ctrl+Z)" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:105 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:106 msgid "Redo the last change. (Ctrl+Y)" msgstr "Rehacer el último cambio. (Ctrl+Y)" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:113 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:114 msgid "Compute path manager" msgstr "Gestor de computación para caminos" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:113 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:114 msgid "Compute path manager." msgstr "Gestor de computación para caminos." -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:521 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:528 msgid "WalkingArea Chooser" -msgstr "" +msgstr "Selector de areas peatonal (WalkingArea)" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:590 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:597 msgid "Route Chooser" -msgstr "" +msgstr "Selector de rutas" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:598 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:605 msgid "Stop Chooser" -msgstr "" +msgstr "Selector de paradas" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:629 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:641 msgid "TLS Chooser" -msgstr "" +msgstr "Selector de semáforos (TLS)" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:640 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:652 msgid "Additional Chooser" -msgstr "" +msgstr "Selector de adicionales" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:669 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:681 msgid "Poly Chooser" -msgstr "" +msgstr "Selector de polígonos" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:120 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:96 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:108 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:97 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:145 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:128 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:118 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:96 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:108 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:97 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:145 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:128 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:118 msgid "Undo create " msgstr "Deshacer creación de " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:122 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:99 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:110 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:99 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:147 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:130 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:122 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:99 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:110 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:99 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:147 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:120 msgid "Undo delete " msgstr "Deshacer eliminación de " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:130 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:118 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:107 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:155 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:138 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:128 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:118 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:107 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:155 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:138 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:128 msgid "Redo create " msgstr "Rehacer creación de " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:132 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:120 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:109 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:157 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:140 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:132 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:109 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:157 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:140 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:130 msgid "Redo delete " msgstr "rehacer eliminación de " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Attribute.cpp:158 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Attribute.cpp:158 msgid "Undo change " msgstr "Deshacer cambio de " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Attribute.cpp:164 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Attribute.cpp:164 msgid "Redo change " msgstr "Rehacer cambio de " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:147 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:158 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:147 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:158 msgid "Undo moving up " msgstr "Deshacer mover arriba " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:149 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:156 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:149 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:156 msgid "Undo moving down " msgstr "Deshacer mover abajo " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:151 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:160 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:175 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:184 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:151 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:160 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:175 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:184 msgid "Invalid operation" msgstr "Operación no válida" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:171 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:180 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:171 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:180 msgid "Redo moving front " msgstr "Rehacer mover hacia el frente " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:173 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:182 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:173 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:182 msgid "Redo moving back " msgstr "Rehacer mover hacia atrás " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:108 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:108 msgid "Redo create connection '" msgstr "Rehacer crear conexión '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:111 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:111 msgid "Redo delete connection '" msgstr "Deshacer eliminar conexión '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:163 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:163 msgid "Undo create crossing" msgstr "Deshacer creación de paso peatonal (crossing)" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:165 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:165 msgid "Undo delete crossing" msgstr "Deshacer eliminación de paso peatonal (crossing)" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:173 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:173 msgid "Redo create crossing" -msgstr "" +msgstr "Deshacer crear paso peatonal (crossing)" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:175 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:175 msgid "Redo delete crossing" -msgstr "" +msgstr "Rehacer crear paso peatonal (crossing)" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:136 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:136 msgid "Undo create edge '" -msgstr "" +msgstr "Deshacer crear calle (edge) '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:138 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:138 msgid "Undo delete edge '" -msgstr "" +msgstr "Deshacer eliminar calle (edge) '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:146 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:146 msgid "Redo create edge '" -msgstr "" +msgstr "Rehacer crear calle (edge) '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:148 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:148 msgid "Redo delete edge '" -msgstr "" +msgstr "Rehaer eliminar calle (edge) '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:111 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:111 msgid "Undo create edgeType '" -msgstr "" +msgstr "Deshacer crear calle (edge) '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:113 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:113 msgid "Undo delete edgeType '" msgstr "Deshacer eliminación de edgeType '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:121 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:121 msgid "Redo create edgeType '" msgstr "Rehacer creación de edgeType '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:123 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:123 msgid "Redo delete edgeType '" msgstr "Rehacer eliminación de edgeType '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:113 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:115 -msgid "Undo enable " -msgstr "Deshacer activar " - -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:113 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:115 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:123 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:125 -msgid " attribute in '" -msgstr " atributo en '" - -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:123 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:125 -msgid "Redo enable " -msgstr "Rehacer activar " +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:113 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:115 +msgid "Undo enable % attribute in '%'" +msgstr "" + +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:123 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:125 +msgid "Redo enable % attribute in '%'" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:109 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:109 msgid "Undo create junction '" msgstr "Deshacer creación de cruce (junction) '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:111 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:111 msgid "Undo delete junction '" msgstr "Deshacer eliminación de cruce (junction) '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:119 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:119 msgid "Redo create junction '" msgstr "Rehacer creación de cruce (junction) '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:121 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:121 msgid "Redo delete junction '" msgstr "Rehacer eliminación de cruce (junction) '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:158 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:158 msgid "Undo create lane '" msgstr "Deshacer creación de carril (lane) '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:160 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:160 msgid "Undo delete lane '" msgstr "Deshacer eliminación de carril (lane) '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:168 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:168 msgid "Redo create lane '" msgstr "Rehacer creación de carril (lane) '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:170 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:170 msgid "Redo delete lane '" msgstr "Rehacer eliminación de carril (lane) '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:172 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:172 msgid "Undo create TLS '" msgstr "Deshacer crear TLS '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:174 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:174 msgid "Undo delete TLS '" msgstr "Deshacer eliminar TLS '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:182 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:182 msgid "Redo create TLS '" msgstr "Rehacer crear TLS '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:184 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:184 msgid "Redo delete TLS '" msgstr "Rehacer eliminar TLS '" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:38 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:38 msgid "About Eclipse SUMO netedit" msgstr "Acerca de Eclipse SUMO netedit" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:53 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:53 msgid "Network editor for Eclipse SUMO, the Simulation of Urban MObility" msgstr "Editor de red de Eclipse SUMO (Simulation of Urban MObility)" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:54 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:54 msgid "Graphical editor for road networks and infrastructure." msgstr "Editor gráfico de redes viales e infraestructura." -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:66 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:66 msgid "This application is based on code provided by the Eclipse SUMO project." msgstr "" "Esta aplicación se basa en código proporcionado por el proyecto Eclipse SUMO." -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:67 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:67 msgid "" "These core components are available under the conditions of the Eclipse " "Public License v2." @@ -4669,134 +4704,137 @@ "Estos componentes básicos están disponibles en las condiciones de la Eclipse " "Public License v2." -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:923 msgid "Accept" msgstr "Aceptar" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:62 msgid "Close accepting changes" msgstr "Cerrar, aceptando cambios" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:94 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:93 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1368 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:377 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:925 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1396 msgid "Cancel" msgstr "Cancelar" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:63 msgid "Close discarding changes" msgstr "Cerrar, descartando cambios" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:64 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:93 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:378 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:97 msgid "Reset" msgstr "Restablecer" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:64 msgid "Reset to previous values" msgstr "Restablecer los valores previos" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:276 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:649 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:59 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:690 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:494 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:133 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:276 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:650 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:59 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:713 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:494 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:133 msgid "accept" msgstr "aceptar" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:276 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:277 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:278 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:415 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:649 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:650 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:651 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:411 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:690 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:691 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:692 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:408 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:494 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:495 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:234 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:247 -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:285 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:384 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:559 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:298 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:487 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:134 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:276 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:277 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:416 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:650 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:651 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:652 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:413 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:713 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:714 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:715 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:408 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:494 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:495 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:380 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:298 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:487 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:134 msgid "close" msgstr "cerrar" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:277 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:650 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:60 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:691 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:495 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:277 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:651 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:60 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:714 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:495 msgid "cancel" msgstr "cancelar" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:278 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:651 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:692 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:652 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:715 msgid "reset" msgstr "reset" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNECalibratorDialog.cpp:237 +#: D:\Repos\sumo/src\netedit\dialogs\GNECalibratorDialog.cpp:237 msgid "routes cannot be empty" msgstr "las rutas no pueden estar vacias" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNECalibratorDialog.cpp:472 +#: D:\Repos\sumo/src\netedit\dialogs\GNECalibratorDialog.cpp:472 msgid "No routes defined" msgstr "No hay rutas definidas" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:71 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:638 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:389 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:71 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:638 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:389 msgid "&Accept" msgstr "&Aceptar" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:75 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:90 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:75 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:90 msgid "close accepting changes" msgstr "cierra aceptando cambios" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:64 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:76 msgid "close discarding changes" msgstr "cierra descartando cambios" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:65 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:65 msgid "&Reset" msgstr "&Reset" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:65 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:77 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:65 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:77 msgid "reset to previous values" msgstr "resetear a los valores previos" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDialogACChooser.cpp:111 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDialogACChooser.cpp:111 msgid "Invalid Junction" msgstr "Cruce (junction) inválido" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDialogACChooser.cpp:117 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDialogACChooser.cpp:117 msgid "Invalid number of TLSs" msgstr "Número de semáforos (TLSs) inválido" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:257 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:333 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:457 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:257 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:333 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:457 msgid "Activate friendlyPos and save" msgstr "Activar friendlypos y salvar" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:257 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:333 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:257 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:333 msgid "" "Friendly pos parameter will be activated in all stopping places and E2 " "detectors" @@ -4804,31 +4842,31 @@ "Parámetro friendlypos será activado en todos los lugares de parada y " "detectores E2" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:259 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:460 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:259 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:460 msgid "Save invalid positions" msgstr "Guardar posiciones inválidas" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:259 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:259 msgid "Save stopping places and E2 detectors with invalid positions" msgstr "Salvar lugares de parada y detectores E2 con posiciones inválidas" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:263 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:335 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:466 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:263 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:335 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:466 msgid "Fix positions and save" msgstr "Corregir posiciones y guardar" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:263 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:335 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:263 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:335 msgid "Position of stopping places and E2 detectors will be fixed" msgstr "La posición de los lugares de parada y detectores E2 será arreglada" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:265 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:265 msgid "Select invalid additionals" msgstr "Seleccionar elementos adicionales inválidos" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:265 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:265 msgid "" "Cancel saving of additionals and select invalid stopping places and E2 " "detectors" @@ -4836,179 +4874,179 @@ "Cancelar el guardado de los elementos adicionales y seleccionar los lugares " "de parada y detectores E2 inválidos" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:325 msgid "Build connections between lanes" msgstr "Crear conexiones entre carriles (lanes)" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:325 msgid "New connections will be created between non-connected lanes" msgstr "" "Se crearán nuevas conexiones (connections) entre carriles (lanes) no " "conectados" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:327 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:327 msgid "Remove invalid E2 detectors" msgstr "Eliminar detectores E2 inválidos" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:327 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:327 msgid "Remove Multilane E2 Detectors with non-connected lanes" msgstr "Eliminar detectores multicarril E2 con carriles (lanes) desconectados" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:202 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:189 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:202 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:189 msgid "Save list of conflicted items" msgstr "Guardar lista de ítems en conflicto" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:240 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:240 msgid "Remove invalid routes" msgstr "Eliminar rutas inválidas" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:243 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:243 msgid "Save invalid routes" msgstr "Guardar rutas inválidas" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:246 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:246 msgid "Select conflicted routes" msgstr "Seleccionar rutas en conflicto" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:249 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:249 msgid "Remove stops out of route" msgstr "Retirar paradas (stops) fuera de ruta" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:351 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:351 msgid "Remove invalid vehicles" msgstr "Retirar vehículos inválidos" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:354 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:354 msgid "Save invalid vehicles" msgstr "Guardar vehículos inválidos" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:357 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:357 msgid "Select conflicted vehicle" msgstr "Seleccionar vehículo en conflicto" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:360 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:360 msgid "Remove stops out of vehicle's route" msgstr "Elimina paradas fuera de la ruta del vehículo" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:463 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:463 msgid "Select conflicted Stops" msgstr "Seleccionar paradas en conflicto" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:557 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:557 msgid "Delete person plan" msgstr "Eliminar plan de personas" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:560 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:560 msgid "Save invalid person plans" msgstr "Guardar planes de persona inválidos" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:563 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:563 msgid "Select conflicted person plans" msgstr "Seleccionar planes de personas en conflicto" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:52 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:52 msgid "Fix network elements problems" msgstr "Arreglar problemas de elementos de red" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:206 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:206 msgid "Saving successfully" msgstr "Guardado exitoso" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:213 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:213 msgid "Saving list of conflicted items failed" msgstr "El guardado de la lista de elementos en conflicto falló" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:227 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:227 msgid "Remove invalid edges" msgstr "Eliminar calles (edges) inválidos" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:230 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:230 msgid "Save invalid edges" msgstr "Guardar edges inválidos" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:233 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:233 msgid "Select conflicted edges" msgstr "Seleccionar calles (edges) en conflicto" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:308 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:308 msgid "Remove invalid crossings" msgstr "Eliminar pasos peatonales (crossings) inválidos" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:311 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:311 msgid "Save invalid crossings" msgstr "Guardar pasos peatonales (crossings) inválidos" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:314 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:314 msgid "Select conflicted crossing" msgstr "Seleccionar paso peatonal (crossing) en conflicto" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:285 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:281 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:286 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:283 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:278 msgid "Sort" msgstr "Ordenar" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:286 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:282 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:279 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:55 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:251 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:287 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:284 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:279 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:252 msgid "Clear" msgstr "Despejar" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:289 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:285 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:282 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:59 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:748 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:73 -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:318 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:113 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:420 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:60 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:83 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:37 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:39 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:222 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1194 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:290 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:287 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:756 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:318 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:109 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:37 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:39 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:223 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1191 msgid "Help" msgstr "Ayuda" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:299 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:295 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:292 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:300 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:297 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:292 msgid "Open Parameter Template" msgstr "Abrir plantilla de parámetros" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:314 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:310 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:307 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:315 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:312 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:307 #, c-format msgid "Loading of Parameters From % failed." msgstr "Fallo en la carga de parámetros desde '%'." -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:317 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:313 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:310 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:318 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:315 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:310 msgid "Loaded % Parameters." msgstr "Se cargaron % parámetros." -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:327 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:323 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:320 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:328 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:320 msgid "Save Parameter Template file" msgstr "Guardar archivo de plantilla de parámetros" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:403 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:399 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:396 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:404 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:401 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:396 msgid "- Parameters are defined by a Key and a Value.\n" msgstr "- Los parámetros se definen con una Clave y un valor.\n" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:404 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:400 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:397 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:405 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:402 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:397 msgid "" "- In Netedit can be defined using format key1=parameter1|" "key2=parameter2|...\n" @@ -5016,52 +5054,52 @@ "- en netedit se pueden definir usando el formato key1=parameter1|" "key2=parameter2|...\n" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:405 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:401 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:398 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:406 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:403 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:398 msgid " - Duplicated and empty Keys aren't valid.\n" msgstr " - Las claves duplicadas o vacías no son válidas.\n" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:406 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:402 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:399 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:407 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:404 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:399 msgid " - Whitespace and certain characters aren't allowed (@$%^&/|\\....)\n" msgstr "" " - Espacios en blanco y ciertos caracteres no están permitidos (@$%^&/|" "\\....)\n" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:448 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:447 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:444 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:449 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:449 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:444 msgid "Key of Parameter not defined" msgstr "Clave del parámetro no definida" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:450 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:449 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:446 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:451 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:451 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:446 msgid "Value of Parameter not defined" msgstr "Valor del parámetro" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:458 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:457 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:454 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:454 msgid "Key of Parameter cannot be empty" msgstr "La clave del parámetro no puede estar vacía" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:460 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:459 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:456 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:461 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:461 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:456 #, c-format msgid "Key '%' of Parameter contains invalid characters" msgstr "La clave '%' del parámetro contiene caracteres inválidos" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:463 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:462 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:464 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:464 #, c-format msgid "Key '%' already exist" msgstr "La clave '%' ya existe" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:478 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:479 msgid "" "Only for\n" "existent keys" @@ -5069,671 +5107,758 @@ "Solamente para\n" "llaves existentes" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:59 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:59 msgid "load elements" msgstr "cargar elementos" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:60 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:60 msgid "cancel loading of elements" msgstr "carga de elementos cancelada" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:61 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:61 msgid "overwrite" msgstr "sobrescribir" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:61 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:61 msgid "overwrite elements" msgstr "sobrescribir elementos" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:182 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:182 msgid "Rerouter has more than one edge" msgstr "Rerouter tiene mas de una calle (edge)" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:321 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:321 msgid "There are no lanes in the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:341 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:361 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:341 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:361 msgid "There are no edges in the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:398 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:398 msgid "There are no parking areas in the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEUndoListDialog.cpp:58 +#: D:\Repos\sumo/src\netedit\dialogs\GNEUndoListDialog.cpp:58 msgid "OK\tclose dialog" msgstr "OK\tCerrar ventana" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:459 #, c-format msgid "Key '%' already exists" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:446 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:753 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:446 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1159 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1168 msgid "Edit parameters" msgstr "Editar parámetros" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:466 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:466 msgid "Invalid row type" msgstr "Tipo de fila inválido" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:635 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:425 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:455 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1252 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:635 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:426 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:463 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1249 msgid "Color Dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:660 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:660 msgid "Open Image" msgstr "Abrir imagen" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:687 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:687 msgid "Open OSG File" msgstr "Abrir archivo OSG" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:266 +msgid "Could not load configuration '" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:271 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:169 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:173 +msgid "Could not load tool configuration '" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:275 +msgid "Loaded configuration." +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:295 +msgid "Save options" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:297 +msgid "Save configuration file" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:298 +msgid "Load options" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:300 +msgid "Load configuration file" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:301 +msgid "Default options" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:303 +msgid "Reset all options to default" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:311 +msgid "Topics" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:362 +msgid "Search" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:364 +msgid "Include description in search" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:81 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:138 +msgid "Reset value" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:226 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:238 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:251 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:272 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:734 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:746 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:760 +msgid "true" +msgstr "verdadero" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:229 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:241 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:254 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:275 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:737 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:749 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:766 +msgid "false" +msgstr "falso" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:458 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:82 +msgid "Select filename" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:63 msgid "Grid" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:64 msgid "Spider" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:65 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:65 msgid "Random grid" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:66 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:66 msgid "Random" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:82 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:232 -msgid "Select filename" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:92 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:92 msgid "Advanced" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:92 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:92 msgid "open advance netgenerate dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:94 msgid "Close dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:71 -msgid "Save options" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:71 +msgid "Save toolcfg" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:73 -msgid "Load options" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:73 +msgid "Save file with tool configuration" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:74 +msgid "Load toolcfg" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:76 +msgid "Load file with tool configuration" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:75 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:77 msgid "Sorted by name" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:78 msgid "Grouped by categories" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:89 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:90 +msgid "Blue options are mandatory" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:93 msgid "run python tool" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:91 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:95 msgid "close tool dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:93 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:97 msgid "reset to default values" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:122 -msgid "Reset value" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:245 +#, c-format +msgid "Use current % file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:227 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:251 #, c-format -msgid "Use current % file" +msgid "Select % file" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:274 +msgid "Use current selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:253 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:349 msgid "network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:296 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:392 msgid "additional" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:339 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:435 msgid "route" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:382 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:478 msgid "data" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:556 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:568 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:582 -msgid "true" -msgstr "verdadero" - -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:559 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:571 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:585 -msgid "false" -msgstr "falso" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:521 +msgid "sumo config" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:70 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:71 msgid "Save output" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:65 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:66 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:72 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:73 msgid "Console output" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:75 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:82 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:83 msgid "Abort" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:75 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:82 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:83 msgid "abort running" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:77 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:78 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:84 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:85 msgid "Rerun" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:77 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:78 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:84 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:85 msgid "rerun tool" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:79 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:80 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:86 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:87 msgid "Back" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:79 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:80 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:86 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:87 msgid "back to tool dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:87 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:88 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:95 msgid "close dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:134 msgid "Nothing to enable, implement in Children" msgstr "Nada que habilitar, implementar en descendientes" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:141 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:141 msgid "Nothing to disable, implement in Children" msgstr "Nada que deshabilitar, implementar en descendientes" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:631 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:631 #, c-format msgid "TagProperty for tag '%' not defined" msgstr "TagProperty para el tag '%' no definido" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:849 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:849 msgid "Nothing to toggle, implement in Children" msgstr "Nada que alternar, implementar en descendientes" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:913 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:913 msgid "The id of the node" msgstr "La ID del cruce (junction)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:918 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1903 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1909 msgid "The x-y-z position of the node on the plane in meters" msgstr "las posiciones x-y-z del cruce (junction) en el plano, en metros" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:923 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:923 msgid "An optional type for the node" msgstr "Un tipo opcional para el cruce (junction)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:929 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:929 msgid "A custom shape for that node" msgstr "Forma personalizada para el cruce (junction)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:934 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:934 msgid "Optional turning radius (for all corners) for that node in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:940 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:940 msgid "" "Whether the junction-blocking-heuristic should be activated at this node" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:946 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:946 msgid "How to compute right of way rules at this node" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:953 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:953 msgid "Whether this junction is at the fringe of the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:960 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:960 msgid "Optional name of junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:965 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:965 msgid "An optional type for the traffic light algorithm" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:971 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:971 msgid "An optional layout for the traffic light plan" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:980 msgid "An optional id for the traffic light program" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:993 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:993 msgid "The id of the edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:998 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1116 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:998 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1116 msgid "The number of lanes of the edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1004 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1104 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1004 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1104 msgid "The maximum speed allowed on the edge in m/s" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1010 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1064 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1127 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1230 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1446 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1064 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1230 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1446 msgid "" "Explicitly allows the given vehicle classes (not given will be not allowed)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1016 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1070 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1133 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1236 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1452 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1016 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1070 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1133 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1236 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1452 msgid "" "Explicitly disallows the given vehicle classes (not given will be allowed)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1021 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1148 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1021 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1148 msgid "" "The spreadType defines how to compute the lane geometry from the edge " "geometry (used for visualization)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1028 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1110 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1110 msgid "The priority of the edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1034 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1160 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1160 msgid "" "Lane width for all lanes of this edge in meters (used for visualization)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1040 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1040 msgid "The width of the sidewalk that should be added as an additional lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1045 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1045 msgid "The width of the bike lane that should be added as an additional lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1058 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1058 msgid "The maximum speed allowed on the lane in m/s" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1075 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1075 msgid "" "Lane width for all lanes of this lane in meters (used for visualization)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1089 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2650 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2698 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1089 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2656 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2704 msgid "Edge ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1094 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1094 msgid "The name of a node within the nodes-file the edge shall start at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1099 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1099 msgid "The name of a node within the nodes-file the edge shall end at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1122 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1122 msgid "The name of a type within the SUMO edge type file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1138 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1138 msgid "" "If the shape is given it should start and end with the positions of the from-" "node and to-node" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1143 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1143 msgid "The length of the edge in meter" -msgstr "" +msgstr "El largo de la calle (edge) en metros" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1155 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1155 msgid "street name (does not need to be unique, used for visualization)" msgstr "" +"nombre de la calle (no tiene que ser único, se usa solo para la " +"visualización)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1166 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1247 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1166 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1247 msgid "Move the stop line back from the intersection by the given amount" -msgstr "" +msgstr "Mueve la linea de stop hacia atrás de la intersección la cantidad dada" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1172 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1172 msgid "" "Custom position in which shape start (by default position of junction from)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1177 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1177 msgid "" "Custom position in which shape end (by default position of junction from)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1182 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1182 msgid "Show if edge is bidirectional" -msgstr "" +msgstr "Muestr si la calle (edge) es bidireccional" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1188 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1188 msgid "Distance" -msgstr "" +msgstr "Distancia" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1194 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1288 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1194 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1288 msgid "The stop offset as positive value in meters" -msgstr "" +msgstr "El valor positivo del margen de la parada en metros" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1200 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1294 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1200 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1294 msgid "Specifies, for which vehicle classes the stopOffset does NOT apply." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1214 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1214 msgid "Lane ID (Automatic, non editable)" -msgstr "" +msgstr "ID del carril (lane) (Automático, no editable)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1219 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1219 msgid "" "The enumeration index of the lane (0 is the rightmost lane, -1 " "is the leftmost one)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1224 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1224 msgid "Speed in meters per second" -msgstr "" +msgstr "Velocidad en metros por segundo" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1241 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1241 msgid "Width in meters (used for visualization)" -msgstr "" +msgstr "Ancho en metros (usado para la visualización)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1253 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1253 msgid "Enable or disable lane as acceleration lane" -msgstr "" +msgstr "Activa o desactiva el uso del carril (lane) como carril de aceleración" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1259 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1259 msgid "If the shape is given it overrides the computation based on edge shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1264 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1264 msgid "If given, this defines the opposite direction lane" -msgstr "" +msgstr "Define la dirección opuesta del carril (lane)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1269 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1474 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1269 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1474 msgid "Permit changing left only for to the given vehicle classes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1276 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1481 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1276 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1481 msgid "Permit changing right only for to the given vehicle classes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1283 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1283 msgid "Lane type description (optional)" -msgstr "" +msgstr "Descripción del tipo de carril (lane) (Opcional)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1308 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1308 msgid "Crossing ID" -msgstr "" +msgstr "ID del paso peatonal (crossing)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1313 msgid "The (road) edges which are crossed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1318 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1318 msgid "" "Whether the pedestrians have priority over the vehicles (automatically set " "to true at tls-controlled intersections)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1324 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1324 msgid "The width of the crossings" -msgstr "" +msgstr "El ancho del paso peatonal (crossings)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1330 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1330 msgid "sets the tls-index for this crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1336 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1336 msgid "sets the opposite-direction tls-index for this crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1342 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1342 msgid "Overrides default shape of pedestrian crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1355 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1355 msgid "Walking Area ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1360 msgid "The width of the WalkingArea" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1366 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1366 msgid "The length of the WalkingArea in meter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1371 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1371 msgid "Overrides default shape of pedestrian sidewalk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1384 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1384 msgid "The ID of the edge the vehicles leave" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1389 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1389 msgid "The ID of the edge the vehicles may reach when leaving 'from'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1394 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1394 msgid "the lane index of the incoming lane (numbers starting with 0)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1399 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1399 msgid "the lane index of the outgoing lane (numbers starting with 0)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1404 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1404 msgid "" "if set, vehicles which pass this (lane-2-lane) connection) will not wait" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1410 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1410 msgid "" "if set to false, vehicles which pass this (lane-2-lane) connection) will not " "worry about blocking the intersection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1416 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1416 msgid "" "If set to a more than 0 value, an internal junction will be built at this " "position (in m)/n from the start of the internal lane for this connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1422 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1422 msgid "" "If set to true, This connection will not be TLS-controlled despite its node " "being controlled" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1428 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1428 msgid "Vision distance between vehicles" msgstr "Distancia de visión entre vehículos" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1434 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1434 msgid "sets index of this connection within the controlling traffic light" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1440 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1440 msgid "" "sets index for the internal junction of this connection within the " "controlling traffic light" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1457 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1457 msgid "sets custom speed limit for the connection" msgstr "establece un límite de velocidad personalizado para la conexión" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1463 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1463 msgid "sets custom length for the connection" msgstr "establece una longitud personalizada para la conexión" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1469 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1469 msgid "sets custom shape for the connection" msgstr "establece una forma personalizada para la conexión" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1488 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1488 msgid "if set to true, vehicles will make a turn in 2 steps" msgstr "si se coloca en verdadero, los vehículos harán un giro en 2 pasos" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1494 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1494 msgid "" "set a custom edge type (for applying vClass-specific speed restrictions)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1500 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1500 msgid "turning direction for this connection (computed)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1505 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1505 msgid "link state for this connection (computed)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1535 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1535 msgid "The id of bus stop" msgstr "La id de la parada de bus" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1540 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1540 msgid "The name of the lane the bus stop shall be located at" msgstr "El nombre del carril en donde se ubicará la parada de bus" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1545 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1609 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1707 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1836 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3962 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4073 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1545 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1609 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1707 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3968 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4095 msgid "" "The begin position on the lane (the lower position on the lane) in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1550 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1614 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1712 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1841 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3967 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4078 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4432 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4802 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1550 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1614 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1712 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1841 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3973 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4100 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4470 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4916 msgid "" "The end position on the lane (the higher position on the lane) in meters, " "must be larger than startPos by more than 0.1m" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1555 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1555 msgid "Name of busStop" msgstr "Nombre de la parada de bus" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1560 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1624 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1680 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1722 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1785 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1868 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1979 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2060 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2140 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2219 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2246 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2293 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2959 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3266 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3972 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4083 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4437 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4807 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1560 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1680 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1722 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1785 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1868 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1985 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2066 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2146 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2225 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2252 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2299 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2965 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3272 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3978 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4105 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4475 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4921 msgid "If set, no error will be reported if element is placed behind the lane." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1561 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1561 msgid "" "Instead, it will be placed 0.1 meters from the lanes end or at position 0.1" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1562 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1626 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1682 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1724 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1787 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1870 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1981 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2062 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2142 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2221 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2248 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2295 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2961 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3268 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3974 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4085 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4439 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4809 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1562 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1626 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1682 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1724 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1787 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1870 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1987 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2148 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2227 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2254 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2301 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2967 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3274 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4477 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4923 msgid "" "if the position was negative and larger than the lanes length after " "multiplication with - 1" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1568 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1568 msgid "" "Meant to be the names of the bus lines that stop at this bus stop. This is " "only used for visualization purposes" @@ -5741,8 +5866,8 @@ "Deben ser los nombres de las líneas de autobús que paran en esta parada de " "autobús. Esto solo se usa con fines de visualización" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1573 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1637 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1573 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1637 msgid "" "Larger numbers of persons trying to enter will create an upstream jam on the " "sidewalk" @@ -5750,129 +5875,129 @@ "Un gran número de personas que intentan entrar crearán un atasco en la acera " "corriente arriba" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1579 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1643 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1741 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1579 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1741 msgid "Optional space definition for vehicles that park at this stop" msgstr "" "Definición de espacio opcional para vehículos que estacionan en esta parada" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1585 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1585 msgid "The RGBA color with which the busStop shall be displayed" msgstr "El color RGBA con el que se mostrará la parada de autobús" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1599 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1599 msgid "The id of train stop" msgstr "El id de la parada de tren" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1604 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1604 msgid "The name of the lane the train stop shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1619 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1619 msgid "Name of trainStop" msgstr "Nombre de la parada de tren" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1625 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1681 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1723 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1786 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1869 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1980 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2061 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2141 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2220 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2247 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2294 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2960 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3267 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3973 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4084 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4438 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4808 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1625 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1681 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1723 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1786 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1869 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1986 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2147 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2226 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2253 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2300 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2966 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3273 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3979 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4106 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4476 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4922 msgid "" "Instead, it will be placed 0.1 meters from the lanes end or at position 0.1," msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1632 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1632 msgid "" "Meant to be the names of the train lines that stop at this train stop. This " "is only used for visualization purposes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1649 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1649 msgid "The RGBA color with which the trainStop shall be displayed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1663 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1663 msgid "The name of the lane the stop access shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1668 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1668 msgid "The position on the lane (the lower position on the lane) in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1674 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1674 msgid "The walking length of the access in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1697 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1697 msgid "The id of container stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1702 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1702 msgid "The name of the lane the container stop shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1717 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1717 msgid "Name of containerStop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1730 msgid "" "meant to be the names of the bus lines that stop at this container stop. " "This is only used for visualization purposes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1735 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1735 msgid "" "Larger numbers of container trying to enter will create an upstream jam on " "the sidewalk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1747 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1747 msgid "The RGBA color with which the containerStop shall be displayed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1760 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1760 msgid "The id of charging station" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1765 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1765 msgid "Lane of the charging station location" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1770 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1770 msgid "Begin position in the specified lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1775 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1775 msgid "End position in the specified lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1780 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1780 msgid "Name of chargingStation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1793 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1793 msgid "Charging power in W" msgstr "Potencia de carga en W" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1799 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1799 msgid "Charging efficiency [0,1]" msgstr "Eficiencia de carga [0,1]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1806 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1806 msgid "" "Enable or disable charge in transit, i.e. vehicle must or must not to stop " "for charging" @@ -5880,361 +6005,365 @@ "Habilitar o deshabilitar la carga en movimiento, es decir, el vehículo debe " "o no detenerse para cargar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1812 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1812 msgid "" "Time delay after the vehicles has reached / stopped on the charging station, " "before the energy transfer (charging) begins" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1826 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1826 msgid "The id of ParkingArea" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1831 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1831 msgid "The name of the lane the Parking Area shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1846 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1846 msgid "Lane position in that vehicle must depart when leaves parkingArea" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1851 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1851 msgid "Name of parkingArea" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1856 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1856 msgid " The number of parking spaces for road-side parking" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1862 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1862 msgid "" "If set, vehicles will park on the road lane and thereby reducing capacity" msgstr "" "Si se establece, los vehículos se estacionarán en el carril de la vía y, por " "lo tanto, reducirán la capacidad" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1876 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1913 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1876 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1919 msgid "The width of the road-side parking spaces" msgstr "El ancho de los espacios de parqueo al costado de la vía" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1882 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1882 msgid "" "The length of the road-side parking spaces. By default (endPos - startPos) / " "roadsideCapacity" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1888 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1923 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1888 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1929 msgid "" "The angle of the road-side parking spaces relative to the lane angle, " "positive means clockwise" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1908 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1894 +msgid "Enable or disable lefthand position" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1914 msgid "Name of parking space" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1924 msgid "The length of the road-side parking spaces" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1928 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1934 msgid "The slope of the road-side parking spaces" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1943 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1949 msgid "The id of E1" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1948 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2000 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2209 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2236 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2268 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1954 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2006 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2215 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2242 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2274 msgid "" "The id of the lane the detector shall be laid on. The lane must be a part of " "the network used" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1953 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2273 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1959 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2279 msgid "" "The position on the lane the detector shall be laid on in meters. The " "position must be a value between -1*lane's length and the lane's length" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1958 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2016 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2096 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2168 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5770 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1964 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2022 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2102 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5916 msgid "" "The aggregation period the values the detector collects shall be summed up" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1964 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1970 msgid "Name of induction loop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1969 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2032 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2112 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2179 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2283 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1975 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2038 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2118 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2289 msgid "The path to the output file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1974 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2037 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2117 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2184 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2288 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2043 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2123 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2190 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2294 msgid "Space separated list of vehicle type ids to consider" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1995 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2001 msgid "The id of E2" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2005 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2086 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2214 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2241 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2011 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2092 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2220 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2247 msgid "The position on the lane the detector shall be laid on in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2016 msgid "The length of the detector in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2102 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2108 msgid "The traffic light that triggers aggregation when switching" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2027 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2033 msgid "Name of lane area detector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2042 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2122 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2048 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2128 msgid "" "The time-based threshold that describes how much time has to pass until a " "vehicle is recognized as halting)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2048 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2128 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2195 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2054 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2201 msgid "" "The speed-based threshold that describes how slow a vehicle has to be to be " "recognized as halting) in m/s" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2054 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2060 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2140 msgid "" "The minimum distance to the next standing vehicle in order to make this " "vehicle count as a participant to the jam) in m" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2076 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2082 msgid "The id of Multilane E2" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2081 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2087 msgid "The sequence of lane ids in which the detector shall be laid on" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2091 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2097 msgid "The end position on the lane the detector shall be laid on in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2113 msgid "Name of Multilane E2 detector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2157 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2163 msgid "The id of E3" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2162 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2354 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3213 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2168 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3219 msgid "X-Y position of detector in editor (Only used in netedit)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2180 msgid "Name of Entry Exit detector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2189 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2195 msgid "" "The time-based threshold that describes how much time has to pass until a " "vehicle is recognized as halting) in s" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2263 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2269 msgid "The id of Instant Induction Loop (E1Instant)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2278 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2284 msgid "Name of instant induction loop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2309 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2315 msgid "The id of RouteProbe" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2314 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2320 msgid "The id of an edge in the simulation network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2319 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2325 msgid "The frequency in which to report the distribution" msgstr "La frecuencia con la que se debe reportar la distribución" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2325 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2331 msgid "Name of route probe" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2330 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2336 msgid "The file for generated output" msgstr "El archivo para la salida de datos generada" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2335 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2341 msgid "The time at which to start generating output" msgstr "El instante de tiempo en el que comenzar a generar la salida de datos" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2349 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2355 msgid "The id of Variable Speed Signal" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2366 msgid "List of Variable Speed Sign lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2365 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2371 msgid "Name of Variable Speed Signal" msgstr "Nombre de la señal de velocidad variable" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2370 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2376 msgid "" "Space separated list of vehicle type ids to consider (empty to affect all " "types)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2396 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2402 msgid "Speed" msgstr "Velocidad" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2410 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2466 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2416 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2472 msgid "The id of Calibrator" msgstr "La id del calibrator" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2415 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3159 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3179 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2421 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3165 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3185 msgid "The id of edge in the simulation network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2420 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2476 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2426 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2482 msgid "The position of the calibrator on the specified lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2426 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2482 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2432 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2488 msgid "" "The aggregation interval in which to calibrate the flows. Default is step-" "length" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2432 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2438 msgid "Name of Calibrator" msgstr "Nombre del calibrator" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2437 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2493 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2443 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2499 msgid "" "The id of the routeProbe element from which to determine the route " "distribution for generated vehicles" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2442 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2498 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2504 msgid "The output file for writing calibrator information or NULL" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2447 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2503 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2453 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2509 msgid "A threshold value to detect and clear unexpected jamming" msgstr "Un valor de umbral para detectar y eliminar atascos inesperados" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2453 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2509 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2459 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2515 msgid "" "space separated list of vehicle type ids to consider (empty to affect all " "types)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2471 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2477 msgid "The id of lane in the simulation network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2488 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2494 msgid "Name of calibrator lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2522 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2528 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3715 msgid "The id of the route the vehicle shall drive along" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2527 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2533 msgid "First calibrator flow departure time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2533 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4962 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2539 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5108 msgid "End of departure interval" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2543 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2549 msgid "The id of the vehicle type to use for this calibrator flow" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2555 msgid "Number of vehicles per hour, equally spaced" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2555 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2561 msgid "Vehicle's speed" msgstr "Velocidad del vehículo" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2576 msgid "The id of Rerouter" msgstr "La id del rerouter" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2581 msgid "An edge id or a list of edge ids where vehicles shall be rerouted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2580 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2586 msgid "X,Y position in editor (Only used in netedit)" msgstr "posición X,Y en el editor (únicamente usado en netedit)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2586 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2592 msgid "Name of Rerouter" msgstr "Nombre del rerouter" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2591 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2597 msgid "The probability for vehicle rerouting (0-1)" msgstr "La probabilidad de cambio de ruta del vehículo (0-1)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2597 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2603 msgid "" "The waiting time threshold (in s) that must be reached to activate rerouting " "(default -1 which disables the threshold)" @@ -6242,7 +6371,7 @@ "El umbral de tiempo de espera (en s) que se debe alcanzar para activar el " "cambio de ruta (por defecto es -1, lo que deshabilita el umbral)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2603 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2609 msgid "" "The list of vehicle types that shall be affected by this rerouter (empty to " "affect all types)" @@ -6250,177 +6379,177 @@ "La lista de tipos de vehículos que se verán afectados por este desvío (dejar " "vacío para afectar a todos los tipos)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2608 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2614 msgid "" "Whether the router should be inactive initially (and switched on in the gui)" msgstr "" "Si el desvío (router) debe estar inactivo inicialmente (y ser encendido en " "la gui)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2630 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2636 msgid "Begin" msgstr "Inicio" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2636 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2642 msgid "End" msgstr "Fin" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2656 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2680 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2662 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2686 msgid "allowed vehicles" msgstr "vehículos permitidos" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2661 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2685 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2667 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2691 msgid "disallowed vehicles" msgstr "vehículos prohibidos" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2674 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2680 msgid "Lane ID" msgstr "Id del carril (lane)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2704 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2724 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2750 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2710 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2756 msgid "SUMO Probability" msgstr "Probabilidad SUMO" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2718 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2724 msgid "ParkingArea ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2736 msgid "Enable or disable visibility for parking area reroutes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2770 msgid "Edge in which vaporizer is placed" msgstr "Calle (Edge) en la que colocar el vaporizador" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2769 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2775 msgid "Start Time" msgstr "Instante de tiempo de comienzo" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2775 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2781 msgid "End Time" msgstr "Instante de tiempo de terminación" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2781 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2787 msgid "Name of vaporizer" msgstr "Nombre del vaporizador" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2802 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2808 msgid "The id of the polygon" msgstr "ID del polígono" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2807 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2813 msgid "The shape of the polygon" msgstr "Forma del polígono" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2812 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2818 msgid "The RGBA color with which the polygon shall be displayed" msgstr "" "el color RGBA (Rojo-Verde-Azul-Alfa) con el que el polígono se debe mostrar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2818 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2824 msgid "An information whether the polygon shall be filled" msgstr "Habilitar o deshabilitar el llenado del polígono" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2824 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2830 msgid "The default line width for drawing an unfilled polygon" msgstr "El ancho de línea para el dibujado de los polígonos sin rellenar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2830 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2836 msgid "The layer in which the polygon lies" msgstr "La capa de dibujado del polígono" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2842 msgid "A typename for the polygon" msgstr "Tipo de polígono" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2842 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2848 msgid "Polygon's name" msgstr "Nombre del polígono" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2847 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2853 msgid "A bitmap to use for rendering this polygon" msgstr "Mapa de bit usado para renderizar el polígono" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2853 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2924 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3014 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3091 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2859 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2930 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3020 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3097 msgid "Enable or disable use image file as a relative path" msgstr "" "Activa o desactiva usar la ruta del archivo de imagen de forma relativa" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2859 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2930 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3020 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3097 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2865 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2936 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3026 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3103 msgid "Angle of rendered image in degree" msgstr "Ángulo de renderizado de la imagen en grados" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2873 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2944 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2879 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2950 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3040 msgid "The id of the POI" msgstr "El ID del punto de interés (POI)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2878 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2884 msgid "The position in view" msgstr "La posición en la vista" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2883 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2973 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3050 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2889 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2979 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3056 msgid "The color with which the POI shall be displayed" msgstr "El color del punto de interés (POI)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2889 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2979 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3056 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2895 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2985 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3062 msgid "A typename for the POI" msgstr "Tipo de punto de interés (POI)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2895 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2985 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3062 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3146 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2901 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2991 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3152 msgid "Name of POI" msgstr "Nombre del punto de interés (POI)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2900 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2990 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2906 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2996 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3073 msgid "The layer of the POI for drawing and selecting" msgstr "La capa del punto de interés (POI) para dibujar y seleccionar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2906 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2996 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3073 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2912 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3002 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3079 msgid "Width of rendered image in meters" msgstr "Ancho de renderizado de la imagen en metros" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2912 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3002 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3079 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3008 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3085 msgid "Height of rendered image in meters" msgstr "Alto de renderizado de la imagen en metros" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2918 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3008 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3085 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2924 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3014 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3091 msgid "A bitmap to use for rendering this POI" msgstr "Mapa de bits usado para renderizar el punto de interés (POI)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2949 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2955 msgid "The name of the lane at which the POI is located at" msgstr "" "El nombre del carril (lane) en el que el punto de interés (POI) está " "localizado" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2954 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2960 msgid "" "The position on the named lane or in the net in meters at which the POI is " "located at" @@ -6428,95 +6557,95 @@ "La posición en el carril (lane) o en la red en metros en la que se encuentra " "el punto de interés (POI)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2967 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2973 msgid "The lateral offset on the named lane at which the POI is located at" msgstr "" "Posición lateral del carril (lane) en la que está situado el punto de " "interés (POI)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3040 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3046 msgid "The longitude position of the parking vehicle on the view" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3045 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3051 msgid "The latitude position of the parking vehicle on the view" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3119 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3125 msgid "The id of the TAZ" msgstr "El ID de la zona de análisis de tráfico (TAZ)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3124 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3130 msgid "The shape of the TAZ" msgstr "La forma de la zona de análisis de tráfico (TAZ)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3129 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3135 msgid "TAZ center" msgstr "Centro de la zona de análisis de tráfico (TAZ)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3140 msgid "An information whether the TAZ shall be filled" msgstr "" "Activar o desactivar el dibujado de la zona de análisis de tráfico (TAZ) " "rellena" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3140 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3146 msgid "The RGBA color with which the TAZ shall be displayed" msgstr "" "El Color RGBA (Rojo-Verde-Azul-Alfa) con el que se debe mostrar la zona de " "análisis de tráfico (TAZ)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3165 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3171 msgid "Depart weight associated to this Edge" msgstr "Peso de salida asociado con esta calle (edge)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3185 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3191 msgid "Arrival weight associated to this Edget" msgstr "Peso de llegada asociada con esta calle (edge)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3208 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3214 msgid "Traction substation ID" msgstr "ID de la subestación de carga" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3219 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3225 msgid "Voltage of at connection point for the overhead wire" msgstr "Voltaje del punto de conexión para las catenarias (overhead wires)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3225 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3231 msgid "Current limit of the feeder line" msgstr "Limite actual de la línea de alimentación" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3239 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3245 msgid "Overhead wire segment ID" msgstr "ID del segmento de la catenaria (overhead wire)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3244 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3250 msgid "Substation to which the circuit is connected" msgstr "Subestación conectada al circuito" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3249 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3255 msgid "List of consecutive lanes of the circuit" msgstr "Lista de carriles (lanes) consecutivos del circuito" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3254 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3260 msgid "Starting position in the specified lane" msgstr "Posición de inicio en el carril (lane) especificado" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3260 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3266 msgid "Ending position in the specified lane" msgstr "Posición final en el carril (lane) especificado" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3274 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3280 msgid "Inner lanes, where placing of overhead wire is restricted" msgstr "" "Carriles (lanes) internos, en los que situar una catenaria (overhead wire) " "está restringido" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3287 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3293 msgid "Overhead wire clamp ID" msgstr "ID de la abrazadera de las catenarias (wires)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3292 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3298 msgid "" "ID of the overhead wire segment, to the start of which the overhead wire " "clamp is connected" @@ -6524,12 +6653,12 @@ "ID del segmento de la catenaria (overhead wire) que en su comienzo está " "conectada la abrazadera de la catenaria (overhead wire clamp)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3297 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3303 msgid "ID of the overhead wire segment lane of overheadWireIDStartClamp" msgstr "" "ID del segmento de carril (lane) de la catenaria (overheadWireIDStartClamp)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3302 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3308 msgid "" "ID of the overhead wire segment, to the end of which the overhead wire clamp " "is connected" @@ -6537,16 +6666,16 @@ "ID del segmento de catenaria (overhead wire) que en su final está conectada " "la abrazadera de la catenaria (overhead wire clamp)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3313 msgid "ID of the overhead wire segment lane of overheadWireIDEndClamp" msgstr "ID del segmento de la catenaria (overheadWireIDEndClamp)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3330 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3336 msgid "The id of Route" msgstr "El ID de la ruta" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3335 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3367 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3341 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3373 msgid "" "The edges the vehicle shall drive along, given as their ids, separated using " "spaces" @@ -6554,18 +6683,18 @@ "La lista de IDs de calles (edges) por las que el vehículo debe circular, " "separadas por espacios" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3340 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3372 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3346 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3378 msgid "This route's color" msgstr "Color de la ruta" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3345 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3377 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3351 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3383 msgid "The number of times that the edges of this route shall be repeated" msgstr "El número de veces que se debe repetir la ruta" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3351 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3383 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3389 msgid "" "When defining a repeating route with stops and those stops use the until " "attribute," @@ -6573,75 +6702,75 @@ "Si se ha definido una ruta con repetición y paradas, y estas paradas usan el " "atributo 'until'," -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3352 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3384 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3358 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3390 msgid "the times will be shifted forward by 'cycleTime' on each repeat" msgstr "" "las veces que el 'cycleTime' se moverá hacia delante en cada repetición" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3399 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3405 msgid "The id of VehicleType distribution" msgstr "La ID de la distribución de tipos de vehículos" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3421 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3427 msgid "The id of VehicleType" msgstr "La ID del tipo de vehículo" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3426 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3432 msgid "Vehicle Type Distribution" msgstr "Distribución de tipos de vehículos" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3431 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3437 msgid "An abstract vehicle class" msgstr "Clase de vehículo abstracta" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3438 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3444 msgid "This vehicle type's color" msgstr "El color del tipo de vehículo" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3443 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3449 msgid "The vehicle's netto-length (length) [m]" msgstr "El largo neto del vehículo [m]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3454 msgid "Empty space after leader [m]" msgstr "Espacio libre tras el líder [m]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3453 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3459 msgid "The vehicle's maximum velocity [m/s]" msgstr "La velocidad máxima del vehículo [m/s]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3458 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3464 msgid "" "The vehicle's expected multiplicator for lane speed limits (or a " "distribution specifier)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3463 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3469 msgid "The vehicle's desired maximum velocity (interacts with speedFactor)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3464 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3470 msgid "Applicable when no speed limit applies (bicycles, some motorways) [m/s]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3469 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3475 msgid "An abstract emission class" msgstr "Una clase de emisión abstracta" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3475 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3481 msgid "How this vehicle is rendered" msgstr "Cómo se renderiza este vehículo" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3481 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3487 msgid "The vehicle's width [m] (only used for drawing)" msgstr "El ancho del vehículo [m] (solo se usa al dibujar)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3487 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3493 msgid "The vehicle's height [m] (only used for drawing)" msgstr "La altura del vehículo [m] (solo se usa al dibujar)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3493 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3499 msgid "" "Image file for rendering vehicles of this type (should be grayscale to allow " "functional coloring)" @@ -6649,15 +6778,15 @@ "Archivo de imagen para renderizar vehículos de este tipo (debe estar en " "escala de grises para permitir la coloración funcional)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3498 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3504 msgid "The model used for changing lanes" msgstr "El modelo utilizado para cambio de carril" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3505 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3511 msgid "The model used for car-following" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3512 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3518 msgid "" "The number of persons (excluding an autonomous driver) the vehicle can " "transport" @@ -6665,690 +6794,721 @@ "El número de personas (excluyendo a un conductor autónomo) que el vehículo " "puede transportar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3517 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3523 msgid "The number of containers the vehicle can transport" msgstr "El número de contenedores que el vehículo puede transportar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3522 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3528 msgid "The time required by a person to board the vehicle" msgstr "El tiempo requerido por una persona para abordar el vehículo" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3528 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3534 msgid "The time required to load a container onto the vehicle" msgstr "El tiempo necesario para cargar un contenedor en el vehículo" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3534 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3540 msgid "The preferred lateral alignment when using the sublane-model" msgstr "La alineación lateral preferida, al usar el modelo de sub-carril" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3541 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3547 msgid "" "The minimum lateral gap at a speed difference of 50km/h when using the " "sublane-model" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3547 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3553 msgid "The maximum lateral speed when using the sublane-model" msgstr "La velocidad lateral máxima cuando se usa el modelo de sub-carril" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3553 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3559 msgid "" "The interval length for which vehicle performs its decision logic " "(acceleration and lane-changing)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3559 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3565 msgid "" "The probability when being added to a distribution without an explicit " "probability" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3565 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3571 msgid "3D model file for this class" msgstr "archivo de modelo 3D para esta clase" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3576 msgid "Carriage lengths" msgstr "Longitudes de vagón" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3581 msgid "Locomotive lengths" msgstr "Longitudes de locomotora" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3580 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3586 msgid "Gap between carriages" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3613 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3619 msgid "The ID of trip" msgstr "La ID del viaje" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3618 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3663 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3669 msgid "The id of the vehicle type to use for this trip" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3630 msgid "The ID of the edge the trip starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3629 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3635 msgid "The ID of the edge the trip ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3634 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3640 msgid "List of intermediate edge ids which shall be part of the trip" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3642 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3682 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3648 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3688 msgid "" "The departure time of the (first) trip which is generated using this trip " "definition" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3658 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3664 msgid "The id of trip" msgstr "La id del viaje" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3669 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3675 msgid "The name of the junction the trip starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3674 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3680 msgid "The name of the junction the trip ends at" msgstr "El nombre del cruce (junction) en el que el viaje (trip) termina" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3698 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3743 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3704 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3749 msgid "The ID of the vehicle" msgstr "La ID del vehículo" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3703 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3748 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3754 msgid "The id of the vehicle type to use for this vehicle" msgstr "La ID del tipo de vehículo a usar para este vehículo" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3714 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3754 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3720 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3760 msgid "The index of the edge within route the vehicle starts at" msgstr "" "El índice de la calle (edge) dentro de la ruta en la que el vehículo debe " "empezar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3719 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3759 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3725 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3765 msgid "The index of the edge within route the vehicle ends at" msgstr "" "El índice de la calle (edge) dentro de la ruta en la que el vehículo debe " "terminar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3727 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3767 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3733 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3773 msgid "The time step at which the vehicle shall enter the network" msgstr "El instante de tiempo en el que el vehículo debe entrar a la red" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3783 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3789 msgid "The ID of the flow" msgstr "La ID del flujo (flow)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3788 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3830 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3867 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3909 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3794 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3873 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3915 msgid "The id of the flow type to use for this flow" msgstr "La ID del tipo de vehículo a usar para este flujo (flow)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3794 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3800 msgid "The ID of the edge the flow starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3799 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3805 msgid "The ID of the edge the flow ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3804 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3810 msgid "List of intermediate edge ids which shall be part of the flow" msgstr "" "Lista de calles (edges) intermedios que deben ser parte del flujo (flow)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3825 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3862 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3831 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3868 msgid "The id of the flow" msgstr "La ID del flujo (flow)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3842 msgid "The name of the junction the flow starts at" msgstr "La ID del cruce (junction) en el que el flujo (flow) debe comenzar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3841 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3847 msgid "The name of the junction the flow ends at" msgstr "La ID del cruce (junction) en el que el flujo (flow) debe terminar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3873 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3879 msgid "The id of the route the flow shall drive along" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3878 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3915 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3884 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3921 msgid "The index of the edge within route the flow starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3883 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3920 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3889 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3926 msgid "The index of the edge within route the flow ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3904 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3910 msgid "The name of the flow" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3957 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3963 msgid "The name of the lane the stop shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3986 msgid "The lateral offset on the named lane at which the vehicle must stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3996 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4842 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4002 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4956 msgid "BusStop associated with this stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4012 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4472 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4018 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4988 +msgid "TrainStop associated with this stop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4510 msgid "ContainerStop associated with this stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4050 msgid "ChargingStation associated with this stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4044 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4066 msgid "ParkingArea associated with this stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4090 msgid "The name of the lane the waypoint shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4091 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4113 msgid "The lateral offset on the named lane at which the vehicle must waypoint" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4129 msgid "BusWaypoint associated with this waypoint" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4123 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4145 +msgid "TrainWaypoint associated with this waypoint" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4161 msgid "ContainerWaypoint associated with this waypoint" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4139 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4177 msgid "ChargingStation associated with this waypoint" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4155 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4193 msgid "ParkingArea associated with this waypoint" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4183 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4221 msgid "The time step at which the person shall enter the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4223 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4261 msgid "The time step at which the container shall enter the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4259 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4289 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4297 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4327 msgid "The ID of the edge the transport starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4264 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4302 msgid "The ID of the edge the transport ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4269 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4337 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4521 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4637 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4744 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4559 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4834 msgid "arrival position on the destination edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4275 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4299 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4337 msgid "list of vehicle alternatives to take for the transport" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4294 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4332 msgid "ID of the destination container stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4321 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4359 msgid "The ID of the edge the tranship starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4326 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4364 msgid "The ID of the edge the tranship ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4331 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4367 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4392 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4405 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4430 msgid "The position at which the tranship shall enter the net" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4343 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4373 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4404 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4381 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4411 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4442 msgid "speed of the container for this tranship in m/s" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4395 msgid "The name of the edge the tranship starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4362 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4400 msgid "Id of the destination container stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4387 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4669 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4425 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4759 msgid "id of the edges to walk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4398 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4674 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4693 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4436 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4783 msgid "Arrival position on the destination edge" msgstr "Posición de llegada en la calle (edge) destino" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4427 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4797 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4465 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4911 msgid "The ID of the edge the stop shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4445 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4477 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4815 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4847 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4483 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4515 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4929 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4961 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4993 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5695 msgid "Minimum duration for stopping" msgstr "Duración mínima de parada" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4452 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4484 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4822 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4854 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5556 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4490 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4522 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4936 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4968 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5000 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5702 msgid "The time step at which the route continues" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4458 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4490 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4496 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4528 msgid "Activity displayed for stopped container in GUI and output files " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4511 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4551 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4589 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4623 msgid "The ID of the edge the person trip starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4516 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4554 msgid "The ID of the edge the person trip ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4527 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4561 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4595 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4565 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4599 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4633 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4667 msgid "List of possible vehicle types to take" msgstr "Lista de posibles tipos de vehículos para usar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4532 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4566 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4600 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4604 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4638 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4672 msgid "" "List of possible traffic modes. Walking is always possible regardless of " "this value" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4537 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4571 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4605 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4609 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4677 msgid "list of vehicle alternatives to take for the person trip" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4556 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4594 msgid "Id of the destination busStop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4585 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4628 +msgid "Id of the destination trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4657 msgid "The name of the junction the person trip starts at" msgstr "El nombre del cruce en el que comienza el viaje de la persona" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4590 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4662 msgid "The name of the junction the person trip ends at" msgstr "El nombre del cruce en el que finaliza el viaje de la persona" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4627 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4651 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4699 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4723 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4741 msgid "The ID of the edge the walk starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4632 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4704 msgid "The ID of the edge the walk ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4656 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4728 msgid "Id of the destination bus stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4688 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4746 +msgid "Id of the destination train stop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4778 msgid "The id of the route to walk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4708 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4798 msgid "The name of the junction the walk starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4713 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4803 msgid "The name of the junction the walk ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4734 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4824 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4854 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4878 msgid "The ID of the edge the ride starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4739 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4829 msgid "The ID of the edge the ride ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4750 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4774 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4840 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4864 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4888 msgid "list of vehicle alternatives to take for the ride" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4769 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4859 msgid "ID of the destination bus stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4828 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4860 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4883 +msgid "ID of the destination train stop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4942 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4974 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5006 msgid "Activity displayed for stopped person in GUI and output files " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4872 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5018 msgid "This vehicle's color" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4878 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5024 msgid "The lane on which thevehicle shall be inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4884 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5030 msgid "The position at which the vehicle shall enter the net" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4890 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5036 msgid "The speed with which the vehicle shall enter the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4896 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5042 msgid "The lane at which the vehicle shall leave the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4902 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5048 msgid "The position at which the vehicle shall leave the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4908 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5054 msgid "The speed with which the vehicle shall leave the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4914 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5060 msgid "" "A string specifying the id of a public transport line which can be used when " "specifying person rides" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4919 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5065 msgid "The number of occupied seats when the vehicle is inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4925 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5071 msgid "The number of occupied container places when the vehicle is inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4931 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5077 msgid "" "The lateral position on the departure lane at which the vehicle shall enter " "the net" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4937 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5083 msgid "" "The lateral position on the arrival lane at which the vehicle shall arrive" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4943 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5089 msgid "Insertion checks" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4956 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5102 msgid "First flow departure time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4968 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4989 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5114 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5135 msgid "probability for emitting a flow each second" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4969 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5115 msgid "(not together with vehsPerHour or period)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4975 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5121 msgid "Number of flows per hour, equally spaced" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4976 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5122 msgid "(not together with period or probability or poisson)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4982 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5128 msgid "Insert equally spaced flows at that period" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4983 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5129 msgid "(not together with vehsPerHour or probability or poisson)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4990 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5136 msgid "(not together with vehsPerHour or period or poisson)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4996 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5142 msgid "" "Insert flow expected vehicles per second with poisson distributed insertion " "rate" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4997 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5143 msgid "(not together with period or vehsPerHour or probability)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5156 msgid "The acceleration ability of vehicles of this type [m/s^2]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5016 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5162 msgid "The deceleration ability of vehicles of this type [m/s^2]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5022 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5168 msgid "" "The apparent deceleration of the vehicle as used by the standard model [m/" "s^2]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5174 msgid "The maximal physically possible deceleration for the vehicle [m/s^2]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5034 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5041 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5180 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5187 msgid "Car-following model parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5047 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5193 msgid "SKRAUSSX parameter 1" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5052 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5198 msgid "SKRAUSSX parameter 2" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5057 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5203 msgid "SKRAUSSX parameter 3" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5062 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5208 msgid "SKRAUSSX parameter 4" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5213 msgid "SKRAUSSX parameter 5" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5072 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5218 msgid "EIDM Look ahead / preview parameter [s]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5078 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5224 msgid "EIDM AP Reaction Time parameter [s]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5084 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5230 msgid "EIDM Wiener Process parameter for the Driving Error [s]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5090 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5236 msgid "EIDM Wiener Process parameter for the Estimation Error [s]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5096 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5242 msgid "EIDM Coolness parameter of the Enhanced IDM [-]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5103 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5249 msgid "EIDM leader speed estimation error parameter [-]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5109 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5255 msgid "EIDM gap estimation error parameter [-]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5115 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5261 msgid "EIDM driving error parameter [-]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5121 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5267 msgid "EIDM maximal jerk parameter [m/s^3]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5273 msgid "" "EIDM maximal negative acceleration between two Action Points (threshold) [m/" "s^2]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5133 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5279 msgid "" "EIDM Time parameter until vehicle reaches amax after startup/driveoff [s]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5139 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5285 msgid "EIDM Flatness parameter of startup/driveoff curve [-]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5145 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5291 msgid "EIDM Shift parameter of startup/driveoff curve [-]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5151 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5297 msgid "" "EIDM parameter if model shall include vehicle dynamics into the acceleration " "calculation [0/1]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5157 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5303 msgid "" "EIDM parameter how many vehicles are taken into the preview calculation of " "the driver (at least always 1!) [-]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5163 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5169 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5309 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5315 msgid "Peter Wagner 2009 parameter" msgstr "parámetro Peter Wagner 2009" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5175 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5181 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5321 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5327 msgid "IDMM parameter" msgstr "parámetro IDMM" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5187 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5193 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5199 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5205 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5211 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5217 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5223 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5229 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5235 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5333 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5339 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5345 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5351 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5363 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5381 msgid "W99 parameter" msgstr "parámetro W99" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5241 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5246 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5387 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5392 msgid "Wiedemann parameter" msgstr "parámetro Wiedemann" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5251 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5397 msgid "MinGap factor parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5256 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5402 msgid "K parameter" msgstr "parámetro K" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5261 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5407 msgid "Kerner Phi parameter" msgstr "parámetro Kerner Phi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5266 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5412 msgid "IDM Delta parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5271 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5417 msgid "IDM Stepping parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5276 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5422 msgid "Train Types" msgstr "Tipos de trenes" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5289 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5435 msgid "" "Minimum distance to pedestrians that are walking towards the conflict point " "with the ego vehicle." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5295 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5441 msgid "" "The accumulated waiting time after which a vehicle will drive onto an " "intersection even though this might cause jamming." @@ -7356,7 +7516,7 @@ "El tiempo de espera acumulado después del cual un vehículo conducirá a una " "intersección incluso aunque esto pueda causar atascos." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5301 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5447 msgid "" "This value causes vehicles to violate a yellow light if the duration of the " "yellow phase is lower than the given threshold." @@ -7364,7 +7524,7 @@ "Este valor hace que los vehículos transgredan una luz amarilla, si la " "duración de la fase amarilla es inferior al umbral dado." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5453 msgid "" "This value causes vehicles to violate a red light if the duration of the red " "phase is lower than the given threshold." @@ -7372,13 +7532,13 @@ "Este valor hace que los vehículos transgredan una luz roja, si la duración " "de la fase roja es inferior al umbral dado." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5459 msgid "" "This value causes vehicles affected by jmDriveAfterRedTime to slow down when " "violating a red light." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5319 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5465 msgid "" "This value causes vehicles to ignore foe vehicles that have right-of-way " "with the given probability." @@ -7386,64 +7546,64 @@ "Este valor hace que los vehículos ignoren, con la probabilidad dada, a los " "vehículos contrarios que tienen derecho de paso." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5325 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5471 msgid "This value is used in conjunction with jmIgnoreFoeProb." msgstr "Este valor se usa en conjunto con jmIgnoreFoeProb." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5326 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5472 msgid "" "Only vehicles with a speed below or equal to the given value may be ignored." msgstr "" "Solo los vehículos con una velocidad inferior o igual al valor dado pueden " "ser ignorados." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5332 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5478 msgid "" "This value configures driving imperfection (dawdling) while passing a minor " "link." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5338 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5484 msgid "" "This value defines the minimum time gap when passing ahead of a prioritized " "vehicle. " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5344 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5490 msgid "Willingess of drivers to impede vehicles with higher priority" msgstr "" "Voluntad de los conductores de obstaculizar vehículos con mayor prioridad" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5503 msgid "" "The eagerness for performing strategic lane changing. Higher values result " "in earlier lane-changing." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5363 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5509 msgid "" "The willingness for performing cooperative lane changing. Lower values " "result in reduced cooperation." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5515 msgid "" "The eagerness for performing lane changing to gain speed. Higher values " "result in more lane-changing." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5521 msgid "" "The eagerness for following the obligation to keep right. Higher values " "result in earlier lane-changing." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5381 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5527 msgid "" "The eagerness for using the configured lateral alignment within the lane." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5382 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5528 msgid "" "Higher values result in increased willingness to sacrifice speed for " "alignment." @@ -7451,31 +7611,31 @@ "Los valores más altos dan como resultado una mayor disposición a sacrificar " "velocidad por alineación." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5388 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5534 msgid "" "The eagerness for overtaking through the opposite-direction lane. Higher " "values result in more lane-changing." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5394 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5540 msgid "Willingness to encroach laterally on other drivers." msgstr "Disposición de invadir lateralmente a otros conductores." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5400 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5546 msgid "" "Minimum lateral gap when encroaching laterally on other drives (alternative " "way to define lcPushy)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5406 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5552 msgid "Willingness to accept lower front and rear gaps on the target lane." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5412 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5558 msgid "Dynamic factor for modifying lcAssertive and lcPushy." msgstr "Factor dinámico para modificar los atributos lcAssertive y lcPushy." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5418 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5564 msgid "" "Time to reach maximum impatience (of 1). Impatience grows whenever a lane-" "change manoeuvre is blocked." @@ -7483,11 +7643,11 @@ "Tiempo para alcanzar la impaciencia máxima (de 1). La impaciencia crece cada " "vez que se bloquea una maniobra de cambio de carril (lane-change)." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5424 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5570 msgid "Maximum lateral acceleration per second." msgstr "Aceleración lateral máxima por segundo." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5430 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5576 msgid "" "Factor for configuring the strategic lookahead distance when a change to the " "left is necessary (relative to right lookahead)." @@ -7496,7 +7656,7 @@ "necesario un cambio a la izquierda (en relación con la anticipación a la " "derecha)." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5436 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5582 msgid "" "Factor for configuring the threshold asymmetry when changing to the left or " "to the right for speed gain." @@ -7504,11 +7664,11 @@ "Factor para configurar la el umbral de asimetría al cambiar a la izquierda o " "a la derecha para ganar velocidad." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5442 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5588 msgid "Upper bound on lateral speed when standing." msgstr "Límite superior de la velocidad lateral al pararse." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5594 msgid "" "Upper bound on lateral speed while moving computed as lcMaxSpeedLatStanding " "+ lcMaxSpeedLatFactor * getSpeed()" @@ -7516,27 +7676,27 @@ "Límite superior para la velocidad lateral mientras se mueve calculado como " "lcMaxSpeedLatStanding + lcMaxSpeedLatFactor * getSpeed()" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5454 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5600 msgid "" "Distance to an upcoming turn on the vehicles route, below which the alignment" msgstr "" "Distancia al próximo giro en la ruta del vehículo, por debajo de la linea en " "la cual" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5455 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5601 msgid "should be dynamically adapted to match the turn direction." msgstr "" "debe adaptarse dinámicamente para que coincida con la dirección de giro." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5461 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5607 msgid "The probability for violating rules gainst overtaking on the right." msgstr "La probabilidad de violar las reglas al adelantar por la derecha." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5467 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5613 msgid "Time threshold for the willingness to change right." msgstr "Umbral de tiempo para la intención de cambiar a la derecha." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5473 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5619 msgid "" "Speed difference factor for the eagerness of overtaking a neighbor vehicle " "before changing lanes (threshold = factor*speedlimit)." @@ -7544,35 +7704,35 @@ "Factor de diferencia de velocidad para la intención de adelantar a un " "vehículo vecino antes de cambiar de carril (umbral = factor * speedlimit)." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5495 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5641 msgid "The name of the person" msgstr "El nombre de la persona" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5500 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5646 msgid "The id of the person type to use for this person" msgstr "la ID del tipo de persona (type) que se usará para esta persona" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5506 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5652 msgid "This person's color" msgstr "El color de la persona" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5512 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5658 msgid "The position at which the person shall enter the net" msgstr "La posición en la que la persona debe entrar en la red" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5525 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5671 msgid "The name of the container" msgstr "El nombre del contenedor" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5530 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5676 msgid "The id of the container type to use for this container" msgstr "La ID del tipo de contenedor (type) que se usará en este contenedor" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5536 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5682 msgid "This container's color" msgstr "El color del contenedor" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5562 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5708 msgid "" "If set to a non-negative time value, then the stop duration can be extended " "at most by the extension value in seconds" @@ -7580,33 +7740,33 @@ "Si se establece en un valor de tiempo no negativo, la duración de la parada " "se puede extender como máximo el valor de extensión en segundos" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5568 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5714 msgid "Whether a person or container or bth may end the stop" msgstr "Si una persona, contenedor o similar debe finalizar la parada" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5721 msgid "List of elements that must board the vehicle before it may continue" msgstr "" "Lista de elementos (personas o contenedores) que deben abordar el vehículo " "antes de continuar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5580 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5726 msgid "List of elements that can board the vehicle before it may continue" msgstr "" "Lista de elementos (personas o contenedores) que pueden abordar el vehículo " "antes de continuar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5585 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5731 msgid "Whether the vehicle stops on the road or beside" msgstr "Si el vehículo para en la carretera o en los laterales" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5592 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5738 msgid "Activity displayed for stopped person in GUI and output files" msgstr "" "Actividad mostrada para la persona detenida (en la visualización) y para los " "archivos de salida" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5597 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5743 msgid "" "Parameter to be applied to the vehicle to track the trip id within a " "cyclical public transport route" @@ -7614,7 +7774,7 @@ "Parámetro que se aplicará al vehículo para rastrear la ID del viaje dentro " "de una ruta de transporte público cíclica" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5602 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5748 msgid "" "New line attribute to be set on the vehicle when reaching this stop (for " "cyclical public transport route)" @@ -7622,1620 +7782,1786 @@ "Nuevo atributo linea (line) que se establecerá en el vehículo al llegar a " "esta parada (Usado para rutas de transporte público cíclicas)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5608 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5754 msgid "Speed to be kept while driving between startPos and endPos" msgstr "" "Velocidad a mantener durante la conducción entre posiciónes de inicio " "(startPos) y final (endPos)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5614 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5760 msgid "" "Whether the stop may be skipped if no passengers wants to embark or disembark" msgstr "" "Si se puede omitir la parada si ningún pasajero desea embarcar o desembarcar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5621 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5767 msgid "" "transfer time if there shall be a jump from this stop to the next route edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5789 msgid "Data set ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5659 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5805 msgid "Interval ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5665 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5811 msgid "Data interval begin time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5671 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5817 msgid "Data interval end time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5687 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5833 msgid "edge ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5701 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5847 msgid "The ID of the edge the edgeRel starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5706 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5852 msgid "The ID of the edge the edgeRel ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5720 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5866 msgid "The name of the TAZ the TAZRel starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5725 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5871 msgid "The name of the TAZ the TAZRel ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5760 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5906 msgid "The id of this set of measurements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5765 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5911 msgid "The path to the output file. The path may be relative" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5775 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5921 msgid "" "The time to start writing. If not given, the simulation's begin is used." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5780 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5926 msgid "The time to end writing. If not given the simulation's end is used." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5785 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5931 msgid "" "If set to true, edges/lanes which were not use by a vehicle during this " "period will not be written" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5792 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5938 msgid "If set, junction internal edges/lanes will be written as well" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5798 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5944 msgid "" "The maximum travel time in seconds to write if only very small movements " "occur" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5804 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5950 msgid "" "Consider an edge/lane unused if it has at most this many sampled seconds" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5810 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5956 msgid "The maximum speed to consider a vehicle halting;" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5816 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5962 msgid "space separated list of vehicle type ids to consider" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5821 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5967 msgid "" "whether aggregation should be performed over all vehicles that entered the " "edge/lane in the aggregation interval" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5827 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5973 msgid "" "Whether pedestrians shall be recorded instead of vehicles. Allowed value is " "walk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5832 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5978 msgid "List of attribute names that shall be written" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5837 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5983 msgid "Restrict output to the given list of edge ids" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5842 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5988 msgid "Restrict output to the given the list of edges given in file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5847 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5993 msgid "" "Whether the traffic statistic of all edges shall be aggregated into a single " "value" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEHierarchicalElement.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\GNEHierarchicalElement.cpp:421 msgid "Some child meanData were lost during sorting" msgstr "Algunos descendientes se perdieron durante la ordenación" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:96 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:96 msgid "" "element must be at least networkElement, additional, TAZ, demandElement, " "dataElement or meanData" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:100 msgid "" "element can be only a networkElement, additional, demandElement, dataElement " "or meanData at the same time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:104 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:104 msgid "element can be only a shape, TAZ or wire element at the same time" msgstr "Elemento solo puede ser shape, TAZ o wire element al mismo tiempo" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:108 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:108 msgid "" "If attributes mask the start and end position, both attributes have to be " "defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:134 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:134 msgid "Attributes aren't combinables" msgstr "Los atributos no son combinables" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:136 msgid "allow need a disallow attribute in the same tag" msgstr "allow necesita el atributo disallow en la misma etiqueta" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:138 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:138 msgid "disallow need an allow attribute in the same tag" msgstr "disallow necesita el atributo allow en la misma etiqueta" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:152 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:152 #, c-format msgid "attribute '%' doesn't have a default value" msgstr "el atributo '%' no tiene un valor por defecto" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:158 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:158 #, c-format msgid "Attribute '%' not defined" msgstr "Atributo '%' no definido" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:165 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:165 #, c-format msgid "Maximum number of attributes for tag % exceeded" msgstr "Número máximo de atributos para la etiqueta '%' excedido" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:170 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:170 #, c-format msgid "Attribute '%' already inserted" msgstr "Atributo '%' ya insertado" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:207 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:207 #, c-format msgid "Attribute '%' doesn't exist" msgstr "El atributo '%' no existe" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAccess.cpp:173 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEEntryExitDetector.cpp:97 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEInductionLoopDetector.cpp:115 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEInstantInductionLoopDetector.cpp:111 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:174 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:190 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:197 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:136 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:143 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:201 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:132 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:137 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAccess.cpp:173 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEEntryExitDetector.cpp:97 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEInductionLoopDetector.cpp:115 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEInstantInductionLoopDetector.cpp:111 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:174 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:190 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:197 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:143 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:201 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:132 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:137 msgid " > lanes's length" -msgstr "" +msgstr " > largo del carril (lane)" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:148 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:149 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:146 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:128 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:129 -msgid "Copy " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:148 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:146 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:128 -msgid " name to clipboard" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZSourceSink.cpp:146 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:128 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:129 +#, c-format +msgid "Copy % name to clipboard" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:149 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:129 -msgid " typed name to clipboard" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:148 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZSourceSink.cpp:147 +msgid "Copy % typed name to clipboard" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:156 msgid "Open " -msgstr "" +msgstr "Abrir " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:156 msgid " Dialog" -msgstr "" +msgstr " cuadro de diálogo" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:164 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:174 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:164 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:174 msgid "Cursor position over additional shape: " -msgstr "" +msgstr "Posición del cursor sobre la forma del elemento adicional: " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:168 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:168 msgid "Cursor position over lane: " -msgstr "" +msgstr "Posición del cursor sobre el carril (lane): " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:178 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:178 msgid "Mouse position over edge: " -msgstr "" +msgstr "Posición del cursor sobre la calle (edge): " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:181 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:139 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:181 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:139 msgid "Cursor position in view: " -msgstr "" +msgstr "Posición del cursor en la vista: " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:398 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:398 msgid "Invalid number of edges" -msgstr "" +msgstr "Número de calles (edges) inválido" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:104 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:104 msgid "add bus stop '" -msgstr "" +msgstr "Añadir parada de autobus '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:148 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:148 msgid "add train stop '" -msgstr "" +msgstr "añadir parada de tren '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:186 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:186 msgid "" "Could not build access in netedit; busStop parent already owns an access in " "the edge '" msgstr "" +"No se puede crear el acceso en Netedit; La parada de bus ya posee un acceso " +"en la calle (edge) '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:188 -msgid "Could not build access in netedit; The lane '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:188 -msgid "' doesn't support pedestrians" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:188 +#, c-format +msgid "" +"Could not build access in netedit; The lane '%' doesn't support pedestrians" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:194 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:194 msgid "add access in '" -msgstr "" +msgstr "añadir acceso en '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:235 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:235 msgid "add container stop '" -msgstr "" +msgstr "añadir parada para contenedores '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:279 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:279 msgid "add charging station '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:322 -msgid "Could not build parking area with ID '" -msgstr "" +msgstr "añadir estación de carga '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:322 -msgid "' in netedit; Invalid departPos over lane." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:323 +#, c-format +msgid "" +"Could not build parking area with ID '%' in netedit; Invalid departPos over " +"lane." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:330 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:331 msgid "add parking area '" -msgstr "" +msgstr "añadir zona de estacionamiento '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:352 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:353 msgid "" "Could not build parking space in netedit; attribute width cannot be parse to " "float." msgstr "" +"No se puede crear el espacio de estacionamiento en Netedit; El attributo " +"'width\" no se puede convertir a float." -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:354 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:355 msgid "" "Could not build parking space in netedit; attribute length cannot be parse " "to float." msgstr "" +"No se puede crear el espacio de estacionamiento en netedit. El atributo " +"\"length\" no se puede convertir en float." -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:356 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:357 msgid "" "Could not build parking space in netedit; attribute angle cannot be parse to " "float." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:377 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:378 msgid "add parking space in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:422 msgid "add induction loop '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:461 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:519 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:528 -msgid "Could not build lane area detector with ID '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:461 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:528 -msgid "' in netedit; invalid traffic light ID." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:462 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:529 +#, c-format +msgid "" +"Could not build lane area detector with ID '%' in netedit; invalid traffic " +"light ID." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:486 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:547 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:487 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:548 msgid "add lane area detector '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:519 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1543 -msgid "' in netedit; Lanes aren't consecutives." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:520 +#, c-format +msgid "" +"Could not build lane area detector with ID '%' in netedit; Lanes aren't " +"consecutives." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:592 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:593 msgid "add entry-exit detector '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:627 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:628 msgid "add entry detector in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:662 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:663 msgid "add exit detector in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:699 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:700 msgid "add instant induction loop '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:749 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:750 msgid "add lane calibrator '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:803 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:804 msgid "add calibrator '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:844 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:845 msgid "add calibrator flow in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:900 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:901 msgid "add rerouter '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:939 -msgid "Could not build interval with ID '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:939 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1244 -msgid "' in netedit; begin is greather than end." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:940 +#, c-format +msgid "" +"Could not build interval with ID '%' in netedit; begin is greather than end." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:947 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:948 msgid "add rerouter interval in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "Could not build interval with begin '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "' in '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "' due overlapping." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:957 +#, c-format +msgid "" +"Could not build interval with begin '%' and end '%' in '%' due overlapping." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:978 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:979 msgid "add closing lane reroute in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1006 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1007 msgid "add closing reroute in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1033 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1034 msgid "add dest prob reroute in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1061 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1062 msgid "add parking area reroute in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1089 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1090 msgid "add route prob reroute in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1126 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1127 msgid "add route probe '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1172 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1173 msgid "add Variable Speed Sign '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1213 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1214 msgid "add VSS Step in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1244 -msgid "Could not build Vaporizer with ID '" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1245 +#, c-format +msgid "" +"Could not build Vaporizer with ID '%' in netedit; begin is greather than end." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1250 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1251 msgid "add vaporizer in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1305 -msgid "Could not build TAZ with ID '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1305 -msgid "' in netedit; Invalid Shape." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1306 +#, c-format +msgid "Could not build TAZ with ID '%' in netedit; Invalid Shape." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1316 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1317 msgid "add TAZ '" -msgstr "" +msgstr "añadir zona de análisis de tráfico (TAZ) '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1377 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1471 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1378 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1472 msgid "add TAZ Sink in '" -msgstr "" +msgstr "añadir TAZ Sumidero en '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1400 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1449 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1401 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1450 msgid "add TAZ Source in '" -msgstr "" +msgstr "añadir TAZ fuente en '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1411 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1412 msgid "update TAZ Source in '" -msgstr "" +msgstr "acualizar TAZ Fuente en '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1482 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1483 msgid "update TAZ Sink in '" -msgstr "" +msgstr "actualizar TAZ Sumidero en '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1511 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1512 msgid "add taction substation '" -msgstr "" +msgstr "añadir subestación de carga" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1543 -msgid "Could not build overhead wire with ID '" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1544 +#, c-format +msgid "" +"Could not build overhead wire with ID '%' in netedit; Lanes aren't " +"consecutives." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1555 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1556 msgid "add overhead wire '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1604 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1605 msgid "add polygon '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1637 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1680 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1719 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1638 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1681 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1720 msgid "add POI '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1711 -msgid "Could not build POI with ID '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1711 -msgid "' in netedit; Network requires a geo projection." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1925 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:116 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -msgid "Could not build " +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1712 +#, c-format +msgid "Could not build POI with ID '%' in netedit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -msgid " with ID '" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1712 +msgid "Network requires a geo projection." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -msgid "' in netedit; ID contains invalid characters." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1908 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1914 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1920 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1932 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1938 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1944 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1950 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:245 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:257 +msgid "Could not build % with ID '%' in netedit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -msgid "' in netedit; Invalid position over lane." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1908 +msgid "ID contains invalid characters." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -msgid "' in netedit; declared twice." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1914 +msgid "Invalid position over lane." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1925 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -msgid " doesn't exist." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1920 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:245 +msgid "Declared twice." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -msgid "' in netedit; attribute " +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1926 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2005 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2023 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:251 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:116 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:132 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2198 +#, c-format +msgid "Could not build % in netedit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -msgid " cannot be negative." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1926 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2005 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2023 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:251 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:257 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2198 +#, c-format +msgid "% doesn't exist." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -msgid "' in netedit; list of VTypes isn't valid." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1932 +#, c-format +msgid "Attribute % cannot be negative." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -msgid "' in netedit; filename is invalid." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1938 +msgid "List of VTypes isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -msgid "' in netedit; list of lanes isn't valid." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1944 +msgid "Filename is invalid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -msgid " in netedit; " +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1950 +msgid "List of lanes isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:194 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:194 msgid "Both edges and lanes aren't defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:238 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:480 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:238 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:480 msgid "Both myEdge and myLane aren't defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibratorFlow.cpp:94 -msgid "calibratorFlow of calibrator '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibratorFlow.cpp:95 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibratorFlow.cpp:94 +#, c-format msgid "" -"' cannot be written. Either type or vehsPerHour or speed must be enabled" +"calibratorFlow of calibrator '%' cannot be written. Either type or " +"vehsPerHour or speed must be enabled" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:179 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:125 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:179 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:125 msgid "lanes aren't consecutives" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:183 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:129 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:183 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:129 msgid "lanes aren't connected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:202 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:141 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:202 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:141 msgid " and " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:115 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:115 msgid "' needs at least one entry and one exit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:317 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:317 msgid "An entry-exit detector needs at least one entry detector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:320 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:320 msgid "An entry-exit detector needs at least one exit detector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:319 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:319 msgid "Release from lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:323 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:323 msgid "Attach to nearest lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:214 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:214 msgid "Simplify Shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:214 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:214 msgid "Replace current shape with a rectangle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:220 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:220 msgid "Open shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:220 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:220 msgid "Open polygon's shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:222 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:65 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:222 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:66 msgid "Close shape" msgstr "Cerrar forma" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:222 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:222 msgid "Close polygon's shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:224 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:224 msgid "Select elements within polygon" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:224 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:224 msgid "Select elements within polygon boundary" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:234 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:234 msgid "Remove geometry point" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:234 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:234 msgid "Remove geometry point under mouse" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:235 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:235 msgid "Set first geometry point" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:447 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:447 msgid "Number of remaining points insufficient" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:474 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:474 msgid "Polygon already opened" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:495 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:495 msgid "Polygon already closed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:506 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:506 msgid "Selected point must be different of the first point" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:571 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:571 msgid "Polygon already simplified" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZ.cpp:282 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZ.cpp:282 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:715 msgid "Set custom Geometry Point" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:62 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:62 msgid "add data set" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:87 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:87 msgid "add data set and data interval" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:102 msgid "add data interval" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:128 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:165 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:130 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:167 msgid "add edge rel" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:205 -msgid "There is already a TAZ rel defined between '" +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:207 +msgid "There is already a TAZ rel defined between '%' and '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:207 -msgid "There is already a TAZ rel defined in '" +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:209 +msgid "There is already a TAZ rel defined in '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:211 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:222 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:213 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:224 msgid "add TAZ rel" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1511 -msgid "' doesn't exist." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataInterval.cpp:173 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataInterval.cpp:173 msgid "GenericData was already inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataInterval.cpp:199 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataInterval.cpp:199 msgid "GenericData wasn't previously inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:214 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:214 msgid "DataInterval was already inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:231 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:255 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:231 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:255 msgid "DataInterval wasn't previously inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:316 -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdgeType.cpp:155 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:136 +msgid "Open % Dialog" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:316 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdgeType.cpp:155 msgid "Invalid index" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:64 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:64 msgid "Could not build meanDataEdge; " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:64 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:93 -msgid " already exists" +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:64 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:93 +#, c-format +msgid "% already exists" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:70 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:70 msgid "add meanDataEdge" -msgstr "" +msgstr "añadir meanDataEdge" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:93 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:93 msgid "Could not build meanDataLane; " -msgstr "" +msgstr "No se puede crear el meanDataLane; " -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:99 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:99 msgid "add meanDataLane" -msgstr "" +msgstr "añadir meanDataLane" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:116 -msgid " in netedit; edge doesn't exist." +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:116 +msgid "Edge doesn't exist." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -msgid " in netedit; attribute '" +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:132 +#, c-format +msgid "Attribute '%' doesn't exist." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEPersonTrip.cpp:306 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEPersonTrip.cpp:317 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEPersonTrip.cpp:312 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEPersonTrip.cpp:323 msgid "This personTrip use junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:71 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:100 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1499 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1523 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1535 -msgid "There is another " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:71 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:100 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1499 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1523 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1535 -msgid " with the same ID='" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:76 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:126 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:161 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:206 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:258 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:299 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:345 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:389 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:436 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:480 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:516 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:547 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:593 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:609 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:625 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:677 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:694 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:709 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:725 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:741 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:778 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:794 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:827 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:858 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:893 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:909 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:949 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:966 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:982 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1107 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1122 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1142 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:71 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1608 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1632 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1644 +msgid "There is another % with the same ID='%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:76 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:126 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:152 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:197 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:250 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:291 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:337 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:381 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:428 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:472 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:508 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:539 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:591 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:607 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:623 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:639 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:697 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:714 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:729 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:745 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:761 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:777 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:820 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:836 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:852 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:885 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:916 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:951 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:967 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1007 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1024 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1040 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1189 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1209 msgid "add " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:102 -msgid " need at least one " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:108 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:118 -msgid " with id '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:108 -msgid "' doesn't exist in " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:102 +msgid "% needs at least one %" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:115 -msgid "Invalid definition for " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:108 +msgid "% with id '%' doesn't exist in % '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:115 -msgid " in " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:115 +msgid "Invalid definition for % in % '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:118 -msgid "' cannot be created in " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:118 +msgid "% with id '%' cannot be created in % '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:192 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:244 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:285 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:333 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:377 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:424 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:468 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:508 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:539 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:819 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:850 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:183 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:236 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:277 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:325 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:369 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:416 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:460 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:500 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:531 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:877 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:908 msgid "VType distributions currently unsupported in netedit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:194 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:246 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:335 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:379 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:426 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:470 -msgid "Invalid vehicle type '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:194 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:246 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:290 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:335 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:379 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:426 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:470 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:510 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:541 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:821 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:852 -msgid "' used in " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:197 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:199 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:251 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:253 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:338 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:340 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:382 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:384 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:429 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:431 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:473 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:475 -msgid " used in " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:238 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:279 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:327 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:371 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:418 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:462 +msgid "Invalid vehicle type '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:188 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:243 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:284 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:330 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:374 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:465 +msgid "Invalid % used in % '%'. % is greater than number of lanes" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:190 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:245 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:286 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:332 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:376 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:423 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:467 +msgid "Invalid % used in % '%'. % is greater than vType %" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:231 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:223 msgid "netedit doesn't support route distributions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:290 -msgid "Invalid route '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:251 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:253 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:338 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:340 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:382 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:384 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:429 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:431 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:473 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:475 -msgid "Invalid " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:241 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:282 +msgid "Invalid route '%' used in % '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -msgid " is greater than number of lanes" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:502 +msgid "Invalid person type '%' used in % '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -msgid " is greater than vType" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:533 +msgid "Invalid personFlow type '%' used in % '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:510 -msgid "Invalid person type '" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:879 +msgid "Invalid container type '%' used in % '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:541 -msgid "Invalid personFlow type '" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:910 +msgid "Invalid containerFlow type '%' used in % '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1039 -msgid "Containers don't support stops at busStops" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1102 +msgid "Containers don't support stops at busStops or trainStops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1047 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1110 msgid "Persons don't support stops at containerStops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1055 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1118 msgid "Persons don't support stops at chargingStations" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1058 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1121 msgid "Containers don't support stops at chargingStations" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1066 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1129 msgid "Persons don't support stops at parkingAreas" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1069 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1132 msgid "Containers don't support stops at parkingAreas" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1079 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1142 msgid "vehicles don't support stops at edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1092 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1155 msgid "A stop must be defined either over a stoppingPlace, a edge or a lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1094 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1157 msgid "A stop requires only a stoppingPlace, edge or lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1214 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1282 msgid "A person trip from edge to edge needs two edges edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1224 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1292 msgid "A person trip from edge to busStop needs one edge and one busStop" msgstr "" +"Un person trip desde una calle (edge) hasta una parada de autobus nesita una " +"calle y una parada de autobus" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1302 +msgid "A person trip from edge to trainStop needs one edge and one trainStop" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1234 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1312 msgid "A person trip from junction to junction needs two junctions junction" +msgstr "Un person trip de cruce (junction) a cruce necesita dos cruces" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1323 +msgid "A walk to edge needs a busStop and an edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1245 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1404 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1425 -msgid "A ride from busStop to edge needs a busStop and an edge" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1333 +msgid "A walk to busStop needs two busStops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1255 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1414 -msgid "A transport from busStop to busStop needs two busStops" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1343 +msgid "A walk to trainStop needs two trainStops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1265 -msgid "A transport with edges attribute needs a list of edges" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1353 +msgid "A walk with edges needs a list of edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1275 -msgid "A route transport needs a route" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1363 +msgid "A route walk needs a route" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1285 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1373 msgid "A ride from busStop to junction needs a busStop and an junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1296 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1384 msgid "A ride from edge to edge needs two edges edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1306 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1394 msgid "A ride from edge to busStop needs one edge and one busStop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1320 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1459 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1404 +msgid "A ride from edge to trainStop needs one edge and one trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1418 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1568 msgid "A stop has to be placed over an edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1331 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1470 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1429 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1579 msgid "A stop has to be placed over a busStop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1435 -msgid "A tranship from busStop to busStop needs two busStops" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1440 +msgid "A stop has to be placed over a trainStop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1445 -msgid "A tranship with edges attribute needs a list of edges" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1513 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1534 +msgid "A ride from busStop to edge needs a busStop and an edge" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1523 +msgid "A transport from busStop to busStop needs two busStops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1511 -msgid "Via edge '" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1544 +msgid "A tranship from busStop to busStop needs two busStops" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1554 +msgid "A tranship with edges attribute needs a list of edges" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1620 +#, c-format +msgid "Via edge '%' doesn't exist." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEStop.cpp:443 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEStop.cpp:446 msgid "Invalid Stop parent" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEStop.cpp:458 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEStop.cpp:461 msgid "Invalid parent" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEVehicle.cpp:645 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEVehicle.cpp:645 msgid "Invalid vehicle tag" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEWalk.cpp:331 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEWalk.cpp:346 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEWalk.cpp:336 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEWalk.cpp:351 msgid "This walk use junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEConnection.cpp:679 +#: D:\Repos\sumo/src\netedit\elements\network\GNEConnection.cpp:679 msgid "Could not set attribute '%' (tls is broken)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdge.cpp:2180 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdge.cpp:2180 msgid "Could not compute smooth shape for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdge.cpp:2198 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdge.cpp:2198 msgid "Could not compute smooth elevation for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEInternalLane.cpp:241 +#: D:\Repos\sumo/src\netedit\elements\network\GNEInternalLane.cpp:241 msgid "invalid link state='%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEJunction.cpp:335 +#: D:\Repos\sumo/src\netedit\elements\network\GNEJunction.cpp:335 msgid "Reset junction shapes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:470 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:471 msgid "Unexpected LinkState '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:810 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:672 +msgid "Copy parent edge name to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:681 +msgid "Remove Lane From Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:683 +msgid "Add Lane To Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:687 +msgid "Remove Edge From Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:689 +msgid "Add Edge To Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:706 +msgid "Reset edge end points" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:733 +msgid "Select state for all links from this edge:" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:743 +msgid "Additional options available in 'Inspect Mode'" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:758 +msgid "Shape pos: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:759 +msgid "Length pos: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:761 +msgid "Distance: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:763 +msgid "Height: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:764 +msgid "Angle: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:811 msgid "Lane Parametric Length cannot be never 0" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:972 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:973 msgid "Opposite lane '%' does not connect the same nodes as edge '%'!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:49 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:738 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1846 +#, c-format +msgid "Edge operations (% selected)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1848 +msgid "Edge operations" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1851 +msgid "Split edge here" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1852 +msgid "Split edge in both directions here (no simmetric opposite edge)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1857 +msgid "Split edge in both directions here (no opposite edge)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1864 +msgid "Split edge in both directions here" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1868 +msgid "Set geometry endpoint here (shift-click)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1872 +msgid "Restore both geometry endpoints" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1874 +msgid "Restore geometry endpoints of all selected edges" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1877 +msgid "Restore geometry endpoint (shift-click)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1879 +msgid "Reverse %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1880 +msgid "Add reverse direction for %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1884 +msgid "Add reverse disconnected direction for %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1885 +msgid "Reset lengths for %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1886 +msgid "Straighten %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1887 +msgid "Smooth %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1888 +msgid "Straighten elevation of %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1889 +msgid "Smooth elevation of %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1936 +#, c-format +msgid "Lane operations (% selected)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1938 +msgid "Lane operations" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1940 +msgid "Duplicate lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1941 +msgid "Set custom lane shape" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1942 +msgid "Reset custom shape" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1946 +msgid "Reset opposite lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1958 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1969 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1978 +msgid "Sidewalk" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1959 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1971 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1979 +msgid "Bike lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1960 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1973 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1980 +msgid "Bus lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1963 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1975 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1981 +msgid "Green verge" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1965 +msgid "Green verge (front)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1966 +msgid "Green verge (back)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1983 +msgid "Add restricted %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1984 +msgid "Remove restricted %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1985 +msgid "Transform to restricted %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2026 +#, c-format +msgid "Template operations (% selected)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2028 +msgid "Template operations" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2031 +msgid "Use edge as template" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2032 +msgid "Apply template" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2047 +msgid "Select reachable" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2052 +msgid "Select reachable (compute junctions)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:746 msgid "Internal attributes" msgstr "Atributos internos" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:175 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:177 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:176 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:178 msgid "Invalid input parameter of " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:60 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:61 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:63 msgid "name" msgstr "nombre" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:64 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:65 msgid "button" msgstr "botón" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:70 msgid "Disabled" msgstr "Desactivado" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:476 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:477 msgid "Unsupported additional ID" msgstr "ID de elemento adicional no soportado" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:55 msgid "Consecutive lane selector" msgstr "Selector de carriles (lanes) consecutivos" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:59 -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:411 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:59 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:411 msgid "No lanes selected" msgstr "No hay carriles (lanes) seleccionados" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:61 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:61 msgid "Finish path creation" msgstr "Finalizar creación de trayectoria" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:64 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:64 msgid "Abort path creation" msgstr "Abortar creación de trayectoria" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:67 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:67 msgid "Remove last lane" msgstr "Eliminar el último carril (lane)" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:70 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:70 msgid "Show candidate lanes" msgstr "Mostrar carriles (lanes) candidatos" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:73 msgid "-BACKSPACE: undo click" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:73 msgid "-ESC: Abort path creation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:134 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:134 msgid "Invalid lane" msgstr "Carril (lane) inválido" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:151 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:151 msgid "Lane path needs at least two lanes" msgstr "Un camino de carriles (lanes) necesita al menos dos carriles" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:171 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:393 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:469 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:482 msgid "route creation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:406 msgid "- Selected lanes: " msgstr "- Carriles (lanes) seleccionados: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:407 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:943 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:407 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:959 msgid "- Length: " msgstr "- Largo: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:48 msgid "Parent " -msgstr "" +msgstr "Ancestro " -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:65 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:65 msgid "Parent element" msgstr "Elemento principal" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:108 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:108 msgid "select item..." msgstr "seleccionar ítem..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:110 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:110 msgid "-Select an item in the list or" msgstr "-Seleccionar un ítem en la lista o" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:110 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:110 msgid "click over an element in view" -msgstr "" +msgstr "click sobre un elemento en la vista" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:133 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:133 msgid "select sub-item..." msgstr "seleccionar subelemento..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:136 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:136 msgid "-Clicked over multiple" -msgstr "" +msgstr "- Click sobre múltiples" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:137 msgid "elements" msgstr "elementos" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:138 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:138 msgid " - Select an item in the" -msgstr "" +msgstr " - Selecciona un elemento en la" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:139 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:139 msgid " list or click over an" -msgstr "" +msgstr " lista o clicka sobre un" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:140 msgid " element in view" -msgstr "" +msgstr " elemento en la vista" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:333 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:337 msgid "Selected item '" msgstr "Item seleccionado '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:333 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:337 msgid "' in DemandElementSelector" -msgstr "" +msgstr "' en selector de elementos de demanda" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:346 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:350 msgid "Selected invalid item in DemandElementSelector" -msgstr "" +msgstr "Seleccionado elemento inválido en selector de elementos de demanda" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:49 msgid "Drawing" msgstr "Dibujar" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:52 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:53 msgid "Start drawing" msgstr "Empezar a dibujar" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:53 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:54 msgid "Stop drawing" msgstr "Terminar de dibujar" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:54 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:55 msgid "Abort drawing" msgstr "Cancelar dibujo" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:58 -msgid "- 'Start drawing' or ENTER" +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:59 +msgid "'Start drawing' or ENTER to create a shape." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:59 -msgid " to create shape." +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:60 +msgid "'Stop drawing' or ENTER to finish shape creation." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:60 -msgid "- 'Stop drawing' or ENTER to" -msgstr "- 'Dejar de dibujar' o ENTER para" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:61 -msgid " finish shape creation." +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:61 +msgid "'Abort drawing' or ESC to abort shape creation." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:62 -msgid "- 'Abort drawing' or ESC to" -msgstr "- 'Detener dibujado' o ESC para" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:63 -msgid " abort shape creation." -msgstr " detener la creación de la forma." - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:64 -msgid "- 'Shift + Click' to remove" -msgstr "- 'Shift + Click' para eliminar" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:65 -msgid " last inserted point." -msgstr " el último punto creado." +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:62 +msgid "'Shift + Click' to remove the last inserted point." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:134 msgid "A new point cannot be added if drawing wasn't started" msgstr "No se puede añadir un nuevo punto si no se ha empezado a dibujar" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:34 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:34 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:614 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1402 -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:101 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:339 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:619 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:535 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:85 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:34 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:34 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:614 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1406 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:101 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:323 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:621 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:536 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:85 msgid "Information" msgstr "Información" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:38 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:38 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:38 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:38 msgid " edge candidate" msgstr " Calle candidata" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:42 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:42 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:42 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:42 msgid " last edge selected" msgstr " última calle seleccionada" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:45 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:45 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:45 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:45 msgid " edge selected" msgstr " Calle seleccionada" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:48 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:51 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:51 msgid " edge disconnected" msgstr " calle desconectada" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:62 msgid "Hierarchy" msgstr "Jerarquía" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:211 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:211 #, c-format msgid "Default Vehicle Type '%' cannot be removed" msgstr "El tipo de vehículo por defecto '%' no se puede eliminar" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:316 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:84 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:316 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:276 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:84 msgid "Center" msgstr "Centrar" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:323 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:1252 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:323 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:1089 msgid "Inspect" msgstr "Inspeccionar" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:324 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:259 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:96 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:440 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1356 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:324 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:98 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:442 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1384 msgid "Delete" msgstr "Eliminar" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:397 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:416 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:477 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:397 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:477 msgid " origin" msgstr " origen" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:398 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:417 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:478 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:398 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:417 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:478 msgid " destination" -msgstr "" +msgstr " destino" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:506 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:632 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:706 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:506 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:632 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:706 msgid " additionals..." msgstr " elementos adicionales..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:520 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:583 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:646 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:720 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:520 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:583 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:646 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:720 msgid " demand elements..." msgstr " elementos de demanda..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:534 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:597 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:660 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:738 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:597 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:660 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:738 msgid " edges..." msgstr " calles (edges)..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:548 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:611 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:674 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:756 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:548 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:611 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:674 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:756 msgid " lanes..." msgstr " carriles (lanes)..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:569 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:569 msgid " TAZElements..." msgstr " Zonas de análisis de tráfico (TAZs)..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:815 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:815 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:911 msgid "Data elements" msgstr "Elemento de datos" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:841 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:841 msgid "Incomings" msgstr "Entrantes" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:851 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:851 msgid "Outgoing" msgstr "Salientes" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:890 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:65 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1325 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:890 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:65 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1322 msgid "Edges" msgstr "Calles (edges)" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:890 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:890 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:71 msgid "Lanes" msgstr "Carriles (lanes)" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:51 msgid "Flow attributes" msgstr "Attributos del flujo (flow)" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:170 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:469 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:596 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:470 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:597 msgid "rate" msgstr "índice" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:343 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:344 msgid "change multiple flow attributes" msgstr "cambiar multiples atributos de flujos" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:369 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:370 msgid "enable multiple flow attributes" msgstr "activar multiples atributos de flujos" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:385 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:386 msgid "disable multiple flow attributes" msgstr "desactivar multiples atributos de flujos" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:540 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:568 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:541 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:569 msgid "different: " msgstr "diferencia: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:185 msgid "Parameters of " msgstr "Parámetros de " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:195 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:195 msgid "Attribute" msgstr "Atributo" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:196 msgid "Description" msgstr "Descripción" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:197 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:197 msgid "Definition" msgstr "Definición" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 msgid "Opening HelpAttributes dialog for tag '" msgstr "Abriendo ventana HelpAttributes para tag '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 msgid "' showing " msgstr "' mostrando " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 msgid " attributes" msgstr " atributos" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:247 msgid "Closing HelpAttributes dialog for tag '" msgstr "Cerrando HelpAttributes dialog for tag '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:319 -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:417 -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:494 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:319 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:418 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:495 msgid "Scale: Min -> Max" msgstr "Escala: Menor -> Mayor" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:159 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:160 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:168 msgid "Inspect vehicle " msgstr "Inspeccionar vehículo " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:171 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:172 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:180 msgid "Open dialog for editing color" msgstr "Abrir ventana para editar color" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:176 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:177 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:248 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:249 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:184 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:256 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:257 msgid "Open dialog for editing allowed vClasses" msgstr "Abrir ventana para editar clases de vehículo (vClass) permitidos" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:472 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:491 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:607 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:480 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:499 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:615 msgid "change multiple attributes" msgstr "cambiar múltiples atributos" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:610 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:618 msgid "change " msgstr "cambiar " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:610 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:618 msgid " attribute" msgstr " atributo" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid "Value '" msgstr "Valor '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid "' for attribute " msgstr "' para atributo " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid " of " msgstr " de " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid " isn't valid" msgstr " no es válido" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:681 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:689 msgid "enable attribute '" msgstr "activar atributo '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:689 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:697 msgid "disable attribute '" msgstr "desactivar atributo '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:963 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:971 msgid "Extended attributes" msgstr "Atributos extendidos" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:966 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:974 msgid "Open attributes editor" msgstr "Abrir editor de atributos" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:997 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1005 msgid "Attributes" msgstr "Atributos" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:1001 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1009 msgid "Edit attributes" msgstr "Editar atributos" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:49 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:97 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1155 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1164 +msgid "Parameters" +msgstr "Parametros" + +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:93 msgid "Netedit attributes" msgstr "Atributos de netedit" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:55 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:195 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:196 msgid "reference left" msgstr "referencia izquierda" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:56 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:201 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:57 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:201 msgid "reference right" msgstr "referencia derecha" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:57 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:206 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:206 msgid "reference center" msgstr "referencia central" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:70 msgid "Center view" msgstr "Centrar vista" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:138 msgid "Current selected reference point isn't valid" msgstr "El punto de referencia actual seleccionado no es válido" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:231 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:231 msgid "- Reference point: Mark the initial position of the additional element." msgstr "" "- Punto de referencia: Marca la posición inicial del elemento adicional." -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:232 msgid "" " Example: If you want to create a busStop with a length of 30 in the point " "100 of the lane:" @@ -9243,27 +9569,27 @@ " Ejemplo: Si quiere crear una parada de autobus con un largo de 30 metros " "en el punto 100 del carril (lane):" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:233 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:233 msgid " - Reference Left will create it with startPos = 70 and endPos = 100." msgstr "" " - Referencia izquierda la creará con una posición de inicio (startPos) de " "70, y una posción de fin (endPos) de 100." -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:234 msgid "" " - Reference Right will create it with startPos = 100 and endPos = 130." msgstr "" " - Referencia derecha la creará con una posición de inicio (startPos ) de " "100 y una posición final (endPos) de 130." -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:235 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:235 msgid "" " - Reference Center will create it with startPos = 85 and endPos = 115." msgstr "" " - Referencia central la creará con una posición de inicio (startPos) de 85 " "y una posición final (endPos) de 115." -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:236 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:236 msgid "" "- Block movement: if is enabled, the created additional element will be " "blocked. i.e. cannot be moved with" @@ -9271,2055 +9597,1994 @@ "- Bloquear movimiento: Si está activa, el elemento adicional se creará " "bloqueado. Es decir, que no se podrá mover con" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:237 msgid " the mouse. This option can be modified inspecting element." msgstr " el ratón. Esta opción se puede modificar inspeccionando el elemento." -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:238 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:238 msgid "- Center view: if is enabled, view will be center over created element." msgstr "" "- Centrar vista: si está activo, la vista se centrará sobre el elemento " "creado." -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:49 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:49 msgid "NetworkElements" msgstr "Elementos de red" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:56 msgid "Use selected" msgstr "Usar el seleccionado" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:63 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:63 msgid "-Click over an edge to select" msgstr "-Click sobre una calle (edge) para seleccionarla" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:69 msgid "-Click over an lane to select" msgstr "-Click sobre un carril (lane) para seleccionarla" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:74 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:183 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:183 msgid "Invalid NetworkElementType" msgstr "Elemento de red inválido" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:52 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:52 msgid "Overlapped elements" msgstr "Elementos superpuestos" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:62 msgid "Overlapped " msgstr "Superpuesto " -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:275 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:275 msgid "GEO attributes Help" msgstr "Ayuda para GEO Attributes" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:278 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:278 msgid " - Click in the same position" msgstr " - Click en la misma posición" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:279 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:279 msgid " for inspect next element" msgstr " para inspeccionar el siguiente elemento" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:280 msgid " - Shift + Click in the same" msgstr " - Shift + click en la misma" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:281 msgid " position for inspect" msgstr " posición para inspeccionar" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:282 msgid " previous element" msgstr " el elemento previo" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:145 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:145 msgid "Route creator" msgstr "Creador de rutas" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:152 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:948 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1156 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:964 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1153 msgid "No edges selected" msgstr "No hay calles (edges) seleccionadas" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:154 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:154 msgid "Use last route" msgstr "Usar última ruta" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:157 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:157 msgid "Finish route creation" msgstr "Finalizar creación de ruta" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:160 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:160 msgid "Abort route creation" msgstr "Abortar creación de ruta" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:163 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:163 msgid "Remove last edge" msgstr "Remover última calle (edge)" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:166 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:166 msgid "Show candidate edges" msgstr "Mostrar calles (edges) candidatas" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:374 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:387 msgid "Double junctions aren't allowed" msgstr "Los cruces (junctions) dobles no están permitidos" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:382 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:395 msgid "Only two junctions are allowed" msgstr "Solo dos cruces (junctions) están permitidos" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:421 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:434 msgid "Double edges aren't allowed" msgstr "Calles (edges) dobles no están permitidas" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:431 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:444 msgid "Only consecutives edges are allowed" msgstr "Sólo calles (edges) consecutivas están permitidas" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:440 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:453 msgid "Only two edges are allowed" msgstr "Sólo dos calles (edges) están permitidas" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:449 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:462 msgid "Invalid edge (SHIFT + click to add an invalid vClass edge)" msgstr "" "Calle (edge) inválida (Shift + click para añadir una calle (edge) no " "compatible con el vClass seleccionado)" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:456 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:469 msgid "Invalid edge (CONTROL + click to add a disconnected edge)" msgstr "" "Calle (edge) inválida (Control + click para añadir una calle (edge) " "desconectada del resto)" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:531 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:547 msgid "first select an edge" msgstr "primero seleccione una calle (edge)" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:941 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:957 msgid "- Selected edges: " msgstr "- Calles seleccionadas: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:942 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:958 msgid "- Path edges: " msgstr "- Camino de calles: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:944 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:960 msgid "- Average speed: " msgstr "- Velocidad media: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:48 msgid " edge conflict (vClass)" msgstr " calle (edge) conflictiva (vClass)" -#: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:36 +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:36 msgid "Parent selector" msgstr "Seleccionar padre" -#: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:39 +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:39 msgid "No element selected" msgstr "No se ha seleccionado ningún elemento" -#: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:82 +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:82 msgid "Parent type: " msgstr "Tipo de padre: " -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:219 -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:230 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:219 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:230 msgid "Invalid row or column" msgstr "Fila o columna inválida" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:254 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:254 msgid "Invalid row" msgstr "Fila invalida" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:264 -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:264 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:274 msgid "Invalid column" msgstr "Columna inválida" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:609 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:609 msgid "Accumulated: " msgstr "Acumulado: " -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:679 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:679 msgid "Add phase" msgstr "Añadir fase" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:679 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:679 msgid "Add new phase." msgstr "Añadir nueva fase." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:684 msgid "Default phase" msgstr "Fase por defecto" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:684 msgid "Add default phase." msgstr "Añadir fase por defecto." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:689 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:689 msgid "Duplicate phase" msgstr "Duplicar fase" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:689 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:689 msgid "Duplicate this phase." msgstr "Duplicar esta fase." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:694 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:694 msgid "Red phase" msgstr "Fase roja" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:694 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:694 msgid "Add red phase." msgstr "Añadir una fase roja." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:699 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:699 msgid "Yellow phase" msgstr "Añadir fase amarilla" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:699 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:699 msgid "Add yellow phase." msgstr "Añadir una fase amarilla." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:704 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:704 msgid "Green phase" msgstr "Fase verde" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:704 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:704 msgid "Add green phase." msgstr "Añadir una fase verde." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:709 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:709 msgid "Green priority phase" msgstr "Fase verde con prioridad" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:709 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:709 msgid "Add green priority phase." msgstr "Añadir una fase verde con prioridad." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:910 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:910 msgid "Cannot be parsed to double" msgstr "No puede ser convertido a decimal" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:922 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:922 msgid "Tooltips only for TextFields" msgstr "Tooltip solo para TextFields" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1252 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1252 msgid "Delete phase" msgstr "Eliminar fase" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1252 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1252 msgid "Delete this phase." msgstr "Eliminar esta fase." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1261 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1261 msgid "Move phase up" msgstr "Mover fase hacia arriba" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1261 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1261 msgid "Move this phase up." msgstr "Mover esta fase hacia arriba." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1270 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1270 msgid "Move phase down" msgstr "Mover fase hacia abajo" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1270 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1270 msgid "Move this phase down." msgstr "Mover esta fase hacia abajo." -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:89 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:89 msgid "Element" msgstr "Elemento" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:152 msgid "network elements" msgstr "Elementos de la red" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:155 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:155 msgid "Additional elements" msgstr "Elementos adicionales" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:158 msgid "Shape elements" msgstr "Elementos de forma (shape)" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:161 msgid "TAZ elements" msgstr "Elementos de zona de análisis de tráfico (TAZ)" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:164 msgid "Wire elements" msgstr "Elementos de catenarias" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:167 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1833 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:167 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1835 msgid "Vehicles" msgstr "Vehículos" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:170 msgid "Stops" msgstr "Paradas" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:173 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1916 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:173 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1918 msgid "Persons" msgstr "Personas" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:176 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:176 msgid "Person plans" msgstr "Rutas de personas" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:182 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:182 msgid "Container plans" msgstr "Rutas de contenedores" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:185 msgid "Person trips" msgstr "Viajes de personas" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:188 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:188 msgid "Walks" msgstr "Caminatas" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:191 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:191 msgid "Rides" msgstr "Viajes" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:194 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:194 msgid "Person stops" msgstr "Paradas de personas" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:64 msgid "Delete geometry points" -msgstr "" +msgstr "Eliminar puntos geométricos" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:230 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:238 msgid "Protect Elements" +msgstr "Proteger elementos" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:240 +msgid "Protect all" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:232 -msgid "Protect additional elements" +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:240 +msgid "Protect all elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:235 -msgid "Protect TAZ elements" +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:242 +msgid "Unprotect all" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:238 -msgid "Protect demand elements" +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:242 +msgid "Unprotect all elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:241 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:244 +msgid "Protect additional elements" +msgstr "Proteger elementos adicionales" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:247 +msgid "Protect TAZ elements" +msgstr "Proteger zonas de análisis de tráfico (TAZ)" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:250 +msgid "Protect demand elements" +msgstr "Proteger elementos de demanda" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:253 msgid "Protect data elements" -msgstr "" +msgstr "Proteger elementos de datos" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEElementSet.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\common\GNEElementSet.cpp:48 msgid "Element Set" -msgstr "" +msgstr "Conjunto de elementos" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEElementSet.cpp:75 +#: D:\Repos\sumo/src\netedit\frames\common\GNEElementSet.cpp:75 msgid "Invalid supermode" -msgstr "" +msgstr "Supermodo inválido" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:100 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:96 msgid "Mark as front element" -msgstr "" +msgstr "Marcar como elemento frontal" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:181 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:310 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:177 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:306 msgid "Set new parent" -msgstr "" +msgstr "Establecer nuevo ancestro" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:372 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:368 msgid "" "- Mark as front element: Mark element as front element (Will be drawn over " "all other elements)\n" msgstr "" +"- Marcar como elemento frontal: Marcar elemento como elemento frontal (Se " +"dibujará sobre el rsto de elementos)\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:373 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:369 msgid "- Block movement: disable movement in move mode\n" -msgstr "" +msgstr "- Bloquear movimiento. Desactiva el movimiento en modo de movimiento\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:374 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:370 msgid "" "- Block shape: Disable moving of shape's vertices and edges. Entire shape " "can be moved'.\n" msgstr "" +"- Bloquear forma: Desactiva el movimiento de los vertices y aristas de la " +"forma. La forma no se puede mover.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:375 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:371 msgid "" "- Close shape: Add or remove the last vertex with the same position of first " "edge'." msgstr "" +"- Cerrar forma: Añadir o eliminar el último vertice con la misma posición " +"que el primer vértice." -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:402 msgid "GEO Attributes" -msgstr "" +msgstr "Atributos GEO" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:470 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:90 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:466 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:91 msgid "No geo-conversion defined" -msgstr "" +msgstr "No se ha definidio una geo-conversión" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:551 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:547 msgid " SUMO uses the World Geodetic System 84 (WGS84/UTM).\n" -msgstr "" +msgstr " SUMO usa el sistema geodésico mundial System 84 (WGS84/UTM).\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:552 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:548 msgid "" " For a GEO-referenced network, geo coordinates are represented as pairs of " "Longitude and Latitude\n" msgstr "" +" Para una red GEO referenciada, las coordenadas geo se representan como " +"pares de longitud y latitud\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:553 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:549 msgid " in decimal degrees without extra symbols. (N,W..)\n" -msgstr "" +msgstr " en grados decimales sin símblolos extra. (N,W...)\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:554 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:550 msgid " - Longitude: East-west position of a point on the Earth's surface.\n" msgstr "" +" - Longitud: posición este-oeste de un punto en la superficie de la tierra.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:551 msgid " - Latitude: North-south position of a point on the Earth's surface.\n" msgstr "" +" - Latitud: Posición norte-sur de un punto sobre la superficie de la " +"tierra.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:556 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:552 msgid "" " - CheckBox 'geo' enables or disables saving position in GEO coordinates\n" -msgstr "" +msgstr " - El botón 'geo' activa o desactiva el guardado de las coordenadas\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:570 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:566 msgid "Templates" -msgstr "" +msgstr "Plantillas" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:574 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:570 msgid "Set as Template" -msgstr "" +msgstr "Usar como plantilla" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:578 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:574 msgid "clear Edge Template" -msgstr "" +msgstr "Limpiar plantilla de calle (edge)" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:673 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:669 msgid "Only one edge must be inspected" -msgstr "" +msgstr "Solo una calle (edge) se puede inspeccionar" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:737 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:733 msgid "No edge Template Set" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:749 -msgid "Parameters" -msgstr "" +msgstr "No se ha establecido una plantilla de calle (edge)" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:908 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:745 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:748 msgid "Additional dialog" -msgstr "" +msgstr "Ventana adicional" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:927 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:764 msgid "Open rerouter dialog" -msgstr "" +msgstr "Abrir ventana para rerouters" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:933 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:770 msgid "Open calibrator dialog" -msgstr "" +msgstr "Abrir ventana para calibradores" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:939 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:776 msgid "Open calibrator lane dialog" -msgstr "" +msgstr "Abrir ventan para calibratos sobre carril (lane)" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:945 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:782 msgid "Open VSS dialog" -msgstr "" +msgstr "Abrir ventana para VSS" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:58 msgid "Apply selection" -msgstr "" +msgstr "Aplicar selección" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:112 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:112 msgid "Unknown set" -msgstr "" +msgstr "Conjunto desconocido" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:270 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:270 msgid "" "- The 'Match Attribute' controls allow to specify a set of objects which are " "then applied to the current selection\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:271 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:460 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:271 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:460 msgid " according to the current 'Modification Mode'.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:272 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:461 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:272 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:461 msgid " 1. Select an object type from the first input box\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:273 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:462 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:273 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:462 msgid " 2. Select an attribute from the second input box\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:274 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:463 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:463 msgid "" " 3. Enter a 'match expression' in the third input box and press " "\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:276 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:465 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:276 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:465 msgid "- The empty expression matches all objects\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:277 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:466 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:277 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:466 msgid "" "- For numerical attributes the match expression must consist of a comparison " "operator ('<', '>', '=') and a number.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:278 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:467 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:278 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:467 msgid "" "- An object matches if the comparison between its attribute and the given " "number by the given operator evaluates to 'true'\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:280 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:469 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:469 msgid "" "- For string attributes the match expression must consist of a comparison " "operator ('', '=', '!', '^') and a string.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:281 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:470 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:470 msgid "" " '' (no operator) matches if string is a substring of that object'ts " "attribute.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:282 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:471 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:471 msgid " '=' matches if string is an exact match.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:283 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:472 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:283 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:472 msgid " '!' matches if string is not a substring.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:284 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:473 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:284 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:473 msgid " '^' matches if string is not an exact match.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:286 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:475 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:286 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:475 msgid "- Examples:\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:287 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:476 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:287 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:476 msgid "" " junction; id; 'foo' -> match all junctions that have 'foo' in their id\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:288 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:477 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:288 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:477 msgid "" " junction; type; '=priority' -> match all junctions of type 'priority', " "but not of type 'priority_stop'\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:289 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:478 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:289 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:478 msgid " edge; speed; '>10' -> match all edges with a speed above 10\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:87 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:87 msgid "speed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:459 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:459 msgid "" "- The 'MatchGenericData Attribute' controls allow to specify a set of " "objects which are then applied to the current selection\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:64 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:65 msgid "Common move options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:66 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:67 msgid "Allow change lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:70 msgid "Merge geometry points" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:93 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:94 msgid "Network move options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:96 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:97 msgid "Move whole polygons" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:132 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:133 msgid "Demand move options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:135 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:136 msgid "Leave stopPersons connected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:172 msgid "Shift selected edges geometry" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:180 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:181 msgid "Apply shift value" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:180 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:181 msgid "" "Shift edge geometry orthogonally to driving direction for all selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:251 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:252 msgid "Change Z in selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:261 msgid "Absolute value" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:261 msgid "Set Z value as absolute" -msgstr "" +msgstr "Establecer valor Z como absoluto" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:262 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:263 msgid "Relative value" -msgstr "" +msgstr "Valor relativo" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:262 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:263 msgid "Set Z value as relative" -msgstr "" +msgstr "Establecer valor Z como relativo" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:265 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:266 msgid "Apply Z value" -msgstr "" +msgstr "Aplicar valor Z" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:265 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:266 msgid "Apply Z value to all selected junctions" -msgstr "" +msgstr "Aplicar valor Z a todos los cruces (junctions) seleccionados" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:518 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:518 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:534 msgid "Shift shape geometry" -msgstr "" +msgstr "Variar forma de la geometría" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:534 msgid "" "Shift shape geometry orthogonally to driving direction for all selected " "shapes" msgstr "" +"Variar forma de la geometría ortogonalmente en la dirección establecida para " +"todas las formas seleccionadas" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:619 -msgid "-Click over edge to" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:616 +msgid "Click over edge to create or edit geometry point." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:620 -msgid " create or edit" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:616 +msgid "Shift+click over edge to edit start or end geometry point." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:621 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:624 -msgid " geometry point." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:622 -msgid "-Shift+click over edge" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:623 -msgid " to edit start or end" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:628 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:618 msgid "-Move geometry point" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:631 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:621 msgid "-Merge geometry point" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:78 msgid "Selection information" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:149 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:150 msgid "Modification Mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:153 msgid "add" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:153 msgid "Selected objects are added to the previous selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:154 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:155 msgid "remove" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:154 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:155 msgid "Selected objects are removed from the previous selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:156 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:662 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:157 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:661 msgid "keep" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:156 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:157 msgid "Restrict previous selection by the current selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:159 msgid "replace" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:159 msgid "Replace previous selection by the current selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:213 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:214 msgid "Visual Scaling" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:243 msgid "Selection operations" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:251 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:252 msgid "Deselect all objects (hotkey: ESC)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:253 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:254 msgid "Invert" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:253 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:254 msgid "Invert selection status of all objects" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:255 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:256 msgid "Save ids of currently selected objects to a file." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:257 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:258 msgid "Load ids from a file according to the current modification mode." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:259 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:260 msgid "Delete all selected objects (hotkey: DEL)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:261 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:262 msgid "Reduce" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:261 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:262 msgid "Reduce network to current selection." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:275 msgid "Could not open '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:320 -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:125 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:324 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:125 msgid "Open List of Selected Items" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:338 -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:148 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:342 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:148 msgid "Save List of selected Items" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1120 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1124 msgid "Hierarchy operations" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1131 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1141 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1135 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1145 msgid "Select" -msgstr "" +msgstr "Seleccionar" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1133 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1143 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1137 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1147 msgid "Unselect" -msgstr "" +msgstr "Deseleccionar" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEEdgeDataFrame.cpp:51 +#: D:\Repos\sumo/src\netedit\frames\data\GNEEdgeDataFrame.cpp:51 msgid "There is already a % in edge '%'" -msgstr "" +msgstr "Ya hay un % en la calle (edge) '%'" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:69 msgid "DataSet" -msgstr "" +msgstr "Set de datos" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:72 msgid "Create new dataSet" -msgstr "" +msgstr "Crear nuevo set de datos" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:83 msgid "Create dataSet" -msgstr "" +msgstr "Crear set de datos" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:140 msgid "Invalid dataSet ID" -msgstr "" +msgstr "ID del set de datos inválido" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:142 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:142 msgid "Invalid empty dataSet ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:144 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:144 msgid "Invalid duplicated dataSet ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:198 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:198 msgid "Interval" -msgstr "" +msgstr "Intervalo" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:201 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:201 msgid "Create new interval" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:219 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:219 msgid "create interval" -msgstr "" +msgstr "crear intervalo" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:392 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:393 msgid "Data attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:68 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:68 msgid "MeanData Type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:161 msgid "MeanData Editor" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:164 msgid "Create MeanData" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:167 msgid "Delete MeanData" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:170 msgid "Copy MeanData" -msgstr "" +msgstr "Copiar meanData" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:276 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:276 msgid "Current MeanData" -msgstr "" +msgstr "MeanData actual" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:54 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:54 msgid "Confirm TAZRelation" -msgstr "" +msgstr "Confirmar relación TAZ" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:56 msgid "Create TAZRelation" -msgstr "" +msgstr "Crear relación TAZ" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:56 msgid "Click fromTaz and toTaz (confirm hotkey )" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:58 msgid "Clear selection" -msgstr "" +msgstr "Limpiar selección" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:58 msgid "Clear selected TAZs (hotkey )" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:122 msgid "From TAZ" -msgstr "" +msgstr "Desde TAZ" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:128 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:128 msgid "To TAZ" -msgstr "" +msgstr "Hasta TAZ" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:177 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:177 #, c-format msgid "A % must be defined within an interval." -msgstr "" +msgstr "Un % debe ser definido dentro de un intervalo." -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:179 msgid "There is already a % defined in TAZ'%'." -msgstr "" +msgstr "Ya hay un % definido en la zona de análisis de tráfico (TAZ) '%'." -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:181 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:181 msgid "There is already a % defined between TAZ'%' and '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:117 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerPlanFrame.cpp:114 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerPlanFrame.cpp:114 msgid "Current selected container isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:122 msgid "Current selected container type isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:127 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerPlanFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:127 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerPlanFrame.cpp:119 msgid "Current selected container plan isn't valid." -msgstr "" +msgstr "El plan de contenedores seleccionado no es válido." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:242 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:275 msgid "VType with vClass == 'pedestrian' is oriented to pedestrians" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:244 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:244 msgid "VType with vClass != 'ignoring' is not oriented to containers" msgstr "" +"El VType con clase de vehículo (vClass)!= 'ignoring' no está orientado a " +"contenedores" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:267 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:267 msgid "Invalid container parameters." -msgstr "" +msgstr "Parametros del contenedor inválidos." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:117 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonPlanFrame.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonPlanFrame.cpp:140 msgid "Current selected person isn't valid." -msgstr "" +msgstr "La persna actual seleccionada no es válida." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:122 msgid "Current selected person type isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:127 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonPlanFrame.cpp:146 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:127 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonPlanFrame.cpp:146 msgid "Current selected person plan isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:250 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:287 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:250 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:277 msgid "VType with vClass == 'ignoring' is oriented to containers" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:252 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:252 msgid "VType with vClass != 'pedestrian' is not oriented to persons" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:275 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:275 msgid "Invalid person parameters." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNERouteFrame.cpp:52 +#: D:\Repos\sumo/src\netedit\frames\demand\GNERouteFrame.cpp:52 msgid "Route mode" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:78 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:85 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:92 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:99 -msgid "- Shift+Click to select parent\n" -msgstr "" +msgstr "Modo rutas" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:72 -msgid "- Click over a bus stop to\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:89 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:101 +msgid "Shift+Click to select parent" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:73 -msgid " create a stop." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:72 +msgid "Click over a bus stop to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:79 -msgid "- Click over a container stop\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:78 +msgid "Click over a train stop to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:80 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:87 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:94 -msgid " to create a stop." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:84 +msgid "Click over a container stop to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:86 -msgid "- Click over a charging station\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:90 +msgid "Click over a charging station to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:93 -msgid "- Click over a parking area\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:96 +msgid "Click over a parking area to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:100 -msgid "- Click over a lane to create\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:102 +msgid "Click over a lane to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:101 -msgid " a stop." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:106 +msgid "No stop parents in current network." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:105 -msgid "- No stop parents in current\n" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:106 -msgid " network." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:189 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:189 msgid "Selected Stop type isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:197 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:197 msgid "Selected % '%' as stop parent." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:200 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:200 msgid "Selected Stop parent isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:206 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:206 msgid "Current selected Stop parent isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:237 msgid "Current selected Stop type isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:336 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:352 msgid "Stop must be placed over a route's edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:349 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:365 msgid "Stop must be placed over an embedded route's edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:68 -msgid "Current Type" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:225 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:63 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:218 msgid "Type Editor" -msgstr "" +msgstr "Editor de tipos" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:228 -msgid "Create Type" +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:66 +msgid "Create type distribution" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:230 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:275 -msgid "Delete Type" +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:68 +msgid "Delete type distribution" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:232 -msgid "Copy Type" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:263 -msgid "Reset Type" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:420 -msgid "VType Distributions" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:423 -msgid "Show VType Distributions" +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:62 +msgid "Current Type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:93 -msgid "- Click over a route to\n" -msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:221 +msgid "Create Type" +msgstr "Crear tipo" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:72 -msgid " create a vehicle." -msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:223 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:268 +msgid "Delete Type" +msgstr "Eliminar tipo" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:76 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:81 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:98 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:103 -msgid "- Select two edges to\n" -msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:225 +msgid "Copy Type" +msgstr "Copiar tipo" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:77 -msgid " create a Trip." -msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:256 +msgid "Reset Type" +msgstr "Resetear tipo" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:82 -msgid " create a vehicle with\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:71 +msgid "Click over a route to create a vehicle." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:83 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:105 -msgid " embedded route." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:75 +msgid "Select two edges to create a trip." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:87 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:109 -msgid "- Select two junctions\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:79 +msgid "Select two edges to create a vehicle with embedded route." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:88 -msgid " to create a Trip." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:83 +msgid "Select two junctions to create a trip." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:94 -msgid " create a routeFlow." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:88 +msgid "Click over a route to create a routeFlow." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:99 -msgid " create a flow." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:92 +msgid "Select two edges to create a flow." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:104 -msgid " create a flow with\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:96 +msgid "Select two edges to create a flow with embedded route." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:110 -msgid " to create a flow." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:100 +msgid "Select two junctions to create a flow." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:191 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:181 msgid "Current selected vehicle isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:186 msgid "Current selected vehicle type isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:87 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:87 msgid "Current selected additional isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:156 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:156 msgid "E2 multilane detectors need at least two consecutive lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:282 msgid " must be selected before insertion of " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:312 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:312 msgid "Attribute '" -msgstr "" +msgstr "Atributo '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:312 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:312 msgid "' cannot be greater than attribute '" -msgstr "" +msgstr "' no puede ser mas grande que el atributo '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:329 -msgid "List ofe dges cannot be empty" +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:329 +msgid "List of edges cannot be empty" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:339 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:339 msgid "List of lanes cannot be empty" -msgstr "" +msgstr "La lista de carriles (lanes) no puede estar vacia" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:439 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:439 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:232 msgid "Currently unsupported. Create rerouter elements using rerouter dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:444 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:444 msgid "Currently unsupported. Create VSS steps using VSS dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:449 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:449 msgid "Currently unsupported. Create calibratorFlows using calibrator dialog" msgstr "" "Actualmente no está soportado. Crea calibratorFlows usando el cuadro de " "diálogo para calibradores" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:66 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:67 msgid "Lane" msgstr "Carril (lane)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:68 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:78 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:79 msgid "No lane selected" msgstr "No se ha seleccionado ningún carril (lane)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:80 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:81 msgid "Current Lane: " msgstr "Carril (lane) actual: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:89 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:395 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:90 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:396 msgid "Modifications" msgstr "Modificaciones" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:93 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:94 msgid "Discard connection modifications (Esc)" msgstr "Descartar modificaciones en las conexiones (Esc)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:96 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:97 msgid "Save connection modifications (Enter)" msgstr "Guardar modificaciones en las conexiones (Enter)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:100 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:101 msgid "Protect routes" msgstr "Proteger rutas" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:112 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:113 msgid "Changes reverted" msgstr "Cambios revertidos" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:129 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:130 msgid "Error saving connection operations" msgstr "Error guardando las operaciones de las conexiones" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:130 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:131 msgid "Connection edition cannot be saved because route '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:130 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:131 msgid "' is broken." msgstr "' está roto." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:138 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:139 msgid "Changes accepted" msgstr "Cambios guardados" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:151 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:152 msgid "Operations" msgstr "Operaciones" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:155 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:156 msgid "Select Dead Ends" msgstr "Seleccionar finales muertos" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:155 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:156 msgid "" "Selects all lanes that have no outgoing connection (clears previous " "selection)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:159 msgid "Select Dead Starts" msgstr "Seleccionar inicios muertos" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:159 msgid "" "Selects all lanes that have no incoming connection (clears previous " "selection)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:162 msgid "Select Conflicts" msgstr "Seleccionar conflictos" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:162 msgid "" "Selects all lanes with more than one incoming connection from the same edge " "(clears previous selection)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:165 msgid "Select Passing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:165 msgid "" "Selects all lanes with a connection that has has the 'pass' attribute set" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:168 msgid "Clear Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:168 msgid "Clears all connections of all selected objects" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:171 msgid "Reset Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:171 msgid "Recomputes connections at all selected junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:262 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:263 msgid "clear connections from selected lanes, edges and junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:289 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:290 msgid "reset connections from selected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:308 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:168 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2174 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:309 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:168 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2176 msgid "Selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:313 -msgid "-Hold while" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:314 -msgid " clicking to create" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:315 -msgid " unyielding connections" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:316 -msgid " (pass=true)." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:321 -msgid "-Hold while" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:322 -msgid " clicking to create " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:323 -msgid " conflicting connections" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:324 -msgid " (i.e. at zipper nodes" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:325 -msgid " or with incompatible" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:311 +msgid "" +"Hold while clicking to create unyielding connections (pass=true)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:326 -msgid " permissions" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:312 +msgid "" +"Hold while clicking to create conflicting connections (i.e. at zipper " +"nodes or with incompatible permissions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:342 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:326 msgid "Possible Target" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:347 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:331 msgid "Source lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:351 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:335 msgid "Target lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:355 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:339 msgid "Target (pass)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:359 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:343 msgid "Conflict" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:371 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:355 msgid "Edit Connections" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:437 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:421 msgid "modify connections" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:488 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:472 msgid "Pedestrian connections are generated automatically" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:490 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:474 msgid "Incompatible vehicle class permissions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:492 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:476 msgid "Another lane from the same edge already connects to that lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:500 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:484 msgid "Invalid target for connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:74 msgid "Template selector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:79 msgid "Create default edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:80 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:82 msgid "Disallow for pedestrians" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:82 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:84 msgid "Add sidewalk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:85 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:87 msgid "Use edgeType/template" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:93 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:437 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1245 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1310 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:439 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1247 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1312 msgid "Add" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:93 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:95 msgid "Add edge type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:96 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:98 msgid "Delete edge type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:99 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:101 msgid "Create from template" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:99 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:101 msgid "Create edgeType from template" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:318 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:367 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:320 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:369 msgid "create new edge type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:340 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:342 msgid "delete edge type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:405 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:407 msgid "template: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:429 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:431 msgid "LaneType selector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:437 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:439 msgid "Add lane type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:440 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:442 msgid "Delete lane type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:537 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:539 msgid "add laneType" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:574 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:576 msgid "remove laneType" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:623 -msgid "- ESC:" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:625 +msgid "ESC:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:624 -msgid " Deselect origin" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:626 +msgid "Deselect origin" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:625 -msgid "- Control+Click:" -msgstr "- Control+Click:" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:627 +msgid "Control+Click:" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:626 -msgid " Move view" -msgstr " Mover vista" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:628 +msgid "Move view" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:627 -msgid "- Shift+Click:" -msgstr "- Shift+Click:" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:629 +msgid "Shift+Click:" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:628 -msgid " Splits edge in both directions" -msgstr " Dividir calles (edges) en ambas direcciones" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:630 +msgid "Splits edge in both directions" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:629 -msgid "- Alt+Shift+Click:" -msgstr "- Alt+Shift+Click:" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:631 +msgid "Alt+Shift+Click:" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:630 -msgid " Splits edge in one direction" -msgstr " Dividir calle (edge) en una dirección" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:632 +msgid "Splits edge in one direction" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:643 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:645 msgid "Create Edge" msgstr "Crear calle (edge)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:667 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:669 msgid "Select either default edgeType or a custom edgeType or template" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:669 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:671 msgid "Invalid edge attributes" msgstr "Atributos de la calle inválidos" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:671 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:673 msgid "Invalid lane attributes" msgstr "Atributos del carril (lane) inválidos" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:682 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:747 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:749 msgid "create new edge" msgstr "crear nueva calle (edge)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:752 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:754 msgid "An edge with the same geometry already exists!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:755 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:757 msgid "Start- and endpoint for an edge must be distinct!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:70 msgid "Junction" msgstr "Cruce (junction)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:97 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:98 msgid "selection of edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:102 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:505 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:560 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:566 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:654 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:658 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:103 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:506 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:560 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:566 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:653 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:657 msgid "Use selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:105 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:106 msgid "Clear edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:108 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:109 msgid "Invert edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:197 msgid "Crossing parameters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:484 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1580 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1584 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:485 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1608 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1612 msgid "Create" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:487 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:488 msgid "Create crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:514 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:515 msgid "" "There is already another crossing with the same edges in the junction; " "Duplicated crossing aren't allowed." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:540 -msgid "-Click over junction to" +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:539 +msgid "Click over junction to mark candidate edges." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:541 -msgid " mark candidate edges." +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:539 +msgid "Click over candidate edges for selecting." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:542 -msgid "-Click over candidate" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:543 -msgid " edges for selecting." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:547 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:541 msgid " Candidate" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:551 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:545 msgid " Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:554 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:548 msgid " Invalid" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:567 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:561 msgid "Crossings" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:55 msgid "Selected connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:71 msgid "No Connection selected\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:74 msgid "- Junction: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:75 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:75 msgid "- From lane: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:76 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:76 msgid "- To lane: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:94 msgid "Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:95 msgid "Current selected connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:101 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:101 msgid "No conflict" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:102 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:102 msgid "No conflict with the selected connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:107 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:107 msgid "Yields" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:108 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:108 msgid "Connection yields the selected connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:113 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:113 msgid "Has right of way" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:114 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:114 msgid "Connection has right of way with the selected connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:119 msgid "Unregulated conflict" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:120 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:120 msgid "Connection has a unregulated conflict with the selected connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:125 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:125 msgid "Mutual conflict" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:126 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:126 msgid "Connection has a mutual conflict with the selected connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:175 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:175 msgid "Save prohibition modifications (Enter)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:179 msgid "Unselect connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:181 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:181 msgid "Unselect connection (Esc)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:229 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:229 msgid "Prohibitions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:57 msgid "GEO POI Creator" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:59 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:60 msgid "Format: Lon-Lat" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:61 msgid "Format: Lat-Lon" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:66 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:67 msgid "Center View after creation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:68 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:121 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:178 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:179 msgid "Create GEO POI (clipboard)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:136 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:141 msgid "Cartesian equivalence:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:72 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:141 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:142 msgid "- X = give valid longitude" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:73 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:142 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:143 msgid "- Y = give valid latitude" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:120 msgid "Create GEO POI" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:172 msgid "Using clipboard" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:330 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:228 +msgid "Shapes" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:331 msgid "POILane can be only placed over lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:374 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:375 msgid "Current selected shape isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:422 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:423 msgid "Polygon shape cannot be empty" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:153 msgid "TAZ" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:160 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:204 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:205 msgid "No TAZ selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:173 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:174 msgid "Current TAZ: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:336 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:337 msgid "Invalid TAZ Child" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:345 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:346 msgid "TAZ Statistics" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:348 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:891 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:349 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:888 msgid "Statistics" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:375 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1132 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:376 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1129 msgid "- Number of edges: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:376 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1137 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:377 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1134 msgid "- Min source: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:377 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1138 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:378 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1135 msgid "- Max source: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:378 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1139 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:379 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1136 msgid "- Average source: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:380 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1141 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:381 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1138 msgid "- Min sink: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:381 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1142 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:382 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1139 msgid "- Max sink: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:382 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1143 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:383 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1140 msgid "- Average sink: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:386 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:387 msgid "No TAZ Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:398 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:399 msgid "Confirm changes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:401 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:402 msgid "Cancel changes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:431 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:432 msgid "TAZ changes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:484 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:485 msgid "TAZ Sources/Sinks" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:490 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:491 msgid "Membership" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:491 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:492 msgid "Toggle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:496 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:497 msgid "New source" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:501 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:502 msgid "New sink" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:507 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:508 msgid "Set zero fringe prob." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:511 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:646 -msgid "- Toggle Membership:" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:512 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:647 -msgid " Create new Sources/Sinks" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:512 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:646 +msgid "Toggle Membership:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:513 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:648 -msgid " with given weights." +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:513 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:647 +msgid "Create new Sources/Sinks with given weights." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:563 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:656 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:655 msgid "Remove all edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:582 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:582 msgid "Remove all edges from selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:584 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:584 msgid "Add all edges to selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:588 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:588 msgid "Remove edge from selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:590 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:590 msgid "Add edge to selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:601 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:601 msgid "Remove " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:601 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:601 msgid " edges from to selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:603 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:603 msgid "Add " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:603 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:603 msgid " edges to selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:639 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:639 msgid "toggle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:669 -msgid "- Keep Membership:" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:668 +msgid "Keep Membership:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:670 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:668 msgid " Select Sources/Sinks." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:671 -msgid "- Press ESC to clear" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:672 -msgid " current selection." +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:669 +msgid "Press ESC to clear the current selection." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:849 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:846 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:849 msgid "Set weight 0 in " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:849 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:846 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:849 msgid " sources and " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:850 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:847 msgid " sinks from TAZ '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:853 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:850 msgid " sinks from " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:853 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:850 msgid " TAZs?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:855 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:868 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:865 msgid "Set zero fringe probabilities" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:857 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:854 msgid "set zero fringe probabilities" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:868 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:865 msgid "No source/sinks to update." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:878 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:875 msgid "Selection Statistics" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:882 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:879 msgid "Source" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:887 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:884 msgid "Sink" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:919 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:916 msgid "TAZEdgeColor already selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:951 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:948 msgid "edge wasn't found" msgstr "calle (edge) no encontrada" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:953 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:950 msgid "Invalid edge" msgstr "calle (edge) inválida" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1130 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1127 msgid "- Edge ID: " msgstr "- calle (edge) ID: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1165 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1162 msgid "TAZ parameters" msgstr "Parámetros de zona de análisis de tráfico (TAZ)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1190 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1187 msgid "Edges within" msgstr "calles (edges) interiores" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1191 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1298 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1188 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1295 msgid "use" msgstr "usar" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1300 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1297 msgid "not use" msgstr "no usar" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1330 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1327 msgid "Non TAZ Edge" msgstr "Sin calle (edge) en zona de análisis de tráfico (TAZ)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1334 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1331 msgid "Selected TAZ Edge" msgstr "calle (edge) de zona de análisis de tráfico (TAZ) seleccionada" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1339 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1336 msgid "Color by Source" msgstr "Color según fuente" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1341 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1338 msgid "Color by Sink" msgstr "Color según sumidero" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1343 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1340 msgid "Color by Source + Sink" msgstr "Color según fuente + sumidero" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1345 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1342 msgid "Color by Source - Sink" msgstr "Color según fuente - sumidero" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1448 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1445 msgid "TAZs" msgstr "Zonas de análisis de tráfico (TAZ)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1614 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1611 msgid "TAZ shape needs at least three points" msgstr "" "La forma de la zona de análisis de tráfico necesita al menos tres puntos" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:121 msgid "Edit Traffic Light" msgstr "Editar semáforo" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:183 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:185 msgid "Click over a junction to edit a TLS" msgstr "Haga click sobre un cruce para editar semáforos" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:195 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:197 msgid "Save TLS Changes" msgstr "Guardar cambios al semáforo" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:198 msgid "" "There is unsaved changes in current edited traffic light.\n" "Do you want to save it before changing mode?" @@ -11327,1424 +11592,1563 @@ "Hay cambios sin guardar en el semáforo actual\n" "¿Quiere guardarlos antes de cambiar de modo?" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:244 msgid "tlLogic '%', program '%' could not be built" msgstr "Lógica de semáforo '%', programa '%' no se puede crear" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:255 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2935 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:257 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2963 msgid "Loaded " msgstr "Cargado " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:255 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:257 msgid " programs" msgstr " programas" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:418 msgid "Invalid phase index" msgstr "Índice de fase inválido" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:512 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:514 msgid "modifying TLS definition" msgstr "modificación de definición de semáforo (TLS)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:526 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:528 msgid "Unsaved modifications. Abort or Save" msgstr "Cambios no guardados. Cancelar o guardar" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:546 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:548 msgid "Traffic light Attributes" msgstr "atributos de semáforo" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:557 msgid "parameters" msgstr "parámetros" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 msgid "Assign E1 detectors" msgstr "Asignar detector E1" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 msgid "Enable assign E1 mode" msgstr "Activar modo de asignación der E1s" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 msgid "Assign E1 detectors to the current TLS" msgstr "Asignar detector E1 al semáforo actual" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 msgid "Disable assign E1 mode" msgstr "Desactivar modo de asignación der E1s" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:879 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:881 msgid "Traffic Light" msgstr "Semáforo" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:884 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:945 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:886 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:955 msgid "Junction ID" msgstr "cruce (junction) ID" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:891 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:893 msgid "TLS ID" msgstr "Semáforo (TLS) ID" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 msgid "Join" msgstr "Juntar" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 msgid "Enable join mode" msgstr "Activar modo de unión" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 msgid "Join TLS and junctions in the current junction." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 msgid "Disable join mode" msgstr "Desactivar modo de unión" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 msgid "Disjoin" msgstr "Separar" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 msgid "Disjoin current TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 msgid "Disjoin current TLS." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:952 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:923 +msgid "Finish join." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:925 +msgid "Cancel Join." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:962 msgid "no junction selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:974 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:984 msgid "Junction IDs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1061 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1064 msgid "rename TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1140 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1143 msgid "change TLS type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1216 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1227 msgid "join TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1278 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1289 msgid "disjoin TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1340 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1368 msgid "Traffic Light Programs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1353 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1381 msgid "Create TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1353 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1381 msgid "Create a new traffic light program." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1356 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1384 msgid "" "Delete a traffic light program. If all programs are deleted the junction " "turns into a priority junction." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1359 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1387 msgid "Reset single" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1359 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1387 msgid "Reset current TLS program." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1362 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1390 msgid "Reset all" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1362 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1390 msgid "Reset all TLS programs." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1365 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1393 msgid "Save program modifications. (Enter)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1368 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1396 msgid "Discard program modifications. (Esc)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1463 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1491 msgid "TLSDefinition cannot be found" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1505 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1518 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1537 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1533 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1546 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1565 msgid "TLS cannot be created" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1506 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1534 msgid "Traffic Light cannot be created because junction must have" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1507 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1535 msgid "at least one incoming edge and one outgoing edge." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1519 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1538 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1547 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1566 msgid "Traffic Light cannot be created because junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1520 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1548 msgid "must have at least one connection." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1539 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1567 msgid "must have at least one controlled connection." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1582 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1610 msgid "Duplicate" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1622 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1650 msgid "reset current program" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1661 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1689 msgid "reset TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1822 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1850 msgid "duplicate program '%' of traffic light '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1868 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1896 msgid "Traffic light does not control any links" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1880 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1908 msgid "Phases" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1891 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1919 msgid "Clean States" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1892 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1920 msgid "Clean unused states from all phase" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1893 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1921 msgid "Clean unused states from all phase. (Not allowed for multiple programs)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1897 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1925 msgid "Add States" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1898 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1926 msgid "Extend the state vector for all phases by one entry" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1899 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1927 msgid "" "Extend the state vector for all phases by one entry. (Unused until a " "connection or crossing is assigned to the new index)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1903 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1931 msgid "Group Sig." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1904 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1932 msgid "" "Shorten state definition by letting connections with the same signal states " "use the same index" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1905 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1933 msgid "" "Shorten state definition by letting connections with the same signal states " "use the same index. (Not allowed for multiple programs)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1909 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1937 msgid "Ungroup Sig." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1910 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1938 msgid "Let every connection use a distinct index (reverse state grouping)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1939 msgid "" "Let every connection use a distinct index (reverse state grouping). (Not " "allowed for multiple programs)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2039 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2067 msgid "invalid column" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2598 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2626 msgid "Error deleting phase '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2870 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2898 msgid "TLS Program File" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2874 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2902 msgid "Load TLS program from additional file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2876 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2904 msgid "Save TLS program to additional file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2935 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2963 msgid " new programs for tlLogic '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2940 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2968 msgid "Updated program '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2940 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2968 msgid "' for tlLogic '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2944 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2972 msgid "No programs found for traffic light '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2963 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2991 msgid "Save TLS Program as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:75 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:75 msgid "Current selected wire isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:117 #, c-format msgid "A % needs at least two lane positions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:237 msgid "Currently unsupported. Create VSS steps elements using VSS dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/netedit_main.cpp:49 +#: D:\Repos\sumo/src\netedit\netedit_main.cpp:49 msgid "" "Graphical editor for SUMO networks, demand and additional infrastructure." msgstr "" "Editor gráfico para redes de SUMO, demanda e infraestructura adicional." -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:126 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:127 msgid "Original network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:129 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:130 msgid "Modified network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:132 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:133 msgid "Output prefix network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:136 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:137 msgid "Select modified elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:139 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:140 msgid "Select added elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:142 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:143 msgid "Select deleted elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:146 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:147 msgid "Load shapes for elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:149 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:150 msgid "Load shapes for added" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:152 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:153 msgid "Load shapes for deleted elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:165 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:166 msgid "load shapes from '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:169 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:170 msgid "Loading of shape file failed: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:172 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:173 msgid "Loading of shape file sucessfully: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:42 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:43 msgid "Execute python tool '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:153 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:177 #, c-format msgid "Loaded % configuration." msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:182 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:206 #, c-format msgid "Saved % configuration." msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:71 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:55 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:76 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:60 msgid "cancelled by user\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:102 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:86 -msgid "popen() failed!" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:114 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:98 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:119 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:103 msgid "starting process...\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:124 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:108 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:137 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:121 msgid "error processing command\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:136 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:120 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:152 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:136 msgid "process finished\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:142 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:125 -msgid "starting process silently...\n" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:75 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:75 msgid "&Load selection" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:77 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:77 msgid "&Save selection" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:81 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:81 msgid "&Deselect chosen" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:83 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:83 msgid "&Clear selection" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:87 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:87 msgid "Cl&ose" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:137 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:137 msgid "Errors while loading Selection" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:116 +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:116 msgid "Unknown object in GUISelectedStorage::select (id=%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:133 +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:133 msgid "Unknown object in GUISelectedStorage::deselect (id=%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:150 +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:150 msgid "Unknown object in GUISelectedStorage::toggleSelection (id=%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:74 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:74 msgid "Unknown format!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:91 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:91 msgid "Unknown codec, falling back to HEVC!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:95 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:95 msgid "Unknown codec!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:100 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:100 msgid "Could not allocate video codec context!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:136 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:136 msgid "Could not open codec!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:142 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:142 msgid "Could not allocate video frame!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:148 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:148 msgid "Could not allocate the video frame data!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:155 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:155 msgid "Failed to open output file!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:160 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:160 msgid "Failed to write file header!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:165 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:165 msgid "Could not allocate video packet!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:175 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:175 msgid "Error sending final frame!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:183 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:183 msgid "Error during final encoding step!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:214 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:214 msgid "Error sending frame for encoding!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:222 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:222 msgid "Error during encoding!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUIGLObjectPopupMenu.cpp:170 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGLObjectPopupMenu.cpp:170 msgid "Object must be a lane" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:87 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:285 +msgid "Copy name to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:286 +msgid "Copy typed name to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:296 +msgid "Remove From Selected" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:298 +msgid "Add To Selected" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:308 +msgid "Show Parameter" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:317 +msgid "Show Type Parameter" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:326 +msgid "Copy cursor position to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:328 +msgid "Copy cursor geo-position to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:332 +msgid "Show cursor geo-position in " +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:350 +msgid "Open Manipulator..." +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:389 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:412 +msgid "type: %" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:87 msgid "&Save changes" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:88 +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:88 msgid "&Don't save" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:89 +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:89 msgid "&Abort" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUIShapeContainer.cpp:56 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIShapeContainer.cpp:56 msgid "Replacing POI '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUIShapeContainer.cpp:81 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIShapeContainer.cpp:81 msgid "Replacing polygon '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/images/GUIIconSubSys.cpp:981 +#: D:\Repos\sumo/src\utils\gui\images\GUIIconSubSys.cpp:989 msgid "Instance was previously created" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/images/GUITextureSubSys.cpp:223 +#: D:\Repos\sumo/src\utils\gui\images\GUITextureSubSys.cpp:223 msgid "Undefined texture" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/images/VClassIcons.cpp:91 +#: D:\Repos\sumo/src\utils\gui\images\VClassIcons.cpp:91 msgid "Invalid vClass" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:77 +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:77 msgid "The 'value' attribute is deprecated for breakpoints. Please use 'time'." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:383 +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:383 msgid "The 'filename' attribute is deprecated for decals. Please use 'file'." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:559 +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:559 msgid " Could not decode breakpoint '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUIVisualizationSettings.cpp:2348 +#: D:\Repos\sumo/src\utils\gui\settings\GUIVisualizationSettings.cpp:2348 msgid "No color defined for LinkState '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:116 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:116 msgid "Save the data..." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:131 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:131 msgid "Multiplot" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:219 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:219 msgid "Save Data" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:85 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:85 msgid "Track" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:92 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:92 msgid "&Hide Unselected" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:93 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:93 msgid "By &Name" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:93 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:93 msgid "Locate item by name" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:94 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:94 msgid "&Select/deselect" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:94 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:94 msgid "Select/deselect current object" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:95 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:95 msgid "&Filter substring" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:96 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:96 msgid "Select &all" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:96 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:96 msgid "Select all items in list" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:97 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:97 msgid "&Deselect all" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:97 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:97 msgid "Deselect all items in list" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:98 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:98 msgid "&Update" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:98 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:98 msgid "Reload all ids" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:102 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:102 msgid "case-sensitive search" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:104 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:104 msgid "auto-center" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:329 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:329 #, c-format msgid "% objects" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:65 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:65 msgid "Load viewport from file" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:67 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:67 msgid "Save viewport to file" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:210 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:210 msgid "Load Viewport" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:229 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:229 msgid "Save Viewport" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:277 -msgid "Run tool" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:278 -msgid "Cancel tool" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:280 -msgid "Accept settings" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:87 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:87 msgid "View Settings" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:989 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:989 msgid "Enter a name" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:991 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:991 msgid "Please enter an alphanumeric name: " msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1070 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1070 msgid "Export view settings" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1121 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1121 msgid "Import view settings" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1138 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1155 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1138 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1155 msgid "Load Decals" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1172 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1172 msgid "Save Decals" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1242 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1307 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1244 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1309 msgid "No Data" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1246 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1311 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1248 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1313 msgid "Remove" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1569 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1614 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1571 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1616 msgid "Only for selected" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1571 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1573 msgid "constant text size" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1574 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1576 msgid "Size" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1579 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1692 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1730 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1851 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1933 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1973 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1999 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2119 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2154 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2217 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1581 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1694 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1732 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1853 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1935 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1975 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2001 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2121 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2156 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2219 msgid "Color" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1581 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1687 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1583 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1689 msgid "Background" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1612 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1614 msgid "Draw with constant size when zoomed out" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1617 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1619 msgid "Minimum Size" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1621 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1623 msgid "Exaggerate by" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1667 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1669 msgid "Save the setting to registry" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1668 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1670 msgid "Remove the setting from registry" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1669 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1671 msgid "Export setting to file" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1670 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1672 msgid "Load setting from file" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1673 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1675 msgid "Export includes:" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1674 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1676 msgid "Viewport" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1675 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1677 msgid "Delay" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1676 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1678 msgid "Decals" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1677 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1679 msgid "Breakpoints" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1696 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1698 msgid "Decals:" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1699 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1701 msgid "&Load XML Decals" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1700 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1702 msgid "&Save XML Decals" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1701 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1703 msgid "&Clear Decals" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1706 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1708 msgid "Toggle grid" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1710 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1712 msgid "x-spacing" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1715 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1717 msgid "y-spacing" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1724 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1726 msgid "Streets" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1732 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1761 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1855 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1868 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1937 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1977 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2003 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2123 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2158 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2219 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1734 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1763 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1857 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1870 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1939 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1979 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2005 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2125 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2160 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2221 msgid "Interpolate" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1744 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2006 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2229 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1746 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2008 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2231 msgid "Recalibrate Rainbow" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1746 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1748 msgid "hide below" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1750 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1752 msgid "hide above" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1759 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1761 msgid "Scale width" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1782 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1784 msgid "Show bike markings" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1784 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1786 msgid "Show turning arrows" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1787 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1789 msgid "Show right-of-way rules" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1789 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1791 msgid "Realistic stop line colors" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1792 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1794 msgid "Show lane borders" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1794 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1796 msgid "Show lane direction" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1797 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1799 msgid "Hide macro connectors" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1799 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1801 msgid "Show sublanes" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1802 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1804 msgid "Show rails" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1804 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1806 msgid "Spread bidirectional railways/roads" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1804 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1806 msgid "" "Make both directional edges for a bidirectional railways or roads visible" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1807 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1809 msgid "Secondary shape" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1812 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1814 msgid "Exaggerate width by" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1818 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1820 msgid "Minimum size" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1824 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1826 msgid "Show edge id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1825 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1827 msgid "Show street name" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1826 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1828 msgid "Show edge color value" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1827 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1829 msgid "Show edge scale value" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1838 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1921 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1961 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1840 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1923 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1963 msgid "Show As" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1840 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1923 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1963 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1842 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1925 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1965 msgid "'triangles'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1841 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1964 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1843 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1966 msgid "'boxes'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1842 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1925 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1965 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1844 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1927 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1967 msgid "'simple shapes'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1843 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1926 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1966 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1845 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1928 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1968 msgid "'raster images'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1844 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1924 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1846 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1926 msgid "'circles'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1866 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1868 msgid "Scale size" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1875 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1877 msgid "Show vehicle id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1876 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1878 msgid "Show vehicle color value" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1877 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1879 msgid "Show vehicle scale value" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1878 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1880 msgid "Show vehicle text param" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1885 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1887 msgid "Show blinker / brake lights" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1887 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1889 msgid "Show minimum gap" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1889 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1891 msgid "Show brake gap" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1891 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1893 msgid "Show Bluetooth range" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1893 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1895 msgid "Show route index" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1895 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1897 msgid "Scale length with geometry" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1897 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1899 msgid "Show parking info" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1899 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1901 msgid "Draw reversed vehicles in reverse" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1944 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1946 msgid "Show person id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1945 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1947 msgid "Show person color value" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1956 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1958 msgid "Containers" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1984 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1986 msgid "Show container id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1995 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1997 msgid "Junctions" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2012 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2014 msgid "Draw junction shape" -msgstr "" +msgstr "Dibujar forma para el cruce (junction)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2014 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2016 msgid "Draw crossings/walkingareas" -msgstr "" +msgstr "Dibujar pasos (crossings) / áreas (WalkingArea) peatonales" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2016 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2018 msgid "Show lane to lane connections" -msgstr "" +msgstr "Mostrar conexiones carril (lane) a carril" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2020 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2022 msgid "Show link tls index" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2021 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2023 msgid "Show link junction index" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2022 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2024 msgid "Show junction id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2023 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2025 msgid "Show internal junction id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2024 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2026 msgid "Show internal edge id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2025 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2027 msgid "Show crossing and walkingarea id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2026 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2028 msgid "Show traffic light phase index" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2027 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2029 msgid "Show traffic light phase name" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2028 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2030 msgid "Show junction name" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2034 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2036 msgid "Additional" msgstr "Elemento adicional" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2039 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2041 msgid "Show object id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2040 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2042 msgid "Show full name" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2047 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2049 msgid "StoppingPlace" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2048 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2050 msgid "body" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2049 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2051 msgid "sign" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2072 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2074 msgid "element" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2073 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2075 msgid "color" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2074 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2076 msgid "width" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2114 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2116 msgid "POIs" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2130 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2132 msgid "POI detail" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2135 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2137 msgid "Show poi id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2136 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2138 msgid "Show poi type" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2137 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2139 msgid "Show poi text param" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2149 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2151 msgid "Polygons" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2164 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2166 msgid "Show polygon id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2165 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2167 msgid "Show polygon types" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2179 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2181 msgid "Default Selection Color" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2182 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2184 msgid "Miscellaneous" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2231 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2233 msgid "hide below threshold" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2238 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2240 msgid "Exaggerate edgeRelation width by" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2243 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2245 msgid "Exaggerate tazRelation width by" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2249 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2251 msgid "Show data color value" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2255 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2257 msgid "Legend" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2260 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2262 msgid "Show Size Legend" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2263 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2265 msgid "Show Edge Color Legend" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2266 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2268 msgid "Show Vehicle Color Legend" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2279 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2281 msgid "Dither" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2285 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2287 msgid "Draw boundaries" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2288 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2290 msgid "Force draw for position selection" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2291 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2293 msgid "Force draw for rectangle selection" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2294 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2296 msgid "Disable dotted contours during selection/deletion" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2297 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2299 msgid "Recalculate boundaries" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2300 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2302 msgid "Show geometry point indices" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2306 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2308 msgid "3D view" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2311 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2313 msgid "Show TLS link markers" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2314 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2316 msgid "Show domes around TLS models from decals" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2317 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2319 msgid "Show auto-generated TLS models" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2319 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2321 msgid "Show head-up display" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2325 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2327 msgid "Sun brightness" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2337 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2339 msgid "Sky color" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:120 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:120 msgid "Recenter View" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:120 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:120 msgid "Recenter view to the simulated area." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:124 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:124 msgid "Opens a menu which lets you edit the viewport. (Ctrl+I)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:128 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:128 msgid "Toggle Zooming Style" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:128 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:128 msgid "" "Toggles whether zooming is based at cursor position or at the center of the " "view." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:135 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:135 msgid "Locate Structures" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:135 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:135 msgid "Locate structures within the network." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:139 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:139 msgid "Toggle View Tooltips" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:139 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:139 msgid "Toggles whether tooltips in the view shall be shown." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:145 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:145 msgid "Toggle Menu Tooltips" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:145 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:145 msgid "Toggles whether tooltips in the menu shall be shown." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:161 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:161 msgid "Edit Coloring Schemes" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:161 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:161 msgid "Opens a menu which lets you edit the coloring schemes. (F9)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:172 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:172 msgid "Make Snapshot" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:172 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:172 msgid "Makes a snapshot of the view." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:294 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:294 msgid "option window-size requires INT,INT" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:311 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:311 msgid "option window-pos requires INT,INT" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:340 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:340 msgid "Langua&ge" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:342 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:342 msgid "Change language to english. (en)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:344 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:344 msgid "Change language to german. (de)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:346 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:346 msgid "Change language to spanish. (es)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:348 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:348 msgid "Change language to french. (fr)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:350 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:350 msgid "Change language to italian. (it)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:352 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:352 msgid "简体中文 (zh)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:354 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:354 msgid "繁體中文 (zh-Hant)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:356 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:356 msgid "Change language to turkish. (tr)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:358 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:358 msgid "Change language to hungarian. (hu)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:372 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:372 msgid "german" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:376 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:376 msgid "spanish" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:380 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:380 msgid "french" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:384 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:384 msgid "italian" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:388 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:388 msgid "chinese" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:392 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:392 msgid "chinese simplified" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:396 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:396 msgid "turkish" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:400 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:400 msgid "hungarian" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:404 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:404 msgid "english" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:412 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:412 msgid "Language changed to " msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:414 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:414 msgid "Restart needed" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:415 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:415 msgid "Changing display language needs restart to take effect." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:418 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:418 msgid "" "For the Debug build you might also need to set the LANG environment variable." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:421 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:421 msgid "Under development. You can help to improve the translation at:" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:254 +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:254 msgid " (No projection defined)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:1738 +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:1747 msgid "Could not convert coordinates in %." msgstr "" +#~ msgid "Mode for creating person plans. (C)" +#~ msgstr "Modo para crear planes para personas. (C)" + +#~ msgid "Mode for creating containers. (P)" +#~ msgstr "Modo para crear contenedores (P)" + +#~ msgid "Undo enable " +#~ msgstr "Deshacer activar " + +#~ msgid " attribute in '" +#~ msgstr " atributo en '" + +#~ msgid "Redo enable " +#~ msgstr "Rehacer activar " + +#~ msgid "Copy " +#~ msgstr "Copiar " + +#~ msgid " name to clipboard" +#~ msgstr " nombre al portapapeles" + +#~ msgid " typed name to clipboard" +#~ msgstr " nombre y tipo al portapapeles" + +#~ msgid "Could not build access in netedit; The lane '" +#~ msgstr "No se puede crear el acceso en Netedit. El carril (lane) '" + +#~ msgid "' doesn't support pedestrians" +#~ msgstr "' no permite peatones" + +#~ msgid "Could not build parking area with ID '" +#~ msgstr "No se puede crear el area de estacionamiento con ID '" + +#~ msgid "' in netedit; Invalid departPos over lane." +#~ msgstr "' en Netedit. Posición de inicio inválida sobre el carril (lane)." + +#~ msgid "Could not build TAZ with ID '" +#~ msgstr "No se puede crear la zona de análisis de tráfico (TAZ) con ID '" + +#~ msgid "' in netedit; Invalid Shape." +#~ msgstr "' en netedit. Forma inválida." + +#~ msgid " in netedit; edge doesn't exist." +#~ msgstr " en netedit; la calle (edge) no existe." + +#~ msgid " in netedit; attribute '" +#~ msgstr " en netedit; atributo '" + +#~ msgid "- 'Start drawing' or ENTER" +#~ msgstr "- 'Comenzar dibujado' o ENTER" + +#~ msgid " to create shape." +#~ msgstr " para crear la forma." + +#~ msgid "- 'Stop drawing' or ENTER to" +#~ msgstr "- 'Dejar de dibujar' o ENTER para" + +#~ msgid " finish shape creation." +#~ msgstr " finalizar la creación de la forma." + +#~ msgid "- 'Abort drawing' or ESC to" +#~ msgstr "- 'Detener dibujado' o ESC para" + +#~ msgid " abort shape creation." +#~ msgstr " detener la creación de la forma." + +#~ msgid "- 'Shift + Click' to remove" +#~ msgstr "- 'Shift + Click' para eliminar" + +#~ msgid " last inserted point." +#~ msgstr " el último punto creado." + +#~ msgid "-Click over edge to" +#~ msgstr "-Click sobre una calle (edge) para" + +#~ msgid " create or edit" +#~ msgstr " crear o editar" + +#~ msgid " geometry point." +#~ msgstr " punto geométrico." + +#~ msgid "- Select two junctions\n" +#~ msgstr "- Seleccionar dos cruces (junctions)\n" + +#~ msgid " to create a Trip." +#~ msgstr " para crear un viaje (trip)." + +#~ msgid "List ofe dges cannot be empty" +#~ msgstr "La lista de calles (edges) no puede estar vacia" + +#~ msgid "- Control+Click:" +#~ msgstr "- Control+Click:" + +#~ msgid " Move view" +#~ msgstr " Mover vista" + +#~ msgid "- Shift+Click:" +#~ msgstr "- Shift+Click:" + +#~ msgid " Splits edge in both directions" +#~ msgstr " Dividir calles (edges) en ambas direcciones" + +#~ msgid "- Alt+Shift+Click:" +#~ msgstr "- Alt+Shift+Click:" + +#~ msgid " Splits edge in one direction" +#~ msgstr " Dividir calle (edge) en una dirección" + #~ msgid "Configure Options" #~ msgstr "Configurar opciones" diff -Nru sumo-1.17.0/data/po/es_py.po sumo-1.18.0/data/po/es_py.po --- sumo-1.17.0/data/po/es_py.po 1970-01-01 00:00:00.000000000 +0000 +++ sumo-1.18.0/data/po/es_py.po 2023-06-28 20:02:17.000000000 +0000 @@ -0,0 +1,136 @@ +# Spanish translations for sumo package. +# Copyright (C) 2023 THE sumo'S COPYRIGHT HOLDER +# This file is distributed under the same license as the sumo package. +# Automatically generated, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: sumo\n" +"Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" +"POT-Creation-Date: 2023-05-26 14:09+0200\n" +"PO-Revision-Date: 2023-06-15 09:26+0000\n" +"Last-Translator: Mirko Barthauer \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18\n" + +#: D:\Repos\sumo/tools/game\runner.py:63 +msgid "Interactive Traffic Light" +msgstr "Juego interactivo de semáforos" + +#: D:\Repos\sumo/tools/game\runner.py:64 +msgid "Research intersection Ingolstadt" +msgstr "Intersección de investigación Ingolstadt" + +#: D:\Repos\sumo/tools/game\runner.py:65 +msgid "Simple Junction" +msgstr "Intersección simple" + +#: D:\Repos\sumo/tools/game\runner.py:66 +msgid "Simple Junction (Demo)" +msgstr "Intersección simple (Demo)" + +#: D:\Repos\sumo/tools/game\runner.py:67 +msgid "Four Junctions" +msgstr "Cuatro intersecciones" + +#: D:\Repos\sumo/tools/game\runner.py:68 +msgid "Six Junctions" +msgstr "Seis intersecciones" + +#: D:\Repos\sumo/tools/game\runner.py:69 +msgid "Prof. Kühne" +msgstr "Prof. Kühne" + +#: D:\Repos\sumo/tools/game\runner.py:70 +msgid "3D Junction Virtual World" +msgstr "Intersección en 3D - mundo virtual" + +#: D:\Repos\sumo/tools/game\runner.py:71 +msgid "3D Junction OpenStreetMap" +msgstr "Intersección en 3D - OpenStreetMap" + +#: D:\Repos\sumo/tools/game\runner.py:72 +msgid "Highway Ramp" +msgstr "Entrada a la autopista" + +#: D:\Repos\sumo/tools/game\runner.py:73 +msgid "Combined Highway On and Off Ramp" +msgstr "Acceso combinado de entrada y salida a la autopista" + +#: D:\Repos\sumo/tools/game\runner.py:74 +msgid "Corridor" +msgstr "Trayecto" + +#: D:\Repos\sumo/tools/game\runner.py:75 +msgid "Highway Ramp A10" +msgstr "Rampa de la autopista A10" + +#: D:\Repos\sumo/tools/game\runner.py:76 +msgid "Demand Responsive Transport (new)" +msgstr "Transporte a demanda (nuevo)" + +#: D:\Repos\sumo/tools/game\runner.py:77 +msgid "DRT - Advanced (new)" +msgstr "Transporte a demanda - avanzado (nuevo)" + +#: D:\Repos\sumo/tools/game\runner.py:78 +msgid "DRT - Demo" +msgstr "Transporte a demanda - Demo" + +#: D:\Repos\sumo/tools/game\runner.py:79 D:\Repos\sumo/tools/game\runner.py:89 +msgid "Highscore" +msgstr "Puntuaciones" + +#: D:\Repos\sumo/tools/game\runner.py:80 +msgid "Reset Highscore" +msgstr "Restablecer puntuaciones" + +#: D:\Repos\sumo/tools/game\runner.py:81 +msgid "German" +msgstr "Alemán" + +#: D:\Repos\sumo/tools/game\runner.py:82 +msgid "English" +msgstr "Inglés" + +#: D:\Repos\sumo/tools/game\runner.py:83 +msgid "Italian" +msgstr "Italiano" + +#: D:\Repos\sumo/tools/game\runner.py:84 +msgid "Spanish" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:85 +msgid "French" +msgstr "Francés" + +#: D:\Repos\sumo/tools/game\runner.py:86 +msgid "Chinese (simplified)" +msgstr "Chino (simplificado)" + +#: D:\Repos\sumo/tools/game\runner.py:87 +msgid "Chinese (traditional)" +msgstr "Chino (tradicional)" + +#: D:\Repos\sumo/tools/game\runner.py:88 +msgid "Quit" +msgstr "Salir" + +#: D:\Repos\sumo/tools/game\runner.py:90 +msgid "Congratulations!" +msgstr "¡Felicitaciones!" + +#: D:\Repos\sumo/tools/game\runner.py:91 +msgid "Your Score" +msgstr "Tu puntaje" + +#: D:\Repos\sumo/tools/game\runner.py:92 +msgid "Continue" +msgstr "Continuar" diff -Nru sumo-1.17.0/data/po/es_sumo.po sumo-1.18.0/data/po/es_sumo.po --- sumo-1.17.0/data/po/es_sumo.po 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/po/es_sumo.po 2023-06-28 20:02:17.000000000 +0000 @@ -7,9 +7,9 @@ msgstr "" "Project-Id-Version: sumo\n" "Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" -"POT-Creation-Date: 2023-04-15 12:21+0200\n" -"PO-Revision-Date: 2023-02-21 13:12+0000\n" -"Last-Translator: Angelo Banse \n" +"POT-Creation-Date: 2023-06-15 09:59+0200\n" +"PO-Revision-Date: 2023-05-10 11:50+0000\n" +"Last-Translator: Pablo Alvarez Lopez \n" "Language-Team: Spanish \n" "Language: es\n" @@ -17,103 +17,108 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.16-dev\n" +"X-Generator: Weblate 4.18-dev\n" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:46 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:46 msgid "Reading input" msgstr "Leyendo entrada de datos" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:54 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:54 msgid "Consolidating statistics" msgstr "Consolidando estadísticas" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:58 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:58 msgid "Building street representation" msgstr "Creando la representación de las calles" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:62 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:62 msgid "Generating work positions" msgstr "Generando puestos de trabajo" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:66 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:66 msgid "Building bus lines" msgstr "Creando lineas de bus" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:71 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:71 msgid "Generating population" msgstr "generando población" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:75 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:75 msgid "Allocating schools" msgstr "Asignando escuelas" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:79 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:79 msgid "Allocating work places" msgstr "Asignado puestos de trabajo" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:83 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:83 msgid "Allocating car places" msgstr "Asignando lugares para vehículos" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGenHandler.cpp:178 +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:174 +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:181 +msgid "Invalid % value of edge % is treated as zero." +msgstr "" + +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:186 #, c-format msgid "Edge '%' is not known." msgstr "Calle (edge) '%' desconocida." -#: /home/micha/programming/sumo/src/activitygen/AGActivityGenHandler.cpp:329 +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:337 msgid "Unknown bus station '%'." msgstr "Estación de bus '%' desconocida." -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:61 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:61 msgid "Use FILE as SUMO-network to create trips for" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:64 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:64 msgid "Loads the SUMO-statistics FILE" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:72 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:72 msgid "Write generated trips to FILE" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:81 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:81 msgid "" "Sets the time of beginning of the simulation during the first day (in " "seconds)" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:84 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:84 msgid "" "Sets the time of ending of the simulation during the last day (in seconds)" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:87 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:87 msgid "Sets the duration of the simulation in days" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:64 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:111 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:64 +#: D:\Repos\sumo/src\router\ROLoader.cpp:111 msgid "Missing definition of network to load!" msgstr "No hay una red para cargar!" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:67 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:67 #, c-format msgid "The network file '%' could not be accessed." msgstr "No se tiene acceso al archivo de red '%'." -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:69 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:116 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:69 +#: D:\Repos\sumo/src\router\ROLoader.cpp:116 msgid "Loading net" msgstr "Cargando red" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:79 -#: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:227 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:133 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:79 +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:227 +#: D:\Repos\sumo/src\router\ROLoader.cpp:133 #, c-format msgid "Deprecated vehicle classes '%' in input network." msgstr "La clase del vehículo '%' de la red de entrada es obsoleta." -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:89 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:89 msgid "" "Generates trips of persons throughout a day for the microscopic, multi-modal " "traffic simulation SUMO." @@ -121,1031 +126,1028 @@ "Genera viajes de personas a lo largo de un día para la herramienta de " "simulación microscópica de tráfico multimodal SUMO." -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:113 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:113 #, c-format msgid "Loaded % edges." msgstr "Cargadas % calles (edges)." -#: /home/micha/programming/sumo/src/activitygen/city/AGCity.cpp:427 +#: D:\Repos\sumo/src\activitygen\city\AGCity.cpp:425 msgid "No street that allows passenger vehicles found in this city." msgstr "" "No se encuentran calles que permitan el tránsito de vehículos de pasajeros " "en esta ciudad." -#: /home/micha/programming/sumo/src/activitygen/city/AGWorkPosition.cpp:126 +#: D:\Repos\sumo/src\activitygen\city\AGWorkPosition.cpp:126 msgid "Work position already occupied. Cannot give it to another adult." msgstr "Puesto de trabajo ya ocupado. No se le puede asignar a otro adulto." -#: /home/micha/programming/sumo/src/dfrouter/RODFDetFlowLoader.cpp:76 +#: D:\Repos\sumo/src\dfrouter\RODFDetFlowLoader.cpp:76 msgid "At least one value lies beyond given time boundaries." msgstr "" "Al menos un valor se encuentra más allá de los límites de tiempo dados." -#: /home/micha/programming/sumo/src/dfrouter/RODFDetFlowLoader.cpp:104 +#: D:\Repos\sumo/src\dfrouter\RODFDetFlowLoader.cpp:104 msgid "At least one line does not contain the correct number of columns." msgstr "Al menos una línea no contiene el número correcto de columnas." -#: /home/micha/programming/sumo/src/dfrouter/RODFDetector.cpp:171 +#: D:\Repos\sumo/src\dfrouter\RODFDetector.cpp:171 msgid "Missing routes for detector '%'." msgstr "Faltan rutas para el detector '%'." -#: /home/micha/programming/sumo/src/dfrouter/RODFDetector.cpp:305 +#: D:\Repos\sumo/src\dfrouter\RODFDetector.cpp:305 #, c-format msgid "Detector '%' has no routes!?" msgstr "¿¡El detector '%' no tiene rutas!?" -#: /home/micha/programming/sumo/src/dfrouter/RODFDetectorHandler.cpp:86 +#: D:\Repos\sumo/src\dfrouter\RODFDetectorHandler.cpp:86 msgid "Could not add detector '%' (probably the id is already used)." msgstr "" "No se pudo agregar el detector '%' (probablemente la id ya esté en uso)." -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:61 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:61 msgid "Loads the SUMO-network FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:70 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:70 msgid "Loads detector descriptions from FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:75 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:75 msgid "Loads detector flows from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:82 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:82 msgid "Saves computed routes to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:85 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:85 msgid "Forces dfrouter to compute routes for in-between detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:89 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:89 msgid "Saves typed detectors to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:92 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:92 msgid "Saves detector positions as pois to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:95 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:95 msgid "Saves emitter definitions for source detectors to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:98 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:98 msgid "Add vehicle types to the emitters file (PKW, LKW)" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:101 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:101 msgid "" "Write generated vehicle types into separate FILE instead of including them " "into the emitters-output" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:104 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:104 msgid "Saves emitter positions as pois to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:108 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:108 msgid "Saves variable seed sign definitions for sink detectors to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:111 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:111 msgid "Saves rerouter definitions for sink detectors to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:114 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:114 msgid "" "Write induction loop definitions for the given detector positions to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:117 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:117 msgid "Add source detectors to the validation output" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:123 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:123 msgid "Derive missing flow values from upstream or downstream (not working!)" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:127 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:127 msgid "Switches to highway-mode" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:131 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:131 msgid "Only warn about unparseable detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:135 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:135 msgid "Recomputes detector types even if given" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:139 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:139 msgid "Recomputes routes even if given" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:143 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:143 msgid "Keeps routes even if they have exhausted max-search-depth" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:146 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:146 msgid "Keeps routes even if a shorter one exists" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:150 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:150 msgid "Number of edges to follow a route without passing a detector" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:153 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:153 msgid "Writes only emission times" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:156 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:156 msgid "Do not route on these edges" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:159 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:159 msgid "Only route on edges allowing the given vclass" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:162 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:162 msgid "Allow turnarounds as route continuations" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:167 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:167 msgid "Minimum distance in meters between start and end node of every route" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:170 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:170 msgid "generate random departure times for emitted vehicles" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:174 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:174 msgid "Multiply flow times with TIME to get seconds" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:177 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:177 msgid "Subtracts TIME seconds from (scaled) flow times" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:180 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:180 msgid "Expected distance between two successive data sets" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:185 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:185 msgid "Write calibrators to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:188 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:188 msgid "Include routes in the output which have no vehicles" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:192 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:192 msgid "" "Checks whether detectors with calculated flow 0 can attract additional " "traffic" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:195 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:195 msgid "Removes empty detectors from the list" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:198 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:198 msgid "" "Whether edges with unknown status can prevent an edge from becoming a source" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:201 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:201 msgid "" "Try to determine further inflows to an inbetween detector when computing " "split probabilities" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:205 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:205 msgid "Scale factor for flows" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:209 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:123 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:167 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:199 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:209 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:123 +#: D:\Repos\sumo/src\od2trips_main.cpp:167 +#: D:\Repos\sumo/src\router\ROFrame.cpp:199 msgid "Assigns a default depart lane" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:212 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:127 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:170 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:202 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:212 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:127 +#: D:\Repos\sumo/src\od2trips_main.cpp:170 +#: D:\Repos\sumo/src\router\ROFrame.cpp:202 msgid "Assigns a default depart position" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:215 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:131 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:173 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:205 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:215 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:131 +#: D:\Repos\sumo/src\od2trips_main.cpp:173 +#: D:\Repos\sumo/src\router\ROFrame.cpp:205 msgid "Assigns a default depart speed" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:218 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:135 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:176 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:208 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:218 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:135 +#: D:\Repos\sumo/src\od2trips_main.cpp:176 +#: D:\Repos\sumo/src\router\ROFrame.cpp:208 msgid "Assigns a default arrival lane" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:221 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:139 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:179 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:211 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:221 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:139 +#: D:\Repos\sumo/src\od2trips_main.cpp:179 +#: D:\Repos\sumo/src\router\ROFrame.cpp:211 msgid "Assigns a default arrival position" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:224 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:143 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:182 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:214 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:224 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:143 +#: D:\Repos\sumo/src\od2trips_main.cpp:182 +#: D:\Repos\sumo/src\router\ROFrame.cpp:214 msgid "Assigns a default arrival speed" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:227 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:227 msgid "The default speed deviation of vehicles" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:231 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:231 msgid "Defines the begin time; Previous defs will be discarded" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:234 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:234 msgid "Defines the end time; Later defs will be discarded; Defaults to one day" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:239 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:239 msgid "Lists detectors with no flow (enable -v)" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:242 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:242 msgid "Prints aggregated detector flows" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:246 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:225 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:246 +#: D:\Repos\sumo/src\router\ROFrame.cpp:225 msgid "Disable console output of route parsing step" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:113 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:113 msgid "Computing detector types" msgstr "Computando tipos de detector" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:142 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:142 msgid "Computed detector types:" msgstr "Tipos de detectores computados:" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:143 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:143 #, c-format msgid " % source detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:144 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:144 #, c-format msgid " % sink detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:145 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:145 #, c-format msgid " % in-between detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:146 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:146 #, c-format msgid " % invalid detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:281 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:281 msgid "Could not close route for '%'" msgstr "No se pudo cerrar la ruta para '%'" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:439 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:439 #, c-format msgid "" "Detector '%' has no flows.\n" " Trying to rebuild." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:467 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:467 msgid " Could not build list of previous flows." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:504 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:504 msgid " Could not build list of latter flows." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:591 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:591 msgid "Removed detector '%' because no flows for him exist." msgstr "Se eliminó el detector '%' porque no existen flujos para él." -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:614 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:614 #, c-format msgid "Detector '%' has no flow." msgstr "El detector '%' no tiene flujo." -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:693 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:693 #, c-format msgid "" "Quitting checking for being a source for detector '%' due to seen edge limit." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:793 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:793 #, c-format msgid "" "Quitting checking for being a destination for detector '%' due to seen edge " "limit." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:869 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:869 #, c-format msgid "" "Quitting checking for being a false source for detector '%' due to seen edge " "limit." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:1002 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:1002 msgid "Average speedFactor for PKW is % maximum speedFactor is %." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:1006 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:1006 msgid "Average speedFactor for LKW is % maximum speedFactor is %." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:70 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:70 msgid "No detector file given (use --detector-files )." msgstr "" "No se proporcionó ningún archivo detector (use --detector-files )." -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:76 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:76 msgid "Could not open detector file '%'" msgstr "No se pudo abrir el archivo de detector '%'" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:88 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:88 msgid "No detectors found." msgstr "No se encontraron detectores." -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:103 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:103 #, c-format msgid "The measure-file '%' can not be opened." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:124 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:124 msgid "Removing empty detectors" msgstr "Eliminando detectores vacíos" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:128 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:128 msgid "Scanning for empty detectors" msgstr "Buscando detectores vacíos" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:143 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:143 msgid "No source detectors found." msgstr "No se encontraron detectores fuente." -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:147 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:147 msgid "Computing routes" msgstr "Computando rutas" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:158 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:158 msgid "The detector types are not defined; use in combination with a network" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:162 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:162 msgid "The emitters have no routes; use in combination with a network" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:193 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:193 msgid "Rechecking loaded flows" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:198 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:198 msgid "Writing emitters" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:210 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:210 msgid "Writing emitter pois" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:217 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:217 msgid "Writing speed triggers" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:224 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:224 msgid "Writing validation detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:231 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:231 msgid "Writing highway end rerouter" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:251 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:251 msgid "Builds vehicle routes for SUMO using detector values." msgstr "Construye rutas de vehículos para SUMO utilizando valores de detector." -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:69 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:69 msgid "Write generated route alternatives to FILE" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:72 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:72 msgid "Write edge splits and connectivity to FILE" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:75 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:75 msgid "Write intermodal edges with lengths and travel times to FILE" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:78 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:78 msgid "Write trips instead of vehicles (for validating trip input)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:81 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:81 msgid "Write trips with geo-coordinates" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:84 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:84 msgid "Write trips with fromJunction and toJunction" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:87 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:87 msgid "Include the cost attribute in route output" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:92 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:559 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:92 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:565 msgid "" "Edge weights for routing are dynamically disturbed by a random factor drawn " "uniformly from [1,FLOAT)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:95 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:118 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:95 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:118 msgid "" "Aggregation period for the given weight files; triggers rebuilding of " "Contraction Hierarchy" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:98 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:112 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:568 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:98 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:112 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:574 msgid "" "Consider edge priorities in addition to travel times, weighted by factor" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:101 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:574 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:101 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:580 msgid "" "Initialize lookup table for astar from the given file (generated by marouter " "--all-pairs-output)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:104 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:577 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:104 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:583 msgid "Initialize lookup table for astar ALT-variant from the given file" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:107 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:107 msgid "Save lookup table for astar ALT-variant to the given file" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:117 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:206 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:117 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:206 msgid "Use FLOAT as Gawron's beta" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:121 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:210 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:121 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:210 msgid "Use FLOAT as Gawron's a" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:124 -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:62 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:213 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:124 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:62 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:213 msgid "Write exit times (weights) for each edge" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:127 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:251 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:127 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:251 msgid "Include total route length in the output" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:130 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:216 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:130 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:216 msgid "Save routes with near zero probability" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:133 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:219 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:133 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:219 msgid "Only reuse routes from input, do not calculate new ones" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:136 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:136 msgid "The probability of keeping the old route" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:139 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:139 msgid "Route all public transport input" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:142 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:202 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:142 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:202 msgid "Choose a route choice method: gawron, logit, or lohse" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:145 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:145 msgid "Use c-logit model (deprecated in favor of --route-choice-method logit)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:149 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:149 msgid "Use FLOAT as logit's beta" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:153 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:153 msgid "Use FLOAT as logit's gamma" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:157 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:157 msgid "Use FLOAT as logit's theta (negative values mean auto-estimation)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:160 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:580 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:160 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:586 msgid "" "Use FLOAT as a factor on pedestrian maximum speed during intermodal routing" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:163 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:583 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:163 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:589 msgid "" "Use FLOAT as a factor on walking speed against vehicle traffic direction" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:170 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:590 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:170 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:596 msgid "Where taxis can drop off customers ('allJunctions, 'ptStops')" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:173 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:593 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:173 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:599 msgid "Where taxis can pick up customers ('allJunctions, 'ptStops')" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:176 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:599 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:176 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:605 msgid "Estimated time for taxi pickup" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:179 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:602 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:179 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:608 msgid "" "Use FLOAT as a maximum train length when initializing the railway router" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:216 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:216 msgid "Routing algorithm '%' does not support weight-attribute '%'." msgstr "El algoritmo de enrutamiento '%' no admite el atributo de peso '%'." -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:220 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:220 #, c-format msgid "Routing algorithm '%' does not support bulk routing." msgstr "El algoritmo de enrutamiento '%' no admite el enrutamiento masivo." -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:228 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:243 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:228 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:243 msgid "Invalid route choice method '%'." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:232 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:232 msgid "" "The --logit option is deprecated, please use --route-choice-method logit." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:244 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:244 msgid "Cannot derive file name for alternatives output, skipping it." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:251 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:251 msgid "" "Option --write-trips.junctions takes no affect when --write-trips is " "disabled." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:107 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:107 #, c-format msgid "Routing algorithm '%' does not support restriction-params" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:151 -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:180 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:151 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:180 msgid "Unknown routing Algorithm '%'!" msgstr "¡Algoritmo de enrutamiento desconocido '%'!" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:178 -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:210 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:178 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:210 msgid "No weight data was loaded for attribute '%'." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:238 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:238 msgid "" "Shortest path router and DUE computer for the microscopic, multi-modal " "traffic simulation SUMO." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTREdge.cpp:64 +#: D:\Repos\sumo/src\jtrrouter\ROJTREdge.cpp:64 #, c-format msgid "The edges '%' and '%' are not connected." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:59 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:59 msgid "Read turning ratios from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:69 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:69 msgid "Use STR[] as default turn definition" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:73 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:73 msgid "Use STR[] as list of sink edges" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:76 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:76 msgid "Whether all edges are allowed as sink edges" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:79 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:79 msgid "Ignore road restrictions based on vehicle class" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:82 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:82 msgid "Allow to re-use a road" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:85 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:85 msgid "Use all source edges as sink edges." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:88 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:88 msgid "" "Subtract upstream flow when inserting a new flow. When option --sources-are-" "sinks is set, the upstream flow is limited to the value of the source flow " "and the remaining part terminates." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:68 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:68 msgid "" "The turn-file format with elements %, % is deprecated, please use % instead." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:87 -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:143 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:87 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:143 #, c-format msgid "The edge '%' declared as a sink is not known." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:116 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:116 msgid "Ignoring flow '%' without 'from'" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:128 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:128 #, c-format msgid "The edge '%' declared as a source is not known." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:152 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:152 #, c-format msgid "" "The edge '%' is not known within the network (within a 'from-edge' tag)." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:172 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:172 #, c-format msgid "The edge '%' is not known within the network (within a 'to-edge' tag)." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:178 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:178 msgid "'probability' must be positive (in definition of to-edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:201 -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:206 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1302 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1400 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:201 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:206 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1302 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1400 #, c-format msgid "The edge '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:210 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:210 msgid "'probability' must be positive (in edgeRelation from '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:94 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:94 msgid "" "The defaults for turnings must be a tuple of at least two numbers divided by " "','." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:101 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:101 msgid "A turn default is not numeric." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:182 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:182 msgid "" "Router for the microscopic, multi-modal traffic simulation SUMO based on " "junction turning ratios." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/GUI.cpp:330 +#: D:\Repos\sumo/src\libsumo\GUI.cpp:332 msgid "This system has no OpenGL support. Exiting." msgstr "Este sistema no tiene soporte para OpenGL. Saliendo." -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:904 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:904 #, c-format msgid "" "Ignoring veh '%' no-opposite subscription filter for geographic range object " "collection. Consider using the 'lanes' filter." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1067 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1067 msgid "" "Lanes filter is only feasible for context domain 'vehicle' (current is '%'), " "ignoring filter..." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1164 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1164 msgid "" "Turn filter is only feasible for context domain 'vehicle' (current is '%'), " "ignoring filter..." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1229 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1229 msgid "" "Field of vision opening angle ('%') should be within interval (0, 360), " "ignoring filter..." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1341 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1341 msgid "" "addSubscriptionFilterLateralDistance could not determine shape of lane '%' " "with a lateral shift of %." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1399 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1399 msgid "Vehicle '%' was removed though being controlled by TraCI" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1408 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1408 msgid "Person '%' was removed though being controlled by TraCI" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/MeanData.cpp:83 +#: D:\Repos\sumo/src\libsumo\MeanData.cpp:83 msgid "Found % meanData definitions with id '%'." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Person.cpp:530 +#: D:\Repos\sumo/src\libsumo\Person.cpp:535 #, c-format msgid "" "Departure time=% for person '%' is in the past; using current time=% instead." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Person.cpp:929 -msgid "Could not determine position on lane '% at lateral position %." +#: D:\Repos\sumo/src\libsumo\Person.cpp:934 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1741 +msgid "Could not determine position on lane '%' at lateral position %." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Simulation.cpp:105 +#: D:\Repos\sumo/src\libsumo\Simulation.cpp:105 msgid "Simulation version % started via libsumo with time: %." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Simulation.cpp:699 +#: D:\Repos\sumo/src\libsumo\Simulation.cpp:699 msgid "" "Ignoring vehicle type '%' when performing intermodal routing because it is " "not allowed on the start edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/TrafficLight.cpp:697 +#: D:\Repos\sumo/src\libsumo\TrafficLight.cpp:697 #, c-format msgid "" "Cannot check for all deadlocks on swapConstraints because the route for " "vehicle '%' is not computed yet" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1122 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1133 msgid "" "Stop replacement parameter 'teleport=%' ignored for vehicle '%' when only " "removing stop." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1231 -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1354 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1246 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1374 msgid "Unsupported parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1306 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1326 msgid "Waypoint (speed = %) at index % does not support triggers" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1340 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1360 msgid "" "Triggered stop at index % cannot be changed into a waypoint by setting speed " "to %" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1457 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1477 #, c-format msgid "Ignoring changeLaneRelative for vehicle '%' that isn't on the road" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1459 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1479 msgid "Ignoring indexOffset % for vehicle '%' on laneIndex %." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1551 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1575 #, c-format msgid "" "Departure time for vehicle '%' is in the past; using current time instead." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1717 -msgid "Could not determine position on lane '%' at lateral position %." -msgstr "" - -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1914 -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:422 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1938 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:422 msgid "Invalid route replacement for vehicle '%'. %" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:2597 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:2634 msgid "" "Ignoring lane change subscription filter with non-neighboring lane offset " "direction=%." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/VehicleType.cpp:289 +#: D:\Repos\sumo/src\libsumo\VehicleType.cpp:322 #, c-format msgid "Automatically setting emergencyDecel to % for vType '%' to match decel." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/VehicleType.cpp:301 +#: D:\Repos\sumo/src\libsumo\VehicleType.cpp:334 msgid "New value of emergencyDecel (%) is lower than decel (%)" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAAssignments.cpp:190 +#: D:\Repos\sumo/src\marouter\ROMAAssignments.cpp:190 msgid "Unknown origin '%'." msgstr "Origen '%' desconocido." -#: /home/micha/programming/sumo/src/marouter/ROMAAssignments.cpp:194 +#: D:\Repos\sumo/src\marouter\ROMAAssignments.cpp:194 msgid "Unknown destination '%'." msgstr "Destino '%' desconocido." -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:71 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:121 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:71 +#: D:\Repos\sumo/src\od2trips_main.cpp:121 msgid "Does not save vtype information" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:74 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:74 msgid "Writes edge loads and final costs into FILE" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:77 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:77 msgid "Writes complete distance matrix into FILE" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:81 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:85 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:81 +#: D:\Repos\sumo/src\od2trips_main.cpp:85 msgid "Loads O/D-files from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:86 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:90 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:86 +#: D:\Repos\sumo/src\od2trips_main.cpp:90 msgid "Loads O/D-matrix in Amitran format from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:89 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:93 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:89 +#: D:\Repos\sumo/src\od2trips_main.cpp:93 msgid "Loads O/D-matrix in tazRelation format from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:93 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:97 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:93 +#: D:\Repos\sumo/src\od2trips_main.cpp:97 msgid "Define data attribute for loading counts (default 'count')" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:96 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:96 msgid "The travel time influence of prior intervals" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:99 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:99 msgid "Parameter key(s) defining source (and sink) taz" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:102 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:102 msgid "Ignore attributes 'fromTaz' and 'toTaz'" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:106 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:106 msgid "" "Defines the time interval when aggregating single vehicle input; Defaults to " "one hour" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:109 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:109 msgid "Ignore edge priorities when calculating capacities and restraints" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:115 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:115 msgid "" "Aggregate routing queries with the same origin for different vehicle types" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:153 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:137 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:153 +#: D:\Repos\sumo/src\od2trips_main.cpp:137 msgid "Scales the loaded flows by FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:156 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:146 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:156 +#: D:\Repos\sumo/src\od2trips_main.cpp:146 msgid "Defines the name of the vehicle type to use" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:159 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:159 msgid "Defines the prefix for vehicle flow names" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:162 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:152 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:162 +#: D:\Repos\sumo/src\od2trips_main.cpp:152 msgid "Uses STR[] as a timeline definition" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:165 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:155 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:165 +#: D:\Repos\sumo/src\od2trips_main.cpp:155 msgid "Uses STR as a 24h-timeline definition" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:168 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:168 msgid "Keep traffic flows of all time slots in the net" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:172 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:172 msgid "Choose a assignment method: incremental, UE or SUE" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:175 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:175 msgid "Use FLOAT as tolerance when checking for SUE stability" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:178 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:178 msgid "" "Use left-turn penalty FLOAT to calculate link travel time when searching " "routes" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:181 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:181 msgid "" "Use INTEGER as the number of paths needed to be searched for each OD pair at " "each iteration" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:184 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:184 msgid "Penalize existing routes with FLOAT to find secondary routes" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:188 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:188 msgid "Use FLOAT as the upper bound to determine auxiliary link cost" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:192 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:192 msgid "Use FLOAT as the lower bound to determine auxiliary link cost" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:195 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:195 msgid "" "maximal number of iterations for new route searching in incremental and " "stochastic user assignment" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:198 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:198 msgid "" "maximal number of inner iterations for user equilibrium calculation in the " "stochastic user assignment" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:223 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:223 msgid "Use FLOAT as (c-)logit's beta for the commonality factor" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:227 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:227 msgid "Use FLOAT as (c-)logit's gamma for the commonality factor" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:231 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:231 msgid "Use FLOAT as (c-)logit's theta" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:239 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:239 msgid "Invalid assignment method '%'." msgstr "Método de asignación '%' inválido." -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:247 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:247 msgid "" "Contraction hierarchies do not work with k shortest path search (please use " "a different routing algorithm)!" @@ -1153,11 +1155,11 @@ "Las jerarquías de contracción no funcionan con las k búsquedas de la ruta " "más corta (utilice un algoritmo de enrutamiento diferente)!" -#: /home/micha/programming/sumo/src/marouter/ROMARouteHandler.cpp:87 +#: D:\Repos\sumo/src\marouter\ROMARouteHandler.cpp:87 msgid "No origin or no destination given, ignoring '%'!" msgstr "Ni origen ni destino dado, ignorando '%'!" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:239 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:239 msgid "" "Deterministic user equilibrium ('UE') is not implemented yet, using " "stochastic method ('SUE')." @@ -1165,12 +1167,12 @@ "El equilibrio determinista de usuario ('UE') aún no se ha implementado, " "usando el método estocástico ('SUE')." -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:323 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:315 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:323 +#: D:\Repos\sumo/src\od2trips_main.cpp:315 msgid "No output file given." msgstr "No se ha especificado un archivo de salida." -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:340 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:340 msgid "" "Import O/D-matrices for macroscopic traffic assignment to generate SUMO " "routes." @@ -1178,40 +1180,40 @@ "Importa matrices O/D para la asignación de tráfico macroscópico para generar " "rutas de SUMO." -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:376 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:376 msgid "No districts loaded, will use edge ids!" msgstr "No se han cargado distritos, se usarán el ID de las calles (edges)!" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:387 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:387 msgid "No valid vehicles loaded." msgstr "No se han cargado vehículos válidos." -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:390 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:285 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:390 +#: D:\Repos\sumo/src\od2trips_main.cpp:285 msgid "Loading failed." msgstr "La carga falló." -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:89 -#: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:66 -#: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:184 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:89 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:66 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:185 msgid "Vehicle '%' teleports beyond arrival edge '%', time=%." msgstr "" "El vehículo '%' se teleportó más allá del la calle (edge) de llegada '%', " "tiempo=%." -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:109 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:109 msgid "Vehicle '%' ends teleporting on edge '%':%, time=%." msgstr "" "El vehículo '%' terminó teleportándose a la calle (edge) '%':%, tiempo=%." -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:167 -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:197 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:167 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:197 msgid "Teleporting vehicle '%'; waited too long, from edge '%':%, time=%." msgstr "" "Teleportando vehículo '%'; ha esperado demasiado tiempo desde la calle " "(edge) '%':'%', tiempo=%." -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:187 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:187 msgid "" "Teleporting vehicle '%'; waited too long, from edge '%':% to edge '%':%, " "time=%." @@ -1219,764 +1221,775 @@ "Teleportando vehículo '%'; ha esperado demasiado tiempo desde la calle " "(edge) '%':'%' hasta la calle (edge) '%':'%', tiempo=%." -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:137 -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:603 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:137 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:603 msgid "Clearing jam at calibrator '%' at time=%." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:145 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:145 msgid "Could not clear jam at calibrator '%' at time=%." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:177 -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:414 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:177 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:414 msgid "No valid routes in calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:181 -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:418 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:181 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:418 msgid "Route '%' in calibrator '%' does not contain edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:220 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:220 msgid "Join stops are not available in meso yet (vehicle '%', segment '%')." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:247 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:247 msgid "" "Vehicle '%' has multiple stops on segment '%', time=% (stop-output will be " "merged)." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:370 -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1669 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:370 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1656 #, c-format msgid "" "Vehicle '%' ignores triggered stop on lane '%' due to capacity constraints." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:387 -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1684 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:387 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1671 #, c-format msgid "" "Vehicle '%' ignores container triggered stop on lane '%' due to capacity " "constraints." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:554 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:554 msgid "Error: Invalid vehicles in state (may be a micro state)!" msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.h:188 -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.h:194 -msgid "parkingZoneReroute not implemented for meso" -msgstr "" - -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:172 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:172 msgid "Changing a vehicle ID is not permitted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:289 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:289 msgid "Vehicle '%' is not allowed on any lane of via edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:317 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:317 msgid "Vehicle '%' has no valid route from edge '%' to stop edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:361 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:361 #, c-format msgid "Vehicle '%' has no valid route." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:363 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:363 msgid "Removing vehicle '%' which has no valid route." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:377 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:377 #, c-format msgid "No route for vehicle '%' found." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:447 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:447 #, c-format msgid "current edge '%' not found in new route" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:460 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:460 msgid "Vehicle is on junction-internal edge leading elsewhere" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:473 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:473 msgid "" "Vehicle is moving past junction and committed to move to another successor " "edge" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:543 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:543 msgid "Vehicle '%' could not assign stop '%' after rerouting (%) at time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:683 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:683 msgid "No connection between edge '%' and edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:692 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:692 #, c-format msgid "Edge '%' prohibits." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:706 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:706 #, c-format msgid "Vehicle '%' is not allowed to depart on its first edge." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:736 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:736 msgid "Vehicle '%' has no valid route. %" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:799 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:799 msgid "" "Vehicle '%' ignores attribute arrivalEdge=% after rerouting at time=% " "(routeLength=%)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:813 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:813 msgid "Vehicle '%' will not be able to arrive at the given position!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:833 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:833 msgid "Vehicle '%' will not be able to arrive at the given lane '%_%'!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:845 -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:857 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:845 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:857 msgid "Vehicle '%' has no usable arrivalLane on edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:869 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:869 msgid "Vehicle '%' will not be able to arrive with the given speed!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:885 -msgid "Ignoring departEdge % for vehicle '% with % route edges" +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:885 +msgid "Ignoring departEdge % for vehicle '%' with % route edges" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.h:879 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.h:909 msgid "getLeader not yet implemented for meso" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.h:893 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.h:923 msgid "getFollower not yet implemented for meso" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:660 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:660 msgid "" "Choosing new speed factor % for vehicle '%' to match departure speed % (max " "%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1264 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1264 #, c-format msgid "Bidi-edge '%' does not exist" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1277 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1277 msgid "Ambiguous superposable edges between junction '%' and '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1308 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1308 #, c-format msgid "Edge '%s' and bidi edge '%s' have no matching bidi lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:78 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:78 msgid "Load road network description from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:83 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:83 msgid "Load routes descriptions from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:87 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:87 msgid "Load further descriptions from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:91 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:91 msgid "Load edge/lane weights for online rerouting from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:94 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:108 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:94 +#: D:\Repos\sumo/src\router\ROFrame.cpp:108 msgid "Name of the xml attribute which gives the edge weight" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:97 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:97 msgid "Loads a network state from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:99 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:99 msgid "Shifts all times loaded from a saved state by the given offset" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:101 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:101 msgid "Removes vehicles with the given IDs from the loaded state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:104 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:134 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:104 +#: D:\Repos\sumo/src\router\ROFrame.cpp:134 msgid "" "Initialize a TAZ for every junction to use attributes toJunction and " "fromJunction" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:114 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:114 msgid "Save complete network states into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:119 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:119 msgid "Write also empty edges completely when dumping" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:124 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:124 msgid "Write positions and speeds with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:128 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:128 msgid "Save the emission values of each vehicle" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:130 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:130 msgid "Write emission values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:132 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:132 msgid "Save the positions in emission output using geo-coordinates (lon/lat)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:135 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:135 msgid "" "Write emission values scaled to the step length rather than as per-second " "values" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:138 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:138 msgid "Save the battery values of each vehicle" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:140 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:140 msgid "Write battery values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:143 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:143 msgid "Save the elecHybrid values of each vehicle" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:145 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:145 msgid "Write elecHybrid values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:147 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:147 msgid "Write elecHybrid values into one aggregated file" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:150 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:150 msgid "Write data of charging stations" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:153 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:153 msgid "Write data of overhead wire segments" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:156 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:156 msgid "Write data of electrical substation stations" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:158 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:158 msgid "Write substation values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:161 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:161 msgid "Save the Floating Car Data" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:163 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:163 msgid "Save the Floating Car Data using geo-coordinates (lon/lat)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:165 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:165 msgid "Add the vehicle signal state to the FCD output (brake lights etc.)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:167 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:167 msgid "Add kilometrage to the FCD output (linear referencing)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:169 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:169 msgid "Add acceleration to the FCD output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:171 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:171 msgid "" "Add leader vehicle information to the FCD output (within the given distance)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:173 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:173 msgid "Add generic parameter values to the FCD output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:175 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:175 msgid "Restrict fcd output to the edge selection from the given input file" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:177 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:177 msgid "List attributes that should be included in the FCD output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:179 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:179 msgid "List shape names that should be used to filter the FCD output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:182 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:182 msgid "" "Restrict SSM device output to the edge selection from the given input file" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:185 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:185 msgid "Save a lot of information for each timestep (very redundant)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:188 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:188 msgid "Save the vehicle queues at the junctions (experimental)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:190 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:190 msgid "Save vehicle queues with the given period" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:193 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:193 msgid "" "Save complete vehicle positions inclusive speed values in the VTK Format " "(usage: /path/out will produce /path/out_$TIMESTEP$.vtp files)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:195 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:195 msgid "Save the vehicle trajectories in the Amitran format" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:200 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:200 msgid "Save aggregated vehicle departure info into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:203 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:203 msgid "Save summary-output with the given period" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:206 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:206 msgid "Save aggregated person counts into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:210 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:210 msgid "Save single vehicle trip info into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:213 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:213 msgid "" "Write tripinfo output for vehicles which have not arrived at simulation end" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:216 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:216 msgid "" "Write tripinfo output for vehicles which have not departed at simulation end " "because of depart delay" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:220 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:220 msgid "Save personinfo and containerinfo to separate FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:224 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:224 msgid "Save single vehicle route info into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:228 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:228 msgid "Write the exit times for all edges" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:232 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:232 msgid "Write the last route only" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:236 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:236 msgid "Sorts the output by departure time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:240 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:240 msgid "Write the output in the duarouter alternatives style" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:243 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:243 msgid "Write costs for all routes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:247 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:247 msgid "Write the output with the intended instead of the real departure time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:254 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:254 msgid "" "Write vehroute output for vehicles which have not arrived at simulation end" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:257 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:257 msgid "Skip vehroute output for public transport vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:260 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:260 msgid "Include invalid routes and route stubs in vehroute output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:263 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:263 msgid "Include information about edges between stops" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:266 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:266 msgid "" "Write the vehicle speedFactor (defaults to 'true' if departSpeed is written)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:269 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:269 msgid "Include internal edges in the output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:273 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:273 msgid "Save person and container routes to separate FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:276 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:276 msgid "Save links states into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:279 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:279 msgid "Save railsignal-blocks into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:282 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:282 msgid "" "Save bluetooth visibilities into FILE (in conjunction with device.btreceiver " "and device.btsender)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:285 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:285 msgid "Record lane changes and their motivations for all vehicles into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:288 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:288 msgid "Record start of lane change manoeuvres" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:291 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:291 msgid "Record end of lane change manoeuvres" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:294 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:294 msgid "Record coordinates of lane change manoeuvres" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:297 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:297 msgid "" "Record stops and loading/unloading of passenger and containers for all " "vehicles into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:299 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:299 msgid "Write stop output for stops which have not ended at simulation end" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:302 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:302 msgid "Write collision information into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:305 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:305 msgid "Write aggregated traffic statistics for all edges into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:307 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:307 msgid "Write aggregated traffic statistics for all lanes into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:311 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:311 msgid "Write overall statistics into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:315 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:315 msgid "Save movereminder states of selected vehicles into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:317 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:317 msgid "List of vehicle ids which shall save their movereminder states" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:321 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:321 msgid "Use TIME[] as times at which a network state written" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:323 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:323 msgid "save state repeatedly after TIME period" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:325 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:325 msgid "Keep only the last INT periodic state files" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:327 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:327 msgid "Prefix for network states" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:329 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:329 msgid "Suffix for network states (.xml.gz or .xml)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:331 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:331 msgid "Files for network states" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:333 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:333 msgid "Save random number generator states" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:335 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:335 msgid "Save person and container states (experimental)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:337 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:337 msgid "Save rail signal constraints" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:339 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:339 msgid "Write internal state values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:343 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:343 msgid "Defines the begin time in seconds; The simulation starts at this time" msgstr "" +"Define el tiempo de inicio en segundos; La simulación comienza en este " +"momento" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:346 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:346 msgid "Defines the end time in seconds; The simulation ends at this time" msgstr "" +"Define el tiempo de finalización en segundos; La simulación termina en este " +"momento" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:349 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:349 msgid "Defines the step duration in seconds" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:352 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:352 msgid "" "Whether to use ballistic method for the positional update of vehicles " "(default is a semi-implicit Euler method)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:355 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:355 msgid "" "Whether vehicles that depart between simulation steps should extrapolate the " "depart position" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:358 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:358 msgid "Defines the number of threads for parallel simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:361 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:361 msgid "" "Defines the resolution in m when handling lateral positioning within a lane " "(with -1 all vehicles drive at the center of their lane" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:365 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:142 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:365 +#: D:\Repos\sumo/src\router\ROFrame.cpp:142 msgid "Load routes for the next number of seconds ahead" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:368 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:145 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:368 +#: D:\Repos\sumo/src\router\ROFrame.cpp:145 msgid "Disable (junction) internal links" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:371 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:371 msgid "" "Ignore vehicles which block the junction after they have been standing for " "SECONDS (-1 means never ignore)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:374 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:374 msgid "Do not check whether routes are connected" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:377 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:377 msgid "Do not check whether accidents occur" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:380 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:380 msgid "How to deal with collisions: [none,warn,teleport,remove]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:383 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:383 +msgid "" +"How to deal with collisions between vehicle and pedestrian: [none,warn," +"teleport,remove]" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:386 msgid "" "Let vehicle stop for TIME before performing collision.action (except for " "action 'none')" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:386 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:389 +msgid "" +"Let vehicle stop for TIME before performing intermodal-collision.action " +"(except for action 'none')" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:392 msgid "Enables collisions checks on junctions" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:389 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:395 msgid "Increase or decrease sensitivity for junction collision check" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:392 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:398 msgid "" "Sets the fraction of minGap that must be maintained to avoid collision " "detection. If a negative value is given, the carFollowModel parameter is used" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:395 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:401 msgid "Delay vehicle insertion to stay within the given maximum number" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:398 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:404 msgid "" "Abort the simulation if the given maximum number of teleports is exceeded" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:401 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:407 msgid "" "Scale demand by the given factor (by discarding or duplicating vehicles)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:404 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:410 msgid "Suffix to be added when creating ids for cloned vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:407 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:413 msgid "" "Specify how long a vehicle may wait until being teleported, defaults to 300, " "non-positive values disable teleporting" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:410 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:416 msgid "" "The waiting time after which vehicles on a fast road (speed > 69km/h) are " "teleported if they are on a non-continuing lane" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:413 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:419 msgid "" "The waiting time after which vehicles on a fast road (default: speed > 69km/" "h) are teleported if they are on a non-continuing lane" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:416 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:422 msgid "" "The waiting time after which vehicles with a disconnected route are " "teleported. Negative values disable teleporting" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:419 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:425 msgid "" "Whether vehicles shall be removed after waiting too long instead of being " "teleported" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:422 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:428 msgid "" "The waiting time after which persons / containers waiting for a pickup are " "teleported. Negative values disable teleporting" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:425 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:431 msgid "" "The waiting time after which vehicles on bidirectional edges are teleported" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:428 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:434 msgid "" "Length of time interval, over which accumulated waiting time is taken into " "account (default is 100s.)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:431 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:437 msgid "Minimum consecutive waiting time before applying startupDelay" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:434 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:440 msgid "" "How long vehicles wait for departure before being skipped, defaults to -1 " "which means vehicles are never skipped" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:437 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:443 msgid "" "Whether insertion on an edge shall not be repeated in same step once failed" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:440 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:446 msgid "Whether each vehicle is checked separately for insertion on an edge" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:443 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:449 msgid "" "Allow inserting a vehicle in a situation which requires emergency braking" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:446 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:452 msgid "" "Each vehicle receives a random offset to its depart value drawn uniformly " "from [0, TIME]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:449 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:455 msgid "Duration of a lane change maneuver (default 0)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:452 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:458 msgid "Whether overtaking on the right on motorways is permitted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:455 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:461 msgid "Switches off all traffic lights." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:458 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:464 msgid "Sets default visibility for actuation detectors" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:461 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:467 msgid "Sets default jam-threshold parameter for all actuation detectors" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:464 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:470 msgid "Sets default detector length parameter for all actuation detectors" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:467 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:473 msgid "Sets default range for detecting delayed vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:470 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:476 msgid "Minimum deceleration when braking at yellow" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:473 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:479 msgid "Let railsignals operate in moving-block mode by default" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:476 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:482 msgid "" "Specify how long a vehicle may wait until impatience grows from 0 to 1, " "defaults to 300, non-positive values disable impatience growth" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:479 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:485 msgid "" "Length of the default interval length between action points for the car-" "following and lane-change models (in seconds). If not specified, the " @@ -1985,918 +1998,940 @@ "length." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:482 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:488 msgid "Select default car following model (Krauss, IDM, ...)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:486 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:492 msgid "" "Select default speed deviation. A negative value implies vClass specific " "defaults (0.1 for the default passenger class" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:489 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:495 msgid "" "Select default emergencyDecel value among ('decel', 'default', FLOAT) which " "sets the value either to the same as the deceleration value, a vClass-class " "specific default or the given FLOAT in m/s^2" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:492 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:498 msgid "Use Kirchhoff's laws for solving overhead wire circuit" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:495 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:501 msgid "" "Enable recuperation from the vehicle equipped with elecHybrid device into " "the overhead wire." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:498 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:504 msgid "" "Enable current limits of traction substation during solving the overhead " "wire electrical circuit." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:501 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:507 msgid "" "Sets the fraction of emergency decel capability that must be used to trigger " "a warning." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:504 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:510 msgid "" "Whether parking simulation includes maneuvering time and associated lane " "blocking" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:507 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:513 msgid "Override stop until times with stop ended times when given" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:510 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:516 msgid "Override stop arrival times with stop started times when given" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:514 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:520 msgid "Select among pedestrian models ['nonInteracting', 'striping', 'remote']" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:517 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:523 msgid "" "Width of parallel stripes for segmenting a sidewalk (meters) for use with " "model 'striping'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:520 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:526 msgid "Factor for random slow-downs [0,1] for use with model 'striping'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:523 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:529 msgid "" "Minimal gap / safety buffer (in meters) from a pedestrian to another vehicle " "for use with model 'striping'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:526 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:532 msgid "" "Time in seconds after which pedestrians start squeezing through a jam when " "using model 'striping' (non-positive values disable squeezing)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:528 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:534 msgid "" "Time in seconds after which pedestrians start squeezing through a jam while " "on a pedestrian crossing when using model 'striping' (non-positive values " "disable squeezing)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:530 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:536 msgid "" "Time in seconds after which pedestrians start squeezing through a jam while " "on a narrow lane when using model 'striping'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:533 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:539 msgid "Fraction of stripes to reserve for oncoming pedestrians" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:536 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:542 msgid "" "Fraction of stripes to reserve for oncoming pedestrians on crossings and " "walkingareas" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:539 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:545 msgid "Maximum width in m to reserve for oncoming pedestrians" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:542 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:548 msgid "Interpret departPosLat for walks in legacy style" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:545 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:551 msgid "" "Generate INT intermediate points to smooth out lanes within the walkingarea" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:548 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:554 msgid "The address (host:port) of the external simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:551 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:557 msgid "" "Tolerance to apply when matching pedestrian and vehicle positions on " "boarding at individual stops" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:562 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:568 msgid "" "Apply the given time penalty when computing minimum routing costs for minor-" "link internal lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:565 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:571 msgid "" "Apply scaled travel time penalties based on green split when computing " "minimum routing costs for internal lanes at traffic lights" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:571 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:577 msgid "" "Distinguish travel time by turn direction and shift a fraction of the " "estimated time loss ahead of the intersection onto the internal edges" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:596 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:602 msgid "" "When set, trips between the same origin and destination will share a taxi by " "default" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:605 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:611 msgid "Replay exact rerouting sequence from vehroute-output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:610 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:59 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:133 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:123 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:616 +#: D:\Repos\sumo/src\router\ROFrame.cpp:59 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:133 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:123 msgid "Return fuel consumption values in (legacy) unit l instead of mg" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:613 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:90 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:136 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:126 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:619 +#: D:\Repos\sumo/src\router\ROFrame.cpp:90 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:136 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:126 msgid "Determines where to load PHEMlight definitions from" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:616 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:93 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:139 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:129 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:622 +#: D:\Repos\sumo/src\router\ROFrame.cpp:93 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:139 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:129 msgid "Enable fleet age modelling with the given reference year in PHEMlight5" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:619 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:96 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:142 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:132 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:625 +#: D:\Repos\sumo/src\router\ROFrame.cpp:96 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:142 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:132 msgid "Set ambient temperature to correct NOx emissions in PHEMlight5" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:628 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:634 msgid "Disable performance reports for individual simulation steps" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:631 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:637 msgid "Enable statistics on vehicle trips" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:634 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:640 msgid "Disable console output of current simulation step" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:637 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:643 msgid "Number of simulation steps between step-log outputs" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:642 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:648 msgid "Enables TraCI Server if set" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:644 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:650 msgid "Expected number of connecting clients" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:648 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:654 msgid "Enables mesoscopic simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:650 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:656 msgid "Length of an edge segment in mesoscopic simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:652 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:658 msgid "Factor for calculating the net free-free headway time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:654 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:660 msgid "Factor for calculating the net free-jam headway time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:656 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:662 msgid "Factor for calculating the jam-free headway time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:658 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:664 msgid "Factor for calculating the jam-jam headway time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:663 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:669 msgid "Enable multiple queues at edge ends" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:665 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:671 msgid "Enable separate queues for every lane" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:667 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:673 msgid "" "Do not build queues (or reduce capacity) for lanes allowing only the given " "vclasses" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:670 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:676 msgid "Enable mesoscopic traffic light and priority junction handling" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:684 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:690 msgid "Enable mesoscopic overtaking" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:686 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:692 msgid "" "Time interval for rechecking insertion into the next segment after failure" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:698 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:704 msgid "Load visualisation settings from FILE" -msgstr "" +msgstr "Cargar configuración de visualización desde archivo" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:701 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:707 msgid "Quits the GUI when the simulation stops" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:704 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:710 msgid "Start the GUI in gaming mode" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:707 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:713 msgid "Select the game type ('tls', 'drt')" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:710 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:716 msgid "Start the simulation after loading" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:713 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:719 msgid "Use FLOAT in ms as delay between simulation steps" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:716 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:722 msgid "Use TIME[] as times when the simulation should halt" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:720 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:726 msgid "Load edge/lane weights for visualization from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:723 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:729 msgid "Load a secondary road network for abstract visualization from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:726 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:732 msgid "Restart the simulation after ending (demo mode)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:729 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:735 msgid "Do not load background pictures" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:732 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:738 msgid "Load current viewport from registry" -msgstr "" +msgstr "Cargar ventana gráfica actual desde el registro" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:735 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:741 msgid "Create initial window with the given x,y size" -msgstr "" +msgstr "Crear ventana inicial con el tamaño x,y dado" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:738 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:744 msgid "Create initial window at the given x,y position" -msgstr "" +msgstr "Crear ventana inicial en la posición x,y dada" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:741 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:747 msgid "The aggregation period for value tracker windows" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:745 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:751 msgid "Start with an OpenSceneGraph view instead of the regular 2D view" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:750 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:756 msgid "Enable overlay for screen recognition" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:754 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:760 msgid "Enable output messages during GUI-Testing" -msgstr "" +msgstr "Habilitar mensajes de salida durante la prueba de GUI" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:758 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:764 msgid "Save gui settings in the given settings output file" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:809 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:815 msgid "No network file (-n) specified." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:813 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:819 msgid "Invalid scaling factor." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:817 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:823 msgid "A vehroute-output file is needed for exit times." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:829 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:835 msgid "You can either restart or quit on end." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:834 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:840 msgid "" "The option 'meso-junction-control.limited' implies 'meso-junction-control'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:852 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:858 msgid "The begin time should not be negative." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:862 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:868 msgid "The end time should be after the begin time." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:867 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:873 msgid "the minimum step-length is 0.001" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:882 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:888 msgid "The save-state time=% will not be used before simulation end at %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:894 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:900 msgid "" "option movereminder-output.vehicles requires option movereminder-output to " "be set" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:899 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:905 msgid "" "The option 'sloppy-insert' is deprecated, because it is now activated by " "default, see the new option 'eager-insert'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:902 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:908 msgid "" "Only one of the options 'lanechange.duration' or 'lateral-resolution' may be " "given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:906 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:912 msgid "Sublane dynamics are not supported by mesoscopic simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:910 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:916 msgid "" "The option 'ignore-accidents' is deprecated. Use 'collision.action none' " "instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:923 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:929 msgid "" "The option tripinfo-output.write-undeparted implies tripinfo-output.write-" "unfinished." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:945 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:951 #, c-format msgid "Unknown model '%' for option 'carfollow.model'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:954 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:960 #, c-format msgid "" "Invalid value '%' for option 'default.emergencydecel'. Must be a FLOAT or " "'default' or 'decel'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:960 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:966 msgid "You need a non-negative delay." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:973 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:979 msgid "Parallel simulation is only possible when compiled with Fox." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:978 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:984 msgid "You need at least one thread." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:982 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:988 msgid "" "Number of threads exceeds number of thread-rngs. Simulation runs with the " "same seed may produce different results" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:985 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:991 msgid "game.mode must be one of ['tls', 'drt']" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:992 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:998 msgid "" "Invalid transfer option '%'. Must be one of 'parkingAreas', 'ptStops' and " "'allJunctions'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:1051 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:1057 msgid "" "Integration method was set to 'ballistic', since a default action step " "length was specified." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSInsertionControl.cpp:276 -#: /home/micha/programming/sumo/src/router/RONet.cpp:481 +#: D:\Repos\sumo/src\microsim\MSInsertionControl.cpp:276 +#: D:\Repos\sumo/src\router\RONet.cpp:481 #, c-format msgid "Another vehicle with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSInternalJunction.cpp:55 +#: D:\Repos\sumo/src\microsim\MSInternalJunction.cpp:55 #, c-format msgid "Internal junction % has no incoming lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:312 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:314 msgid "Unequal lengths of neigh lane '%' and lane '%' (% != %)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:321 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:323 msgid "Unequal lengths of bidi lane '%' and lane '%' (% != %)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:758 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:760 #, c-format msgid "Vehicle '%' is inserted in emergency situation." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:764 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:766 msgid "Vehicle '%' will not be able to depart using the given velocity (%)!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:780 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:782 msgid "" "Invalid departPos % given for vehicle '%'. Inserting at lane end instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1025 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:1027 msgid "" "Vehicle '%' is inserted too fast and will violate the speed limit on a lane " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1029 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:1031 msgid "" "Vehicle '%' will not be able to depart using the given velocity (slow lane " "ahead)!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1658 -msgid "" -"Vehicle '%' collision with person '%', lane='%', gap=%, time=%, stage=%." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2059 +msgid "Vehicle '%'" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2088 +#, c-format +msgid "Teleporting vehicle '%' after" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2093 +#, c-format +msgid "Removing vehicle '%' after" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2097 +#, c-format +msgid "Keeping remote-controlled vehicle '%' after" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2110 +msgid " collision with person '%', lane='%', gap=%, time=%, stage=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1800 -msgid "Vehicle '%' collision with person '%', lane='%', time=%, stage=%." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2113 +msgid " collision with person '%', lane='%', time=%, stage=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2101 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2179 msgid "Teleporting vehicle '%'; beyond end of lane, target lane='%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2108 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2186 msgid "Removing vehicle '%' after earlier collision, lane='%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2113 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2191 msgid "Teleporting vehicle '%' after earlier collision, lane='%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2585 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2663 msgid "" "Lane '%' is approached multiple times from edge '%'. This may cause " "collisions." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:4184 -msgid "Invalid collision.action '%'." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:4268 +msgid "Invalid % '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:4314 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:4405 msgid "" "State was saved with more than % threads. Change the number of threads or do " "not load RNG state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:169 -#: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:232 -#: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:239 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:169 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:232 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:239 msgid "Method not supported" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:187 -#: /home/micha/programming/sumo/src/router/RONet.cpp:60 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:187 +#: D:\Repos\sumo/src\router\RONet.cpp:60 msgid "A network was not yet constructed." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:221 -#: /home/micha/programming/sumo/src/router/RONet.cpp:83 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:221 +#: D:\Repos\sumo/src\router\RONet.cpp:83 msgid "A network was already constructed." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:286 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:286 msgid "" "Option weights.separate-turns is only supported when simulating with " "internal lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:388 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:388 msgid "Simulation version % started with time: %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1459 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1463 msgid "" "TraCI and Triggers cannot use routing algorithm '%'. using 'astar' instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1629 -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:427 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:235 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:221 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1633 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:427 +#: D:\Repos\sumo/src\router\ROLoader.cpp:235 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:221 #, c-format msgid "Loading of % failed." msgstr "La carga de % falló." -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1649 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1653 #, c-format msgid "Loading state from '%' failed." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:103 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:108 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:103 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:108 msgid "Taz usage was requested but no taz present in % '%'!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:262 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:262 #, c-format msgid "Vehicle type distribution '%' is empty." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:266 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:910 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:266 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:910 #, c-format msgid "Another vehicle type (or distribution) with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:316 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:287 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:316 msgid "Ids of internal routes are ignored (vehicle '%')." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:306 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:306 msgid "Invalid reference to route '%' in route %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:317 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:317 msgid "Attribute 'period' is deprecated for route. Use 'cycleTime' instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:330 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:330 msgid "Disconnected route % when repeating." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:336 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:336 msgid "Invalid cost for route '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:393 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:393 #, c-format msgid "Route '%' has no edges." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:411 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:446 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:411 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:446 msgid "" "Cannot repeat stops with 'until' in route % because no cycleTime is defined." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:420 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:420 msgid "" "Cannot repeat stops with 'arrival' in route % because no cycleTime is " "defined." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:443 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:443 #, c-format msgid "A vehicle with id '%' already exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:446 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:520 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:446 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:520 #, c-format msgid "Another route (or distribution) with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:524 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:524 #, c-format msgid "Route distribution '%' is empty." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:564 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:559 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:564 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:559 msgid "" "Vehicle type '%' with vClass=pedestrian should only be used for persons and " "not for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:573 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:573 msgid "" "Ignoring child element 'route' for vehicle '%' because attribute 'route' is " "set." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:582 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:582 #, c-format msgid "Vehicle '%' has no route." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:724 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:724 msgid "" "Could not merge vehicle stops for vehicle '%' into implicitly defined route " "'%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:755 -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:327 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:755 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:327 msgid "" "Person '%' receives type '%' which implicitly uses unsuitable vClass '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:891 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:891 msgid "" "There exists a person and a container with the same id '%'. Starting with " "SUMO 1.9.0 this is an error." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:986 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:986 #, c-format msgid "Another flow with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1127 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1127 msgid "The busStop '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1133 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1133 msgid "The containerStop '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1139 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1139 msgid "The parkingArea '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1146 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1146 msgid "The chargingStation '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1153 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1153 msgid "The overhead wire segment '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1157 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1157 msgid "Invalid stop definition%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1305 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1309 msgid "Stop edge '%' missing in attribute 'via' for % '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1324 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1198 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1316 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1329 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1203 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1321 msgid "" "The attribute departPos is no longer supported for walks, please use the " "person attribute, the arrivalPos of the previous step or explicit stops." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1350 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1355 msgid "Ignoring arrivalPos for % because it is outside the given stop '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1356 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1219 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1361 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1224 msgid "No destination edge for %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1385 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1239 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1390 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1244 msgid "Start edge not defined for person '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1395 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1460 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1250 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1307 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1400 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1465 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1255 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1312 msgid "Non-positive walking duration for '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1422 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1466 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1311 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1427 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1471 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1316 msgid "Non-positive walking speed for '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1491 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1496 msgid "No edges to walk for person '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1528 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1533 msgid "" "Could not find departure lane for walk of person '%' when interpreting " "departPosLat" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1600 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1605 msgid "Could not read tranship speed for container '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1608 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1613 msgid "Non-positive tranship speed for container '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1634 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1639 #, c-format msgid "The start edge for container '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1653 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1658 msgid "" "Inconsistent tranship for container '%', only one option is allowed: " "'edges', 'to', 'containerStop'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1659 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1664 msgid "No edges to tranship container '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:76 -#: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:64 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:164 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteLoader.cpp:36 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:76 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:64 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:164 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteLoader.cpp:36 msgid "Can not read XML-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:87 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:87 msgid "Could not parse time from state file '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:184 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:184 msgid "State was written with sumo version % (present: %)!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:229 -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:285 -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignalConstraint.cpp:144 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:229 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:285 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignalConstraint.cpp:144 #, c-format msgid "Unknown lane '%' in loaded state." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:389 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:389 #, c-format msgid "Ignoring program '%' for traffic light '%' in loaded state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:424 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:424 msgid "Could not load vehicle control state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:433 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:433 msgid "Removed % vehicles while loading state." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:459 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:459 #, c-format msgid "Could not load vehicle '%' from state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:319 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:319 msgid "No gap control available for meso." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:714 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:714 msgid "" "Lane change model did not provide a reason for changing (state=%, time=%\n" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:755 -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:171 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:755 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:171 msgid "should not happen" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:944 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:944 msgid "" "Vehicle '%' moved by TraCI from % to % (dist %) with implied speed of % " "(exceeding maximum speed %). time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1701 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1688 msgid "Vehicle '%' aborts joining after extension of %s at time %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1846 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1833 msgid "Vehicle '%' to split from vehicle '%' is not known. time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:2741 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:2769 msgid "Suspicious right_before_left junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4375 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4487 msgid " for unknown reasons" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4383 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4495 msgid "" -"Vehicle '%' performs emergency stop at the end of lane '%'% (decel=%, " -"offset=%), time=%." +"Vehicle '%' performs emergency stop at the end of lane '%'% (decel=%, offset=" +"%), time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4458 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4570 msgid "Unexpected end of opposite lane for vehicle '%' at lane '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4576 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4688 msgid "" "Vehicle '%' performs emergency braking on lane '%' with decel=%, wished=%, " "severity=%, time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:5427 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:5571 #, c-format msgid "Vehicle '%' aborts stop." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:7213 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:7408 msgid "Error: Invalid vehicles in state (may be a meso state)!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleControl.cpp:449 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:7439 +msgid "Action steps are out of sync for loaded vehicle '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSVehicleControl.cpp:469 #, c-format msgid "Vehicle '%' aborted waiting for a % that will never come." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:169 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:170 msgid "Vehicle '%' ends teleporting on edge '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:308 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:318 msgid "" "Value of 'emergencyDecel' (%) should be higher than 'decel' (%) for vType " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:311 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:321 msgid "" "Value of 'emergencyDecel' (%) is lower than 'apparentDecel' (%) for vType " "'%' may cause collisions." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:433 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:443 #, c-format msgid "" "Value of tau=% in vehicle type '%' lower than simulation step size may cause " "collisions." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:439 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:449 #, c-format msgid "" "Vehicle class '%' of vType '%' is set as ignored by option --meso-ignore-" @@ -2904,1068 +2939,1164 @@ "queue for multi-modal meso simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_CC.cpp:66 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_CC.cpp:66 msgid "" "The number of lanes needs to be specified in the attributes of carFollowing-" "CC with the \"lanesCount\" attribute" msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Daniel1.cpp:61 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Daniel1.cpp:61 msgid "" "Maximum speed of vehicle '%' is lower than the minimum speed (min: %, max: " "%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Krauss.cpp:58 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Krauss.cpp:58 msgid "Rounding 'sigmaStep' to % for vType '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Rail.cpp:50 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Rail.cpp:50 msgid "Unknown train type: %. Exiting!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Rail.cpp:252 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Rail.cpp:252 msgid "" "Anything else than semi implicit euler update is not yet implemented. " "Exiting!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:161 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:165 #, c-format msgid "Device '%' cannot save state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:201 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:205 msgid "Invalid float value '%'for parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:214 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:218 msgid "Invalid bool value '%'for parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:227 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:231 msgid "Invalid time value '%'for parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:65 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:65 msgid "The range of the bt receiver" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:68 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:68 msgid "Whether all recognition point shall be written" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:71 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:71 msgid "The offtime used for calculating detection probability (in seconds)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:295 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:295 msgid "" "The vehicle '%' cannot be in the range of vehicle '%', leave, and enter it " "in one step." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:421 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:436 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:421 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:436 msgid "" "btreceiver: Can not update position of vehicle '%' which is not on the road." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTsender.cpp:120 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTsender.cpp:134 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTsender.cpp:120 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTsender.cpp:134 msgid "" "btsender: Can not update position of vehicle '%' which is not on the road." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:52 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:52 msgid "Track fuel consumption for non-electric vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:109 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:122 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:128 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:113 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:126 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:132 msgid "" "Battery builder: Vehicle '%' doesn't have a valid value for parameter % (%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:199 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:203 #, c-format msgid "Battery of vehicle '%' is depleted." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:309 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:319 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:329 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:313 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:323 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:333 msgid "Trying to set into the battery device of vehicle '%' an invalid % (%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Bluelight.cpp:59 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Bluelight.cpp:59 msgid "" "Set the distance at which other drivers react to the blue light and siren " "sound" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Bluelight.cpp:68 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Bluelight.cpp:68 msgid "" "bluelight device is not compatible with mesosim (ignored for vehicle '%')" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:66 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:66 msgid "Initial value assigned to the driver's awareness." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:68 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:68 msgid "Time scale for the error process." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:70 msgid "Noise intensity driving the error process." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:72 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:72 msgid "" "General scaling coefficient for applying the error to the perceived speed " "difference (error also scales with distance)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:74 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:74 msgid "" "General scaling coefficient for applying the error to the perceived distance " "(error also scales with distance)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:76 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:76 msgid "" "General scaling coefficient for applying the error to the vehicle's own " "speed when driving without a leader (error also scales with own speed)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:78 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:78 msgid "" "Base threshold for recognizing changes in the speed difference (threshold " "also scales with distance)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:80 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:80 msgid "" "Base threshold for recognizing changes in the headway (threshold also scales " "with distance)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:82 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:82 msgid "Minimal admissible value for the driver's awareness." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:84 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:84 msgid "" "Maximal reaction time (~action step length) induced by decreased awareness " "level (reached for awareness=minAwareness)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:102 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:116 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:116 msgid "Invalid value '%'for vType parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:166 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:179 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:166 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:179 msgid "" "ElecHybrid builder: Vehicle '%' doesn't have a valid value for parameter % " "(%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:374 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:374 #, c-format msgid "" "The resistivity of overhead wire segment connected to vehicle % is < 0. Set " "to 1e-6." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:432 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:528 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:711 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:848 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:432 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:528 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:711 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:848 msgid "" "Overhead wire solver is on, but the Eigen library has not been compiled in!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:648 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:883 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:648 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:883 msgid "The element or node with the last Id was not found in the circuit!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Emissions.cpp:47 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Emissions.cpp:47 msgid "Recording begin time for emission-data" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Emissions.cpp:50 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Emissions.cpp:50 msgid "Recording period for emission-output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:48 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:48 msgid "" "An exemplary parameter which can be used by all instances of the example " "device" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:63 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:63 #, c-format msgid "Invalid value '%'for vehicle parameter 'example'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:75 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:75 #, c-format msgid "Invalid value '%'for vType parameter 'example'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:67 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:67 msgid "Recording begin time for FCD-data" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:70 -#: /home/micha/programming/sumo/src/microsim/devices/MSTransportableDevice_FCD.cpp:49 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSTransportableDevice_FCD.cpp:49 msgid "Recording period for FCD-data" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:73 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:73 msgid "Record objects in a radius around equipped vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:123 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:123 #, c-format msgid "Specified shape '%' for filtering fcd-output could not be found." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:148 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:148 msgid "Could not load names of edges for filtering fcd-output from '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:167 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:167 #, c-format msgid "Unknown attribute '%' to write in fcd output." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Friction.cpp:48 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Friction.cpp:48 msgid "" "The measurement noise parameter which can be applied to the friction device" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Friction.cpp:50 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Friction.cpp:50 msgid "" "The measurement offset parameter which can be applied to the friction device " "-> e.g. to force false measurements" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:49 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:49 msgid "The communication range to the traffic light" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:52 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:52 msgid "The maximum speed factor when approaching a green light" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:55 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:55 msgid "Minimum speed when coasting towards a red light" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:171 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:171 msgid "" "Invalid value '%' for parameter 'device.glosa.range' of traffic light '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:54 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:54 msgid "The period with which the vehicle shall be rerouted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:58 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:58 msgid "The rerouting period before depart" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:62 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:62 msgid "The weight of prior edge weights for exponential moving average" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:66 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:66 msgid "The number of steps for moving average weight of prior edge weights" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:70 msgid "The interval for updating the edge weights" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:75 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:75 msgid "Use zones (districts) as routing start- and endpoints" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:78 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:78 msgid "" "Use weight files given with option --weight-files for initializing edge " "weights" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:82 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:82 msgid "The number of parallel execution threads used for rerouting" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:85 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:85 msgid "Let rerouting happen at the same time for all vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:88 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:88 msgid "Allow rerouting triggered by rail signals." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:91 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:91 msgid "Compute separate average speeds for bicycles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:94 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:94 msgid "Save adapting weights to FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:102 msgid "" "Only one of the options 'device.rerouting.adaptation-steps' or 'device." "rerouting.adaptation-weight' may be given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:106 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:106 msgid "weights.random-factor cannot be less than 1" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:110 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:110 msgid "Negative value for device.rerouting.adaptation-interval!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:115 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:115 msgid "" "The value for device.rerouting.adaptation-weight must be between 0 and 1!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:120 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:243 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:120 +#: D:\Repos\sumo/src\router\ROFrame.cpp:243 msgid "Parallel routing is only possible when compiled with Fox." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:125 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:125 msgid "Adapting number of routing threads to number of simulation threads." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:220 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:234 msgid "" "Specifies which measures will be logged (as a space or comma-separated " -"sequence of IDs in ('TTC', 'DRAC', 'PET'))" +"sequence of IDs in ('TTC', 'DRAC', 'PET', 'PPET','MDRAC'))" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:222 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:236 msgid "" "Specifies space or comma-separated thresholds corresponding to the specified " "measures (see documentation and watch the order!). Only events exceeding the " "thresholds will be logged." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:224 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:238 msgid "" "Specifies whether trajectories will be logged (if false, only the extremal " "values and times are reported)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:226 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:240 msgid "" "Specifies the detection range in meters. For vehicles below this distance " "from the equipped vehicle, SSM values are traced." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:228 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:242 msgid "" "Specifies the time in seconds to be logged after a conflict is over. " "Required >0 if PET is to be calculated for crossing conflicts." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:230 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:244 +msgid "Specifies the perception reaction time for MDRAC computation." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:246 msgid "Give a global default filename for the SSM output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:232 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:248 msgid "Whether to use coordinates of the original reference system in output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:234 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:250 msgid "Whether to write positions (coordinates) for each timestep" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:236 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:252 msgid "Whether to write lanes and their positions for each timestep" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:247 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:254 +msgid "" +"Which conflicts will be excluded from the log according to the conflict type " +"they have been classified (combination of values in 'ego', 'foe' , '', any " +"numerical valid conflict type code). An empty value will log all and " +"'ego'/'foe' refer to a certain conflict type subset." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:265 msgid "Could not load names of edges for filtering SSM device output from '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:1057 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:1119 msgid "" "SSM device of vehicle '%' detected collision with vehicle '%' at time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2188 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2331 msgid "" "Cannot classify SSM encounter between ego vehicle % and foe vehicle % at " "time=%\n" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2366 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2390 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2509 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2533 msgid "" "Cannot compute SSM due to bad internal lane geometry at junction '%'. " "Crossing point between traffic from links % and % not found." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3497 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3699 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3703 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3984 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.measures'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3503 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3705 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3709 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3990 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.measures'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3508 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3714 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.file'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3531 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3737 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.geo'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3537 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3743 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.geo'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3542 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3748 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.geo'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3558 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3764 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.write-positions'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3564 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3770 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.write-positions'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3569 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3596 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3775 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3802 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.write-positions'. " "Using default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3585 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3791 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.write-lane-positions'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3591 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3797 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.write-lane-positions'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3612 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3819 +#, c-format +msgid "Invalid value '%' for vehicle parameter 'ssm.conflict-order'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3827 +#, c-format +msgid "Invalid value '%' for vType parameter 'ssm.conflict-order'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3833 +msgid "" +"Vehicle '%' does not supply vehicle parameter 'device.ssm.exclude-conflict-" +"types'. Using default of '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3851 +msgid "" +"SSM order filter '%' is not supported. Aborting construction of SSM device " +"'%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3868 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.range'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3618 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3874 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.range'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3623 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3879 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.range'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3639 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3895 +#, c-format +msgid "Invalid value '%'for vehicle parameter 'ssm.mdrac.prt'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3901 +#, c-format +msgid "Invalid value '%'for vType parameter 'ssm.mdrac.prt'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3906 +msgid "" +"Vehicle '%' does not supply vehicle parameter 'device.ssm.mdrac.prt'. Using " +"default of '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3924 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.extratime'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3645 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3930 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.extratime'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3650 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3935 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.extratime'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3656 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3941 #, c-format msgid "" "Negative (or no) value encountered for vehicle parameter 'device.ssm." "extratime' in vehicle '%' using default value % instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3670 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3955 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.trajectories'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3676 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3961 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.trajectories'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3681 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3966 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.trajectories'. " "Using default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3710 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3995 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.measures'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3727 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4012 msgid "" "SSM identifier '%' is not supported. Aborting construction of SSM device '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3738 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4023 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.thresholds'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3744 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4029 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.thresholds'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3749 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4034 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.thresholds'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3764 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4049 msgid "" "Given list of thresholds ('%') is not of the same size as the list of " "measures ('%').\n" "Please specify exactly one threshold for each measure." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:82 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:46 +msgid "" +"Time to wait for a rescue vehicle on the road side when the battery is empty" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:48 +msgid "" +"Additional battery buffer for unexpected traffic situation when estimating " +"the battery need" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:50 +msgid "Battery percentage to go into rescue mode" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:52 +msgid "Search radius in travel time seconds" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:54 +msgid "When to trigger a new search if no station has been found" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:56 +msgid "The maximum charging speed of the vehicle battery" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:58 +msgid "Type of energy transfer" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:60 +msgid "" +"After this waiting time vehicle searches for a new station when the initial " +"one is blocked" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:124 +msgid "" +"Rerouting using station finder removes all upcoming stops for vehicle '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:84 msgid "" "The dispatch algorithm [greedy|greedyClosest|greedyShared|routeExtension|" "traci]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:85 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:87 msgid "Write information from the dispatch algorithm to FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:88 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:90 msgid "Load dispatch algorithm parameters in format KEY1:VALUE1[,KEY2:VALUE]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:91 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:93 msgid "The period between successive calls to the dispatcher" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:94 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:96 msgid "The behavior of idle taxis [stop|randomCircling]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:97 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:99 msgid "Write information from the idling algorithm to FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:115 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:117 msgid "Vehicle '%' with device.taxi should have vClass taxi instead of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:122 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:124 msgid "" "Vehicle '%' with personCapacity % and containerCapacity % is not usable as " "taxi." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:147 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:149 #, c-format msgid "Dispatch algorithm '%' is not known" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:313 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:328 msgid "Invalid Re-dispatch for existing customer '%' with a new reservation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:346 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:361 msgid "Re-dispatch did not mention pickup for existing customer '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:453 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:468 msgid "Could not add taxi stop for vehicle '%' to %. time=% error=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:569 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:584 msgid "Taxi '%' reaches scheduled end of service at time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:645 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:660 msgid "" "All customers left vehicle '%' at time=% but there are % remaining stops" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:116 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:116 msgid "Vehicle type for manual driving regime." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:118 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:118 msgid "Vehicle type for automated driving regime." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:120 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:120 msgid "Average response time needed by a driver to take back control." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:122 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:122 msgid "Recovery rate for the driver's awareness after a ToC." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:124 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:124 msgid "" "Attention level below which a driver restrains from performing lane changes " "(value in [0,1])." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:126 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:126 msgid "Average awareness a driver has initially after a ToC (value in [0,1])." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:128 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:128 msgid "Deceleration rate applied during a 'minimum risk maneuver'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:130 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:130 msgid "" "Time, which the vehicle requires to have ahead to continue in automated " "mode. The default value of 0 indicates no dynamic triggering of ToCs." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:132 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:132 msgid "Probability that a dynamically triggered TOR is not answered in time." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:134 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:134 msgid "If true, the vehicle tries to change to the right during an MRM." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:136 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:136 msgid "" "If set, the vehicle tries to reach the given named stopping place during an " "MRM." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:138 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:138 msgid "Duration the vehicle stays at the safe spot after an MRM." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:140 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:140 msgid "" "Maximal acceleration that may be applied during the ToC preparation phase." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:142 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:142 msgid "Timegap for ToC preparation phase." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:144 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:144 msgid "Additional spacing for ToC preparation phase." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:146 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:146 msgid "" "Maximal deceleration applied for establishing increased gap in ToC " "preparation phase." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:148 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:148 msgid "" "Rate of adaptation towards the increased headway during ToC preparation." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:150 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:150 msgid "" "Whether a coloring scheme shall by applied to indicate the different ToC " "stages." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:152 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:152 msgid "Switches on output by specifying an output filename." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:161 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:161 msgid "ToC device is not supported by the mesoscopic simulation." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:200 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:200 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.measures'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:206 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:206 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.measures'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:220 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:220 msgid "" "Given value for ToC device parameter 'dynamicMRMProbability' (=%) is not in " "the admissible range [0,0.5]. Truncated to %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:246 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:246 msgid "" "If any openGap parameters for the ToC model are specified, then at least one " "of toc.ogNewTimeHeadway and toc.ogNewSpaceHeadway must be defined." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:578 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:578 msgid "Ignoring unknown safe spot '%' for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:731 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:731 #, c-format msgid "vType '%' for vehicle '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:933 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:933 msgid "" "Setting device.toc.currentAwareness during automated mode has no effect." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:950 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:950 #, c-format msgid "" "Value of dynamicToCThreshold must be non-negative. (Given value % for " "vehicle % is ignored)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:961 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:961 #, c-format msgid "" "Value of dynamicMRMProbability must be non-negative. (Given value % for " "vehicle % is ignored)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:975 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:975 #, c-format msgid "" "Value of maxPreparationAccel must be non-negative. (Given value % for " "vehicle % is ignored)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:1000 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:1021 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:1000 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:1021 msgid "Unknown ToCState '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:97 +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:97 msgid "" "Mixing reservations of persons and containers with the same group is not " "supported for % and %" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:200 +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:200 msgid "Inconsistent group reservations." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:204 +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:204 msgid "Inconsistent group reservations (2)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:63 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:65 msgid "Idle taxi '%' has no next segment to stop. time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:104 #, c-format msgid "Idle taxi '%' could not stop within %m" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:155 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:157 #, c-format msgid "Vehicle '%' ends idling in a cul-de-sac" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:96 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:183 +msgid "Could not determine taxi stand for vehicle '%' at time=%" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:96 msgid "Rerouting is useless if the edge weights do not get updated!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:148 +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:148 msgid "weights.priority-factor cannot be negative." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:152 +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:152 msgid "" "Option weights.priority-factor does not take effect because all edges have " "the same priority" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:411 +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:411 msgid "Unknown routing algorithm '%'!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSTransportableDevice_Routing.cpp:46 +#: D:\Repos\sumo/src\microsim\devices\MSTransportableDevice_Routing.cpp:46 msgid "The period with which the person shall be rerouted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/engine/VehicleEngineHandler.cpp:157 +#: D:\Repos\sumo/src\microsim\engine\VehicleEngineHandler.cpp:157 msgid "Invalid engine map type. Only \"poly\" is supported for now" msgstr "" -#: /home/micha/programming/sumo/src/microsim/engine/VehicleEngineHandler.cpp:197 +#: D:\Repos\sumo/src\microsim\engine\VehicleEngineHandler.cpp:197 msgid "Unknown tag '%' while parsing." msgstr "" -#: /home/micha/programming/sumo/src/microsim/lcmodels/MSAbstractLaneChangeModel.cpp:82 +#: D:\Repos\sumo/src\microsim\lcmodels\MSAbstractLaneChangeModel.cpp:82 #, c-format msgid "Lane change model '%' is not compatible with sublane simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/lcmodels/MSAbstractLaneChangeModel.cpp:98 +#: D:\Repos\sumo/src\microsim\lcmodels\MSAbstractLaneChangeModel.cpp:98 #, c-format msgid "Lane change model '%' not implemented" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:124 +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:124 msgid "" "No valid detector length and start position given. Assuming startPos = 0 and " "length = end position" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:128 +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:128 msgid "" "No valid detector length and end position given. Assuming endPos = lane " "length and length = endPos-startPos" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:908 +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:908 msgid "Multi-lane e2Detector does not support detecting persons yet" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:161 +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:160 msgid "Negative vehicle step fraction for '%' on lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:556 +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:554 msgid "aggregated meanData output not yet implemented for trackVehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:755 +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:766 msgid "Unknown attribute '%' to write in meanData '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSStopOut.cpp:69 +#: D:\Repos\sumo/src\microsim\output\MSStopOut.cpp:69 msgid "Vehicle '%' stops on edge '%', time=% without ending the previous stop." msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSStopOut.cpp:105 +#: D:\Repos\sumo/src\microsim\output\MSStopOut.cpp:105 msgid "Vehicle '%' ends stop on edge '%', time=% without entering the stop." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:139 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:140 #, c-format msgid "Traffic light '%' does not control any links" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:227 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:229 msgid "" "Unknown inductionLoop '%' given as custom detector for actuated tlLogic '%', " "program '%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:241 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:242 msgid "" "At actuated tlLogic '%', minDur % is too short for a detector gap of %m." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:406 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:407 msgid "At actuated tlLogic '%', actuated phase % has no controlling detector." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:443 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:444 msgid "At actuated tlLogic '%', linkIndex % has no controlling detector." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:452 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:453 msgid "" "Invalid link '%' given as linkMaxDur parameter for actuated tlLogic '%', " "program '%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:462 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:463 msgid "" "Invalid link '%' given as linkMinDur parameter for actuated tlLogic '%', " "program '%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:903 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:905 msgid "" "At actuated tlLogic '%', transition phase % should not have multiple next " "phases" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1061 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1063 msgid "Unmatched parentheses in condition %'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1076 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1078 msgid "Invalid empty condition '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1091 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1093 msgid "Unsupported condition '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1154 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1156 msgid "Division by 0 in condition '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1205 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1207 #, c-format msgid "Modifying global condition '%' is forbidden" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1217 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1219 msgid "Invalid empty expression" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1313 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1315 msgid "Error when retrieving conditions '%' for tlLogic '%' (%)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSDelayBasedTrafficLightLogic.cpp:96 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSDelayBasedTrafficLightLogic.cpp:96 msgid "" "Unknown laneAreaDetector '%' given as custom detector for delay_based " "tlLogic '%', program '%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSOffTrafficLightLogic.cpp:80 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSOffTrafficLightLogic.cpp:80 msgid "Invalid 'off'-state for link % at junction '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSOffTrafficLightLogic.cpp:84 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSOffTrafficLightLogic.cpp:84 msgid "Inconsistent 'off'-states for linkIndex % at tlLogic '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:109 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:109 #, c-format msgid "Rail signal at junction '%' does not control any links" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:1210 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:1210 msgid "Found circular block after railSignal % (% edges, length %)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:1321 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:1321 msgid "Found circular block at railSignal % (% edges, length %)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignalConstraint.cpp:147 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignalConstraint.cpp:147 #, c-format msgid "Unknown tracker lane '%' in loaded state." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:169 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:169 msgid "Listing output lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:243 -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:277 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:243 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:277 msgid "Unrecognized traffic threshold calculation mode" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:57 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:57 msgid "NO VALID POLICY LIST READ" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:81 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:81 msgid "VEHICLE TYPES WEIGHT only works with phase policy, which is missing" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:160 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:160 #, c-format msgid "" "MSSwarmTrafficLightLogic::init Intersection % pheromoneInputLanes: lane " "% not allowed" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:182 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:182 #, c-format msgid "" "MSSwarmTrafficLightLogic::init Intersection % pheromoneOutputLanes lane " "% not allowed" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:194 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:194 msgid "*** Intersection % will run using MSSwarmTrafficLightLogic ***" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:202 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:202 msgid "TL % time 0 Policy: % (pheroIn= 0 ,pheroOut= 0 ) OldPolicy: % ." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:81 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:81 msgid "Mismatching phase size in tls '%', program '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:116 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:116 msgid "No initial signal plan loaded for tls '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:163 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:163 msgid "Could not build an off-state for tls '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:487 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:487 #, c-format msgid "" "The computed factor sum in WAUT '%' at time '%' equals zero;\n" " assuming an error in WAUT definition." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:159 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:163 msgid "Unused states in tlLogic '%', program '%' in phase % after tl-index %" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:178 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:182 msgid "" "Missing yellow phase in tlLogic '%', program '%' for tl-index % when " "switching% to phase %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:200 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:204 msgid "Missing green phase in tlLogic '%', program '%' for tl-index %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:263 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:267 msgid "" "Program '%' at tlLogic '%' is incompatible with logic at junction " "'%' (mutual conflict between link indices %,% tl indices %,% phase %).\n" @@ -3973,1772 +4104,1785 @@ "include the program when building." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:460 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:464 msgid "Green fraction is only 1% for link % in tlLogic '%', program '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:164 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:164 msgid "" "At NEMA tlLogic '%', different sizes of NEMA phase states. Please check the " "NEMA XML" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:566 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:566 msgid "At NEMA tlLogic '%', actuated phase % has no controlling detector" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:584 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:584 msgid "At NEMA tlLogic '%, linkIndex % has no controlling detector" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:630 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:630 #, c-format msgid "NEMA tlLogic '%' is not coordinated but an offset was set." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:959 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:959 msgid "I am starting in the coordinated phases" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel.h:180 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel.h:182 msgid "moveTo is ignored by the current movement model" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel.h:196 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel.h:198 msgid "moveToXY is ignored by the current movement model" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Remote.cpp:209 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Remote.cpp:209 #, c-format msgid "Edge: % does not allow pedestrians." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Remote.cpp:299 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Remote.cpp:299 msgid "Pedestrian model 'remote' does not support simulation.loadState state\n" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:124 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:871 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:124 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:870 msgid "" "Pedestrian vType '%' width % is larger than pedestrian.striping.stripe-width " "and this may cause collisions with vehicles." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:179 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:179 msgid "Person '%' could not find sidewalk on edge '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:463 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:466 #, c-format msgid "Invalid walkingarea '%' does not allow continuation." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:1923 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:1926 msgid "Disconnected walk for person '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:2124 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:2127 msgid "Person '%' is jammed on edge '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:90 +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:90 msgid "Adjusting departPos for cloned walk with routeDistribution '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:94 +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:94 msgid "Adjusting arrivalPos for cloned walk with routeDistribution '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:98 +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:98 msgid "Adjusting departLane for cloned walk with routeDistribution '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSStageTrip.cpp:174 +#: D:\Repos\sumo/src\microsim\transportables\MSStageTrip.cpp:174 msgid "" "Ignoring vehicle type '%' when routing person '%' because it is not allowed " "on the start edge." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:134 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:134 msgid "Changing a transportable ID is not permitted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:256 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:256 msgid "Teleporting % '%'; waited too long, from edge '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:391 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:391 msgid "parkingAreaReroute not support for containers" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportableControl.cpp:69 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportableControl.cpp:69 msgid "Unknown pedestrian model '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:142 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:142 msgid "No flow intervals in calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:161 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:161 #, c-format msgid "Calibrator '%' has no active or upcoming interval" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:209 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:209 msgid "Insertion lane may differ from calibrator lane for calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:213 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:213 msgid "Unknown vehicle type '%' in calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:216 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:216 msgid "Mandatory attribute missing in definition of calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:218 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:218 msgid "" "Non-numeric value for numeric attribute in definition of calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:221 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:221 msgid "" "Either 'vehsPerHour', 'speed' or 'type' has to be set in flow definition of " "calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:224 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:224 msgid "Type calibration is not supported in meso for calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:318 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:318 msgid "Calibrator '%' could not remove vehicle '%' time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:699 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:699 msgid "Cannot set flow for calibrator '%' with overlapping interval." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:701 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:701 msgid "Cannot set flow for calibrator '%' with negative interval." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSLaneSpeedTrigger.cpp:176 +#: D:\Repos\sumo/src\microsim\trigger\MSLaneSpeedTrigger.cpp:176 msgid "Invalid or unsorted time entry in vss '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSLaneSpeedTrigger.cpp:192 +#: D:\Repos\sumo/src\microsim\trigger\MSLaneSpeedTrigger.cpp:192 msgid "Time % was set twice for vss '%'; replacing first entry." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:354 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:409 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:454 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:471 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:492 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:518 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:544 -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:386 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:354 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:409 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:454 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:471 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:492 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:518 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:544 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:386 msgid "" "Overhead circuit solver requested, but solver support (Eigen) not compiled " "in." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:579 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:579 msgid "Overhead circuit solver requested, but solver support not compiled in." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:690 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:690 #, c-format msgid "" "The requested total power could not be delivered by the overhead wire. Only " "% of originally requested power was provided." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:127 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:127 msgid "MSTriggeredRerouter %: No destination edge id given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:192 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:192 msgid "MSTriggeredRerouter %: No route id given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:217 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:217 msgid "MSTriggeredRerouter %: No parking area id given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:505 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:505 #, c-format msgid "" "Cannot keep destination edge '%' for vehicle '%' due to closed edges. " "Terminating route." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:604 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:604 msgid "Invalid value '%' for vehicle parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:612 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:612 msgid "Invalid value '%' for vType parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:784 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:782 #, c-format msgid "" "Parkingarea '%' along the way cannot be used by vehicle '%' for unknown " "reason" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1105 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1103 msgid "" "Invalid distance computation for vehicle '%' to parkingArea '%' at time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1160 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1158 msgid "" "Invalid distance computation for vehicle '%' from parkingArea '%' at time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1236 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1234 msgid "" "ParkingArea '%' is targeted by rerouter '%' but doesn't have it's own " "rerouter. This may cause parking search to abort." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:119 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:153 msgid "Ambiguity in turnarounds computation at junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:269 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:358 msgid "Converting invalid rail_crossing to priority junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:273 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:362 msgid "Converting invalid rail_crossing to traffic_light at junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:282 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1739 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:423 -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:358 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:371 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1744 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:423 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:358 msgid "Could not allocate tls '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:173 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:176 msgid "" "Added % bidi-edges to ensure that all tracks are usable in both directions." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:175 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:178 #, c-format msgid "Ignore % edges because they have the wrong spreadType" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:197 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:200 #, c-format msgid "Bidi-edge '%' prevented by filtering rules." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:211 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:214 msgid "Could not add bidi-edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:272 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:275 msgid "Railway nodes by number of incoming,outgoing edges:" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:370 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:373 msgid "Found % railway nodes marked as buffer_stop" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:380 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:383 msgid "Found % bidirectional rail edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:406 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:409 msgid "Found % railway edges and % railway nodes (% signals)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:523 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:526 msgid "Added % bidi-edges as extension of existing bidi edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:534 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:537 msgid "Could not find bidi-edge for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:639 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:642 msgid "Found % reversible edge sequences between broken rail nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:668 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:671 msgid "Reversed % sequences (count by length: %)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:689 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:692 msgid "Ignoring buffer stop junction '%' with % edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:746 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:749 msgid "Added % edges to connect % buffer stops in both directions." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:827 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:830 msgid "" "Added % bidi-edges between % pairs of railway switches (count by length: %)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:974 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:977 msgid "" "Edge sequence is not consistent with stop sequence in line '%', not adding " "bidi edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1016 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1019 #, c-format msgid "" "Stop on edge '%' can only be reached in reverse but edge has the wrong " "spreadType." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1037 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1044 msgid "No connection found between stops on edge '%' and edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1147 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1154 msgid "" "Added % bidi-edges to ensure connectivity of straight tracks at geometry-" "like nodes." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1149 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1156 msgid "" "Added % bidi-edges to ensure connectivity of straight tracks at switches." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1209 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1216 msgid "" "Cannot extend track direction priority because there are no track edges with " "positive priority" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1265 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1272 msgid "" "Edge '%' was loaded with undefined priority (%) but has unambiguous main " "direction (no bidi edge)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:116 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1359 +msgid "Added % rail signals at % stops." +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:116 #, c-format msgid "Can not build ramp on edge '%' - the edge is unsuitable." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:120 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:120 #, c-format msgid "Can not build on ramp on edge '%' - the edge is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:131 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:131 #, c-format msgid "Can not build off ramp on edge '%' - the edge is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:249 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:249 msgid "Ups - could not build on-ramp for edge '%' (node could not be build)!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:254 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:254 msgid "Ups - could not build on-ramp for edge '%'!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:284 -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:289 -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:400 -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:403 -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:710 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:284 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:289 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:400 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:403 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:710 msgid "Could not set connection!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:356 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:356 msgid "Ups - could not build off-ramp for edge '%' (node could not be build)!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:361 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:361 msgid "Ups - could not build off-ramp for edge '%'!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:423 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:423 msgid "For edge '%': could not compute shape." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:431 -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:459 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:432 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:460 #, c-format msgid "At least one of edge's '%' nodes is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:456 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:457 #, c-format msgid "Edge '%' needs at least one lane." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:462 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:463 msgid "Invalid edge id '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:492 -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:626 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:493 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:627 #, c-format msgid "Edge's '%' from- and to-node are at the same position." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:999 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1000 msgid "Found angle of % degrees at edge '%', segment %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1155 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1156 msgid "Could not set connection from '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1667 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1668 msgid "Connection '%_%->%_%' is only %m short." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1768 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1770 msgid "" "Intersecting left turns at junction '%' from lane '%' and lane '%' (increase " "junction radius to avoid this)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1868 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1870 msgid "" "Speed of % connection '%' reduced by % due to turning radius of % (length=%, " "angle=%)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2208 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2210 msgid "In lane '%': lane shape could not be determined (%)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2221 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2223 msgid "In lane '%': Could not build shape (%)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2629 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2637 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " "directions but only % targets" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2670 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2678 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " "directions and % targets (after target pruning)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2689 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2697 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " "connections with directions '%' but target edge '%' has only % suitable lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2716 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2724 msgid "" "Cannot apply turn sign information for edge '%' because not enough target " "lanes could be determined for direction '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2955 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2985 msgid "Edge '%' is not connected to outgoing edges at junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2969 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2999 msgid "Lane '%' is not connected from any incoming edge at junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2986 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3016 #, c-format msgid "Ignoring changeLeft prohibition for '%' to avoid dead-end" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2989 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3019 #, c-format msgid "Ignoring changeRight prohibition for '%' to avoid dead-end" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:3590 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3620 #, c-format msgid "The lane '%' on edge '%' already had a traffic light signal." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:3596 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3626 msgid "Could not set any signal of the tlLogic '%' (unknown group)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4079 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4117 msgid "Ignoring invalid stopOffset for edge '%' (negative offset)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4088 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4126 msgid "Ignoring invalid stopOffset for lane '%' (negative offset)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4094 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4132 msgid "Ignoring invalid stopOffset for lane '%' (invalid lane index)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4357 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4395 #, c-format msgid "Edge % allows pedestrians on all lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4415 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4453 #, c-format msgid "Edge '%' already has a dedicated lane for %s. Not adding another one." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4452 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4490 #, c-format msgid "Edge '%' doesn't have a dedicated lane for %s. Cannot be restored." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4500 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4538 msgid "Could not avoid overlapping shape at node '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:121 -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:140 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:121 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:140 msgid "Invalid boundary: need at least 2 coordinates" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:142 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:142 msgid "Invalid boundary: malformed coordinate" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:259 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:259 msgid "" "Cannot prune edges using a geo-boundary because no projection has been loaded" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:438 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:438 msgid "Attempt to rename edge using existing id '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:498 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:499 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:501 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:498 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:499 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:501 msgid "Error on parsing a split (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:556 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:556 msgid "Split at '%' lies beyond the edge's length (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:639 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:639 msgid "Could not insert edge '%' before split of edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:643 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:643 msgid "Could not insert edge '%' after split of edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:880 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:880 msgid "Moving opposite lane '%' from invalid lane '%' to lane index %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:882 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:882 msgid "Removing opposite lane '%' for invalid lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:891 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:891 msgid "Removing unknown opposite lane '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:896 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:896 msgid "Adapting invalid opposite lane '%' for edge '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:902 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:902 msgid "Adapting missing opposite lane '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:908 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:908 msgid "Averaging edge lengths for lane '%' (length %) and edge '%' (length %)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:921 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:921 msgid "Opposite lane '%' does not connect the same nodes as edge '%'!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1421 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1421 msgid "Replacing loaded roundabout '%' with '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1739 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1739 msgid "Edge '%' overlaps with edge '%' by %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1755 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1755 #, c-format msgid "Edge '%' has a vertical jump of %m." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1757 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1757 #, c-format msgid "Edge '%' has a grade of %%." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1767 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1767 #, c-format msgid "Connection '%' has a vertical jump of %m." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1769 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1769 #, c-format msgid "Connection '%' has a grade of %%." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1809 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1809 msgid "Not joining tram edge '%' with % lanes." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1883 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1883 msgid "Ambiguous tram edges '%' and '%' for lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:2037 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:138 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:554 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:2037 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:138 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:554 #, c-format msgid "Edge's '%' from-node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:2041 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:142 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:566 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:2041 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:142 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:566 #, c-format msgid "Edge's '%' to-node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:52 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:52 msgid "The default number of lanes in an edge" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:56 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:56 msgid "The default width of lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:59 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:59 msgid "The default method for computing lane shapes from edge shapes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:63 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:63 msgid "The default speed on an edge (in m/s)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:67 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:67 msgid "The default friction on an edge" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:71 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:71 msgid "The default priority of an edge" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:74 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:74 msgid "The default edge type" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:77 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:77 msgid "The default width of added sidewalks" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:80 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:80 msgid "The default width of added bike lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:83 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:83 msgid "The default width of a pedestrian crossing" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:86 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:86 msgid "The default speed 'limit' on a pedestrian crossing (in m/s)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:89 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:89 msgid "The default speed 'limit' on a pedestrian walkingarea (in m/s)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:92 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:92 msgid "The default for allowed vehicle classes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:95 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:95 msgid "The default for disallowed vehicle classes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:98 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:98 msgid "Whether junctions should be kept clear by default" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:101 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:101 msgid "The default turning radius of intersections" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:104 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:104 msgid "The default length when overriding connection lengths" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:107 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:107 msgid "" "The default algorithm for computing right of way rules ('default', " "'edgePriority')" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:110 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:110 msgid "" "Allow building right-before-left junctions when the incoming edge speeds are " "below FLOAT (m/s)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:113 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:113 msgid "" "Build left-before-right junctions instead of right-before-left junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:117 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:117 msgid "Omits internal links" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:120 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:120 msgid "" "Remaps alphanumerical IDs of nodes and edges to ensure that all IDs are " "integers" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:123 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:123 msgid "Remaps IDs of nodes to integers starting at INT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:126 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:126 msgid "Remaps IDs of edges to integers starting at INT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:130 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:130 msgid "" "Ensures that generated ids do not included any of the typed IDs from FILE " "(sumo-gui selection file format)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:134 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:134 msgid "Removes vehicle class restrictions from imported edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:138 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:138 msgid "Disables building turnarounds" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:142 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:142 msgid "Disables building turnarounds at tls-controlled junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:145 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:145 msgid "Disables building turnarounds at geometry-like junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:148 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:148 msgid "Disables building turnarounds except at dead end junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:151 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:151 msgid "" "Disables building turnarounds except at at junctions with a dedicated " "turning lane" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:154 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:154 msgid "Disables building turnarounds at fringe junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:157 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:157 msgid "Disables building connections to left" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:161 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:161 msgid "Splits edges across geometry nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:165 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:165 msgid "" "Replace nodes which only define edge geometry by geometry points (joins " "edges)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:168 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:168 msgid "Ensure that the given list of edges is not modified" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:176 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:176 msgid "Ensure that edges with public transport stops are not modified" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:188 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:192 msgid "splits geometry to restrict segment length" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:192 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:196 msgid "reduces too similar geometry points" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:195 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:199 msgid "" "Warn about edge geometries with an angle above DEGREES in successive segments" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:198 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:202 msgid "" "Warn about edge geometries with a turning radius less than METERS at the " "start or end" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:201 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:205 msgid "" "Straighten edge geometries to avoid turning radii less than geometry.min-" "radius" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:204 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:208 msgid "" "Straighten edge geometries to avoid turning radii less than geometry.min-" "radius (only railways)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:207 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:211 msgid "" "Warn if the junction shape is to far away from the original node position" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:210 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:214 msgid "Warn if edges overlap by more than the given threshold value" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:213 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:217 msgid "" "Ignore overlapping edges if they are separated vertically by the given " "threshold." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:216 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:220 msgid "Modify edge geometries to avoid overlap at junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:219 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:223 msgid "" "join adjacent lanes that have the same permissions and which do not admit " "lane-changing (sidewalks and disallowed lanes)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:222 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:226 msgid "" "Matches stops outside the road network to the referencing pt line when below " "the given distance" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:226 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:230 msgid "Repair topology of the railway network" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:229 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:233 msgid "" "Repair topology of the railway network just enough to let loaded public " "transport lines to work" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:232 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:236 msgid "" "Allow bidirectional rail use wherever rails with opposite directions meet at " "a straight angle" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:235 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:239 msgid "Add turn-around connections at all loaded stops." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:238 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:242 +msgid "" +"Penalty factor for adding new bidi edges to connect public transport stops" +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:245 msgid "Make all rails usable in both direction" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:241 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:248 msgid "Make all rails edge ids from FILE usable in both direction" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:244 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:251 msgid "Set edge priority values based on estimated main direction" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:247 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:254 msgid "Extend loaded edge priority values based on estimated main direction" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:250 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:257 +msgid "Guess signals that guard public transport stops" +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:260 msgid "The search radius for finding suitable road accesses for rail stops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:254 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:264 msgid "The maximum road accesses registered per rail stops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:258 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:268 msgid "" "The walking length of the access is computed as air-line distance multiplied " "by FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:262 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:272 msgid "Skips automatic generation of stops on the bidi-edge of a loaded stop" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:266 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:276 #, c-format msgid "Warn about edge geometries with a grade in % above FLOAT." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:269 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:279 msgid "Smooth edge geometries with a grade above the warning threshold." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:273 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:283 msgid "Turn off normalizing node positions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:277 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:186 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:287 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:186 msgid "Adds FLOAT to net x-positions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:281 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:190 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:291 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:190 msgid "Adds FLOAT to net y-positions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:284 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:193 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:294 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:193 msgid "Adds FLOAT to net z-positions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:288 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:298 msgid "Flips the y-coordinate along zero" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:292 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:302 msgid "Enable roundabout-guessing" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:295 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:305 msgid "Default visibility when approaching a roundabout" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:298 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:308 msgid "Enable guessing of opposite direction lanes usable for overtaking" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:301 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:311 msgid "Ensure that opposite edges have the same length" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:304 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:314 msgid "Enable guessing of network fringe nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:307 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:317 msgid "Guess disconnected edges above the given speed as outer fringe" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:310 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:320 msgid "Assumes left-hand traffic on the network" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:326 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:336 msgid "Interprets STR[] as list of junctions to exclude from joining" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:338 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:348 msgid "Modifies all edge speeds by adding FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:341 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:351 msgid "Modifies all edge speeds by multiplying by FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:344 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:354 msgid "Modifies all edge speeds to at least FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:352 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:362 msgid "Generate INT intermediate points to smooth out intersection corners" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:355 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:365 msgid "" "Generate INT intermediate points to smooth out lanes within the intersection" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:358 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:368 msgid "" "Generate longer intersections to allow for smooth s-curves when the number " "of lanes changes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:398 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:411 msgid "Forces rectangular cuts between lanes and intersections" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:457 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:470 msgid "Always build walking areas even if there are no crossings" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:460 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:473 msgid "" "Do not create a walkingarea between sidewalks that are connected by a " "pedestrian junction within FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:605 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:618 msgid "Only keep edges with speed in meters/second > FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:609 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:622 msgid "Remove edges in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:613 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:626 msgid "" "Only keep edges in STR[] or those which are kept due to other keep-edges or " "remove-edges options" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:616 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:629 msgid "" "Only keep edges in FILE (Each id on a single line. Selection files from sumo-" "gui are also supported) or those which are kept due to other keep-edges or " "remove-edges options" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:619 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:632 msgid "" "Remove edges in FILE. (Each id on a single line. Selection files from sumo-" "gui are also supported)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:623 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:636 msgid "Remove edges after joining" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:627 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:640 msgid "" "Only keep edges which are located within the given boundary (given either as " "CARTESIAN corner coordinates or as polygon )" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:630 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:643 msgid "" "Only keep edges which are located within the given boundary (given either as " "GEODETIC corner coordinates or as polygon " ")" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:634 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:647 msgid "Only keep edges which allow one of the vclasses in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:637 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:650 msgid "Remove edges which allow only vclasses from STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:640 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:653 msgid "Only keep edges where type is in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:643 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:656 msgid "Only keep the INT largest weakly connected components" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:646 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:659 msgid "Remove edges where type is in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:650 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:663 msgid "Removes isolated edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:657 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:670 msgid "All nodes will be unregulated" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:662 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:675 msgid "Do not regulate nodes in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:666 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:679 msgid "Do not regulate district nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:672 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:685 msgid "Enable ramp-guessing" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:675 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:688 msgid "" "Guess on-ramps and mark acceleration lanes if they exist but do not add new " "lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:679 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:692 msgid "Treat edges with speed > FLOAT as no ramps" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:683 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:696 msgid "Treat edges with speed < FLOAT as no highways" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:687 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:700 msgid "Use FLOAT as ramp-length" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:691 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:704 msgid "Use FLOAT as minimum ramp-length" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:695 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:708 msgid "Tries to handle the given edges as ramps" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:698 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:711 msgid "Do not consider the given edges as ramps" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:702 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:715 msgid "Avoids edge splitting" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:713 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:725 #, c-format msgid "unsupported value '%' for option '--tls.default-type'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:717 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:729 msgid "" "only one of the options 'keep-edges.in-boundary' or 'keep-edges.in-geo-" "boundary' may be given" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:721 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:733 msgid "" "only one of the options 'no-internal-links' or 'crossings.guess' may be given" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:725 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:737 msgid "only one of the options 'no-internal-links' or 'walkareas' may be given" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:729 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:741 msgid "" "only one of the options 'tls.green.time' or 'tls.cycle.time' may be given" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:733 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:745 msgid "default.lanenumber must be at least 1" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:741 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:753 msgid "" "only one of the options 'default.disallow' or 'default.allow' may be given" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:745 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:757 msgid "junctions.internal-link-detail must >= 2" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:750 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:762 msgid "" "Option 'junctions.scurve-stretch' requires internal lanes to work. Option '--" "no-internal-links' will be disabled." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:757 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:769 msgid "" "option 'default.junctions.radius' is smaller than option 'junctions.small-" "radius'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:765 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:777 msgid "tls.layout must be 'opposites', 'incoming' or 'alternateOneWay'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:770 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:782 msgid "default.right-of-way must be one of '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:774 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:786 msgid "roundabouts.visibility-distance must be positive or -1" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:790 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:802 msgid "Unknown value for default.spreadtype '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:88 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:88 msgid "Cannot supply height since no height data was loaded" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:136 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:136 msgid "Could not get height data for coordinate %" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:190 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:190 msgid "Could not open shape file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:204 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:204 msgid "" "Could not create geocoordinates converter; check whether proj.4 is installed." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:231 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:231 msgid "Ignored heightmap feature type %" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:276 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:276 msgid "Cannot load shape file since SUMO was compiled without GDAL support." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:288 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:288 msgid "Cannot load GeoTIFF file." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:303 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:303 msgid "Could not parse geo information from %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:312 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:312 msgid "Unknown color band in %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:319 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:319 msgid "Failure in reading %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:348 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:348 msgid "Cannot load GeoTIFF file since SUMO was compiled without GDAL support." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:89 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:89 msgid "Could not load names of edges too keep from '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:107 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:107 msgid "Could not load IDs from '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:123 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:123 msgid "Invalid lane id '%' (missing '_')." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:130 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:130 msgid "Invalid lane index '%' for lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedSUMOTLDef.cpp:359 +#: D:\Repos\sumo/src\netbuild\NBLoadedSUMOTLDef.cpp:359 #, c-format msgid "Could not patch tlLogic '%' for changed crossings" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedSUMOTLDef.cpp:889 +#: D:\Repos\sumo/src\netbuild\NBLoadedSUMOTLDef.cpp:889 msgid "Unused state in tlLogic '%', program '%' at tl-index %" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:83 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:83 msgid "" "TYellow of signal group '%' was less than the computed one; patched (was:%, " "is:%)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:300 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:300 msgid "During computation of traffic light '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:514 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:514 msgid "Could not set signal on connection (signal: %, group: %)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:612 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:612 msgid "myNeedsContRelation was not propperly initialized\n" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:94 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:94 msgid "Removing self-loops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:98 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:98 msgid "Finding isolated roads" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:103 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:103 msgid "Finding largest components" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:110 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:110 msgid "Removing unwished edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:117 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:117 msgid "Processing public transport stops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:132 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:132 msgid "Revising public transport stops based on pt lines" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:138 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:138 msgid "Cleaning up public transport stops that are not served by any line" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:144 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:144 #, c-format msgid "Removed % pt stops because they could not be assigned to the network" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:149 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:149 msgid "Align pt stop id signs with corresponding edge id signs" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:186 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:186 msgid "Joining tram edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:190 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:190 msgid " Joined % tram edges into roads." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:228 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:228 msgid "Joining junction clusters" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:233 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:233 #, c-format msgid " Joined % junction cluster(s)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:236 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:236 msgid "Joining junctions with identical coordinates" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:240 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:240 #, c-format msgid " Joined % junctions." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:245 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:245 msgid "Joining lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:248 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:248 #, c-format msgid " Joined lanes on % edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:258 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:258 #, c-format msgid " % nodes removed." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:278 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:278 msgid "Reducing geometries" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:285 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:285 msgid "Joining similar edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:295 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:295 msgid "guessing opposite direction edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:301 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:301 msgid "Splitting geometry edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:308 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:308 #, c-format msgid " Joined % junctions after splitting geometry." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:313 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:313 msgid "Computing turning directions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:322 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:322 msgid "Assigning nodes to traffic lights" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:345 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:345 msgid "Guessing and setting on-/off-ramps" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:361 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:361 msgid "Guessed % bike lanes." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:372 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:372 #, c-format msgid "Guessed % sidewalks." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:382 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:382 #, c-format msgid "Remapped % edge IDs and % node IDs." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:397 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:397 msgid "Sorting nodes' edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:402 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:402 msgid "Computing node shapes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:410 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:410 msgid "Computing edge shapes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:423 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:423 msgid "Applying speed modifications" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:436 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:436 msgid "Computing node types" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:447 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:447 #, c-format msgid "Guessed % pedestrian crossings." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:475 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:475 msgid "Computing priorities" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:479 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:479 msgid "Computing approached edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:484 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:484 msgid "Guessing and setting roundabouts" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:487 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:487 msgid " Guessed % roundabout(s)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:493 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:493 msgid "Computing approaching lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:497 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:497 msgid "Dividing of lanes on approached lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:503 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:503 msgid "Guessing Network fringe" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:506 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:506 #, c-format msgid " Guessed % fringe nodes." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:511 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:511 msgid "Processing turnarounds" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:529 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:529 msgid "Rechecking of lane endings" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:551 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:551 msgid "Joining traffic light nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:558 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:558 msgid "Computing traffic light control information" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:565 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:565 msgid "Computing node logics" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:570 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:570 msgid "Computing traffic light logics" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:577 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:577 msgid " % traffic light(s) %computed." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:585 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:588 msgid "Building inner edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:598 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:601 msgid "stretching junctions to smooth geometries" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:627 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:630 msgid "Generating street signs" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:638 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:641 msgid "Checking overlapping edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:643 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:646 msgid "Checking edge grade" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:658 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:661 msgid "Find accesses for pt rail stops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:681 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:684 msgid "" "Network contains very large coordinates and will probably flicker in the " "GUI. Check for outlying nodes and make sure the network is shifted to the " "coordinate origin" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:688 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:691 msgid "Moving network to origin" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:299 -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:321 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:299 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:321 msgid "Invalid node id '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:465 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:465 msgid " Removing self-looping edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:744 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:744 msgid "Could not compute indirect left turn shape at node '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:760 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:760 #, c-format msgid "Connection '%' starts at a non-existant lane." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:763 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:763 #, c-format msgid "Connection '%' targets a non-existant lane." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:777 -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:795 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:777 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:795 msgid "Could not use custom shape for connection %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:786 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:786 msgid "Custom shape has distance % to incoming lane for connection %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:803 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:803 msgid "Custom shape has distance % to outgoing lane for connection %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1003 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1003 msgid "" "Junction '%' is too complicated (% connections, max %); will be set to %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1144 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1144 #, c-format msgid "Shape for junction '%' has distance % to its given position." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1148 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1148 msgid "For junction '%': could not compute shape." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1852 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1850 msgid "Something went wrong during the building of a connection..." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:2871 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:2878 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (no " "walkingarea found)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3047 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3054 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (no vehicle " "lanes to cross)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3066 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3073 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (invalid " "shape)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3217 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3224 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' targets '%' and " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3240 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3247 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' is targeted by '%' " "and '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3245 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3252 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' starts and ends at " "walkingarea '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3465 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3472 msgid "Invalid pedestrian topology: crossing '%' across [%] has no target." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3685 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3692 msgid "Request for unknown crossing '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3701 -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3712 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3708 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3719 msgid "Request for unknown crossing for the given Edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:319 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:319 msgid "Removed a road without junctions: %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:406 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:406 msgid "Found % components and removed % (% edges)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:447 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:447 msgid "Removed % railway components (% edges)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:658 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:663 #, c-format msgid "" "Ignoring join exclusion for junction '%' since it already occurred in a list " "of nodes to be joined." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:691 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:696 msgid "" "Ignoring join-cluster because junction '%' was already excluded from joining." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:694 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:699 #, c-format msgid "" "Ignoring join-cluster because junction '%' already occurred in another join-" "cluster." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:700 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:705 #, c-format msgid "Unknown junction '%' in join-cluster." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:708 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:713 msgid "Ignoring join-cluster '%' because it has size '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:722 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:727 msgid "unknown junction '%' while joining." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:780 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:821 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:828 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:833 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:840 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:785 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:826 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:833 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:838 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:845 msgid "Not joining junctions % (%)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:800 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:814 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:805 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:819 msgid "Reducing junction cluster % (%)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1709 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1714 msgid "Could not join junctions %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1909 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1956 msgid "Ambiguous traffic light type for node cluster '%', setting to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2005 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2052 #, c-format msgid " The junction '%' to set as not-controlled is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2174 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2221 msgid "Could not build joined tls '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2219 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2266 msgid "Could not build guessed, joined tls." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2335 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2382 msgid "Could not build a joined tls." msgstr "No se puede crear un semáforo (TLS) unido." -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2352 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2399 msgid "Building a tl-logic for junction '%' twice is not possible." msgstr "" "No se posible crear una lógica de semáforo (TLS) dos veces para el cruce " "(junction) '%'." -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2434 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2526 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2481 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2573 msgid "-----------------------------------------------------" msgstr "-----------------------------------------------------" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2435 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2482 msgid "Summary:" msgstr "Resumen:" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2493 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2540 msgid " Node type statistics:" msgstr " Estadísticas de tipo de cruce:" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2522 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2569 msgid " Network boundaries:" msgstr " Límites de la red:" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2555 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2602 msgid "Attempt to rename node using existing id '%'" msgstr "" "Intento de renombrar un cruce (junction) usando un identificador '%' ya " "existente" -#: /home/micha/programming/sumo/src/netbuild/NBNodeShapeComputer.cpp:441 +#: D:\Repos\sumo/src\netbuild\NBNodeShapeComputer.cpp:444 msgid "Fixing offset for edge '%' at node '%." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:561 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:561 #, c-format msgid "" "Minor green from edge '%' to edge '%' exceeds %m/s. Maybe a left-turn lane " @@ -5748,7 +5892,7 @@ "'%' metros por segundo. Es posible que se haya olvidado un giro a la " "izquierda en el carril (lane)." -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:773 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:773 msgid "" "Generating NEMA phases is not support for traffic light '%' with % incoming " "edges. Using tlType 'actuated' as fallback" @@ -5756,50 +5900,50 @@ "No es posible generar fases NEMA para el semáforo (TLS) '%' con '%' calles " "(edges) entrantes. Use el tlType 'actuated' como alternativa" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:799 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:799 msgid "The traffic light '%' cannot be adapted to a cycle time of %." msgstr "El semáforo (TLS) '%' no se puede adaptar al ciclo de tiempo %." -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:818 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:818 msgid "The traffic light '%' has a high cycle time of %." msgstr "El semáforo (TLS) '%' tiene como ciclo de tiempo máximo %." -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:197 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:197 msgid "Could not retrieve edge '%' for first stop of line '%'." msgstr "" "No se puede obtener la calle (edge) '%' para la primera parada de la linea " "'%'." -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:203 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:203 msgid "First stop edge '%' is not part of the route of line '%'." msgstr "" "La primera parada en la calle (edge) '%' no es parte de la ruta de la linea " "'%'." -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:227 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:227 msgid "Could not retrieve edge '%' for last stop of line '%'." msgstr "" "No se puede obtener la calle (edge) '%' para la última parada de la linea " "'%'." -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:233 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:233 msgid "Last stop edge '%' is not part of the route of line '%'." msgstr "" "La última para en la calle (edge) '%' no es parte de la ruta de la linea '%'." -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:294 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:302 msgid "Removed invalid stop '%' from line '%'." msgstr "Parada inválida '%' de la linea '%' eliminada." -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:312 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:320 msgid "Removed duplicate stop '%' at area '%' from line '%'." msgstr "Parada duplicada '%' en el área '%' de la linea '%' eliminada." -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:315 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:323 msgid "Removed duplicate stop '%' named '%' from line '%'." msgstr "Parada duplicada '%' nombrada '%' de la linea '%' eliminada." -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:99 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:99 msgid "" "Cannot revise pt stop localization for pt line '%', which consist of one way " "only. Ignoring!" @@ -5808,7 +5952,7 @@ "stop) para la linea de transporte público (pt line) '%', la cual consiste en " "un solo camino. Ignorando!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:103 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:103 msgid "" "Cannot revise pt stop localization for pt line '%', which has no route " "edges. Ignoring!" @@ -5817,7 +5961,7 @@ "stop) para la linea de transporte público (pt line) '%', la cual no tiene " "calles (edges) en su ruta. Ignorando!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:122 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:122 msgid "" "Cannot assign stop '%' on edge '%' to pt line '%' (wayNodes not found). " "Ignoring!" @@ -5826,8 +5970,8 @@ "transporte público (pt line) '%'. Camino entre cruces no encontrado. " "Ignorando!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:137 -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:151 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:137 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:151 msgid "" "Cannot revise pt stop localization for incomplete pt line '%'. Ignoring!" msgstr "" @@ -5835,18 +5979,18 @@ "stop) para la linea de transporte público (pt line) incompleta '%'. " "Ignorando!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:162 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:162 msgid "Could not re-assign PT stop '%', probably broken osm file." msgstr "" "No se puede reasignar la parada de transporte público (pt stop) '%'. " "Probablemente un archivo de Open Street Map roto." -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:171 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:171 msgid "PT stop '%' has been moved to edge '%'." msgstr "" "Parada de transporte público (pt stop) '%' movida a la calle (edge) '%'." -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:243 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:243 msgid "" "Could not assign stop '%' to pt line '%' (closest edge '%', distance %). " "Ignoring!" @@ -5854,4868 +5998,4920 @@ "No se puede asignar la parada '%' a la linea de transporte público (pt line) " "'%'. La calle mas cercana es '%', distancia %. Ignorando!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:275 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:275 msgid "Cannot assign stop % on edge '%' to pt line '%'. Ignoring!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:458 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:475 msgid "" "Could not determine vehicle class for public transport line of type '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:523 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:540 msgid "Could not determine direction for line '%' at stop '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:110 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:110 msgid "" "Could not find corresponding edge or compatible lane for pt stop '%' (%). " "Thus, it will be removed!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:136 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:136 msgid "" "Could not create reverse-direction stop for superposed edge '%' (origStop " "'%'). Stop id '%' already in use by stop on edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:170 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:170 #, c-format msgid "Added % stops for superposed rail edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:272 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:272 msgid "Could not determine cross product for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:326 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:326 msgid "Removing pt stop '%' on non existing edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:357 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:357 msgid "Could not re-assign pt stop '%' after replacing edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:446 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:446 msgid "" "Could not find corresponding edge or compatible lane for free-floating pt " "stop '%' (%). Thus, it will be removed!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:44 +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:44 #, c-format msgid "Ignoring parking area on edge '%' due to invalid permissions." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:51 +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:51 #, c-format msgid "Ignoring parking area on edge '%' due to insufficient space." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:71 +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:71 msgid "Could not find edge for parkingArea '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:115 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:115 #, c-format msgid "The traffic light '%' does not control any links; it will not be build." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:229 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:229 msgid "Unreachable edge '%' within tlLogic '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:509 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:509 #, c-format msgid "The rail crossing '%' does not have any roads." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogic.cpp:100 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogic.cpp:100 #, c-format msgid "When adding phase: illegal character '%' in state" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogic.cpp:233 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogic.cpp:233 #, c-format msgid "Non-static traffic light '%' does not define variable phase length." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogicCont.cpp:235 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:243 msgid "Could not build program '%' for traffic light '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogicCont.cpp:376 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:384 msgid "Guessing signalID for link index % at traffic light '%'." msgstr "" -#: /home/micha/programming/sumo/src/netconvert_main.cpp:97 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:491 +#, c-format +msgid "" +"Was not able to apply the OpenDRIVE signal group information onto the signal " +"program of traffic light % generated by SUMO." +msgstr "" + +#: D:\Repos\sumo/src\netconvert_main.cpp:98 msgid "" "Network importer / builder for the microscopic, multi-modal traffic " "simulation SUMO." msgstr "" -#: /home/micha/programming/sumo/src/netconvert_main.cpp:120 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:273 -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:93 +#: D:\Repos\sumo/src\netconvert_main.cpp:121 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:273 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:93 msgid "Could not build projection!" msgstr "No se puede crear la proyección!" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:41 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:41 msgid "Read edge-type defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:44 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:44 msgid "" "The Ids of generated nodes use an alphanumerical code for easier readability " "when possible" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:48 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:48 msgid "Generate INT left-turn lanes" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:50 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:50 msgid "Set the length of generated turning lanes to FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:53 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:53 msgid "" "Apply random spatial perturbation in x direction according the the given " "distribution" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:55 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:55 msgid "" "Apply random spatial perturbation in y direction according the the given " "distribution" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:57 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:57 msgid "" "Apply random spatial perturbation in z direction according the the given " "distribution" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:63 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:63 msgid "Defines the probability to build a reverse edge" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:67 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:67 msgid "Draw lane numbers randomly from [1,default.lanenumber]" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:71 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:71 msgid "Draw edge priority randomly from [1,default.priority]" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:74 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:74 msgid "Draw edge type randomly from all loaded types" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:80 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:80 msgid "Forces NETGEN to build a grid-like network" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:85 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:85 msgid "The number of junctions in both dirs" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:90 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:90 msgid "The length of streets in both dirs" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:95 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:95 msgid "The number of junctions in x-dir; Overrides --grid-number" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:100 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:100 msgid "The number of junctions in y-dir; Overrides --grid-number" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:105 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:105 msgid "The length of horizontal streets; Overrides --grid-length" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:110 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:110 msgid "The length of vertical streets; Overrides --grid-length" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:114 -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:147 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:114 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:147 msgid "" "The length of streets attached at the boundary; 0 means no streets are " "attached" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:117 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:117 msgid "" "The length of streets attached at the boundary in x direction; 0 means no " "streets are attached" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:119 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:119 msgid "" "The length of streets attached at the boundary in y direction; 0 means no " "streets are attached" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:124 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:124 msgid "Forces NETGEN to build a spider-net-like network" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:129 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:129 msgid "The number of axes within the net" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:134 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:134 msgid "The number of circles of the net" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:139 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:139 msgid "The distances between the circles" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:144 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:144 msgid "Omit the central node of the network" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:152 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:152 msgid "Forces NETGEN to build a random network" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:157 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:157 msgid "Describes how many times an edge shall be added to the net" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:162 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:162 msgid "The maximum distance for each edge" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:167 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:167 msgid "The minimum distance for each edge" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:172 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:172 msgid "The minimum angle for each pair of (bidirectional) roads in DEGREES" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:177 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:177 msgid "The number of tries for creating each node" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:182 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:182 msgid "Probability for roads to continue at each node" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:187 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:187 msgid "Probability for a node having exactly 1 neighbor" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:192 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:192 msgid "Probability for a node having exactly 2 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:197 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:197 msgid "Probability for a node having exactly 3 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:202 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:202 msgid "Probability for a node having exactly 4 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:207 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:207 msgid "Probability for a node having exactly 5 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:212 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:212 msgid "Probability for a node having exactly 6 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:215 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:215 msgid "Place nodes on a regular grid with spacing rand.min-distance" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:235 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:235 msgid "You have to specify the type of network to generate." msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:239 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:239 msgid "You may specify only one type of network to generate at once." msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:274 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:274 msgid "Option 'random-type' takes no effect unless 'type-files' are loaded" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:90 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:90 msgid "" "[traffic_light|priority|right_before_left|left_before_right|" "traffic_light_right_on_red|priority_stop|allway_stop|...] Determines " "junction type (see wiki/Networks/PlainXML#Node_types)" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:119 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:120 msgid "Spider networks need at least 3 arms." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:123 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:124 msgid "Spider networks with many arms should use option spider.omit-center" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:126 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:127 msgid "Spider networks need at least one circle." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:134 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:135 #, c-format msgid "" "The radius of spider networks should be at least % for the given lanenumber, " "lanewidth and junction radius" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:176 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:177 msgid "" "The number of nodes must be positive and at least 2 in one direction if " "there are no attachments." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:184 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:185 #, c-format msgid "" "The distance between nodes should be at least % for the given lanenumber, " "lanewidth and junction radius" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:190 -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:195 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:191 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:196 #, c-format msgid "" "The length of attached streets should be at least % for the given " "lanenumber, lanewidth and junction radius" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:230 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:231 msgid "" "Synthetic network generator for the microscopic, multi-modal traffic " "simulation SUMO." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:266 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:267 msgid " Generation done;" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:267 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:268 #, c-format msgid " % nodes generated." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:268 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:269 #, c-format msgid " % edges generated." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:273 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:274 msgid " Removed % traffic lights at geometry-like nodes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:53 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:53 msgid "Read SUMO-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:60 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:60 msgid "Read XML-node defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:66 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:66 msgid "Read XML-edge defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:72 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:72 msgid "Read XML-connection defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:75 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:75 msgid "Read XML-traffic light defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:81 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:81 msgid "Read XML-type defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:86 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:86 msgid "Reads public transport stops from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:88 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:88 msgid "Reads public transport lines from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:90 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:90 msgid "Reads polygons from FILE for embedding in network where applicable" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:97 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:97 msgid "Read shapefiles (ArcView, Tiger, ...) from files starting with 'FILE'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:102 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:102 msgid "" "Read converted Navteq GDF data (unsplitted Elmar-network) from path 'FILE'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:106 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:106 msgid "Read OSM-network from path 'FILE(s)'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:110 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:110 msgid "Read OpenDRIVE-network from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:114 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:114 msgid "Read VISUM-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:118 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:118 msgid "Read VISSIM-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:123 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:123 msgid "Read RoboCup-net from DIR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:127 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:127 msgid "Read MATsim-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:131 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:131 msgid "Read ITSUMO-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:134 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:134 msgid "Read heightmap from ArcGIS shapefile" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:137 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:137 msgid "Read heightmap from GeoTIFF" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:145 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:159 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:199 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:145 +#: D:\Repos\sumo/src\od2trips_main.cpp:159 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:199 msgid "Continue on broken input" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:148 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:148 msgid "Continue on invalid connections" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:151 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:151 msgid "Show errors in connections at parsing" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:154 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:154 msgid "Continue on unknown edge types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:157 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:157 msgid "vmax is parsed as given in km/h" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:160 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:160 msgid "" "Use YYYY-MM-DD date to determine the readiness of features under construction" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:163 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:163 msgid "Remove all z-data" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:166 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:166 msgid "Remove the list of keys from all params" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:169 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:169 msgid "" "List vehicle classes that may ignore lane changing restrictions ('all' " "discards all restrictions)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:174 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:174 msgid "If edge shapes do not end at the node positions, extend them" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:178 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:178 msgid "Skips the check for duplicate nodes and edges" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:181 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:181 msgid "Imports elevation data" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:184 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:184 msgid "" "Reconstruct (relative) elevation based on layer data. Each layer is raised " "by FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:187 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:187 #, c-format msgid "" "Maximum grade threshold in % at 50km/h when reconstrucing elevation based on " "layer data. The value is scaled according to road speed." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:190 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:190 msgid "Whether one-way roads should be spread to the side instead of centered" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:193 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:193 msgid "Import lane-specific access restrictions" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:197 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:197 msgid "Import bike lanes and fix directions and permissions on bike paths" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:200 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:200 msgid "Import sidewalks" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:203 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:203 msgid "Import crossings" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:206 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:206 msgid "Import turning arrows from OSM to help with connection building" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:209 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:209 msgid "The default length of a public transport stop in FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:211 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:211 msgid "The default length of a bus stop in FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:213 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:213 msgid "The default length of a tram stop in FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:215 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:215 msgid "The default length of a train stop in FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:218 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:219 msgid "Whether additional attributes shall be imported" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:221 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:223 msgid "" "List of additional attributes that shall be imported from OSM via osm.all-" "attributes (set 'all' to import all)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:224 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:226 msgid "" "The speed limit to be set when there is no actual speed limit in reality" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:228 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:230 msgid "The edge lengths given in the MATSIM-file will be kept" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:231 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:233 msgid "The lane number will be computed from the capacity" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:237 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:239 msgid "Read edge ids from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:241 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:243 msgid "Read from-node ids from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:245 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:247 msgid "Read to-node ids from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:249 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:251 msgid "Read type ids from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:252 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:254 msgid "Read lane number from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:255 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:257 msgid "Read speed from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:258 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:260 msgid "Read custom edge length from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:261 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:263 msgid "Read total edge width from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:264 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:266 msgid "Read (non-unique) name from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:267 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:269 msgid "" "Distance threshold for determining whether distinct shapes are connected " "(used when from-id and to-id are not available)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:270 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:272 msgid "Add the list of field names as edge params" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:274 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:276 msgid "Uses edge type defaults on problems" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:279 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:281 msgid "Insert edges in both directions" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:283 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:285 msgid "Guess the proper projection" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:286 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:125 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:288 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:125 msgid "Use traditional axis order (lon, lat)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:291 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:293 msgid "Allow more vehicle classes by default" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:294 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:296 msgid "The edge lengths given in the DLR Navteq-file will be kept" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:300 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:302 msgid "Structure join offset" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:303 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:305 msgid "Use FLOAT as default speed" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:306 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:308 msgid "Factor for edge velocity" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:309 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:311 msgid "Writes lanes without an explicit speed set" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:314 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:95 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:316 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:95 msgid "Load language mappings from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:317 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:319 msgid "Uses priorities from types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:320 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:322 msgid "Uses lane numbers from types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:323 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:325 msgid "Uses speeds from types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:326 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:328 msgid "Sets connector speed" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:330 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:332 msgid "Sets connector lane number" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:333 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:335 msgid "Excludes connectors" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:337 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:339 msgid "Computes the number of lanes from the edges' capacities" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:340 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:342 msgid "Prints all warnings, some of which are due to VISUM misbehaviour" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:345 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:347 msgid "The factor for flow to no. lanes conversion" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:350 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:352 msgid "Imports all lane types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:352 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:354 msgid "Whether lane widths shall be ignored." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:354 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:356 msgid "" "The geometry resolution in m when importing curved geometries as line " "segments." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:356 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:358 msgid "" "Allow stop lines to be built beyond the start of the junction if the " "geometries allow so" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:358 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:360 msgid "" "The minimum lane width for determining start or end of variable-width lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:360 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:362 msgid "Import internal lane shapes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:362 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:364 msgid "Sets edge-id based on road-id and offset in m (legacy)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:364 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:366 msgid "Use custom lane shapes to compensate discarded lane types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:375 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:368 +msgid "" +"Use the OpenDRIVE controller information for the generated signal program" +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:379 msgid "" "Discard all railway signal information loaded from other formats than plain-" "xml" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:397 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:400 msgid "" "Cannot import network data without PROJ-Library. Please install package proj " "before building sumo" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:422 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:314 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:425 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:314 msgid "Environment variable SUMO_HOME is not set, using built in type maps." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:455 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:458 msgid "It is recommend to use option osm.crossings with osm.sidewalks" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:138 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:139 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:138 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:139 msgid "Could not open shape description '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:187 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:187 msgid "Needed field '%' (street-id) is missing." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:198 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:198 msgid "Needed field '%' (from node id) is missing." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:202 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:202 msgid "Needed field '%' (to node id) is missing." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:218 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:218 msgid "Unknown type '%' for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:233 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:233 #, c-format msgid "" "Required field '%' or '%' is missing (add fields or set option --shapefile." "use-defaults-on-failure)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:249 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:249 msgid "" "Road geometry must be of type 'linestring' or 'linestring25D' (found '%')" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:261 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:90 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:261 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:90 msgid "No coordinate system found and coordinates look already projected." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:264 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:93 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:264 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:93 msgid "Could not find geo coordinate system, assuming WGS84." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:277 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1488 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:600 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimAbstractEdge.cpp:44 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:171 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:277 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1562 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:600 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimAbstractEdge.cpp:44 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:171 msgid "Unable to project coordinates for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:290 -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:304 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:304 #, c-format msgid "Node '%' could not be added" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:312 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:312 #, c-format msgid "Edge '%' connects identical nodes, skipping." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:329 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:329 #, c-format -msgid "Edge '% is not unique." +msgid "Edge '%' is not unique." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:338 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:338 msgid "Edge '%' is not unique. Renaming subsequent edge to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:354 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:354 msgid "Could not create edge '%'. An edge with the same id already exists." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:368 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:368 msgid "Could not create edge '-%'. An edge with the same id already exists." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:382 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:331 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:382 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:331 msgid "SUMO was compiled without GDAL support." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:76 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:76 msgid "Loading nodes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:80 -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:105 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:80 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:105 #, c-format msgid "The file '%' could not be opened." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:90 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:90 msgid "Loading street names" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:95 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:95 msgid "Output will not contain street names because the file '%' was not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:100 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:100 msgid "Loading edges" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:114 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:114 msgid "Loading traffic lights" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:123 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:123 msgid "Loading prohibited manoeuvres" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:132 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:132 msgid "Loading connected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:141 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:141 msgid "Loading time restrictions" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:210 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:210 msgid "Non-numerical value for intermediate status in node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:215 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:215 msgid "Non-numerical value for number of geometries in node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:222 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:222 msgid "Non-numerical value for x-position in node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:226 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:226 msgid "Non-numerical value for y-position in node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:230 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:321 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:230 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:321 msgid "Unable to project coordinates for node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:240 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:240 msgid "Could not add add node '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:242 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:260 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:379 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:474 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1350 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:242 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:267 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:386 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:481 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1424 msgid "Could not add node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:299 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:299 msgid "Missing version string in file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:309 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:309 msgid "Non-numerical value for form_of_way of link '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:316 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:316 msgid "Non-numerical value for brunnel_type of link '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:329 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:329 msgid "Non-numerical value for street_type of link '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:351 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:351 msgid "Non-numerical value for the SPEED_RESTRICTION of link '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:366 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:366 msgid "Non-numerical value for the number of lanes of link '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:420 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:538 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:596 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:759 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:420 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:545 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:603 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:760 msgid "Could not add edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:431 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:431 msgid "Missing column %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:442 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:442 msgid "Missing optional column % without default value." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:499 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:499 #, c-format msgid "The traffic light edge '%' could not be found." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:511 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:511 msgid "Could not allocate tls for '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:702 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:702 msgid "Could not parse YYYY-MM-DD date '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:747 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:747 msgid "Ignoring temporary prohibited manoeuvre (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:756 -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:801 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:756 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:801 msgid "Ignoring prohibition from unknown start edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:761 -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:806 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:761 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:806 msgid "Ignoring prohibition from unknown end edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:811 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:811 msgid "" "Ignoring invalid lane index '%' in connection from edge '%' with % lanes." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:816 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:816 msgid "Ignoring invalid lane index '%' in connection to edge '%' with % lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:821 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:821 msgid "Could not set loaded connection from '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:117 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:117 msgid "Could not open itsumo-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:217 -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:180 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:217 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:180 msgid "Could not add edge '%'. Probably declared twice." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:232 -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:142 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:703 -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:148 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:232 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:142 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:703 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:148 msgid "Unable to project coordinates for node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:237 -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:147 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:237 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:147 msgid "Could not add node '%'. Probably declared twice." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:240 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:240 msgid "Not numeric position information for node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:242 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:242 msgid "Missing data in node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:260 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:260 msgid "Missing node in laneset '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:263 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:263 msgid "Fond laneset-id '%' twice." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:277 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:277 msgid "Not numeric value in laneset '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:279 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:279 msgid "Missing data in laneset '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:290 msgid "Not numeric value in lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:292 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:292 msgid "Missing data in lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:202 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:202 msgid "Bogus capacity period format; requires 'hh:mm:ss'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:234 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:234 msgid "Could not find from-node for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:237 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:237 msgid "Could not find to-node for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:253 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:253 msgid "Could not add intermediate node to split loop edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:211 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:217 msgid "Could not find signal reference '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:274 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:312 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:281 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:319 msgid "Could not build node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:411 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:418 msgid "Ignoring road '%' without geometry." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:435 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:442 msgid "Could not apply laneOffsets for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:668 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:633 #, c-format msgid "Edge '%' has no lanes." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:704 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:674 #, c-format msgid "While setting connections: from-edge '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:714 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:684 #, c-format msgid "While setting connections: to-edge '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:740 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:743 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:710 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:713 msgid "Could not find fromEdge representation of '%' in connection '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:792 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:766 +#, c-format +msgid "" +"Controlling multiple junctions by the same controller '%' is currently not " +"implemented." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:787 #, c-format msgid "Edge '%' has signals but no lane sections." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:814 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:809 msgid "Ambiguous start of connection." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:831 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:826 msgid "Ambiguous end of connection." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:844 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:859 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:892 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:839 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:854 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:901 msgid "Could not find edge '%' for signal '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:881 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:875 +msgid "" +"The signaling of the connection from '%' to '%' (controller '%') is " +"ambiguous because it is overwritten signal '%' and with controller '%'." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:890 msgid "Found a traffic light signal on an unknown edge (original edge id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1287 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1319 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:921 +msgid "" +"The signaling of the connection from '%' to '%' (controller '%') is " +"ambiguous because it is overwritten with signal '%' and controller '%'." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1361 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1393 #, c-format msgid "While setting connections: incoming road '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1362 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1436 msgid "Could not find node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1455 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1529 msgid "Mismatched geometry for edge '%' between geometry segments % and %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1636 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1710 #, c-format msgid "The sections of edge '%' are not sorted properly." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1648 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1722 msgid "" "Almost duplicate s-value '%' for lane sections occurred at edge '%'; second " "entry was removed." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1691 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1765 msgid "Could not compute spiral geometry for edge '%' (cDot=% length=%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1740 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1814 msgid "Could not compute spiral geometry for edge '%' (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2012 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2086 msgid "" "Will discard access settings as both denied and allowed classes have been " "specified." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2320 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2392 msgid "Ignoring invalid pRange value '%' for road '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2420 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2617 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2470 +msgid "Ignoring missing signal '%' in controller '%'." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2508 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2704 #, c-format msgid "In laneLink-element: incoming road '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2516 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2603 msgid "Ignoring object without id at edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2534 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2621 msgid "Repeat without object at edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2588 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2675 msgid "Could not set projection (%). This can be ignored with --ignore-errors." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2592 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2679 #, c-format msgid "geoReference format '%' currently not supported" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2661 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2752 msgid "Mismatching parenthesis in geometry definition for road '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2665 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2756 msgid "Double geometry information for road '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:156 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:104 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:156 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:104 msgid "Could not open osm-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:168 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:168 #, c-format msgid "Found and substituted % osm nodes." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:192 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:192 msgid "Removing duplicate edges" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:207 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:207 #, c-format msgid "Removed % duplicate osm edges." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:241 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:241 msgid "Discarding way '%' because it has only % node(s)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:404 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:404 msgid "Could not insert junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:462 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:462 msgid "" "Discarding edge '%' which connects two identical nodes without geometry." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:574 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:574 msgid "New value for oneway found: %" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:606 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:607 msgid "Skipping edge '%' because it has zero lanes." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:626 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:627 msgid "Skipping edge '%' because it has speed %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:746 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:747 msgid "" "Forward lanes count for edge '%' ('%') is not matching the number of lanes " "defined in width:lanes:forward key ('%'). Using default width values." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:792 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:793 msgid "" "Backward lanes count for edge '%' ('%') is not matching the number of lanes " "defined in width:lanes:backward key ('%'). Using default width values." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:805 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:806 msgid "Could not add edge '-%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:893 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:894 msgid "" "Attribute 'id' in the definition of a node is not of type long long int." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:899 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:900 msgid "Tag element on wrong XML hierarchy level." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:941 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:942 msgid "Value of key '%' is invalid ('%') in node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:946 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:947 msgid "Value of key '%' is not numeric ('%') in node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1091 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:592 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1092 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:592 msgid "The referenced geometry information (ref='%') is not known" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1329 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1331 #, c-format msgid "Using default lane width for edge '%' as key '%' could not be parsed." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1332 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1334 #, c-format msgid "Using default lane width for edge '%' as value '%' could not be parsed." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1375 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1377 msgid "Using minimum lane number from list (%) for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1377 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1381 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1392 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1404 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1427 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1437 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1379 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1383 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1394 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1406 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1429 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1439 msgid "Value of key '%' is not numeric ('%') in edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1434 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1436 msgid "Ignoring track count % for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1605 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1607 msgid "Unknown lane use specifier '%' ignored for way '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1714 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1716 msgid "No node found for reference '%' in relation '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1776 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1778 msgid "Found unknown restriction type '%' in relation '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1814 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1816 msgid "Invalid color value '%' in relation %" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1832 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1834 msgid "No way found for reference '%' in relation '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1844 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1846 msgid "Ignoring restriction relation '%' with unknown type." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1848 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1850 msgid "Ignoring restriction relation '%' with unknown from-way." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1852 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1854 msgid "Ignoring restriction relation '%' with unknown to-way." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1856 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1858 msgid "Ignoring restriction relation '%' with unknown via." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1860 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1862 msgid "Ignoring restriction relation '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1885 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1887 #, c-format msgid "" "Platform '%' in relation: '%' is given as polygon, which currently is not " "supported." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1906 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1908 #, c-format msgid "" "Referenced platform: '%' in relation: '%' is corrupt. Probably OSM file is " "incomplete." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1945 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1947 #, c-format msgid "PT line '%' in relation % seems to be split, only keeping first part." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1978 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1980 msgid "" "PT line in relation % with no stops ignored. Probably OSM file is incomplete." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1984 -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:222 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1986 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:222 msgid "Ignoring duplicate PT line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1999 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2001 msgid "Via-node '%' was not instantiated" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2005 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2007 #, c-format msgid "from-edge '%' of restriction relation could not be determined" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2009 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2011 #, c-format msgid "to-edge '%' of restriction relation could not be determined" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2039 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2041 msgid "direction of restriction relation could not be determined%" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2060 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2062 #, c-format msgid "Ambiguous way reference '%' in restriction relation" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2311 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2314 msgid "" "Discarding unknown compound '%' in type '%' (first occurrence for edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2315 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2320 msgid "Discarding unusable type '%' (first occurrence for edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2364 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2365 msgid "Discarding compound type '%' (first occurrence for edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2369 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2380 msgid "Adding new type '%' (first occurrence for edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2404 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2415 msgid "Ambiguous railway kilometrage direction for way '%' (assuming forward)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2411 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2422 msgid "Inconsistent railway kilometrage direction for way '%': % (skipping)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2456 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2467 msgid "Value of railway:position is not numeric ('%') in node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2548 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2559 msgid "" "Ignoring turn sign information for % lanes on edge % with % driving lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:118 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:118 msgid "Could not open sumo-net-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:146 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:146 #, c-format msgid "Edge's '%' from-node and to-node '%' are identical." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:165 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:165 msgid "Could not insert edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:191 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:787 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:318 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:191 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:787 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:318 #, c-format msgid "Unknown edge '%' given in connection." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:230 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:272 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:230 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:272 #, c-format msgid "The traffic light '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:288 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:290 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:292 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:294 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:288 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:292 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:294 #, c-format msgid "Edge '%' in prohibition was not built." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:345 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:345 #, c-format msgid "Deprecated vehicle class(es) '%' in input network." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:403 -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1683 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:403 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1688 #, c-format msgid "Unknown edge '%' in roundabout" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:520 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:520 #, c-format msgid "Edge '%' occurred at least twice in the input." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:542 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:542 msgid "Unmatched closing tag for tl-logic." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:545 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:545 msgid "Could not add program '%' for traffic light '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:615 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:615 msgid "Unknown spreadType '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:628 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:628 #, c-format msgid "Found lane '%' not within edge element." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:633 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:633 msgid "Renaming lane '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:699 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:699 msgid "" "Duplicate definition of stopOffset for edge %.\n" "Ignoring duplicate specification." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:705 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:705 msgid "" "Duplicate definition of lane's stopOffset on edge %.\n" "Ignoring duplicate specifications." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:742 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:742 #, c-format msgid "Junction '%' occurred at least twice in the input." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:839 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:839 msgid "Invalid lane index '%' for connection from '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:929 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:929 msgid "Definition of tl-logic '%' was not finished." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:941 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:127 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:941 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:127 msgid "Unknown traffic light type '%' for tlLogic '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:955 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:955 msgid "found phase without tl-logic" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:963 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:963 msgid "Phase duration for tl-logic '%/%' must be positive." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1019 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1019 msgid "Missing connection divider in prohibition attribute '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1026 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1030 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1026 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1030 msgid "Unknown edge prohibition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:205 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:205 msgid "Can not open visum-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:247 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:247 #, c-format msgid "Too short value line in % occurred." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:249 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:249 msgid "A value in % should be numeric but is not (id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:251 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:251 msgid "One of the needed values ('%') is missing in %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:326 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:326 msgid "Duplicate node occurred ('%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:344 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:344 msgid "Unable to project coordinates for district %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:350 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:350 msgid "Duplicate district occurred ('%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:368 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:368 msgid "Unable to project coordinates for point %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:458 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:475 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:458 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:475 msgid "Duplicate edge occurred ('%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:580 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:580 msgid "" "Incoming connector '%' will not be build - would be not connected to network." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:584 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:618 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:584 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:618 #, c-format msgid "The district '%' could not be built." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:594 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:629 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:594 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:629 msgid "A duplicate edge id occurred (ID='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:614 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:614 msgid "" "Outgoing connector '%' will not be build - would be not connected to network." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:665 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:671 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:720 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:665 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:671 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:720 msgid "There is no edge from node '%' to node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:698 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:698 msgid "Error in geometry description from node '%' to node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:757 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:757 msgid "A lane number for edge '%' is not numeric (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:762 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:762 msgid "A lane number for edge '%' is not positive (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:781 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:781 msgid "A lane length for edge '%' is not numeric (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:785 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:785 msgid "A lane length for edge '%' is not positive (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:846 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:846 msgid "Could not find split position for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:856 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:856 msgid "Ups - could not insert node!" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:917 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:917 #, c-format msgid "Could not find TLS '%' for setting the signal group." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:930 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:930 msgid "Ignoring SIGNALGRUPPEZUFSABBIEGER because LsaNr is not known" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:987 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:987 msgid "Unknown edge in TEILFLAECHENELEMENT" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1007 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1007 msgid "Unknown are for area part '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1069 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1069 msgid "" "Ignoring lane-to-lane connection (not yet implemented for this format " "version)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1107 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1107 msgid "A from-lane number for edge '%' is not numeric (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1112 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1112 msgid "A from-lane number for edge '%' is not positive (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1121 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1121 msgid "A to-lane number for edge '%' is not numeric (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1126 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1126 msgid "A to-lane number for edge '%' is not positive (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1142 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1142 msgid "" "A from-lane number for edge '%' is larger than the edge's lane number (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1146 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1146 msgid "" "A to-lane number for edge '%' is larger than the edge's lane number (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1162 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1162 msgid "Ignoring stopping place '%' without edge id" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1164 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1164 msgid "Ignoring stopping place '%' without node informatio" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1171 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1171 msgid "" "Could not find edge with from-node '%' and base id '%' for stopping place '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1176 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1176 msgid "Unexpected from-node '%' for edge '%' of stopping place '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1182 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1182 msgid "" "Could not find edge with to-node '%' and base id '%' for stopping place '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1187 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1187 msgid "Unexpected to-node '%' for edge '%' of stopping place '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1271 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1271 #, c-format msgid "The node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1508 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1508 msgid "Could not build connector node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1518 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1518 msgid " The from-node was not found within the net" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1521 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1521 msgid " The to-node was not found within the net" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1524 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1524 msgid " Both nodes are the same" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1539 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:431 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1539 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:431 msgid "Could not load VISUM language map from '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1551 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1551 #, c-format msgid "Unknown entry '%' in VISUM language map" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:103 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:103 msgid " Removed % traffic lights before loading plain-XML" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:112 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:112 msgid "No nodes loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:115 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:115 msgid "No edges loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:126 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:126 msgid " Import done:" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:128 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:128 #, c-format msgid " % districts loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:130 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:130 #, c-format msgid " % nodes loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:132 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:132 msgid " % types loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:134 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:134 #, c-format msgid " % edges loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:136 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:136 #, c-format msgid "The split of edges was performed % times." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:144 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:144 msgid "Proj projection parameters used: '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:165 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:165 #, c-format msgid "Deprecated vehicle class(es) '%' in input edge files." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:61 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:61 msgid "Invalid speed code (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:64 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:64 msgid "Non-numerical value for an edge's speed type occurred (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:90 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:90 msgid "Invalid lane number (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:94 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:94 msgid "Non-numerical value for an edge's lane number occurred (edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NITypeLoader.cpp:62 +#: D:\Repos\sumo/src\netimport\NITypeLoader.cpp:62 msgid "Could not open %-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIVisumTL.cpp:76 +#: D:\Repos\sumo/src\netimport\NIVisumTL.cpp:76 msgid "invalid node for traffic light '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:85 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:85 msgid "" "Target edge '%' is not connected with '%'; the connection cannot be reset." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:99 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:99 msgid "Edge '%' has no connection to lane '%'; the connection cannot be reset." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:267 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:267 msgid "Unable to project shape for connection from edge '%' to edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:275 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:275 msgid "Could not set loaded connection from lane '%' to lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:347 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:347 #, c-format msgid "Node '%' in crossing is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:356 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:356 msgid "No edges specified for crossing at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:364 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:364 #, c-format msgid "Edge '%' for crossing at node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:372 -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:450 -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:455 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:372 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:450 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:455 msgid "Edge '%' does not touch node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:385 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:385 #, c-format msgid "Crossing at controlled node '%' must be prioritized" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:390 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:390 msgid "Unable to project shape for crossing at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:403 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:403 msgid "Crossing with edges '%' already exists at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:435 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:435 msgid "No edges specified for walkingArea at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:441 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:441 #, c-format msgid "Edge '%' for walkingArea at node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:467 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:467 msgid "Unable to project shape for walkingArea at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:222 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:222 msgid "Duplicate edge id occurred ('%'); assuming overwriting is wished." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:227 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:227 #, c-format msgid "Edge '%' changed it's type; assuming type override is wished." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:315 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:315 msgid "Ignoring self-looped edge '%' at junction '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:393 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:393 #, c-format msgid "'%' is deprecated, please use '%' instead." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:403 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:403 msgid "Lane index is larger than number of lanes (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:447 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:447 msgid "Unable to project coordinates for lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:472 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:472 msgid "Ignoring 'split' because it cannot be assigned to an edge" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:481 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:481 msgid "Edge '%' has a split at invalid position %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:486 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:486 msgid "Edge '%' has already a split at position %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:520 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:520 msgid "Invalid split node id for edge '%' (from- and to-node are forbidden)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:558 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:558 msgid "The from-node is not given for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:570 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:570 msgid "The to-node is not given for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:616 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:616 msgid "Ignoring unknown spreadType '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:674 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:674 #, c-format msgid "Duplicate edge '%' occurred." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:683 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:683 msgid "An important information is missing in edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:705 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:705 #, c-format msgid "Unknown edge '%' in roundabout." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:151 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:151 msgid "Missing position (at node ID='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:184 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:184 msgid "Could not insert node though checked this before (id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:213 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:213 msgid "Unable to project node shape at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:321 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:321 msgid "Unknown traffic light type '%' for node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:330 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:330 msgid "Unknown traffic light layout '%' for node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:341 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:341 msgid "Changing traffic light type '%' to '%' for tl '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:153 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:153 #, c-format msgid "Edge '%' for stop '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:161 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:161 #, c-format msgid "Lane '%' for stop '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:173 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:173 msgid "Could not add public transport stop '%' (already exists)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:192 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:192 #, c-format msgid "Edge '%' for access to stop '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:253 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:253 msgid "Found route outside line definition" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:263 -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:283 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:263 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:283 #, c-format msgid "Edge '%' in route of line '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:302 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:302 msgid "Stop '%' within line '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:318 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:318 msgid "Stop '%' within route '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLShapeHandler.cpp:46 -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1744 +#: D:\Repos\sumo/src\netimport\NIXMLShapeHandler.cpp:46 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1749 #, c-format msgid "Lane '%' to place poi '%' on is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLShapeHandler.cpp:59 -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1757 +#: D:\Repos\sumo/src\netimport\NIXMLShapeHandler.cpp:59 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1762 #, c-format msgid "lane position % for poi '%' is not valid." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:114 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:114 msgid "Definition of tlLogic '%' was not finished." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:140 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:158 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:140 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:158 msgid "Cannot load traffic light program for unknown id '%', programID '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:331 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:331 msgid "Invalid lane index '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTypesHandler.cpp:85 +#: D:\Repos\sumo/src\netimport\NIXMLTypesHandler.cpp:85 msgid "Invalid lane spread type '%'. Using default 'right'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTypesHandler.cpp:114 +#: D:\Repos\sumo/src\netimport\NIXMLTypesHandler.cpp:114 msgid "Invalid lane index % for edge type '%' with % lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/NIImporter_Vissim.cpp:887 +#: D:\Repos\sumo/src\netimport\vissim\NIImporter_Vissim.cpp:887 msgid "Could not open vissim-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnection.cpp:241 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnection.cpp:241 msgid "Could not build connection between '%' and '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnection.cpp:248 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnection.cpp:248 msgid "Lane sizes differ for connection '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnectionCluster.cpp:496 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnectionCluster.cpp:496 msgid "NIVissimConnectionCluster:More than a single node" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnectionCluster.cpp:662 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnectionCluster.cpp:662 msgid "NIVissimConnectionCluster: how to get an edge's position?" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:205 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:205 #, c-format msgid "Could not build district '%' - edge '%' is missing." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:360 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:360 msgid "" "No streams assigned at district'%'.\n" " Using default speed 200km/h" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:377 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:526 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:377 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:526 #, c-format msgid "The referenced speed distribution '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:378 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:385 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:378 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:385 msgid ". Using default." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:143 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:143 msgid "Ugly split to prohibit '%' by '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:186 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:186 msgid "Could not prohibit '%' by '%'. Have not found disturbance." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:191 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:191 msgid "Could not prohibit '%' by '%'. Disturbance connects same node." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:210 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:262 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:210 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:262 #, c-format msgid "Would have to split edge '%' to build a prohibition" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:237 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:237 #, c-format msgid "Could not prohibit '%' - it was not built." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:243 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:243 msgid "Could not prohibit '%' by '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:307 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:307 msgid "NIVissimDisturbance: no connection" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:340 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:340 #, c-format msgid "Could not build % of % disturbances." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:439 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:439 msgid "Will not build edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:464 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:472 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:464 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:472 #, c-format msgid "Could not insert node '%' to nodes container." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:490 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:490 msgid "Could not build edge '%'; would connect same node." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:532 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:532 msgid "What about distribution '%' " msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:138 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:138 #, c-format msgid "Could not set tls signal at edge '%' - the edge was not built." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:152 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:152 msgid "Edge '%': Lanes were not assigned." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:375 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:375 msgid "" "Error on adding a traffic light\n" " Must be a multiple id ('%')" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:383 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:383 msgid "The signal group '%' could not be assigned to tl '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:392 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:392 msgid "The signal '%' could not be assigned to tl '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:399 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:399 msgid "Could not set % of % traffic lights." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:402 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:402 #, c-format msgid "Could not set % of % groups." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:405 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:405 #, c-format msgid "Could not set % of % signals." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Lichtsignalanlagendefinition.cpp:84 -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:93 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Lichtsignalanlagendefinition.cpp:84 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:93 #, c-format msgid "Unsupported LSA-Type '%' occurred." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgeberdefinition.cpp:73 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgeberdefinition.cpp:73 msgid "Omitting unknown traffic light." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:142 -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:170 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:142 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:170 msgid "VAS traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:154 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:154 msgid "VSPLUS traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:162 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:162 msgid "TRENDS traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:178 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:178 msgid "TL traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:186 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:186 msgid "POS traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:194 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:194 msgid "externally defined traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Simdauer.cpp:49 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Simdauer.cpp:49 msgid "Simulation duration could not be parsed" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:85 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:85 msgid "Trying to set the effort for the unknown edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:100 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:100 msgid "Trying to set the travel time for the unknown edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:129 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:129 msgid "Invalid network, no network version declared." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:133 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:133 msgid "" "Network contains internal links which are ignored. Vehicles will 'jump' " "across junctions and thus underestimate route lengths and travel times." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:163 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:163 msgid "State was written at a different time=% than the begin time %!" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:197 -#: /home/micha/programming/sumo/src/router/RONet.cpp:223 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:197 +#: D:\Repos\sumo/src\router\RONet.cpp:223 #, c-format msgid "A TAZ with id '%' already exists. Not building junction TAZ." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:228 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:228 msgid "" "Loading vehicles ahead of a state file is not supported. Correct --begin " "option or load vehicles with option --route-files" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:256 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:256 msgid "Loading weights from '%'..." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:285 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:285 msgid "Loading done." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:390 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:390 msgid "Wrong number of state file names!" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:425 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:425 msgid "Loading % from '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:445 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:445 #, c-format msgid "The route file '%' is not accessible." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLDetectorBuilder.cpp:526 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:461 +msgid "" +"LaneData requested for mesoscopic simulation but --meso-lane-queue is not " +"active. Falling back to edgeData." +msgstr "" + +#: D:\Repos\sumo/src\netload\NLDetectorBuilder.cpp:526 msgid "" "The netstate type 'hbefa' is deprecated. Please use the type 'emissions' " "instead." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:198 +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:198 msgid "Asymmetrical neigh lane '%' for lane '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:218 +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:218 #, c-format msgid "" "Internal edge '%' is not properly connected (probably a manually modified " "net.xml)." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:391 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:391 msgid "Unknown from-node '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:395 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:395 msgid "Unknown to-node '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:535 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:535 #, c-format msgid "" "Shape of lane '%' is broken.\n" " Can not build according edge." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:557 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:557 #, c-format msgid "Another lane with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:627 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:627 msgid "An unknown lane ('%') was tried to be set as incoming to junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:781 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:781 msgid "Traffic light '%' has unknown type '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:785 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:785 #, c-format msgid "" "Traffic light type '%' cannot be used in mesoscopic simulation. Using '%' as " "fallback." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:874 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:874 msgid "maxDur % should not be smaller than minDir % in phase of tlLogic %" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:889 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:889 msgid "Duplicate condition '%' in tlLogic '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:942 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:942 msgid "Invalid person mode '%' in E1 detector definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1001 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1001 msgid "" "VTypeProbes are deprecated. Use fcd-output devices (assigned to the vType) " "instead." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1061 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1061 msgid "Ignoring deprecated argument 'cont' for E2 detector '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1077 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1077 msgid "Invalid person mode '%' in E2 detector definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1091 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1091 msgid "" "Trying to specify detector's lane by the given id since the argument 'lane' " "is missing." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1131 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1131 msgid "" "Missing argument 'pos' for E2Detector '%'. Assuming detector start == lane " "start of lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1136 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1136 msgid "" "Missing argument 'endPos' for E2Detector '%'. Assuming detector end == lane " "end of lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1205 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1205 #, c-format msgid "" "Ignoring argument 'period' for E2Detector '%' since argument 'tl' was given." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1262 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1262 msgid "Invalid person mode '%' in E3 detector definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1341 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1341 msgid "Invalid person mode '%' in edgeData definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1365 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1365 msgid "Unknown edge '%' in edgeData definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1414 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1372 +msgid "" +"LaneData '%' requested for mesoscopic simulation but --meso-lane-queue is " +"not active. Falling back to edgeData." +msgstr "" + +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1419 #, c-format msgid "Unknown from-edge '%' in connection." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1420 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1425 #, c-format msgid "Unknown to-edge '%' in connection." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1425 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1430 msgid "Invalid lane index in connection from '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1506 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1511 #, c-format msgid "Unknown from-edge '%' in conflict." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1511 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1516 #, c-format msgid "Unknown to-edge '%' in connflict." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1516 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1521 msgid "Invalid lane index in conflict with '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1568 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1573 msgid "" "no valid geo projection loaded from network. fcd-output.geo will not work" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1596 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1601 msgid "Replacing junction-taz '%' with loaded TAZ." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1639 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1644 msgid "Skipping visualization of taz '%', polygon already exists." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1670 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1675 msgid "At district '%': succeeding edge '%' does not exist." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:116 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:116 msgid "Information about the number of nodes was missing." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:126 -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:143 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:126 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:143 msgid "Ignoring junction logic for junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:333 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:333 msgid "Invalid traffic light type '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:344 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:344 #, c-format msgid "Another logic with id '%' and programID '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:471 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:471 msgid "Traffic lights could not be built." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:75 +#: D:\Repos\sumo/src\netload\NLNetShapeHandler.cpp:163 +#, c-format +msgid "" +"% edges of the primary network did not occur in the alternative-net-file" +msgstr "" + +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:75 msgid "Vaporizers are deprecated. Use rerouters instead." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:84 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:84 msgid "Unknown edge ('%') referenced in a vaporizer." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:93 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:93 msgid "A vaporization begin time is negative (edge id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:97 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:97 msgid "A vaporization ends before it starts (edge id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:191 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:191 msgid "" "The overheadWireSegment '%' was not created as it is attached to internal " "lane. It will be build automatically." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:196 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:196 #, c-format msgid "" "The overheadWireSegment '%' not built as it is attached to internal lane. It " "will be build automatically." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:208 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:208 #, c-format msgid "" "The overheadWireSegment '%' has wrong position. Automatically set from 0 to " "the length of the lane." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:216 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:216 msgid "" "Overhead wire solver (Eigen) not compiled in, expect errors in overhead wire " "simulation" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:376 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:376 msgid "" "A connecting overhead wire start segment '%' defined for overhead wire clamp " "'%' is not assigned to the traction substation '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:378 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:378 msgid "" "A connecting overhead wire end segment '%' defined for overhead wire clamp " "'%' is not assigned to the traction substation '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:382 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:382 msgid "" "The overhead wire clamp '%' defined in an overhead wire section was not " "assigned to the substation '%'. Please define proper in additional files before defining overhead wire section." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:397 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:397 msgid "" "Cannot check circuit, overhead circuit solver support (Eigen) not compiled " "in." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:469 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:469 msgid "" "Not building overhead wire clamps, overhead wire solver support (Eigen) not " "compiled in." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:472 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:472 msgid "" "Ignoring overhead wire clamps, they make no sense when overhead wire circuit " "solver is off." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:526 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:526 msgid "Ignoring invalid access from non-pedestrian lane '%' in busStop '%'." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:54 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:54 msgid "The generated net will be written to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:59 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:59 msgid "Prefix of files to write plain xml nodes, edges and connections to" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:62 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:62 msgid "Write all lanes and their attributes even when they are not customized" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:69 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:69 msgid "Defines a prefix for edge and junction names" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:74 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:74 msgid "Write geo coordinates in plain-xml" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:79 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:79 msgid "The generated net will be written to FILE using Amitran format" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:82 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:82 msgid "The generated net will be written to FILE using MATsim format" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:85 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:85 msgid "The generated net will be written to FILE using OpenDRIVE format" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:88 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:88 msgid "" "The generated net will be written to dlr-navteq files with the given PREFIX" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:91 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:91 msgid "" "The network coordinates are written with the specified level of output " "precision" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:94 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:94 msgid "Street names will be included in the output (if available)" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:97 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:97 msgid "Writes original names, if given, as parameter" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:100 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:100 msgid "Writes street signs as POIs to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:104 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:104 msgid "Writes public transport stops to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:106 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:106 msgid "Writes public transport lines to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:108 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:108 msgid "Clean-up pt stops that are not served by any line" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:111 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:111 msgid "Writes parking areas to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:114 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:114 msgid "Analyze topology of the railway network" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:118 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:118 msgid "" "Write shapes that are embedded in the network input and that are not " "supported by polyconvert (OpenDRIVE)" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:123 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:123 msgid "" "Builds parameterized curves whenever the angular change between straight " "segments exceeds FLOAT degrees" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:127 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:127 msgid "Write lanes in lefthand networks on the left side (positive indices)" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:130 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:130 msgid "" "Match loaded shapes to the closest edge within FLOAT and export as road " "objects" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:154 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:153 msgid "OpenDRIVE export needs internal links computation." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:164 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:163 msgid "" "OpenDRIVE cannot represent oblique lane cuts and should use option " "'rectangular-lane-cut'." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:173 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:173 msgid "public transport lines output requires 'ptstop-output' to be set" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:177 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:177 msgid "" "'ptline-clean-up' only works in conjunction with 'ptline-output'. Ignoring " "invalid option." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:186 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:186 msgid "Writing network" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:91 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:91 msgid "" "DlrNavteq node data will be written in (floating point) cartesian coordinates" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:155 -#: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:162 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:155 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:162 msgid "Could not reconstruct shape for edge:'%' (%)." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:307 +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:313 msgid "Could not compute smooth shape for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:450 +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:456 msgid "" "Could not compute smooth shape from lane '%' to lane '%'. Use option " "'junctions.scurve-stretch' or increase radius of junction '%' to fix this." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:957 +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:963 msgid "" "Uneven stop line at lane '%' (dist=%) cannot be represented in OpenDRIVE." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:231 +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:235 msgid "" "Embedding TAZ-data inside the network is deprecated. Use option --taz-output " "instead" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:351 +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:458 msgid "Could not find bidi-connection for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:517 +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:545 #, c-format msgid "Lane '%' has a maximum allowed speed of 0." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_XML.cpp:88 -#: /home/micha/programming/sumo/src/polyconvert/PCPolyContainer.cpp:105 +#: D:\Repos\sumo/src\netwrite\NWWriter_XML.cpp:88 +#: D:\Repos\sumo/src\polyconvert\PCPolyContainer.cpp:105 msgid "" "Ignoring option \"proj.plain-geo\" because no geo-conversion has been defined" msgstr "" -#: /home/micha/programming/sumo/src/od/ODAmitranHandler.cpp:48 -msgid "Invalid duration for timeSlice starting %." +#: D:\Repos\sumo/src\od2trips_main.cpp:80 +msgid "Loads TAZ (districts; also from networks) from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/od/ODDistrictCont.cpp:72 -#, c-format -msgid "Could not access network file '%' to load." +#: D:\Repos\sumo/src\od2trips_main.cpp:102 +msgid "Writes trip definitions into FILE" msgstr "" -#: /home/micha/programming/sumo/src/od/ODDistrictHandler.cpp:130 -msgid "'probability' must be positive (in definition of % '%')." +#: D:\Repos\sumo/src\od2trips_main.cpp:105 +msgid "Writes flow definitions into FILE" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:80 -msgid "Missing origin '%' and destination '%' (% vehicles)." +#: D:\Repos\sumo/src\od2trips_main.cpp:108 +msgid "Writes probabilistic flow instead of evenly spaced flow" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:86 -msgid "Missing origin '%' (% vehicles)." +#: D:\Repos\sumo/src\od2trips_main.cpp:111 +msgid "Writes pedestrians instead of vehicles" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:91 -msgid "Missing destination '%' (% vehicles)." +#: D:\Repos\sumo/src\od2trips_main.cpp:114 +msgid "Writes persontrips instead of vehicles" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:97 -#, c-format -msgid "District '%' has no source." +#: D:\Repos\sumo/src\od2trips_main.cpp:117 +msgid "Add modes attribute to personTrips" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:101 -#, c-format -msgid "District '%' has no sink." +#: D:\Repos\sumo/src\od2trips_main.cpp:124 +msgid "Writes trips between junctions" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:193 -msgid "" -"Cannot find different source and sink edge for origin '%' and destination " -"'%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:129 +#: D:\Repos\sumo/src\router\ROFrame.cpp:116 +msgid "Defines the begin time; Previous trips will be discarded" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:364 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:384 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:410 +#: D:\Repos\sumo/src\od2trips_main.cpp:132 +#: D:\Repos\sumo/src\router\ROFrame.cpp:119 msgid "" -"Flow density of % vehicles per second, cannot be represented with a simple " -"probability. Falling back to even spacing." +"Defines the end time; Later trips will be discarded; Defaults to the maximum " +"time that SUMO can represent" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:434 -msgid "End of file while reading %." +#: D:\Repos\sumo/src\od2trips_main.cpp:140 +msgid "Spreads trips uniformly over each time period" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:461 -msgid "Broken period definition '%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:143 +msgid "Always choose source and sink edge which are not identical" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:475 -msgid "Broken factor: '%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:149 +msgid "Defines the prefix for vehicle names" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:509 -#, c-format -msgid "Missing line with % district names." +#: D:\Repos\sumo/src\od2trips_main.cpp:162 +msgid "Disable console output of current time step" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:519 -msgid "Missing line for district %." +#: D:\Repos\sumo/src\od2trips_main.cpp:193 +msgid "No TAZ input file (-n) specified." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:533 -msgid "More entries than districts found." +#: D:\Repos\sumo/src\od2trips_main.cpp:197 +msgid "No input specified." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:538 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:586 -msgid "Not numeric vehicle number in line '%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:201 +msgid "No trip table output file (-o) or flow-output is specified." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:584 -msgid "Missing at least one information in line '%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:205 +msgid "Only one of the the options 'pedestrians' and 'persontrips' may be set." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:647 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:154 -msgid "Could not open '%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:248 +msgid "" +"Importer of O/D-matrices for the microscopic, multi-modal traffic simulation " +"SUMO." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:658 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:664 -#, c-format -msgid "'%' does not contain the needed information about the time described." +#: D:\Repos\sumo/src\od2trips_main.cpp:270 +msgid "You must supply a TAZ, network or districts file ('-n')." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:674 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:687 -#, c-format -msgid "Could not access matrix file '%' to load." +#: D:\Repos\sumo/src\od2trips_main.cpp:276 +msgid "No districts loaded." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:714 -#, c-format -msgid "Could not access route file '%' to load." +#: D:\Repos\sumo/src\od2trips_main.cpp:282 +msgid "No vehicles loaded." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:731 -msgid "Assuming 24 entries for a day timeline, but got %." +#: D:\Repos\sumo/src\od\ODAmitranHandler.cpp:48 +msgid "Invalid duration for timeSlice starting %." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:741 -msgid "Broken time line definition: missing a value in '%'." +#: D:\Repos\sumo/src\od\ODDistrictCont.cpp:72 +#, c-format +msgid "Could not access network file '%' to load." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:80 -msgid "Loads TAZ (districts; also from networks) from FILE(s)" +#: D:\Repos\sumo/src\od\ODDistrictHandler.cpp:130 +msgid "'probability' must be positive (in definition of % '%')." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:102 -msgid "Writes trip definitions into FILE" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:80 +msgid "Missing origin '%' and destination '%' (% vehicles)." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:105 -msgid "Writes flow definitions into FILE" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:86 +msgid "Missing origin '%' (% vehicles)." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:108 -msgid "Writes probabilistic flow instead of evenly spaced flow" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:91 +msgid "Missing destination '%' (% vehicles)." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:111 -msgid "Writes pedestrians instead of vehicles" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:97 +#, c-format +msgid "District '%' has no source." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:114 -msgid "Writes persontrips instead of vehicles" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:101 +#, c-format +msgid "District '%' has no sink." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:117 -msgid "Add modes attribute to personTrips" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:193 +msgid "" +"Cannot find different source and sink edge for origin '%' and destination " +"'%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:124 -msgid "Writes trips between junctions" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:364 D:\Repos\sumo/src\od\ODMatrix.cpp:384 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:410 +msgid "" +"Flow density of % vehicles per second, cannot be represented with a simple " +"probability. Falling back to even spacing." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:129 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:116 -msgid "Defines the begin time; Previous trips will be discarded" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:434 +msgid "End of file while reading %." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:132 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:119 -msgid "" -"Defines the end time; Later trips will be discarded; Defaults to the maximum " -"time that SUMO can represent" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:461 +msgid "Broken period definition '%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:140 -msgid "Spreads trips uniformly over each time period" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:475 +msgid "Broken factor: '%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:143 -msgid "Always choose source and sink edge which are not identical" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:509 +#, c-format +msgid "Missing line with % district names." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:149 -msgid "Defines the prefix for vehicle names" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:519 +msgid "Missing line for district %." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:162 -msgid "Disable console output of current time step" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:533 +msgid "More entries than districts found." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:193 -msgid "No TAZ input file (-n) specified." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:538 D:\Repos\sumo/src\od\ODMatrix.cpp:586 +msgid "Not numeric vehicle number in line '%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:197 -msgid "No input specified." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:584 +msgid "Missing at least one information in line '%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:201 -msgid "No trip table output file (-o) or flow-output is specified." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:647 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:154 +msgid "Could not open '%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:205 -msgid "Only one of the the options 'pedestrians' and 'persontrips' may be set." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:658 D:\Repos\sumo/src\od\ODMatrix.cpp:664 +#, c-format +msgid "'%' does not contain the needed information about the time described." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:248 -msgid "" -"Importer of O/D-matrices for the microscopic, multi-modal traffic simulation " -"SUMO." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:674 D:\Repos\sumo/src\od\ODMatrix.cpp:687 +#, c-format +msgid "Could not access matrix file '%' to load." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:270 -msgid "You must supply a TAZ, network or districts file ('-n')." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:714 +#, c-format +msgid "Could not access route file '%' to load." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:276 -msgid "No districts loaded." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:731 +msgid "Assuming 24 entries for a day timeline, but got %." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:282 -msgid "No vehicles loaded." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:741 +msgid "Broken time line definition: missing a value in '%'." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:471 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:168 +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:471 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:168 msgid "Could not load '%'." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:491 +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:491 msgid "Loaded decal '%' with bounding box % %." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:597 +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:597 msgid "Could not load '%'. The model is replaced by a cone shape." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGManipulator.cpp:257 +#: D:\Repos\sumo/src\osgview\GUIOSGManipulator.cpp:257 #, c-format msgid "Currently in % camera mode. Press [F] to switch." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:166 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:166 msgid "Could not load traffic light files." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:454 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:454 msgid "Invalid link index in '%'." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:456 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:456 msgid "Unknown traffic light in '%'." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:992 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:992 msgid " (No projection defined)" msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:996 -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:997 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:996 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:997 msgid "N/A" msgstr "N/A" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:107 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:208 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:263 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:341 -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:240 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:107 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:208 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:263 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:341 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:240 msgid "Unable to project coordinates for polygon '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:184 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:184 msgid "Missing id under '%'" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:232 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:265 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:140 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:299 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:271 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:385 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:232 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:265 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:140 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:299 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:271 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:385 msgid "Unable to project coordinates for POI '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:300 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:300 msgid "Unsupported shape type occurred (id='%')." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:71 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:71 msgid "Could not open dlr-navteq-poi-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:86 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:86 msgid "Could not open dlr-navteq-poly-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:128 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:128 msgid "Invalid x coordinate for POI '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:132 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:132 msgid "Invalid y coordinate for POI '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:137 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:137 msgid "The name of a POI is missing." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:191 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:191 msgid "Invalid dlr-navteq-polygon - line: '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:220 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:220 #, c-format msgid "The polygon '%' is empty." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:224 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:224 msgid "The name of a polygon is missing; it will be discarded." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:157 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:157 msgid "Could not import polygon from relation '%' (missing ways)" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:212 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:212 msgid "" "Could not import polygon from relation '%' (name:% reason: found gap of %m " "to way '%')\n" " Total length of remaining ways: %m." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:230 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:230 msgid "Assembled polygon from relation '%' (name:%)" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:254 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:254 #, c-format msgid "Polygon '%' has no shape." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:114 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:114 msgid "Could not open visum-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:149 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:149 msgid "Unable to project coordinates for point '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderXML.cpp:63 +#: D:\Repos\sumo/src\polyconvert\PCLoaderXML.cpp:63 msgid "Could not open xml-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:55 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:55 msgid "Could not open net-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:71 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:71 msgid "Could not find projection parameter in net." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCTypeDefHandler.cpp:71 +#: D:\Repos\sumo/src\polyconvert\PCTypeDefHandler.cpp:71 msgid "Could not add polygon type '%' (probably the id is already used)." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:81 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:81 msgid "Loads SUMO-network FILE as reference to offset and projection" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:85 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:85 msgid "" "Reads polygons from FILE assuming they're coded in DLR-Navteq (Elmar)-format" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:87 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:87 msgid "" "Reads pois from FILE+ assuming they're coded in DLR-Navteq (Elmar)-format" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:92 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:92 msgid "Reads polygons from FILE assuming it's a Visum-net" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:100 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:100 msgid "Reads pois and shapes from FILE assuming they're coded in XML" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:105 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:105 msgid "Reads pois from FILE+ assuming they're coded in OSM" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:107 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:107 msgid "The type will be made of the key-value - pair" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:109 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:109 msgid "The id will be set from the given 'name' attribute" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:111 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:111 msgid "" "If FLOAT >= 0, assemble one polygon from all ways of a relation if they all " "connect with gaps below FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:118 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:118 msgid "Reads shapes from shapefiles FILE+" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:122 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:122 msgid "Guesses the shapefile's projection" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:130 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:130 msgid "Defines in which column the id can be found" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:134 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:134 msgid "Defines which columns form the type id (comma separated list)" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:137 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:137 msgid "A running number will be used as id" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:140 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:140 msgid "Extract all additional columns as params" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:143 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:143 msgid "" "[auto|true|false]. Forces the 'fill' status to the given value. Default " "'auto' tries to determine it from the data type" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:148 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:148 msgid "Reads types from FILE" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:156 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:156 msgid "Write generated polygons/pois to FILE" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:159 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:159 msgid "Write generated polygons/pois to a dlr-tdp file with the given prefix" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:165 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:169 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:172 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:177 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:181 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:165 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:169 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:172 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:177 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:181 msgid "Pruning" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:165 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:165 msgid "Enables pruning on net boundaries" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:169 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:169 msgid "" "Uses FLOAT,FLOAT,FLOAT,FLOAT as offset definition added to the net boundary. " "Positive values grow the boundary on all sides while negative values shrink " "it." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:172 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:172 msgid "Uses STR as pruning boundary" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:177 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:177 msgid "Items in STR will be kept though out of boundary" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:181 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:181 msgid "Items with names in STR[] will be removed" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:196 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:196 msgid "Imports all attributes as key/value pairs" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:202 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:202 msgid "" "Adds FLOAT to the layer value for each poi (i.e. to raise it above polygons)" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:206 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:206 msgid "Sets STR as default color" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:209 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:209 msgid "Sets STR as default prefix" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:212 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:212 msgid "Sets STR as default type" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:215 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:215 msgid "Fills polygons by default" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:218 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:218 msgid "Sets FLOAT as default layer" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:221 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:221 msgid "Sets default action to discard" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:225 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:225 msgid "Write geo coordinates in output" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:232 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:232 msgid "" "Importer of polygons and POIs for the microscopic, multi-modal traffic " "simulation SUMO." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:285 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:285 msgid "In order to prune the input on the net, you have to supply a network." msgstr "" -#: /home/micha/programming/sumo/src/router/ROEdge.cpp:204 +#: D:\Repos\sumo/src\router\ROEdge.cpp:204 msgid "" "No interval matches passed time=% in edge '%'.\n" " Using edge's length / max speed." msgstr "" -#: /home/micha/programming/sumo/src/router/ROEdge.cpp:230 +#: D:\Repos\sumo/src\router\ROEdge.cpp:230 msgid "" "No interval matches passed time=% in edge '%'.\n" " Using edge's length / edge's speed." msgstr "" -#: /home/micha/programming/sumo/src/router/ROEdge.cpp:453 +#: D:\Repos\sumo/src\router\ROEdge.cpp:453 msgid "" "Option weights.priority-factor does not take effect because all edges have " "the same priority." msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:47 +#: D:\Repos\sumo/src\router\ROFrame.cpp:47 msgid "Write generated routes to FILE" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:53 +#: D:\Repos\sumo/src\router\ROFrame.cpp:53 msgid "Write used vehicle types into separate FILE" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:56 +#: D:\Repos\sumo/src\router\ROFrame.cpp:56 msgid "Keep vTypeDistribution ids when writing vehicles and their types" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:63 +#: D:\Repos\sumo/src\router\ROFrame.cpp:63 msgid "Use FILE as SUMO-network to route on" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:66 +#: D:\Repos\sumo/src\router\ROFrame.cpp:66 msgid "Write vehicles that reference routes by their id" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:73 +#: D:\Repos\sumo/src\router\ROFrame.cpp:73 msgid "Read additional network data (districts, bus stops) from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:87 +#: D:\Repos\sumo/src\router\ROFrame.cpp:87 msgid "Read sumo routes, alternatives, flows, and trips from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:101 +#: D:\Repos\sumo/src\router\ROFrame.cpp:101 msgid "Read network weights from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:104 +#: D:\Repos\sumo/src\router\ROFrame.cpp:104 msgid "Read lane-based network weights from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:125 +#: D:\Repos\sumo/src\router\ROFrame.cpp:125 msgid "Continue if a route could not be build" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:128 +#: D:\Repos\sumo/src\router\ROFrame.cpp:128 msgid "Prune the number of alternatives to INT" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:131 +#: D:\Repos\sumo/src\router\ROFrame.cpp:131 msgid "Use origin and destination zones (districts) for in- and output" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:139 +#: D:\Repos\sumo/src\router\ROFrame.cpp:139 msgid "Assume input is unsorted" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:148 +#: D:\Repos\sumo/src\router\ROFrame.cpp:148 msgid "generate random departure times for flow input" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:151 +#: D:\Repos\sumo/src\router\ROFrame.cpp:151 msgid "" "Remove loops within the route; Remove turnarounds at start and end of the " "route" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:154 +#: D:\Repos\sumo/src\router\ROFrame.cpp:154 msgid "Tries to correct a false route" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:157 +#: D:\Repos\sumo/src\router\ROFrame.cpp:157 msgid "" "Tries to correct an invalid starting edge by using the first usable edge " "instead" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:160 +#: D:\Repos\sumo/src\router\ROFrame.cpp:160 msgid "" "Tries to correct an invalid destination edge by using the last usable edge " "instead" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:163 +#: D:\Repos\sumo/src\router\ROFrame.cpp:163 msgid "" "Maximum distance when mapping input coordinates (fromXY etc.) to the road " "network" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:166 +#: D:\Repos\sumo/src\router\ROFrame.cpp:166 msgid "Match positions to junctions instead of edges" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:169 +#: D:\Repos\sumo/src\router\ROFrame.cpp:169 msgid "Aggregate routing queries with the same origin" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:173 +#: D:\Repos\sumo/src\router\ROFrame.cpp:173 msgid "The number of parallel execution threads used for routing" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:177 +#: D:\Repos\sumo/src\router\ROFrame.cpp:177 msgid "" "Select among routing algorithms ['dijkstra', 'astar', 'CH', 'CHWrapper']" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:181 +#: D:\Repos\sumo/src\router\ROFrame.cpp:181 msgid "" "Comma separated list of param keys to compare for additional restrictions" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:186 +#: D:\Repos\sumo/src\router\ROFrame.cpp:186 msgid "Interpolate edge weights at interval boundaries" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:190 +#: D:\Repos\sumo/src\router\ROFrame.cpp:190 msgid "Expand the end of the last loaded weight interval to infinity" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:194 +#: D:\Repos\sumo/src\router\ROFrame.cpp:194 msgid "" "Apply the given time penalty when computing routing costs for minor-link " "internal lanes" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:217 +#: D:\Repos\sumo/src\router\ROFrame.cpp:217 msgid "Defaults will override given values" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:222 +#: D:\Repos\sumo/src\router\ROFrame.cpp:222 msgid "Defines how often statistics shall be printed" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:233 +#: D:\Repos\sumo/src\router\ROFrame.cpp:233 msgid "No output specified." msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:238 +#: D:\Repos\sumo/src\router\ROFrame.cpp:238 msgid "A positive number of alternatives must be enabled." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:62 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:64 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:83 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:85 +#: D:\Repos\sumo/src\router\ROLoader.cpp:62 +#: D:\Repos\sumo/src\router\ROLoader.cpp:64 +#: D:\Repos\sumo/src\router\ROLoader.cpp:83 +#: D:\Repos\sumo/src\router\ROLoader.cpp:85 msgid "Trying to set a weight for the unknown edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:114 +#: D:\Repos\sumo/src\router\ROLoader.cpp:114 #, c-format msgid "The network file '%' is not accessible." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:140 +#: D:\Repos\sumo/src\router\ROLoader.cpp:140 #, c-format msgid "The additional file '%' is not accessible." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:217 +#: D:\Repos\sumo/src\router\ROLoader.cpp:217 msgid "Routes found between time steps % and %." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:243 +#: D:\Repos\sumo/src\router\ROLoader.cpp:243 msgid "The loader for % from file '%' could not be initialised (%)." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:281 -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:158 +#: D:\Repos\sumo/src\router\ROLoader.cpp:281 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:183 msgid "failed." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:162 +#: D:\Repos\sumo/src\router\RONet.cpp:162 #, c-format msgid "The edge '%' occurs at least twice." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:176 +#: D:\Repos\sumo/src\router\RONet.cpp:176 #, c-format msgid "The TAZ '%' occurs at least twice." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:199 +#: D:\Repos\sumo/src\router\RONet.cpp:199 #, c-format msgid "The TAZ '%' is unknown." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:204 +#: D:\Repos\sumo/src\router\RONet.cpp:204 #, c-format msgid "The edge '%' for TAZ '%' is unknown." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:259 +#: D:\Repos\sumo/src\router\RONet.cpp:259 #, c-format msgid "The bidi edge '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:270 +#: D:\Repos\sumo/src\router\RONet.cpp:270 #, c-format msgid "The node '%' occurs at least twice." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:279 +#: D:\Repos\sumo/src\router\RONet.cpp:279 msgid "The % '%' occurs at least twice." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:446 +#: D:\Repos\sumo/src\router\RONet.cpp:446 #, c-format msgid "The vehicle type '%' occurs at least twice." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:498 +#: D:\Repos\sumo/src\router\RONet.cpp:498 msgid "Requesting departure time for unknown vehicle '%'" msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:528 +#: D:\Repos\sumo/src\router\RONet.cpp:528 #, c-format msgid "Another person with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:637 +#: D:\Repos\sumo/src\router\RONet.cpp:637 msgid "" "Bulking different maximum speeds ('%' and '%') may lead to suboptimal routes." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:640 +#: D:\Repos\sumo/src\router\RONet.cpp:640 msgid "" "Bulking different vehicle classes ('%' and '%') may lead to invalid routes." msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:137 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:137 msgid "Unknown node '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:243 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:243 msgid "Ignoring lane '%' with broken shape." msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:280 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:280 msgid "Skipping isolated junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:299 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:299 #, c-format msgid "unknown from-edge '%' in connection" msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:302 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:302 #, c-format msgid "unknown to-edge '%' in connection" msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:316 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:316 #, c-format msgid "unknown via-edge '%' in connection" msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:368 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:368 msgid "Ignoring invalid access from non-pedestrian edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteDef.cpp:123 +#: D:\Repos\sumo/src\router\RORouteDef.cpp:123 msgid "Repaired route of vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteDef.cpp:222 +#: D:\Repos\sumo/src\router\RORouteDef.cpp:222 msgid "" "There are stop edges which were not part of the original route for vehicle " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteDef.cpp:237 +#: D:\Repos\sumo/src\router\RORouteDef.cpp:237 msgid "Edge '%' not connected to edge '%' for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:200 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:200 msgid "Triggered departure for person '%' requires starting with a ride." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:202 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:202 msgid "" "Triggered departure for container '%' requires starting with a transport." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:224 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:224 #, c-format msgid "Found % outside container element" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:338 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:338 msgid "No probability for route %, using default." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:493 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:493 msgid "Ids of internal route distributions are ignored (vehicle '%')." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:609 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:609 msgid "Discarding person '%' because her plan is empty" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:635 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:635 msgid "Discarding personFlow '%' because their plan is empty" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:643 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:643 #, c-format msgid "probabilistic personFlow '%' must specify end time" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:716 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:716 msgid "Discarding container '%' because it's plan is empty" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:733 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:733 msgid "Discarding containerFlow '%' because it's plan is empty" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1036 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1041 msgid "Triggered departure for container '%' requires a unique lines value." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1076 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1081 msgid "Cannot convert geo-positions because the network has no geo-reference" msgstr "" -#: /home/micha/programming/sumo/src/sumo_main.cpp:49 +#: D:\Repos\sumo/src\sumo_main.cpp:49 msgid "Another interrupt signal received, hard exit." msgstr "" -#: /home/micha/programming/sumo/src/sumo_main.cpp:52 +#: D:\Repos\sumo/src\sumo_main.cpp:52 msgid "Interrupt signal received, trying to exit gracefully." msgstr "" -#: /home/micha/programming/sumo/src/sumo_main.cpp:86 +#: D:\Repos\sumo/src\sumo_main.cpp:86 msgid "A microscopic, multi-modal traffic simulation." msgstr "Una simulación de tráfico microscópica y multi-modal." -#: /home/micha/programming/sumo/src/sumo_main.cpp:114 -#: /home/micha/programming/sumo/src/sumo_main.cpp:123 +#: D:\Repos\sumo/src\sumo_main.cpp:114 D:\Repos\sumo/src\sumo_main.cpp:123 msgid "Quitting (on error)." msgstr "Saliendo (debido a un error)." -#: /home/micha/programming/sumo/src/sumo_main.cpp:126 +#: D:\Repos\sumo/src\sumo_main.cpp:126 msgid "Quitting (on unknown error)." msgstr "" -#: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:76 +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:76 msgid "Unknown actor configuration '%' for vehicle '%'!" msgstr "" -#: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:94 +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:94 msgid "Motion state for unknown vehicle '%'!" msgstr "" -#: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:136 +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:136 msgid "Acceleration information is missing; try running with --compute-a." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:62 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:62 msgid "Computes emissions by driving a time line using SUMO's emission models." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:70 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:70 msgid "Defines the file to read the driving cycle from." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:74 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:74 msgid "Skips the first NUM lines." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:78 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:78 msgid "Defines the entry separator." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:83 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:83 msgid "" "Defines the netstate, route and trajectory files to read the driving cycles " "from." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:86 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:86 msgid "Load emission parameters (vTypes) from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:89 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:89 msgid "Defines for which emission class the emissions shall be generated. " msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:92 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:92 msgid "Defines the vehicle type to use for emission parameters." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:96 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:96 msgid "" "If set, the acceleration is computed instead of being read from the file. " msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:99 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:99 msgid "" "If set, the acceleration for time t is computed from v(t+1) - v(t) instead " "of v(t) - v(t-1). " msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:102 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:102 msgid "If set, the acceleration for time t is set to 0 if the speed is 0. " msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:105 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:105 msgid "If set, the first line of the read file is skipped." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:108 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:108 msgid "If set, the given speed is interpreted as being given in km/h." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:111 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:111 msgid "If set, the fourth column is read and used as slope (in deg)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:114 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:114 msgid "" "Sets a global slope (in deg) that is used if the file does not contain slope " "information." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:119 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:119 msgid "Defines the file to write the emission cycle results into." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:122 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:122 msgid "Defines the attributes to write." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:125 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:125 msgid "Save the emission values of each vehicle in XML" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:129 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:129 msgid "Save the aggregated and normed emission values of each vehicle in CSV" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:145 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:145 msgid "Defines the begin time in seconds;" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:148 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:148 msgid "Defines the end time in seconds;" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:152 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:152 msgid "Not writing anything." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:169 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:169 msgid "Either a timeline or a netstate / amitran file must be given." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:172 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:172 msgid "The output file must be given." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:185 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:185 #, c-format msgid "Unknown attribute '%' to write in output." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:213 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:213 msgid "" "Option --vtype requires option --additional-files for loading vehicle types" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:225 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:225 #, c-format msgid "Vehicle type '%' is not defined" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:245 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:245 msgid "Unreadable file '%'." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:276 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:276 msgid "Missing an entry in line '%'." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:278 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:278 msgid "Not numeric entry in line '%'." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:58 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:58 msgid "Writing map of '%' into '%'." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:62 -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:291 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:62 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:291 #, c-format msgid "Could not open file '%' for writing." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:86 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:86 msgid "Builds and writes an emissions map for SUMO's emission models." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:92 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:92 msgid "If set, maps for all available emissions are written." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:95 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:95 msgid "Defines the name of the emission class to generate the map for." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:98 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:98 msgid "Defines the minimum velocity boundary of the map to generate (in m/s)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:100 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:100 msgid "Defines the maximum velocity boundary of the map to generate (in m/s)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:102 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:102 msgid "Defines the velocity step size (in m/s)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:104 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:104 msgid "" "Defines the minimum acceleration boundary of the map to generate (in m/s^2)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:106 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:106 msgid "" "Defines the maximum acceleration boundary of the map to generate (in m/s^2)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:108 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:108 msgid "Defines the acceleration step size (in m/s^2)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:110 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:110 msgid "Defines the minimum slope boundary of the map to generate (in deg)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:112 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:112 msgid "Defines the maximum slope boundary of the map to generate (in deg)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:114 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:114 msgid "Defines the slope step size (in deg)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:119 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:119 msgid "" "Defines the file (or the path if --iterate was set) to write the map(s) into." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:159 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:159 msgid "The emission class (-e) must be given." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:162 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:162 msgid "The output file (-o) must be given." msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:314 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:314 msgid "Starting TraCI without using internal lanes!" msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:320 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:320 msgid "***Starting server on port % ***" msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:323 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:323 #, c-format msgid " waiting for % clients..." msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:347 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:347 msgid " client connected" msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:480 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:480 msgid "" "Execution order (libsumo::CMD_SETORDER) was not set for all TraCI clients in " "pre-execution phase." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/FileHelpers.cpp:73 +#: D:\Repos\sumo/src\utils\common\FileHelpers.cpp:73 msgid "Cannot get file attributes for file '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/FileHelpers.h:318 +#: D:\Repos\sumo/src\utils\common\FileHelpers.h:318 msgid "Invalid follower index in route '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/FileHelpers.h:328 +#: D:\Repos\sumo/src\utils\common\FileHelpers.h:328 #, c-format msgid "An edge within the route '%' is not known!" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:153 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:178 #, c-format msgid "done (%ms)." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:155 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:180 msgid "done." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:253 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:278 msgid "Could not set locale to '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:258 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:283 msgid "" "Environment variable SUMO_HOME is not set, could not find localized messages." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:264 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:289 msgid "Could not find localized messages." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:87 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:87 msgid "Invalid conversion from string to double (%)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:90 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:90 msgid "Invalid conversion from string to double (empty value)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:109 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:109 msgid "Invalid conversion from string to doubles (%)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:112 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:112 msgid "Invalid conversion from string to doubles (empty value)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:205 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:205 msgid "Invalid format of parameter (%)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:230 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:230 msgid "Invalid format of attribute '%'. Attribute must start with a letter" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:237 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:237 msgid "Invalid format of attribute (%)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/RandHelper.cpp:65 +#: D:\Repos\sumo/src\utils\common\RandHelper.cpp:65 msgid "Initialises the random number generator with the current system time" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/RandHelper.cpp:69 +#: D:\Repos\sumo/src\utils\common\RandHelper.cpp:69 msgid "Initialises the random number generator with the given value" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:187 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:187 msgid "Simultaneous specification of vClasses and exceptions is not allowed" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:191 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:191 msgid "StopOffset requires an offset value" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:341 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:341 #, c-format msgid "Unknown vehicle class '%' encountered." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:382 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:382 msgid "" "SVCPermissions must be specified either via 'allow' or 'disallow'. Ignoring " "'disallow'" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:408 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:408 #, c-format msgid "The vehicle class '%' is deprecated, use '%' instead." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:43 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:43 msgid "Loads the named config on startup" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:48 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:48 msgid "Saves current configuration into FILE" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:52 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:52 msgid "Enforce relative paths when saving the configuration" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:55 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:55 msgid "Saves a configuration template (empty) into FILE" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:58 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:58 msgid "Saves the configuration schema into FILE" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:62 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:62 msgid "Adds comments to saved template, configuration, or schema" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:71 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:71 msgid "Switches to verbose output" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:74 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:74 msgid "Prints option values before processing" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:77 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:77 msgid "Prints this screen or selected topics" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:80 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:80 msgid "Prints the current version" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:97 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:97 msgid "Disables output of warnings" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:100 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:100 msgid "Aggregate warnings of the same type whenever more than INT occur" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:104 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:104 msgid "Writes all messages to FILE (implies verbose)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:107 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:107 msgid "Writes all non-error messages to FILE (implies verbose)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:110 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:110 msgid "Writes all warnings and errors to FILE" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:113 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:113 msgid "Language to use in messages" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:116 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:116 msgid "Include license info into every output file" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:119 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:119 msgid "" "Prefix which is applied to all output files. The special string 'TIME' is " "replaced by the current time." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:122 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:122 msgid "Defines the number of digits after the comma for floating point output" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:125 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:125 msgid "Defines the number of digits after the comma for lon,lat output" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:128 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:128 msgid "" "Write time values as hour:minute:second or day:hour:minute:second rather " "than seconds" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:43 -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:184 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:43 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:184 msgid "Process Error" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:72 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:72 msgid "Empty Data" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:99 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:99 msgid "Invalid Number Format %" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:112 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:112 msgid "Invalid Time Format %" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:125 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:125 msgid "Invalid Bool Format %" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:137 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:137 msgid "Out Of Bounds" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:151 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:151 msgid "Unknown Element" msgstr "" -#: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:74 -#: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:76 -#: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:93 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:74 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:76 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:93 msgid "Invalid format of distribution parameterized" msgstr "" -#: /home/micha/programming/sumo/src/utils/emissions/EnergyParams.cpp:153 +#: D:\Repos\sumo/src\utils\emissions\EnergyParams.cpp:153 msgid "Vehicle device '%' doesn't have a valid value for parameter % (%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/emissions/HelpersEnergy.cpp:225 +#: D:\Repos\sumo/src\utils\emissions\HelpersEnergy.cpp:225 msgid "An acceleration given by the power was not found." msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:71 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:74 msgid "Add decal" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:71 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:74 msgid "Add decal." msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:151 -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:162 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:160 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:171 msgid "Invalid row or column" -msgstr "" +msgstr "Fila o columna inválida" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:186 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:195 msgid "Invalid row" -msgstr "" +msgstr "Fila invalida" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:196 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:205 msgid "Invalid column" -msgstr "" +msgstr "Columna inválida" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:332 -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:790 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:341 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:798 msgid "Open decal" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:337 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:346 msgid "All files (*)" -msgstr "" +msgstr "Todos los archivos (*)" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:790 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:798 msgid "Open decal." msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:798 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:806 msgid "Remove decal" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:798 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:806 msgid "Remove decal." msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:87 +#: D:\Repos\sumo/src\utils\foxtools\MFXTextFieldSearch.cpp:66 +msgid "Type to search..." +msgstr "" + +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:87 msgid "Ignoring geoidgrids and vgridshift in projection" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:232 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:232 msgid "Inverse projection works only with explicit proj parameters." msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:237 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:237 msgid "The projection method needs to be uniquely defined." msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:288 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:288 msgid "Uses a simple method for projection" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:291 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:291 msgid "Scaling factor for input coordinates" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:294 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:294 msgid "Rotation (clockwise degrees) for input coordinates" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:298 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:298 msgid "" "Determine the UTM zone (for a universal transversal mercator projection " "based on the WGS84 ellipsoid)" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:304 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:304 msgid "Uses STR as proj.4 definition for projection" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:307 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:307 msgid "Inverses projection" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:310 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:310 msgid "Convert from Gauss-Krueger to UTM" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:434 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:434 msgid "Could not transform (%,%)" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:578 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:578 #, c-format msgid "" "Ignoring loaded location attribute nr. % for tracking of original location" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeomHelper.cpp:238 +#: D:\Repos\sumo/src\utils\geom\GeomHelper.cpp:238 msgid "GeomHelper::makeCircle() requires nPoints>=3" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:607 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:607 msgid "Splitting vector close to end (pos: %, length: %)" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:1503 -#: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:1517 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:1503 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:1517 msgid "Trying to subtract PositionVectors of different lengths." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:960 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:963 msgid "'lane' and 'length' must be defined together in a lane area detector." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:965 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:968 msgid "'lanes' and 'endPos' must be defined together in a lane area detector." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1242 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1245 msgid "Calibrators need either an edge or a lane" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1289 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1292 msgid "" "CalibratorFlows need either the attribute vehsPerHour or speed or type (or " "any combination of these)" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1428 -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1454 -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1479 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1431 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1457 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1482 #, c-format msgid "Probability of % must be equal or greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1665 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1668 msgid "X and Y must be be defined together in POIs" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1671 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1674 msgid "lane and position must be be defined together in POIs" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1677 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1680 msgid "lon and lat must be be defined together in POIs" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1743 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1746 msgid "Parameters must be defined within an object." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1745 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:848 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1748 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:857 msgid "Parameters cannot be defined in the additional file's root." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1747 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:850 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1750 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:859 msgid "Parameters cannot be defined within another parameter." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1755 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1758 #, c-format msgid "Error parsing key from % generic parameter. Key cannot be empty." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1757 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1760 #, c-format msgid "" "Error parsing key from % generic parameter. Key contains invalid characters." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/DataHandler.cpp:111 +#: D:\Repos\sumo/src\utils\handlers\DataHandler.cpp:111 msgid "Data elements cannot load attributes as params" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/MeanDataHandler.cpp:54 +#: D:\Repos\sumo/src\utils\handlers\MeanDataHandler.cpp:54 msgid "MeanData elements cannot load attributes as params" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:370 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:373 msgid "" "Could not build % with ID '%' in netedit; ID contains invalid characters." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:420 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:423 msgid "" "a route must be defined either within a vehicle/flow or with an ID attribute" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:437 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:440 #, c-format msgid "cycleTime of % must be equal or greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:482 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:549 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:485 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:552 msgid "Attributes 'from' and 'fromJunction' cannot be defined together" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:484 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:551 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:487 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:554 msgid "Attributes 'to' and 'toJunction' cannot be defined together" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:515 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:518 msgid "trip definition needs either 'from/to' or 'fromJunction/toJunction'" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:846 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:855 msgid "Parameters must be defined within an object" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:858 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:867 #, c-format msgid "Error parsing key from % generic parameter. Key cannot be empty" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:860 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:869 #, c-format msgid "" "Error parsing key from % generic parameter. Key contains invalid characters" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:876 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:224 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:885 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:225 msgid "" "Defining car-following parameters in a nested element is deprecated in vType " "'%', use attributes instead!" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:884 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:886 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:227 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:229 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:893 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:895 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:228 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:230 msgid "Invalid parsing embedded VType" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:970 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:979 msgid "A stop must be defined either with an edge or with an lane, not both" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:984 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:995 msgid "A stop must be defined only in a StoppingPlace" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:987 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:998 msgid "A stop must be defined in an edge, a lane, or in a StoppingPlace" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/TemplateHandler.cpp:67 +#: D:\Repos\sumo/src\utils\handlers\TemplateHandler.cpp:67 msgid "Could not load template '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice.cpp:86 +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice.cpp:86 msgid "No port number given." msgstr "" -#: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice.cpp:161 +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice.cpp:161 msgid "Error on closing output devices." msgstr "" -#: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice_File.cpp:46 +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice_File.cpp:46 msgid "Could not redirect to NUL device (%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:315 +#: D:\Repos\sumo/src\utils\options\Option.cpp:352 #, c-format msgid "'%' is not a valid float." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:349 +#: D:\Repos\sumo/src\utils\options\Option.cpp:386 #, c-format msgid "'%' is not a valid bool." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:409 +#: D:\Repos\sumo/src\utils\options\Option.cpp:446 msgid "" "Please note that using ';' as list separator is deprecated and not accepted " "anymore." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:419 +#: D:\Repos\sumo/src\utils\options\Option.cpp:456 #, c-format msgid "'%' is not a valid integer vector." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:65 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:66 msgid "" "Copyright (C) 2001-2023 German Aerospace Center (DLR) and others; https://" "sumo.dlr.de" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:151 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:152 msgid "Internal request for unknown option '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:174 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:175 #, c-format msgid "No option with the name '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:191 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:192 #, c-format msgid "" "Please note that '%' is deprecated.\n" " Use '%' instead." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:387 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:388 #, c-format msgid "The file list for '%' is empty." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:393 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:394 msgid "File '%' is not accessible (%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:396 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:397 msgid "Empty file name given; ignoring." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:417 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:418 msgid "Option '%' needs option '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:616 -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:638 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:621 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:643 msgid " Build features: " msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:620 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:625 msgid "" " License EPL-2.0: Eclipse Public License Version 2 " msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:621 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:626 msgid " Use --help to get the list of options." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:669 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:674 msgid "Could not save configuration to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:673 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:678 msgid "Written configuration to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:686 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:691 msgid "Could not save template to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:690 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:695 msgid "Written template to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:702 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:707 msgid "Could not save schema to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:706 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:711 msgid "Written schema to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:88 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:135 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:88 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:135 msgid "Could not parse commandline options." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:103 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:103 msgid "Could not access configuration '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:107 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:107 msgid "Loading configuration" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:121 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:121 msgid "Could not load configuration '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsLoader.cpp:77 +#: D:\Repos\sumo/src\utils\options\OptionsLoader.cpp:77 msgid "Could not set option '%' (probably defined twice)." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:127 -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:134 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:127 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:134 msgid "Missing value for parameter '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:146 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:146 #, c-format msgid "" "The parameter '%' is not allowed in this context.\n" " Switch or parameter name expected." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:150 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:150 msgid "Mixed parameter syntax in '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:124 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:124 msgid "Could not load landmark-lookup-table from '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:138 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:138 #, c-format msgid "Duplicate edge '%' in landmark file." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:143 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:143 #, c-format msgid "Landmark edge '%' does not exist in the network." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:154 -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:167 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:154 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:167 #, c-format msgid "Unknown or unordered edge '%' in landmark file." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:164 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:164 msgid "Broken landmark file, unexpected number of entries (%) for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:187 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:187 msgid "Calculating new lookup table." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:194 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:194 msgid "No lookup table for landmark edge '%', recalculating." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:196 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:196 msgid "" "Not all network edges were found in the lookup table '%' for landmark edge " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:293 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:293 msgid "Saving new matrix to '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:295 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:295 #, c-format msgid "Edge '%' not found in intermodal network.'" msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:304 -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:338 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:304 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:338 #, c-format msgid "Depart edge '%' not found in intermodal network." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:350 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:350 #, c-format msgid "Arrival edge '%' not found in intermodal network." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:620 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:620 msgid "Ignoring unordered stop at '%' until % for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:632 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:632 msgid "Ignoring stop at '%' until % for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:637 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:637 #, c-format msgid "" "Not using public transport line '%' for routing persons. It has less than " "two usable stops." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalRouter.h:214 -#: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:125 +#: D:\Repos\sumo/src\utils\router\IntermodalRouter.h:220 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:125 msgid "Do not use this method" msgstr "" -#: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:87 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:87 #, c-format msgid "Departure edge '%' does not allow pedestrians." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:91 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:91 #, c-format msgid "Destination edge '%' does not allow pedestrians." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:84 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:84 msgid "Error parsing key from shape generic parameter. Key cannot be empty" msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:86 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:86 msgid "" "Error parsing key from shape generic parameter. Key contains invalid " "characters" msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:139 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:139 msgid "Invalid characters for PoI ID" msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:170 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:170 msgid "Either (x, y), (lon, lat) or (lane, pos) must be specified for PoI '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:173 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:173 msgid "" "(lon, lat) is specified for PoI '%' but no geo-conversion is specified for " "the network." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:185 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:185 msgid "Unable to project coordinates for PoI '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:191 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:191 #, c-format msgid "PoI '%' already exists." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:209 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:209 msgid "Invalid characters for Poly ID" msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:252 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:252 msgid "Polygon's shape cannot be empty." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:257 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:257 msgid "Polygon's lineWidth must be greater than 0." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:262 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:262 #, c-format msgid "Polygon '%' already exists." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:279 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:279 #, c-format msgid "Loading of shapes from % failed." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:44 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:44 #, c-format msgid "The node: '%' already exists." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:239 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:239 msgid "Index of renumbered node exceeded the reduced number of equations." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:250 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:250 msgid "Index of renumbered element exceeded the reduced number of equations." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:257 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:257 msgid "Structural error in reduced circuit matrix." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:288 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:288 msgid "Initial solution x used during solving DC circuit is out of bounds.\n" msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:312 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:456 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:312 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:456 msgid "wrongly assigned row of matrix A during solving the circuit" msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:354 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:479 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:354 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:479 msgid "The negative node of current source is not the groud." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:508 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:518 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:526 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:508 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:518 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:526 msgid "Results deployment during circuit evaluation was unsuccessful." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:576 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:576 msgid "" "Cannot assign unambigous electric current value to two voltage sources " "connected in parallel at the same node." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:798 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:798 msgid "" "Trying to add resistor element into the overhead wire circuit with " "resistance < 1e-6. " msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:800 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:800 msgid "" "Trying to add resistor element into the overhead wire circuit with " "resistance < 0. " msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:919 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:919 msgid "" "Circuit Voltage Source '%' is connected to less than two nodes, please " "adjust the definition of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:927 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:927 msgid "" "Circuit Element '%' is connected to less than two nodes, please adjust the " "definition of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:942 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:942 msgid "" "Circuit Node with id '-1' is not the grounded, please adjust the definition " "of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:966 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:966 msgid "" "A Circuit Resistor Element connects the ground, please adjust the definition " "of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:975 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:975 msgid "" "Circuit Node or Voltage Source with internal id '%' has been not visited " "during checking of the circuit. The circuit is disconnected, please adjust " "the definition of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Element.cpp:53 +#: D:\Repos\sumo/src\utils\traction_wire\Element.cpp:53 msgid "Undefined element type for '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:63 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:64 msgid "Route file should be sorted by departure time, ignoring '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParameter.cpp:653 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParameter.cpp:658 msgid "Invalid % % given for %. Using edge end instead." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParameter.cpp:703 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParameter.cpp:708 msgid "" "Value of stop attribute 'trigger' must be 'person', 'container', 'join' or a " "boolean" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:268 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:267 msgid "Undefined end for % '%', defaulting to 24hour duration." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:402 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:401 msgid "Invalid % id '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:404 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:403 msgid "Invalid % id '%'. Contains invalid characters." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:947 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:946 msgid "Lane change model 'JE2013' is deprecated. Using default model instead." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1139 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1138 msgid "maneuverAngleTimes format for vType '%' % contains an invalid triplet." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1148 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1147 #, c-format msgid "" "Triplet '%' for vType '%' maneuverAngleTimes cannot be parsed as 'int double " "double'" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1174 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1173 msgid "Unknown car-following model % when parsing vType '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1176 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1175 msgid "Unknown car-following model when parsing vType '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1209 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1225 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1208 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1224 msgid "Invalid Car-Following-Model Attribute %. Cannot be parsed to float" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1213 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1236 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1212 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1235 msgid "Invalid Car-Following-Model Attribute %. Must be greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1247 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1246 msgid "" "Invalid Car-Following-Model Attribute %. Only values between [0-1] are " "allowed" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1506 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1505 msgid "Invalid Lane-Change-Model Attribute %. Cannot be parsed to float" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1523 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1522 msgid "Invalid Lane-Change-Model Attribute %. Must be equal or greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1534 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1533 msgid "Invalid Lane-Change-Model Attribute %. Must be greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1545 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1544 msgid "Invalid Lane-Change-Model Attribute %. Must be between -1 and 1" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1591 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1576 msgid "Invalid Junction-Model Attribute %. Cannot be parsed to float" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1600 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1585 msgid "" "Invalid Junction-Model Attribute %. Only values between [0-1] are allowed" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1606 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1591 msgid "Invalid Junction-Model Attribute %. Must be equal or greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1636 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1621 msgid "The vehicle class '%' for % '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1654 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1639 msgid "The shape '%' for % '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:271 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:271 msgid "Undefined vehicleType parameter" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:281 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:281 msgid "Undefined vehicle parameter" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:291 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:291 msgid "Undefined stop parameter" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:513 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:513 msgid "Trying to get undefined % attribute '%' in SUMOBaseObject '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/GenericHandler.cpp:83 -#: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:105 +#: D:\Repos\sumo/src\utils\xml\GenericHandler.cpp:83 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:105 msgid "Found root element '%' in file '%' (expected '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:209 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:209 msgid " In file '" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:210 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:210 msgid " At line/column " msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SAXWeightsHandler.cpp:145 +#: D:\Repos\sumo/src\utils\xml\SAXWeightsHandler.cpp:145 msgid "Missing value '%' in edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:110 -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:136 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:110 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:136 msgid "Cannot read file '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:113 -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:139 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:113 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:139 #, c-format msgid "File '%' is a directory!" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:156 -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:165 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:156 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:165 msgid "The XML-parser was not initialized." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:191 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:191 msgid "The XML-parser could not be build." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:92 -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:98 -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:105 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:92 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:98 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:105 msgid "" "Environment variable SUMO_HOME is not set properly, disabling XML " "validation. Set 'auto' or 'always' for web lookups." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:111 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:111 msgid "" "Environment variable SUMO_HOME is not set properly, XML validation will fail " "or use slow website lookups." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:120 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:120 msgid "Cannot read local schema '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:167 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:167 msgid "" "Disabling XML validation for external file '%'. Use 'auto' or 'always' to " "enable." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:189 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:189 msgid "Runtime error: % while parsing '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:191 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:191 msgid "Error occurred: % while parsing '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:193 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:193 msgid "" "SAX error occured while parsing '%':\n" " %" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:195 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:195 msgid "Unspecified error occurred wile parsing '%'" msgstr "" diff -Nru sumo-1.17.0/data/po/fr_gui.po sumo-1.18.0/data/po/fr_gui.po --- sumo-1.17.0/data/po/fr_gui.po 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/po/fr_gui.po 2023-06-28 20:02:17.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: sumo\n" "Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" -"POT-Creation-Date: 2023-04-15 12:21+0200\n" +"POT-Creation-Date: 2023-06-15 09:59+0200\n" "PO-Revision-Date: 2023-03-28 15:53+0000\n" "Last-Translator: Mirko Barthauer \n" "Language-Team: French 1;\n" "X-Generator: Weblate 4.17-dev\n" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:292 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:295 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2208 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2209 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2211 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:507 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:510 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:513 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1558 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1559 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1560 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:292 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:295 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2218 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2219 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2221 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:513 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:516 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:519 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1567 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1568 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1569 msgid "N/A" msgstr "N/A" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:292 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:507 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:292 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:513 msgid "Original coordinate (before coordinate transformation in netconvert)" msgstr "" "Coordonnée originale (avant transformation des coordonnés dans netconvert)" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:295 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:510 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:295 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:516 msgid "Network coordinate" msgstr "Coordonnée du réseau" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:323 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:528 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:323 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:534 msgid "Ready." msgstr "Prêt." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:444 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1322 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:444 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1329 msgid "&File" msgstr "&Fichier" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:446 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:200 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:446 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:200 msgid "New Window" msgstr "Nouvelle Fenêtre" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:446 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:446 msgid "Open a new sumo-gui window." msgstr "Ouvrir une nouvelle fenêtre sumo-gui." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:450 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:450 msgid "&Open Simulation..." msgstr "&Ouvrir Simulation..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:450 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:450 msgid "Open a simulation (Configuration file)." msgstr "Ouvrir une simulation (fichier de Configuration)." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:453 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:453 msgid "Open &Network..." msgstr "Ouvrir &Réseau..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:453 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:453 msgid "Open a network." msgstr "Ouvrir un réseau." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:456 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:456 msgid "Open Shapes " msgstr "Ouvrir Formes " -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:456 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:456 msgid "Load POIs and Polygons for visualization." msgstr "Charger POIs et Polygones pour visualisation." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:459 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:459 msgid "Open EdgeData " msgstr "Ouvrir EdgeData " -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:459 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:459 msgid "Load edge related data for visualization." msgstr "Charger données liées aux arêtes pour visualisation." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:462 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1009 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:256 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:462 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1015 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:256 msgid "&Reload" msgstr "&Recharger" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:462 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:462 msgid "Reloads the simulation / the network." msgstr "Recharge la simulation / le réseau." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:465 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:465 msgid "Quick-Reload" msgstr "Rechargement-Rapide" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:465 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:465 msgid "Reloads the simulation (but not network)." msgstr "Recharge la simulation (mais pas réseau)." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:469 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:469 msgid "Save Configuration" msgstr "Sauvegarder Configuration" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:469 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:469 msgid "Save current options as a configuration file." msgstr "Sauvegarder options actuelles en tant que fichier de configuration." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:472 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:300 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:91 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:87 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:88 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:472 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:300 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:95 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:95 msgid "Close" msgstr "Fermer" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:472 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:472 msgid "Close the simulation." msgstr "Fermer la simulation." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:480 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1343 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:480 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1350 msgid "&Quit" msgstr "&Quitter" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:480 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1343 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:480 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1350 msgid "Quit the Application." msgstr "Quitter l'Application." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:489 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1357 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:489 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1364 msgid "&Edit" msgstr "&Editer" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:491 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:491 msgid "Edit Selected..." msgstr "Editer Sélection..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:491 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:491 msgid "Opens a dialog for editing the list of selected items." msgstr "Ouvre un dialogue pour éditer la liste des items sélectionnés." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:494 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:494 msgid "Select lanes which allow..." msgstr "Sélectionner voies qui autorisent..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:494 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:494 msgid "Opens a menu for selecting a vehicle class by which to selected lanes." msgstr "" "Ouvre un dialogue pour choisir une classe de véhicules et sélectionner les " "éléments de réseau accessibles à celle-ci." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:498 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:498 msgid "Edit Breakpoints" msgstr "Editer Points d'arrêt" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:498 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:498 msgid "Opens a dialog for editing breakpoints." msgstr "Ouvre un dialogue pour éditer points d'arrêt." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:501 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1268 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:501 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1302 msgid "Edit Visualisation" msgstr "Editer Visualisation" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:501 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1268 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:501 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1302 msgid "Opens a dialog for editing visualization settings." msgstr "Ouvre un dialogue pour éditer réglages de visualisation." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:504 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1271 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:124 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:1587 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1305 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:124 +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:1596 msgid "Edit Viewport" msgstr "Editer Rectangle de visualisation" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:504 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1271 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1305 msgid "Opens a dialog for editing viewing area, zoom and rotation." msgstr "Ouvre un dialogue pour éditer zone de visualisation, zoom et rotation." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:508 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:508 msgid "Open network in netedit" msgstr "Ouvrir réseau dans netedit" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:508 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:508 msgid "Opens current network in NETEDIT." msgstr "Ouvrir réseau actuel dans NETEDIT." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:515 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:515 msgid "&Settings" msgstr "&Réglages" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:517 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:53 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:517 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:53 msgid "Application Settings" msgstr "Réglages de l'Application" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:517 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:517 msgid "Open a Dialog for Application Settings editing." msgstr "Ouvrir un dialogue pour éditer Réglages de l'Application." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:520 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:520 msgid "Gaming Mode\tCtrl+G\tToggle gaming mode on/off." msgstr "Mode Jeu\tCtrl+G\tAllumer/éteindre mode jeu." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:523 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:523 msgid "Full Screen Mode" msgstr "Mode Plein Ecran" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:523 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:523 msgid "Toggle full screen mode on/off." msgstr "Allumer/éteindre mode plein écran." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:527 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1393 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:527 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1400 msgid "&Locate" msgstr "&Localiser" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:529 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1314 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1945 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1348 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1979 msgid "&Junctions" msgstr "&Junctions" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:529 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:529 msgid "Open a Dialog for Locating a Junction." msgstr "Ouvre un Dialogue pour Localiser une Junction." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:532 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1319 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1948 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1353 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1982 msgid "&Edges" msgstr "&Arêtes" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:532 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:532 msgid "Open a Dialog for Locating an Edge." msgstr "Ouvre un Dialogue pour Localiser une Arête." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:535 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1374 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1954 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:535 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1408 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1988 msgid "&Vehicles" msgstr "&Véhicules" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:535 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:535 msgid "Open a Dialog for Locating a Vehicle." msgstr "Ouvre un Dialogue pour localiser un Véhicule." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:538 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1379 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1957 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:538 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1413 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1991 msgid "&Persons" msgstr "&Personnes" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:538 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:538 msgid "Open a Dialog for Locating a Person." msgstr "Ouvre un Dialogue pour Localiser une Personne." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:541 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:541 msgid "&Container" msgstr "&Conteneur" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:541 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:541 msgid "Open a Dialog for Locating a Container." msgstr "Ouvre un Dialogue pour localiser un Conteneur." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:544 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1966 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:544 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2000 msgid "&TLS" msgstr "&Feux de circulation" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:544 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:544 msgid "Open a Dialog for Locating a Traffic Light." msgstr "Ouvrir un Dialogue pour Localiser un Feu de Circulation." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:547 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:604 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1969 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:547 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:630 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2003 msgid "&Additional" msgstr "&Additionel" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:547 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:547 msgid "Open a Dialog for Locating an Additional Structure." msgstr "Ouvre un Dialogue pour Localiser une Structure Additionnelle." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:550 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1972 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:550 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2006 msgid "P&oI" msgstr "P&oI" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:550 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:550 msgid "Open a Dialog for Locating a Point of Interest." msgstr "Ouvre un Dialogue pour Localiser un Point d'Intérêt." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:553 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1975 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:553 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2009 msgid "Po&lygon" msgstr "Po&lygone" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:553 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:553 msgid "Open a Dialog for Locating a Polygon." msgstr "Ouvre un Dialogue pour Localiser un Polygone." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:557 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:557 msgid "Show Internal Structures" msgstr "Montrer Structures Internes" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:557 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:557 msgid "Show internal junctions and streets in locator dialog." msgstr "Montrer junctions internes et rues dans dialogue de localisation." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:560 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:560 msgid "Show Parking Vehicles" msgstr "Montrer Véhicules Garés" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:560 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:560 msgid "Show parking vehicles in locator dialog." msgstr "Montrer Véhicules Garés dans dialogue de localisation." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:564 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:564 msgid "Show vehicles outside the road network" msgstr "Montrer véhicules en dehors du réseau routier" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:564 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:564 msgid "" "Show vehicles that are teleporting or driving remote-controlled outside the " "road network in locator dialog." @@ -347,255 +347,253 @@ "Montrer véhicules qui sont téleportés ou conduisant de manière télécommandée " "en dehors du réseau routier dans le dialogue de localisation." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:570 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:570 msgid "Simulation" msgstr "Simulation" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:572 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:90 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:89 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:277 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:572 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:373 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:90 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:93 msgid "Run" msgstr "Executer" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:572 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:572 msgid "Start/ Resume the simulation." msgstr "Démarrer/ Reprendre la simulation." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:575 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:575 msgctxt "Simulation" msgid "Stop" msgstr "Arrêter" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:575 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:575 msgid "Halt the simulation." msgstr "Mettre en pause la simulation." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:578 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:578 msgid "Step" msgstr "Avancer" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:578 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:578 msgid "Perform one simulation step." msgstr "Avancer simulation d'un pas." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:581 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:581 msgid "Delay+" msgstr "Retarder+" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:581 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:581 msgid "Increase simulation step delay." msgstr "Augmenter délai temps de simulation." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:583 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:583 msgid "Delay-" msgstr "Délai-" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:583 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:583 msgid "Decrease simulation step delay." msgstr "Diminuer délai temps de simulation." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:585 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:288 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:284 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:281 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:255 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1365 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2876 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:67 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:585 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:289 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:286 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:256 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1393 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2904 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:67 msgid "Save" msgstr "Sauvegarder" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:585 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:585 msgid "Save the current simulation state to a file." msgstr "Sauvegarder l'état actuel de la simulation dans un fichier." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:588 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:287 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:283 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:280 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:73 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:257 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2874 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:65 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:588 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:288 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:285 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:258 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2902 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:65 msgid "Load" msgstr "Charger" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:588 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:588 msgid "Load simulation state for the current network from file." msgstr "Charger l'état de la simulation pour le réseau actuel depuis fichier." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:592 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1458 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1465 msgid "&Window" msgstr "&Fenêtre" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:593 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:747 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:593 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:747 msgid "Open new view" msgstr "Ouvrir nouvelle vue" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:595 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:750 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:595 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:750 msgid "Open new 3D view" msgstr "Ouvrir nouvelle vue 3D" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:598 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:598 msgid "Tile &Horizontally" msgstr "Partager &Horizontalement" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:601 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:601 msgid "Tile &Vertically" msgstr "Partager &Verticalement" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:604 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:604 msgid "Cascade" msgstr "Cascade" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:608 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:97 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:100 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:608 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:98 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:100 msgid "&Close" msgstr "&Fermer" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:618 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:618 msgid "&Others..." msgstr "&Autres..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:622 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2092 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:622 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2126 msgid "Show Status Line" msgstr "Montrer Ligne de Statut" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:622 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:622 msgid "Toggle the Status Bar on/off." msgstr "Allumer/éteindre la Ligne de Statut." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:625 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2095 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:625 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2129 msgid "Show Message Window" msgstr "Montrer Fenêtre des Messages" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:625 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2095 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:625 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2129 msgid "Toggle the Message Window on/off." msgstr "Allumer/éteindre la Fenêtre des Messages." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:628 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:628 msgid "Show Simulation Time" msgstr "Montrer Temps de Simulation" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:628 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:628 msgid "Toggle the Simulation Time on/off." msgstr "Allumer/éteindre le Temps de Simulation." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:631 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:631 msgid "Show Simulation Delay" msgstr "Montrer Délai Simulation" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:631 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:631 msgid "Toggle the Simulation Delay Entry on/off." msgstr "Allumer/éteindre le Délai de Simulation." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:637 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2099 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:637 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2133 msgid "Clear Message Window" msgstr "Effacer Fenêtre des Messages" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:637 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:637 msgid "Clear the message window." msgstr "Efface la fenêtre des messages." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:644 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1463 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:644 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1470 msgid "&Help" msgstr "&Aide" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:646 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2115 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:646 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2149 msgid "&Online Documentation" msgstr "&Documentation en-ligne" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:646 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2115 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:646 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2149 msgid "Open Online documentation." msgstr "Ouvrir Documentation en-ligne." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:649 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2118 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:649 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2152 msgid "&Changelog" msgstr "&Journal des modifications" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:649 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2118 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:649 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2152 msgid "Open Changelog." msgstr "Ouvrir Journal des modifications." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:651 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2120 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:651 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2154 msgid "&Hotkeys" msgstr "&Raccourcis clavier" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:651 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2120 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:651 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2154 msgid "Open Hotkeys." msgstr "Ouvrir Raccourcis clavier." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:653 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2122 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:653 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2156 msgid "&Tutorial" msgstr "&Tutoriel" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:653 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2122 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:653 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2156 msgid "Open Tutorial." msgstr "Ouvrir Tutoriel." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:655 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2124 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:655 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2158 msgid "&Feedback" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:655 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:655 msgid "Open feedback dialog." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:658 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2127 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:658 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2161 msgid "&About" msgstr "&A propos" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:658 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:658 msgid "About sumo-gui." msgstr "A propos de sumo-gui." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:673 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:673 msgid "\tOpen simulation\tOpen a simulation (Configuration file)." msgstr "" "\tOuvrir une simulation\tOuvrir une simulation (Fichier de configuration)." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:675 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:675 msgid "\tOpen network\tOpen a network." msgstr "\tOuvrir réseau\tOuvrir un réseau." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:677 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:677 msgid "\tReload\tReloads the simulation / the network." msgstr "\tRecharger\tRecharge la simulation / le réseau." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:686 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:686 msgid "\tRun\tStart/Resume the loaded simulation." msgstr "\tExécuter\tDémarre/continue la simulation chargée." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:688 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:688 msgid "\tStop\tHalt the running simulation." msgstr "\tArrêter\tArrêter la simulation en cours." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:690 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:690 msgid "\tStep\tPerform a single simulation step." msgstr "\tAvancer\tEffectuer un seul pas de simulation." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:698 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:698 msgid "" "Time:\tToggle between time formats\tToggle between seconds and hour:minute:" "seconds display." @@ -603,7 +601,7 @@ "Temps:\tBasculer le format des temps\tBasculer l'affichage entre secondes et " "heures:minutes:secondes." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:712 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:712 msgid "" "Delay (ms):\tDelay per simulated second\tDelay per simulated second. Click " "to toggle between the last two delay values." @@ -611,11 +609,11 @@ "Délai (ms) :\tDélai par seconde simulée\tDélai par seconde simulée. Cliquer " "pour basculer entre les deux dernières valeurs du délai." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:735 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:735 msgid "Scale Traffic:" msgstr "Echelle Trafic:" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:735 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:735 msgid "" "Scale traffic from flows and vehicles that are loaded incrementally from " "route files." @@ -623,731 +621,741 @@ "Augmenter/réduire trafic depuis flux et véhicules chargés incrémentalement " "depuis fichiers de routes." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:747 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:747 msgid "Open a new microscopic view." msgstr "Ouvrir une nouvelle vue microscopique." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:750 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:750 msgid "Open a new 3D view." msgstr "Ouvrir une nouvelle vue 3D." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:760 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:760 msgid "Waiting Time:" msgstr "Temps d'Attente:" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:760 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:760 msgid "Time spent waiting accumulated for all vehicles" msgstr "Temps d'attente accumulé sur tous les véhicules" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:771 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:771 msgid "Time Loss:" msgstr "Temps Perdu:" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:771 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:771 msgid "" "Time lost due to being unable to drive with maximum speed for all vehicles" msgstr "" "Temps perdu dû à l'impossibilité de conduire avec vitesse maximale pour tous " "les véhicules" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:782 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:782 msgid "Distance (km):" msgstr "Distance (km):" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:782 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:782 msgid "Total distance driven by DRT vehicles" msgstr "Distance totale couverte par véhicules TAD" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:793 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:793 msgid "Emergency Vehicle waiting time:" msgstr "Temps d'attente Véhicule d'Intervention:" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:793 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:793 msgid "Time spent waiting accumulated for emergency vehicles" msgstr "Temps d'attente accumulé pour tous véhicules d'intervention" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:818 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:150 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:818 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:150 msgid "Cl&ear Recent Networks" msgstr "&Effacer Réseaux Récents" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:819 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:151 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:819 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:151 msgid "No Recent Networks" msgstr "Aucuns Réseaux Récents" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:823 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:155 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:823 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:155 msgid "Recent Networks" msgstr "Réseaux Récents" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:841 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:173 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:841 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:173 msgid "Cl&ear Recent Configs" msgstr "&Effacer Configurations Récentes" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:842 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:174 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:842 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:174 msgid "No Recent Configs" msgstr "Aucunes Configurations Récentes" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:846 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:178 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:846 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:178 msgid "Recent Configs" msgstr "Configurations Récentes" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:986 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1021 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1058 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:986 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1021 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1058 msgid "Running %." msgstr "En cours d'exécution %." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1068 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1068 msgid "Open Simulation Configuration" msgstr "Ouvrir Configuration Simulation" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1088 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1088 msgid "Open Network" msgstr "Ouvrir Réseau" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1108 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1108 msgid "Open Shapes" msgstr "Ouvrir Formes" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1122 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1150 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4634 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4669 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4704 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4736 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1122 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1150 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4650 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4685 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4720 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4752 #, c-format msgid "Loading of % failed." msgstr "Chargement de % a échoué." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1139 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1139 msgid "Open EdgeData" msgstr "Ouvrir EdgeData" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1173 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1174 +msgid "Auto-Reloading." +msgstr "" + +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1174 +msgid "TraCI-Loading." +msgstr "" + +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1176 msgid "Reloading." msgstr "Rechargement." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1183 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1187 msgid "Quick-Reloading." msgstr "Rechargement rapide." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1193 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1081 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1197 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1087 msgid "Already loading!" msgstr "Chargement déjà en cours!" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1205 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1209 msgid "Save SUMO Configuration" msgstr "Sauvegarder Configuration SUMO" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1220 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1224 msgid "Configuration saved to %." msgstr "Configuration sauvegardée à %." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1222 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1226 msgid "Could not save configuration to %." msgstr "Echec sauvegarde configuration à %." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1278 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1304 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2134 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1282 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1308 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2144 msgid "No simulation loaded!" msgstr "Aucune simulation chargée!" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1320 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1324 msgid "Save Simulation State" msgstr "Sauvegarder Etat Simulation" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1334 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1338 msgid "Simulation state saved to '%'." msgstr "Etat simulation sauvegardé à '%'." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1342 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1346 msgid "Load Simulation State" msgstr "Charger Etat Simulation" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1354 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1358 msgid "State loaded from '%'." msgstr "Etat chargé depuis '%'." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1356 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1360 msgid "Failed to load state from '%' (%)." msgstr "Echec chargement état depuis '%' (%)." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1813 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1817 #, c-format msgid "Loading of '%' failed!" msgstr "Chargement de '%' a échoué !" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1827 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1831 #, c-format msgid "'%' loaded." msgstr "'%' chargé." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2027 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2031 +msgid "Simulation ended at time: %. (%)" +msgstr "" + +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2037 msgid "Simulation ended" msgstr "Simulation terminée" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2125 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2135 msgid "Loading '%'." msgstr "Chargement '%'." -#: /home/micha/programming/sumo/src/gui/GUILoadThread.cpp:206 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2288 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2290 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2291 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2292 +msgid "seconds" +msgstr "" + +#: D:\Repos\sumo/src\gui\GUILoadThread.cpp:206 msgid "Could not load edgedata-files '%'" msgstr "Echec chargement fichiers EdgeData '%'" -#: /home/micha/programming/sumo/src/gui/GUIRunThread.cpp:100 -#: /home/micha/programming/sumo/src/gui/GUIRunThread.cpp:106 +#: D:\Repos\sumo/src\gui\GUIRunThread.cpp:100 +#: D:\Repos\sumo/src\gui\GUIRunThread.cpp:106 msgid "Quitting (on error)." msgstr "Fermeture (après erreur)." -#: /home/micha/programming/sumo/src/gui/GUIRunThread.cpp:265 +#: D:\Repos\sumo/src\gui\GUIRunThread.cpp:265 msgid "Simulation started with time: %." msgstr "Simulation démarrée avec temps: %." -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:142 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:448 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:142 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:455 msgid "Save Snapshot" msgstr "Sauvegarder Instantané" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:167 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:468 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:167 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:475 msgid "No file extension was specified - saving Snapshot as PNG." msgstr "" "Aucune extension de fichier spécifiée - sauvegarde Instantané en tant que " "PNG." -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:173 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:475 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:173 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:482 msgid "Saving failed." msgstr "Echec de la sauvegarde." -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:175 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:479 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:175 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:486 msgid "Snapshot successfully saved!" msgstr "Sauvegarde Instantané réussie!" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:219 -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:268 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:219 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:268 msgid "Unknown Message ID in onCmdLocate" msgstr "ID Message inconnu dans onCmdLocate" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:233 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:505 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:233 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:512 msgid "Junction Chooser" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:237 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:513 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:237 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:520 msgid "Edge Chooser" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:241 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:529 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:87 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:241 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:536 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:87 msgid "Vehicle Chooser" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:245 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:576 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:245 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:583 msgid "Person Chooser" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:249 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:249 msgid "Container Chooser" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:253 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:253 msgid "Traffic Lights Chooser" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:257 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:257 msgid "Additional Objects Chooser" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:261 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:655 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:261 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:667 msgid "POI Chooser" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:265 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:265 msgid "Polygon Chooser" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:269 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:269 msgid "phase names" msgstr "noms des phases" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:272 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:272 msgid "detectors" msgstr "détecteurs" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:273 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:273 msgid "conditions" msgstr "conditions" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:336 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:336 msgid "Overflow in time computation occurred." msgstr "Un dépassement temps de calcul s'est produit." -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:114 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:332 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:114 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:334 msgid "Locate Junctions" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:114 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:114 msgid "Locate a junction within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:119 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:336 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:119 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:338 msgid "Locate Edges" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:119 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:119 msgid "Locate an edge within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:124 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:344 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:124 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:346 msgid "Locate Vehicles" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:124 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:124 msgid "Locate a vehicle within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:129 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:348 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:129 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:350 msgid "Locate Persons" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:129 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:129 msgid "Locate a person within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:134 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:134 msgid "Locate Container" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:134 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:134 msgid "Locate a container within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:139 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:367 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:139 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:369 msgid "Locate TLS" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:139 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:139 msgid "Locate a tls within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:144 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:371 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:144 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:373 msgid "Locate Additional" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:144 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:144 msgid "Locate an additional structure within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:149 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:375 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:149 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:377 msgid "Locate PoI" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:149 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:149 msgid "Locate a PoI within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:154 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:379 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:154 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:381 msgid "Locate Polygon" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:154 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:154 msgid "Locate a Polygon within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AboutSUMO.cpp:69 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:58 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_HallOfFame.cpp:57 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:415 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:411 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:408 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:234 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:247 -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:285 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:384 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:559 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:298 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:487 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:96 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:173 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:280 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AboutSUMO.cpp:69 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:58 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_HallOfFame.cpp:57 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:416 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:413 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:408 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:375 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:380 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:298 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:487 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:97 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:173 msgid "OK" msgstr "OK" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:62 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:62 msgid "Quit on Simulation End" msgstr "Fermer suite à Fin de Simulation" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:64 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:64 msgid "Autostart Simulation on Load and Reload" msgstr "Démarrer automatiquement Simulation après Chargement ou Rechargement" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:66 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:66 msgid "Reload Simulation after finish (Demo mode)" msgstr "Recharger Simulation après fin (mode Démo)" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:68 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:68 msgid "Locate elements when clicking on messages" msgstr "Localiser éléments en cliquant sur messages" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:74 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:74 msgid "Breakpoint offset when clicking on time message" msgstr "Décaler point d'arrêt en cliquant sur message de temps" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:98 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:98 msgid "Allow Textures" msgstr "Autoriser Textures" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:101 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:76 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:133 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:995 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2352 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:101 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:76 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:133 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:995 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2354 msgid "&OK" msgstr "&OK" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:102 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:64 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:72 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:639 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:390 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:134 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:996 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2353 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:102 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:72 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:639 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:390 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:134 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:996 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2355 msgid "&Cancel" msgstr "&Annuler" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:69 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:69 msgid "Breakpoints Editor" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:89 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:90 msgid "&Load" msgstr "&Charger" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:91 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:92 msgid "&Save" msgstr "&Sauvegarder" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:94 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:95 msgid "Clea&r" msgstr "Efface&r" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:126 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2391 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2397 msgid "Time" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:141 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:142 msgid "Load Breakpoints" msgstr "Charger Points d'arrêt" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:162 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:163 msgid "Save Breakpoints" msgstr "Sauvegarder Points d'arrêt" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:172 -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:155 -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:258 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:240 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1102 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1183 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:173 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:155 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:258 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:240 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1102 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1183 msgid "Storing failed!" msgstr "Echec sauvegarde!" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:241 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:244 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:242 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:245 msgid "Time format error" msgstr "Erreur format heure" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:46 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:46 msgid "- General problem solving" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:50 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:50 msgid "- Sumo-user mailing list" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:54 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:54 msgid "- Send us an Email" msgstr "" -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_InductionLoop.cpp:55 -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_InductionLoop.cpp:59 -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_TrafficLight.cpp:56 -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_TrafficLight.cpp:60 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_InductionLoop.cpp:55 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_InductionLoop.cpp:59 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_TrafficLight.cpp:56 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_TrafficLight.cpp:60 #, c-format msgid "Hotkey '%' is not supported" msgstr "Raccourci '%' non supporté" -#: /home/micha/programming/sumo/src/guisim/GUIBaseVehicle.cpp:300 +#: D:\Repos\sumo/src\guisim\GUIBaseVehicle.cpp:300 msgid "GUI-triggered stop not implemented for meso" msgstr "Arrêt déclenché par interface non implémenté pour meso" -#: /home/micha/programming/sumo/src/guisim/GUIBaseVehicle.cpp:876 -#: /home/micha/programming/sumo/src/guisim/GUIVehicle.cpp:668 +#: D:\Repos\sumo/src\guisim\GUIBaseVehicle.cpp:876 +#: D:\Repos\sumo/src\guisim\GUIVehicle.cpp:663 msgid "Vehicle parameter '%' key '%' is not a number for vehicle '%'." msgstr "" "Paramètre véhicule '%' (clé '%') n'est pas un nombre pour véhicule '%'." -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:326 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:326 msgid "Network size exceeds 1 Lightyear. Please reconsider your inputs.\n" msgstr "" "Taille réseau supérieure à 1 Année-lumière. Merci de revoir vos données " "d'entrée.\n" -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:666 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:666 msgid "Trying to set data value for the unknown edge '%'." msgstr "Essai définition de valeur des données arête '%'." -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:690 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:690 msgid "" "Trying to set data value for the unknown relation from edge '%' to edge '%'." msgstr "" "Essai définition valeur des données pour la relation inconnue entre arête " "'%' et arête '%'." -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:708 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:708 msgid "No data defined after simulation begin time." msgstr "Aucune donnée définie après heure de départ de la simulation." -#: /home/micha/programming/sumo/src/guisim_main.cpp:57 +#: D:\Repos\sumo/src\guisim_main.cpp:57 msgid "GUI version of the microscopic, multi-modal traffic simulation SUMO." msgstr "" "Version graphique du simulateur de trafic microscopique et multimodal SUMO." -#: /home/micha/programming/sumo/src/guisim_main.cpp:77 -#: /home/micha/programming/sumo/src/netedit/netedit_main.cpp:81 +#: D:\Repos\sumo/src\guisim_main.cpp:77 +#: D:\Repos\sumo/src\netedit\netedit_main.cpp:81 msgid "This system has no OpenGL support. Exiting." msgstr "Ce système ne prend pas en charge OpenGL. Fermeture." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:468 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:469 msgid "A microscopic, multi-modal traffic simulation." msgstr "Une simulation microscopique et multi-modale du trafic routier." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:510 msgid "Recomputing" msgstr "Recalcul" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:510 msgid "Recomputing is needed" msgstr "Recalcul nécessaire" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:513 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:519 msgid "Test coordinate" msgstr "Coordonnée de test" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:827 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:850 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:833 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:856 msgid "loading TLS Programs from '" msgstr "chargement Programmes TLS depuis '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:892 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:898 msgid "Loaded edge types from '" msgstr "Types d'arêtes chargés depuis '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:894 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:927 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:900 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:933 msgid "load edgeTypes" msgstr "charge edgeTypes" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:925 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:931 msgid "Reloaded edge types from '" msgstr "Types d'arêtes rechargés depuis '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:982 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:988 msgid "Reloading netedit config file '" msgstr "Rechargement fichier configuration netedit '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:986 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:992 msgid "Reloading sumo config file '" msgstr "Rechargement fichier configuration sumo '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:990 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1051 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:996 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1057 msgid "Reloading network file '" msgstr "Rechargement fichier réseau '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1006 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1012 msgid "&Reload Netedit config" msgstr "&Recharger configuration Netedit" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1007 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1013 msgid "&Reload Sumo config" msgstr "&Recharger configuration Sumo" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1008 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1014 msgid "&Reload Network" msgstr "&Recharger Réseau" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1253 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1260 msgid "Loading of '" msgstr "Chargememt de '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1258 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1265 msgid "'" msgstr "'" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1258 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1265 msgid "' loaded." msgstr "' chargé." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1347 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1354 msgid "&Modes" msgstr "&Modes" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1382 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1389 msgid "L&ock" msgstr "&Vérouiller" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1389 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1396 msgid "&Processing" msgstr "&Traitement" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1414 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1421 msgid "&Tools" msgstr "&Outils" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1416 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1423 msgid "Detectors" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1417 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1424 msgid "Districts" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1418 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1425 msgid "DRT" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1419 -msgid "Emissions" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1420 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1427 msgid "CityBrain" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1421 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1428 msgid "GTFS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1422 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1429 msgid "Vissim" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1423 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1430 msgid "Visum" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1431 msgid "Import" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1425 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1432 msgid "Net" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1426 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:673 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2744 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1433 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:699 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2750 msgid "Route" msgstr "Route" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1427 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1434 msgid "Output" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1428 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:227 -msgid "Shapes" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1429 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1436 msgid "TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1430 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1437 msgid "Turn-defs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1431 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1438 msgid "Visualization" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1432 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1439 msgid "XML" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1519 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1526 msgid "Network computed" msgstr "Réseau calculé" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1523 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1530 msgid "Press F5" msgstr "Appuyer sur F5" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1524 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1531 msgid "Network requires recomputing" msgstr "Réseau nécessite nouveau calcul" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1591 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1600 msgid "Loading console arguments" msgstr "Chargement arguments console" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1619 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1628 msgid "Creating new network." msgstr "Création nouveau réseau." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1630 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1639 msgid "Trying to load an empty network" msgstr "Essai de chargement d'un réseau vide" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1646 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1655 msgid "Loading network file '" msgstr "Chargement fichier réseau '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1658 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1667 msgid "Trying to load an empty configuration" msgstr "Essai de chargement d'une configuration vide" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1674 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1683 msgid "Loading configuration file '" msgstr "Chargement fichier configuration '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1704 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1713 msgid "Select Import Options" msgstr "Sélectionner Options d'Import" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1710 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1719 msgid "Loading OSM file '" msgstr "Chargement fichier OSM '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1732 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1739 msgid "Recompute with volatile options" msgstr "Recalculer avec options volatiles" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1733 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1740 msgid "" "Changes produced in the net due a recomputing with volatile options cannot " "be undone. Continue?" @@ -1355,1865 +1363,1893 @@ "Changements introduits dans réseau dus à recalcul avec options volatiles ne " "peuvent pas être défaits. Continuer ?" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1973 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2033 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1980 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2040 msgid "Running " msgstr "En cours d'exécution " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1996 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2003 msgid "Loading network '" msgstr "Chargement réseau '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1996 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2005 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2003 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2012 msgid "' in SUMO-GUI" msgstr "' dans SUMO-GUI" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2005 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2012 msgid "Loading sumo config '" msgstr "Chargement configuration sumo '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2317 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2325 msgid "Netedit options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2334 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1826 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2342 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1860 msgid "Sumo options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2351 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2359 msgid "Netgenerate options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2368 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1253 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:102 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2376 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1287 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:103 msgid "Undo" msgstr "Annuler" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2400 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1256 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:105 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2408 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1290 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:106 msgid "Redo" msgstr "Refaire" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3072 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3080 msgid "Saving Network failed!" msgstr "Echec sauvegarde Réseau!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3078 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3086 msgid "Network saved in '" msgstr "Réseau sauvegardé dans '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3084 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3092 msgid "Could not save network in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3130 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3148 msgid "Plain XML saved with prefix '" msgstr "Sauvegarde au format Plain XML avec le préfixe '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3135 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3153 msgid "Saving plain xml failed!" msgstr "Echec sauvegarde au format plain xml!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3159 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3177 msgid "Joined junctions saved to '" msgstr "Junctions connectées sauvegardées dans '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3164 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3182 msgid "Saving joined junctions failed!" msgstr "Echec sauvegarde junctions connectées!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3227 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3245 msgid "Netedit configuration saved in '" msgstr "Configuration netedit sauvegardée à '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3233 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3251 msgid "Could not save netedit configuration in '" msgstr "Echec sauvegarde configuration netedit dans '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3337 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3355 msgid "SUMO configuration saved in '" msgstr "Configuration SUMO sauvegardée dans '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3345 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3363 msgid "Could not save SUMO configuration in '" msgstr "Echec sauvegarde configuration SUMO dans '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3399 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3417 msgid "TLS Programs saved in '" msgstr "Programmes Feux de Circulation sauvegardés dans '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3422 msgid "Saving TLS Programs failed!" msgstr "Echec sauvegarde Programmes Feux de Circulation!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3447 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3465 msgid "EdgeType saved in '" msgstr "EdgeType sauvegardé dans '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3452 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3470 msgid "Saving edgeTypes failed!" msgstr "Echec sauvegarde edgeTypes!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3556 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3574 msgid "load additionals from '" msgstr "chargement données additionnelles depuis '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3560 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1304 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3578 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1307 msgid "Loading of additional file failed: " msgstr "Echec chargement fichier additionnel : " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3566 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1306 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3584 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1309 msgid "Loading of additional file sucessfully: " msgstr "Chargement fichier additionnel réussi : " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3610 msgid "reloading additionals from '" msgstr "rechargement fichiers additionnels depuis '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3597 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3615 msgid "Reloading of additional file failed: " msgstr "Echec rechargement fichiers additionnels : " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3640 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3658 msgid "Additionals saved in '" msgstr "Fichiers additionnels sauvegardés dans '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3650 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3667 msgid "Saving additionals failed!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3720 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4659 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4662 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3737 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4675 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4678 msgid "loading demand elements from '" msgstr "chargement des éléments de demande depuis '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3724 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1315 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3741 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1318 msgid "Loading of route file failed: " msgstr "Echec chargement fichier routes : " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3730 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1317 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3747 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1320 msgid "Loading of route file sucessfully: " msgstr "Chargement fichier routes réussi : " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3761 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3778 msgid "Reloading of route file failed: " msgstr "Echec rechargement fichier routes : " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3802 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3819 msgid "Demand elements saved in '" msgstr "Eléments de demande sauvegardés dans '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3812 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3828 msgid "Saving demand elements failed!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3884 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4728 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3900 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4744 msgid "loading data elements from '" msgstr "chargement données liées au réseau depuis '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3888 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1326 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3904 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1329 msgid "Loading of data file failed: " msgstr "Echec chargement fichier de données : " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3894 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1328 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3910 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1331 msgid "Loading of data file sucessfully: " msgstr "Chargement fichier de données réussi : " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3924 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3940 msgid "reloading data elements from '" msgstr "rechargement des données liées au réseau depuis '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3929 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3945 msgid "Reloading of data file failed: " msgstr "Echec rechargement fichier de données : " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3971 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3987 msgid "Data elements saved in '" msgstr "Données liées au réseau sauvegardées dans '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3976 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3992 msgid "Saving data elements failed!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4048 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4064 msgid "load meanDatas from '" msgstr "chargement des meanDatas depuis '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4052 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1337 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4068 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1340 msgid "Loading of meandata file failed: " msgstr "Echec chargement fichier meandata : " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4058 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4089 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1339 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4074 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4105 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1342 msgid "Loading of meandata file sucessfully: " msgstr "Chargement fichier meandata réussi : " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4084 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4100 msgid "reloading meanDatas from '" msgstr "rechargement des meanDatas from '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4128 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4144 msgid "MeanDatas saved in '" msgstr "MeanDatas sauvegardées dans '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4133 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4149 msgid "Saving meanData failed!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4182 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4198 msgid "Confirm close Network" msgstr "Confirmer fermeture Réseau" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4183 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4199 msgid "You have unsaved changes in the network." msgstr "Présence de changements non sauvegardés dans le réseau." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4184 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4250 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4294 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4338 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4382 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4200 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4266 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4310 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4354 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4398 msgid "Do you wish to close and discard all changes?" msgstr "Fermer et jeter tous les changements ?" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4248 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4264 msgid "Save additional elements before close" msgstr "Sauvegarder éléments additionnels avant fermeture" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4249 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4265 msgid "You have unsaved additional elements." msgstr "Présence d'éléments additionnels non sauvegardés." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4292 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4308 msgid "Save demand elements before close" msgstr "Sauvegarder éléments de demande avant fermeture" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4293 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4309 msgid "You have unsaved demand elements." msgstr "Présence d'éléments de demande non sauvegardés." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4336 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4352 msgid "Save data elements before close" msgstr "Sauvegarder éléments de données avant fermeture" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4337 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4353 msgid "You have unsaved data elements." msgstr "Présence d'éléments de données non sauvegardés." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4380 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4396 msgid "Save meanData elements before close" msgstr "Sauvegarder éléments meanData avant fermeture" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4381 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4397 msgid "You have unsaved meanData elements." msgstr "Présence d'éléments meanData non sauvegardés." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4624 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4640 msgid "loading additional elements from '" msgstr "chargement d'éléments additionnels depuis '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4627 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4643 msgid "loading additionals from '" msgstr "chargement d'éléments additionnels depuis '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4694 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4710 msgid "loading meanDatas from '" msgstr "chargement meanDatas depuis '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4697 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4713 msgid "loading meandatas from '" msgstr "chargement meanDatas depuis '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4731 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4747 msgid "Loading data elements from '" msgstr "Chargement données liées au réseau depuis '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:130 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:130 msgid "nets" msgstr "réseaux" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:131 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:131 msgid "configs" msgstr "configurations" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:196 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:196 msgid "&New Network" msgstr "&Nouveau Réseau" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:196 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:196 msgid "Create a new network." msgstr "Créer un nouveau réseau." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:200 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:200 msgid "Open a new netedit window." msgstr "Ouvrir une nouvelle fenêtre netedit." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:204 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:204 msgid "Generate Network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:204 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:204 msgid "Create network using netgenerate." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:211 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:211 msgid "Load Netedit config..." msgstr "Charger configuration Netedit..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:211 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:211 msgid "Load a netedit configuration file." msgstr "Charger un fichier de configuration netedit." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:215 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:215 msgid "Load Sumo config..." msgstr "Charger configuration Sumo..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:215 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:215 msgid "Load a SUMO configuration file." msgstr "Charger un fichier de configuration SUMO." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:222 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:222 msgid "&Open Network..." msgstr "&Ouvrir Réseau..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:222 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:222 msgid "Open a SUMO network." msgstr "Ouvrir un réseau SUMO." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:226 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:226 msgid "Open Netconvert Configura&tion..." msgstr "Ouvrir Configuration &Netconvert..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:226 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:226 msgid "Open a configuration file with NETCONVERT options." msgstr "Ouvrir un fichier de configuration avec options NETCONVERT." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:230 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:230 msgid "Import &Foreign Network..." msgstr "Importer Réseau au Format externe..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:230 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:230 msgid "Import a foreign network such as OSM." msgstr "Importer un réseau au format externe tel que OSM." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:237 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:237 msgid "&Save Network" msgstr "&Sauvegarder Réseau" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:237 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:237 msgid "Save the network." msgstr "Sauvegarder le réseau." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:241 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:241 msgid "Save Net&work As..." msgstr "Sauvegarder Ré&seau sous..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:241 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:241 msgid "Save the network to another file." msgstr "Sauvegarder le réseau dans un autre fichier." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:245 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:245 msgid "Save Plain XM&L..." msgstr "Sauvegarder au format Plain XM&L..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:245 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:245 msgid "Save a plain XML representation of the network." msgstr "Sauvegarder le réseau au format plain XML." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:249 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:249 msgid "Save &Joined Junctions..." msgstr "Sauvegarder &Junctions Connectées..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:249 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:249 msgid "Save log of joined junctions (allows reproduction of joins)." msgstr "" "Sauvegarder journal des junctions connectées (permet reproduction des " "connections)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:256 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:260 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:256 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:260 msgid "Reload the network." msgstr "Recharger le réseau." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:260 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:260 msgid "Reload Network" msgstr "Recharger Réseau" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:267 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:267 msgid "Netedit Config" msgstr "Configuration Netedit" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:271 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:271 msgid "Sumo Config" msgstr "Configuration Sumo" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:275 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:275 msgid "Traffic Lights" msgstr "Feux de Circulation" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:279 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:279 msgid "Edge Types" msgstr "Types d'Arêtes" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:283 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:283 msgid "Additionals and Shapes" msgstr "Eléments additionnels et Formes" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:287 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:287 msgid "Demand Elements" msgstr "Eléments de Demande" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:291 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:291 msgid "Data Elements" msgstr "Données liées au réseau" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:295 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:295 msgid "MeanData Elements" msgstr "Eléments MeanData" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:300 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:300 msgid "Close the network." msgstr "Fermer le réseau." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:334 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:334 msgid "Save Netedit Config" msgstr "Sauvegarder Configuration Netedit" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:334 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:334 msgid "Save netedit configuration file." msgstr "Sauvegarder fichier configuration netedit ." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:338 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:338 msgid "Save Netedit Config As..." msgstr "Sauvegarder Configuration Netedit sous..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:338 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:338 msgid "Save netedit configuration in a new file." msgstr "Sauvegarder configuration netedit dans un nouveau fichier." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:344 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:344 msgid "Reload Netedit Config" msgstr "Recharger Configuration Netedit" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:344 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:344 msgid "Reload netedit configuration." msgstr "Recharger configuration netedit." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:352 msgid "Save Sumo Config" msgstr "Sauvegarder Configuration Sumo" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:352 msgid "Save sumo configuration file." msgstr "Sauvegarder fichier configuration sumo." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:356 msgid "Save Sumo Config As..." msgstr "Sauvegarder Configuration Sumo sous..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:356 msgid "Save sumo configuration in a new file." msgstr "Sauvegarder configuration sumo dans un nouveau fichier." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:362 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:362 msgid "Reload Sumo Config" msgstr "Recharger Configuration Sumo" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:362 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:362 msgid "Reload sumo configuration." msgstr "Recharger configuration sumo." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:370 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:370 msgid "Load TLS Programs..." msgstr "Charger Programmes Feux de Circulation..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:370 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:370 msgid "Load programs for traffic lights in the current net." msgstr "Charger programmes feux de circulation dans le réseau actuel." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:376 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:376 msgid "Save TLS Programs" msgstr "Sauvegarder Programmes Feux de Circulation" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:376 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:376 msgid "Save all traffic light programs of the current network." msgstr "Sauvegarder Programmes Feux de Circulation du réseau actuel." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:380 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:380 msgid "Save TLS Programs As..." msgstr "Sauvegarder Programmes Feux de Circulation sous..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:380 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:380 msgid "Save all traffic light programs of the current network to another file." msgstr "" "Sauvegarder tous les programmes de feux de circulation du réseau actuel dans " "autre fichier." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:386 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:386 msgid "Reload TLS Programs" msgstr "Rechargement Programmes Feux de Circulation" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:386 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:386 msgid "Reload TLS Programs." msgstr "Rechargement Programmes Feux de Circulation." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:394 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:394 msgid "Load Edge Types..." msgstr "Chargement Types d'Arêtes..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:394 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:394 msgid "Load edge types in the current net." msgstr "Chargement des types d'arêtes dans réseau actuel." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:400 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:400 msgid "Save Edge Types" msgstr "Sauvegarder Types d'Arêtes" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:400 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:400 msgid "Save edge types of the current net." msgstr "Sauvegarder types d'arêtes du réseau actuel." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:404 msgid "Save Edge Types As..." msgstr "Sauvegarder Types d'Arêtes en tant que..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:404 msgid "Save edge types of the current net to another file." msgstr "Sauvegarder types d'arêtes du réseau actuel vers autre fichier." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:410 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:410 msgid "Reload edge types" msgstr "Recharger types d'arêtes" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:410 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:410 msgid "Reload edge types." msgstr "Recharger type d'arêtes." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:418 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:418 msgid "Load Additionals..." msgstr "Chargement d'éléments additionnels..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:418 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:418 msgid "Load additionals and shapes." msgstr "Charge éléments additionnels et formes." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:424 msgid "Save Additionals" msgstr "Sauvegarde éléments additionnels" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:424 msgid "Save additionals and shapes." msgstr "Sauvegarde éléments additionnels et formes." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:428 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:428 msgid "Save Additionals As..." msgstr "Sauvegarder éléments additionnels en tant que..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:428 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:428 msgid "Save additional elements to another file." msgstr "Sauvegarder éléments additionnels dans autre fichier." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:434 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:434 msgid "Reload Additionals" msgstr "Recharge éléments additionnels" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:434 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:434 msgid "Reload additionals." msgstr "Recharge éléments additionnels." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:442 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:442 msgid "Load Demand Elements..." msgstr "Charge éléments de demande..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:442 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:442 msgid "Load demand elements." msgstr "Charge éléments de demande." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:448 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:448 msgid "Save Demand Elements" msgstr "Sauvegarde éléments de demande" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:448 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:448 msgid "Save demand elements." msgstr "Sauvegarde éléments de demande." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:452 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:452 msgid "Save Demand Elements As..." msgstr "Sauvegarde éléments de demande en tant que..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:452 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:452 msgid "Save demand elements to another file." msgstr "Sauvegarde éléments de demande vers autre fichier." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:458 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:458 msgid "Reload Demand Elements" msgstr "Recharge éléments de demande" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:458 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:458 msgid "Reload demand elements." msgstr "Recharge éléments de demande." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:466 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:466 msgid "Load Data Elements..." msgstr "Charge éléments de demande..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:466 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:466 msgid "Load data elements." msgstr "Charge éléments de données." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:472 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:472 msgid "Save Data Elements" msgstr "Sauvegarde éléments de données" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:472 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:472 msgid "Save data elements." msgstr "Sauvegarde éléments de données." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:476 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:476 msgid "Save Data Elements As..." msgstr "Sauvegarde éléments de données en tant que..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:476 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:476 msgid "Save data elements to another file." msgstr "Sauvegarde éléments de données vers autre fichier." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:482 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:482 msgid "Reload Data Elements" msgstr "Recharge éléments de données" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:482 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:482 msgid "Reload data elements." msgstr "Recharge éléments de données." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:490 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:490 msgid "Load MeanDatas..." msgstr "Charge meanDatas..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:490 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:490 msgid "Load meanDatas and shapes." msgstr "Charge meanDatas et formes." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:496 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:496 msgid "Save MeanDatas" msgstr "Sauvegarde meanDatas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:496 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:496 msgid "Save meanDatas and shapes." msgstr "Sauvegarde meanDatas et formes." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:500 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:500 msgid "Save MeanDatas As..." msgstr "Sauvegarde meanDatas en tant que..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:500 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:500 msgid "Save meanData elements to another file." msgstr "Sauvegarde éléments meanData vers autre fichier." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:506 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:506 msgid "Reload MeanDatas" msgstr "Recharge meanDatas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:506 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:506 msgid "Reload meanDatas." msgstr "Recharge meanDatas." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:526 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:526 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2197 +msgid "&Network" +msgstr "&Réseau" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:526 +msgid "Supermode network." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2200 +msgid "&Demand" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:529 +msgid "Sueprmode demand." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2203 +msgid "&Data" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:532 +msgid "Supermode data." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:552 msgid "&Inspect" msgstr "&Inspecter" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:526 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:552 msgid "Inspect elements and change their attributes." msgstr "Inspecter éléments et changer leurs attributs." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:555 msgid "&Delete" msgstr "&Supprimer" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:555 msgid "Delete elements." msgstr "Supprimer éléments." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:558 msgid "&Select" msgstr "&Sélectionner" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:558 msgid "Select elements." msgstr "Sélectionner éléments." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:589 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:670 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:615 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:696 msgid "&Move" msgstr "&Déplacer" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:589 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:670 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:615 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:696 msgid "Move elements." msgstr "Déplacer éléments." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:618 msgid "&Edge" msgstr "&Arête" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:618 msgid "Create junction and edges." msgstr "Créer junction et arêtes." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:595 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:621 msgid "&Connection" msgstr "&Connection" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:595 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:621 msgid "Modes connections between lanes." msgstr "Modes de connection entre voies." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:598 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:624 msgid "Pro&hibition" msgstr "&Interdiction" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:598 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:624 msgid "Modes connection prohibitions." msgstr "Modes pour connexions non autorisées." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:601 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:627 msgid "Modes traffic lights over junctions." msgstr "Modes de création de feux de circulation sur junctions." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:604 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:630 msgid "Create additional elements." msgstr "Créer éléments additionnels." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:607 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:633 msgid "C&rossing" msgstr "&Passage piéton" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:607 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:633 msgid "Create crossings between edges." msgstr "Créer passage piétons entre arêtes." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:610 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:636 msgid "TA&Z" msgstr "TA&Z" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:610 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:636 msgid "Create Traffic Assignment Zones." msgstr "Créer des Zones d'Affectation de Traffic (TAZ)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:613 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:639 msgid "Create Points-Of-Interest and polygons." msgstr "Créer Points d'Intérêt (POI) et polygones." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:616 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:642 msgid "&Wire" msgstr "&Caténaires" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:616 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:642 msgid "Create wires." msgstr "Créer caténaires." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:673 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:699 msgid "Create Routes." msgstr "Créer routes." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:676 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:702 msgid "Vehicle" msgstr "Véhicule" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:676 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:702 msgid "Create vehicles." msgstr "Créer véhicules." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:679 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:705 msgid "Type" msgstr "Type" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:679 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:705 msgid "Create types (vehicles, person an containers)." msgstr "Créer types (véhicules, personnes et conteneurs)." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:682 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:708 +msgid "TypeDistribution" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:708 +msgid "Create type distributions." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:711 msgid "Stop" msgstr "Arrêt" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:682 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:711 msgid "Create stops." msgstr "Créer arrêts." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:685 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:714 msgid "Person" msgstr "Personne" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:685 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:714 msgid "Create persons." msgstr "Créer personnes." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:688 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:717 msgid "Person plan" msgstr "Itinéraire pour personne" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:688 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:717 msgid "Create person plans." msgstr "Créer itinéraires pour personnes." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:691 -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:179 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:720 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:179 msgid "Container" msgstr "Conteneur" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:691 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:720 msgid "Create containers." msgstr "Créer conteneurs." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:694 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:723 msgid "Container plan" msgstr "Itinéraire pour conteneur" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:694 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:723 msgid "Create container plans." msgstr "Créer itinéraires pour conteneurs." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:729 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:758 msgid "&EdgeData" msgstr "&EdgeData" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:729 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:758 msgid "Create edgeData elements." msgstr "Créer éléments edgeData." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:732 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:761 msgid "Edge&Relation" msgstr "&Relation entre arêtes" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:732 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:761 msgid "Create edgeRelation elements." msgstr "Créer des éléments relations entre arêtes." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:735 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:764 msgid "TA&ZRelation" msgstr "Relation entre TAZ" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:735 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:764 msgid "Create TAZRelation elements." msgstr "Créer éléments de relations entre TAZ." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:738 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:767 msgid "&MeanData" msgstr "&MeanData" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:738 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:767 msgid "Create MeanData edge/lanes." msgstr "Créer MeanData pour arêtes/voies." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:800 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:997 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2316 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2627 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:834 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1031 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2316 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2627 msgid "Show grid" msgstr "Voir grille" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:805 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1002 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1137 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2324 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2635 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2922 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:839 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1036 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1171 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2324 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2635 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2922 msgid "Hide junction shape" msgstr "Cacher forme junction" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:810 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:844 msgid "Draw vehicles spread in lane or in depart position" msgstr "Dessiner répartition véhicules dans la voie ou position de départ" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:815 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1152 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2340 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2944 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:849 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1186 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2340 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2944 msgid "Show demand elements" msgstr "Visualiser éléments de demande" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:820 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:854 msgid "Clicking should target lanes" msgstr "Cliquer devrait cibler voies" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:825 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2355 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:859 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2355 msgid "Show connections over junctions" msgstr "Visualiser connections aux junctions" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:830 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2363 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:864 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2363 msgid "Hide connections" msgstr "Cacher connexions" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:835 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:869 msgid "Show sub-additional elements" msgstr "Visualiser éléments sous-additionnels" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:840 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2379 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:874 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2379 msgid "Show TAZ elements" msgstr "Visualiser éléments de TAZ" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:845 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:879 msgid "Selecting multiple edges automatically select their junctions" msgstr "" "Sélectionner multiples arêtes sélectionne automatiquement leurs junctions" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:850 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:884 msgid "Clicking should apply state changes to all phases of TLS plan" msgstr "" "Cliquer devrait appliquer changements d'état à toutes les phases du " "programme de Feu de Circulation" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:855 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:889 msgid "Ask for confirmation before merging junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:860 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:894 msgid "Show bubbles over junctions shapes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:865 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:899 msgid "Apply mouse movement to elevation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:870 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:904 msgid "Create consecutive edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:875 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:909 msgid "Create an edge in the opposite direction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1007 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2643 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1041 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2643 msgid "Draw vehicles spread/depart position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1012 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1147 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2651 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2937 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1046 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1181 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2651 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2937 msgid "Show shapes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1017 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2659 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1051 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2659 msgid "Show all trips" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1022 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2667 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1056 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2667 msgid "Show all person plans" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1027 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2675 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1061 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2675 msgid "Lock selected person" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1032 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1066 msgid "Show all container plans" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1037 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2691 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1071 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2691 msgid "Lock selected container" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1042 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2699 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1076 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2699 msgid "Show non-inspected demand elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1047 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2707 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1081 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2707 msgid "Show number of overlapped routes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1142 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2930 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1176 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2930 msgid "Show additionals" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1157 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1191 msgid "Draw TAZRel from center" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1162 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1196 msgid "Draw TAZ fill" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1167 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1201 msgid "Only draw TAZRel from" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1172 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1206 msgid "Only draw TAZRel to" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1253 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1287 msgid "Undo the last change." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1256 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1290 msgid "Redo the last change." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1259 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1293 msgid "Show undo/redo history" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1259 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1293 msgid "Open undo/redo history dialog." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1280 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1314 msgid "Clear front element" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1280 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1314 msgid "Clear current front element" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1289 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1323 #, fuzzy msgid "Load additionals in sumo-gui" msgstr "Chargement de données additionnelles depuis '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1289 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1323 #, fuzzy msgid "Load additionals in sumo-gui." msgstr "Chargement de données additionnelles depuis '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1293 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1327 msgid "Load demand in sumo-gui" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1293 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1327 msgid "Load demand in sumo-gui." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1297 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1331 msgid "Open in sumo-gui" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1297 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1331 msgid "Opens the sumo-gui application with the current network." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1324 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1358 msgid "&Lanes" msgstr "&Lignes" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1329 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1363 msgid "&Connections" msgstr "&Connexions" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1334 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1368 msgid "C&rossings" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1339 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1373 msgid "Walkin&gAreas" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1344 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1378 msgid "&Additionals" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1349 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1383 msgid "&TAZs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1354 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1388 msgid "&Wires" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1359 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1393 msgid "&Polygons" msgstr "&Polygones" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1364 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1398 msgid "P&OIs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1369 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1403 msgid "&Routes" msgstr "&Routes" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1384 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1418 msgid "Person&Trips" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1389 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1423 msgid "&Walks" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1394 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1428 msgid "Ri&des" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1399 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1433 msgid "&Containers" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1438 msgid "Tra&nsports" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1409 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1443 msgid "Trans&hips" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1414 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1448 msgid "Stop&s" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1419 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1453 msgid "&EdgeDatas" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1458 msgid "E&dgeRelDatas" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1429 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1463 msgid "Edge&TAZRel" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1437 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1471 msgid "Lock selected elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1437 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1471 msgid "selected elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1444 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1478 msgid "Lock all elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1444 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1478 msgid "all elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1448 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1482 msgid "Unlock all elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1784 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1818 #, fuzzy msgid "Compute Junctions" msgstr "&Connexions" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1784 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1818 msgid "Compute junction shape and logic." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1821 msgid "Compute Junctions with volatile options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1821 msgid "Compute junction shape and logic using volatile junctions." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1790 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1824 #, fuzzy msgid "Clean Junctions" msgstr "&Connexions" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1790 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1824 msgid "Remove solitary junctions." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1793 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1827 msgid "Join Selected Junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1793 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1827 msgid "Join selected junctions into a single junction." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1796 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1830 msgid "Clean invalid crossings" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1796 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1830 msgid "Clear invalid crossings." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1802 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1836 msgid "Recompute Network in Data Mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1808 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1842 msgid "Compute demand" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1808 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1842 msgid "Computes demand elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1811 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1845 msgid "Clean routes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1811 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1845 msgid "Removes routes without vehicles." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1814 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1848 msgid "Join routes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1814 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1848 msgid "Joins routes with the same edges." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1817 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1851 msgid "Adjust person plans" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1817 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1851 msgid "Adjust person plans (start/end positions, arrival positions, etc.)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1820 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1854 msgid "Clean invalid route elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1820 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1854 msgid "Clear elements with an invalid path (routes, Trips, Flows...)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1826 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1860 msgid "Configure sumo Options." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1832 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:53 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1866 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:312 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:61 msgid "Options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1832 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1866 msgid "Configure netedit Options." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1945 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1979 msgid "Open a dialog for locating a Junction." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1948 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1982 msgid "Open a dialog for locating an Edge." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1951 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1985 msgid "&WalkingAreas" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1951 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1985 msgid "Open a dialog for locating a Walking Area." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1954 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1988 msgid "Open a dialog for locating a Vehicle." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1957 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1991 msgid "Open a dialog for locating a Person." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1960 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1994 msgid "&Route" msgstr "&Route" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1960 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1994 msgid "Open a dialog for locating a Route." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1963 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1997 msgid "&Stops" msgstr "&Arrêts" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1963 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1997 msgid "Open a dialog for locating a Stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1966 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2000 msgid "Open a dialog for locating a Traffic Light." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1969 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2003 msgid "Open a dialog for locating an Additional Structure." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1972 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2006 msgid "Open a dialog for locating a Point of Interest." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1975 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2009 msgid "Open a dialog for locating a Polygon." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2092 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2126 msgid "Toggle this Status Bar on/off." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2099 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2133 msgid "Clear the Message Window." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2124 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2158 msgid "Open feedback channels." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2127 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2161 msgid "About netedit." msgstr "A propos de netedit." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2163 -msgid "&Network" -msgstr "&Réseau" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2163 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2197 msgid "Select network mode." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2166 -msgid "&Demand" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2166 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2200 msgid "Select demand mode." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2169 -msgid "&Data" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2169 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2203 msgid "Select data mode." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2201 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2205 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2238 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2242 msgid "Could not load SUMO configuration '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2250 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2254 -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:145 -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:149 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2289 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2293 msgid "Could not load netedit configuration '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2700 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2739 msgid "Save file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2701 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2705 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2721 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2731 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2746 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2799 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2804 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2815 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2820 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2831 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2836 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2847 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2852 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2863 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2868 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2879 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2884 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2894 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2898 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2740 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2744 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2760 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2770 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2778 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2841 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2846 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2857 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2862 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2873 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2878 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2889 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2894 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2905 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2910 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2921 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2926 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2936 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2940 msgid "XML files (*.xml)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2702 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2706 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2722 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2732 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2747 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2755 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2771 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2775 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2785 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2789 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2800 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2805 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2816 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2821 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2832 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2837 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2848 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2853 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2864 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2869 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2880 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2885 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2895 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2899 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2741 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2761 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2771 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2779 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2788 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2796 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2812 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2817 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2827 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2831 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2842 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2847 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2858 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2863 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2874 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2879 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2890 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2895 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2906 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2911 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2922 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2927 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2937 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2941 msgid "All files (*)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2704 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2743 msgid "Open file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2714 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2753 msgid "Save Network file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2715 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2754 msgid "SUMO Network files (*.net.xml)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2716 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2755 msgid "SUMO Network files zipped (*.net.xml.gz)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2717 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2756 msgid "" "XML files (*.xml)\n" "All files (*)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2719 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2758 msgid "Open Network file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2720 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2759 msgid "SUMO Network files (*.net.xml,*.net.xml.gz)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2729 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2768 msgid "Open NetConvert file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2730 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2769 msgid "Netconvert files (*.netccfg)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2738 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2777 msgid "Save plain XML as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2744 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2785 msgid "Save joined Junctions as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2786 msgid "Junction files (*.nod.xml)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2753 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2794 msgid "Save tool log" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2754 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2795 msgid "Text file (*.txt)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2761 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2802 msgid "Open OSM file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2762 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2803 msgid "OSM net (*.osm.xml,*.osm)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2769 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2810 msgid "Save netedit Config file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2770 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2774 -msgid "Netedit Config files (*.neteditcfg)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2811 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2815 +msgid "Netedit Config files (*.netecfg)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2773 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2814 msgid "Open netedit Config file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2783 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2816 +msgid "Netedit Config files (*.neteditcfg)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2825 msgid "Save SUMO Config file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2784 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2788 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2826 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2830 msgid "SUMO Config files (*.sumocfg)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2829 msgid "Open SUMO Config file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2797 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2839 msgid "Save TLS file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2798 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2803 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2840 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2845 msgid "TLS files (*.tll.xml)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2802 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2844 msgid "Open TLS file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2813 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2855 msgid "Save EdgeType file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2814 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2856 msgid "EdgeType files (*.tll.xml)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2818 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2860 msgid "Open EdgeType file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2819 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2861 msgid "EdgeType files (*.typ.xml)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2829 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2871 msgid "Save Additionals file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2830 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2835 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2872 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2877 msgid "Additional files (*.add.xml)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2834 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2876 msgid "Open Additionals file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2845 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2887 msgid "Save Route file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2846 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2851 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2888 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2893 msgid "Route files (*.rou.xml)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2850 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2892 msgid "Open Route file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2861 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2903 msgid "Save Data file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2862 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2867 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2904 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2909 msgid "Data files (*.dat.xml)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2866 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2908 msgid "Open Data file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2877 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2919 msgid "Save MeanData file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2878 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2883 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2920 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2925 msgid "Meandata files (*.add.xml)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2882 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2924 msgid "Open MeanData file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2893 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2935 msgid "Save options file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2897 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2939 msgid "Open options file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:95 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:100 #, fuzzy, c-format msgid "Loading of sumo config file '%' failed." msgstr "Chargement de la configuration sumo '" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:108 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:113 #, fuzzy, c-format msgid "Loading of netedit config file '%' failed." msgstr "Charger un fichier de configuration netedit." -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:117 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:122 msgid "" "Invalid input network option. Load with either sumo/netedit/netconvert " "config or with -new option" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:130 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:136 msgid "Invalid Options. Nothing loaded" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:144 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:150 msgid "Could not build projection!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:172 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:178 msgid "Performing initial computation ..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:206 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:212 msgid "Failed to build network." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:251 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:257 msgid "Start plain GUI with empty net" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:252 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:258 msgid "Open a SUMO network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:253 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:259 msgid "Open a configuration file (netedit or netconvert config)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:254 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:260 msgid "Open a SUMO config file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:279 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:285 msgid "Load sumo config" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:283 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:289 msgid "Load additional and shapes descriptions from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:287 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:293 msgid "Load demand elements descriptions from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:291 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:297 msgid "Load data elements descriptions from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:295 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:301 msgid "Load meanData descriptions from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:300 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:306 msgid "File in which TLS Programs must be saved" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:303 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:309 msgid "File in which edgeTypes must be saved" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:309 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:315 msgid "Start netedit with a new network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:312 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:318 msgid "Write attribute help to file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:317 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:323 msgid "Prefix for node naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:320 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:326 msgid "Prefix for edge naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:323 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:329 msgid "Enable edge-infix ()" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:328 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:334 msgid "Prefix for busStop naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:331 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:337 msgid "Prefix for trainStop naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:334 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:340 msgid "Prefix for containerStop naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:337 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:343 msgid "Prefix for chargingStation naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:340 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:346 msgid "Prefix for parkingArea naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:343 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:349 msgid "Prefix for e1Detector naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:346 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:352 msgid "Prefix for e2Detector naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:349 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:355 msgid "Prefix for e3Detector naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:352 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:358 msgid "Prefix for e1InstantDetector naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:355 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:361 msgid "Prefix for rerouter naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:358 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:364 msgid "Prefix for calibrator naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:361 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:367 msgid "Prefix for routeProbe naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:364 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:370 msgid "Prefix for variable speed sign naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:367 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:373 msgid "prefix for traction substation naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:370 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:376 msgid "Prefix for overhead wire naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:373 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:379 msgid "Prefix for polygon naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:376 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:382 msgid "Prefix for poi naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:381 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:387 msgid "Prefix for route naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:384 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:390 msgid "Prefix for vType naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:387 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:393 msgid "Prefix for vehicle naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:390 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:396 msgid "Prefix for trip naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:393 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:399 msgid "Prefix for flow naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:396 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:402 msgid "Prefix for person naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:399 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:405 msgid "Prefix for personFlow naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:402 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:408 msgid "Prefix for container naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:405 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:411 msgid "Prefix for containerFlow naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:412 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:418 msgid "Prefix for meanDataEdge naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:415 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:421 msgid "Prefix for meanDataLane naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:422 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:428 msgid "Disable icons of special lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:425 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:431 msgid "Disable textures" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:428 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:434 msgid "Load visualisation settings from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:433 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:439 msgid "Load current viewport from registry" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:436 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:442 msgid "Create initial window with the given x,y size" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:439 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:445 msgid "Create initial window at the given x,y position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:444 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:450 msgid "Enable overlay for screen recognition" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:447 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:453 msgid "Enable output messages during GUI-Testing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:450 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:456 msgid "Enable output messages during GUI-Testing specific of gl functions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:453 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:459 msgid "Save gui settings in the given settings-output file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:460 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:466 msgid "Defines the begin time in seconds; The simulation starts at this time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:463 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:469 msgid "Defines the end time in seconds; The simulation ends at this time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:466 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:472 msgid "" "Length of the default interval length between action points for the car-" "following and lane-change models (in seconds). If not specified, the " @@ -3222,9363 +3258,9598 @@ "length." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:469 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:475 msgid "" "Select default speed deviation. A negative value implies vClass specific " "defaults (0.1 for the default passenger class" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:508 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:514 msgid "Failed to reset options." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:370 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:370 msgid "delete junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:412 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:412 msgid "delete edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:491 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:491 msgid "replace edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:553 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:553 msgid "delete lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:588 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:588 msgid "delete connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:603 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:603 msgid "delete crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:621 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:650 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:672 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:685 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:698 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:728 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:621 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:650 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:672 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:685 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:698 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:728 msgid "delete " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:644 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:644 msgid "Trying to delete a default Vehicle Type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:737 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2685 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:737 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2690 msgid "duplicate lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:856 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:856 msgid "split edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:973 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:973 msgid "split edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:995 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:995 msgid "reverse edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1008 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1012 msgid "add reversed edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1043 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1046 msgid "merge junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1079 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1082 msgid "select roundabout" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1095 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1098 msgid "create roundabout" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1273 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1276 msgid "Forced computing junctions with volatile options ..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1275 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1278 msgid "Forced computing junctions ..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1282 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1285 msgid "Computing junctions with volatile options ..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1284 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1287 msgid "Computing junctions ..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1347 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1350 msgid "Finished computing junctions." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1353 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1356 msgid "Computing demand elements ..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1367 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1370 msgid "Finished computing demand elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1373 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1376 msgid "Computing data elements ..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1380 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1383 msgid "Finished computing data elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1459 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1462 msgid "Position of joined junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1460 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1463 msgid "" "There is another unselected junction in the same position of joined junction." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1461 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1464 msgid "It will be joined with the other selected junctions. Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1582 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1592 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1585 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1595 msgid "Clear crossings" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1583 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1586 msgid "There are no invalid crossings to remove." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1593 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1596 msgid "Crossings will be cleared. Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1604 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1607 msgid "clear crossings" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1617 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1620 msgid "clear junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1646 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1649 msgid "clear unused routes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1701 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1704 msgid "merge routes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1755 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1758 msgid "adjust person plans" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1795 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1798 msgid "remove invalid demand elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1810 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1813 msgid "replace junction by geometry" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1855 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1858 msgid "Junction isn't removable" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1867 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1870 msgid "split junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1907 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1910 msgid "Could not rename split node to '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1946 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1949 msgid "clear junction connections" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1958 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1961 msgid "reset junction connections" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1969 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1972 msgid "clear additional elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1982 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1985 msgid "clear demand elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1995 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1998 msgid "clear data elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2006 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2009 msgid "clear meanData elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2326 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2403 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2331 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2413 msgid "Duplicated ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2689 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2689 msgid "Network size exceeds 1 Lightyear. Please reconsider your inputs." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:1461 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:1468 msgid "Default vType doesn't exist" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2478 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2486 msgid "Invalid meanData pointer" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2739 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2747 msgid "Redo replace in TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2753 msgid "Undo replace in TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:332 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:334 msgid "Locate a junction within the network. (Shift+J)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:336 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:338 msgid "Locate an edge within the network. (Shift+E)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:340 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:342 msgid "Locate WalkingAreas" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:340 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:342 msgid "Locate a walkingArea within the network. (Shift+W)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:344 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:346 msgid "Locate a vehicle within the network. (Shift+V)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:348 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:350 msgid "Locate a person within the network. (Shift+P)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:354 msgid "Locate Route" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:354 msgid "Locate a route within the network. (Shift+R)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:358 msgid "Locate Stops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:358 msgid "Locate a stop within the network. (Shift+S)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:367 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:369 msgid "Locate a tls within the network. (Shift+T)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:371 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:373 msgid "Locate an additional structure within the network. (Shift+A)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:375 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:377 msgid "Locate a PoI within the network. (Shift+O)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:379 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:381 msgid "Locate a Polygon within the network. (Shift+L)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:453 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:455 msgid "Remove from Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:455 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:457 msgid "Add to Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:612 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:614 msgid "GUI-Settings cannot be saved in " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:805 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:807 msgid "Confirm Junction Merger" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:806 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:808 msgid "Do you wish to merge junctions '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:807 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:205 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:809 msgid "' and '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:808 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:810 msgid "' will be eliminated and its roads added to '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:836 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:838 msgid " requires switch to network mode. Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:838 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:840 msgid " requires switch to demand mode. Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:840 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:842 msgid " requires switch to data mode. Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:845 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:847 msgid "Confirm switch mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1423 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1425 msgid "Cannot delete in this mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1426 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1428 msgid "delete network inspected elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1434 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1436 msgid "delete network selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1442 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1444 msgid "delete demand inspected elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1450 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1452 msgid "delete demand selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1458 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1460 msgid "delete data inspected elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1466 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1468 msgid "delete data selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2101 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2106 msgid "Reverse selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2108 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2113 msgid "Reverse edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2122 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2127 msgid "Add Reverse edge for selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2129 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2134 msgid "Add reverse edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2143 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2148 msgid "Add Reverse disconnected edge for selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2150 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2155 msgid "Add reverse disconnected edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2179 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2184 msgid "reset geometry points" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2200 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2205 msgid "straighten selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2208 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2213 msgid "straighten edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2222 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2227 msgid "smooth selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2229 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2234 msgid "smooth edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2243 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2248 msgid "straighten elevation of selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2250 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2255 msgid "straighten edge elevation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2264 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2269 msgid "smooth elevation of selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2271 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2276 msgid "smooth edge elevation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2285 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2290 msgid "reset edge lengths" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2314 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2319 msgid "copy edge template" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2335 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2340 msgid "simplify shapes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2377 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2382 msgid "close polygon shapes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2408 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2413 msgid "open polygon shapes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2457 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2462 msgid "select within polygon boundary" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2502 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2507 #, c-format msgid "No lanes around % to attach it" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2525 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2530 msgid "attach POI into lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2538 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2543 msgid "release POI from lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2572 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2577 msgid "change edge Geometry Point position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2604 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2609 msgid "change polygon Geometry Point position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2624 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2629 msgid "change TAZ Geometry Point position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2648 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2653 msgid "reset end points of selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2659 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2664 msgid "reset end points of edge '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2678 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2683 msgid "duplicate selected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2715 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2720 msgid "reset custom lane shapes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2722 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2727 msgid "reset custom lane shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2738 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2743 msgid "reset opposite lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2750 msgid "reset opposite lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2799 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2804 msgid "select lane reachability" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2841 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2846 msgid "Multiple lane in the same edge selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2842 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2847 msgid "There are selected lanes that belong to the same edge." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2843 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2848 msgid "Only one lane per edge will be restricted for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2858 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2866 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2863 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2871 msgid "Set vclass for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2859 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2867 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2940 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2948 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2864 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2872 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2945 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2953 msgid " to selected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2860 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2941 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2865 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2946 msgid "" "All lanes own already another lane in the same edge with a restriction for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2868 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2873 msgid " lanes will be restricted for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2869 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2874 msgid ". Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2896 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2901 msgid "restrict lane to " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2939 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2947 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2944 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2952 msgid "Add vclass for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2949 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3044 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2954 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3049 msgid " restrictions for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2950 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2955 msgid " will be added. Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2967 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2972 msgid "add restrictions for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2977 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2982 msgid "add vclass for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3034 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3042 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3072 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3039 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3047 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3077 msgid "Remove vclass for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3035 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3040 msgid " from selected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3036 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3041 msgid "Selected lanes and edges haven't a restriction for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3043 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3048 msgid " in selected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3045 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3050 msgid " will be removed. Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3214 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3219 msgid "reset edge endpoints" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3259 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3526 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3561 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3584 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3264 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3531 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3566 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3589 msgid "Grid is still active, press ctrl+g to deactivate" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3278 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3283 msgid "reset custom junction shapes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3285 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3290 msgid "reset custom junction shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3396 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3401 msgid "clear connections of selected junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3428 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3433 msgid "reset connections of selected junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3452 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3479 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3457 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3484 msgid "add TLS in multiple junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:5564 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:5579 msgid "Shift + click to create two additionals in the same position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:5813 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:5828 msgid "Control + click to create two stop in the same position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1467 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1488 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1467 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1488 msgid "moving selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1668 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1668 msgid "Selection width:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1669 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1669 msgid " height:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1670 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1670 msgid " diagonal:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1834 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1834 msgid "selection using rectangle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1868 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1868 #, c-format msgid "Invalid windows size-format: %for option 'window-size'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1946 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1946 msgid "Save NETEDITConfig" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1946 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1946 msgid "Save NETEDITConfig. (Ctrl+Shift+E)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1952 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1952 msgid "Save SumoConfig" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1952 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1952 msgid "Save SumoConfig. (Ctrl+Shift+S)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1958 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1958 msgid "Save network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1958 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1958 msgid "Save network. (Ctrl+S)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1966 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1966 msgid "Save individual files" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1966 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1966 msgid "Save individual files." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1972 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1972 msgid "Save additional elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1972 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1972 msgid "Save additional elements. (Ctrl+Shift+A)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1978 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1978 msgid "Save demand elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1978 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1978 msgid "Save demand elements. (Ctrl+Shift+D)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1984 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1984 msgid "Save data elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1984 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1984 msgid "Save data elements. (Ctrl+Shift+B)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1990 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1990 msgid "Save mean data elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1990 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1990 msgid "Save mean data elements. (Ctrl+Shift+M)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 msgid "Network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 msgid "Edit network elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 msgid "Set mode for edit network elements. (F2)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2067 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2069 msgid "Demand" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 msgid "Edit traffic demand elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 msgid "Set mode for edit traffic demand. (F3)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2211 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2213 msgid "Data" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 msgid "Edit data elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 msgid "Set mode for edit data demand. (F4)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2065 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2065 msgid "Mode already selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2150 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2150 msgid "Network mode already selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2155 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2155 msgid "Save modifications in TLS before change mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2200 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2200 msgid "Demand mode already selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2235 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2235 msgid "Data mode already selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2316 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2627 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2316 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2627 msgid "" "Show grid and restrict movement to the grid - define grid size in " "visualization options. (Ctrl+G)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2324 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2635 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2922 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2324 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2635 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2922 msgid "Toggle hiding junction shape. (Ctrl+J)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2332 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2332 msgid "Draw vehicles spread in lane or depart position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2332 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2643 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2332 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2643 msgid "Draw vehicles spread in lane or in depart position." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2340 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2944 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2340 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2944 msgid "Toggle show demand elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2348 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2348 msgid "Clicks target lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2348 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2348 msgid "" "Toggle whether clicking should inspect/select/delete lanes instead of edges." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2355 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2355 msgid "Toggle show connections over junctions." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2363 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2363 msgid "Toggle hide connections." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2371 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2371 msgid "Show additional sub-elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2371 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2371 msgid "Toggle show additional sub-elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2379 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2379 msgid "Toggle show TAZ elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2387 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2387 msgid "Automatic select junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2387 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2387 msgid "" "Toggle whether selecting multiple edges should automatically select their " "junctions." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2395 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2395 msgid "Apply state to all phases" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2395 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2395 msgid "" "Toggle whether clicking should apply state changes to all phases of the " "current TLS plan." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2403 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2403 msgid "Automatic merging junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2403 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2403 msgid "Toggle ask for confirmation before merging junction." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2410 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2410 msgid "Show bubbles" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2410 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2410 msgid "Toggle show bubbles over junctions shapes." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2418 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2418 msgid "Move elevation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2418 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2418 msgid "Apply mouse movement to elevation instead of x,y position." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2426 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2426 msgid "Edge chain mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2426 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2426 msgid "Create consecutive edges with a single click (hit ESC to cancel chain)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2434 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2434 msgid "Edge opposite direction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2434 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2434 msgid "Automatically create an edge in the opposite direction." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2651 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2937 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2651 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2937 msgid "Toggle show shapes (Polygons and POIs)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2659 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2659 msgid "Toggle show all trips (requires updated demand - F5)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2667 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2667 msgid "Toggle show all person plans." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2675 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2675 msgid "Toggle lock selected person." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2683 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2683 msgid "Show all containers plans" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2683 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2683 msgid "Toggle show all container plans." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2691 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2691 msgid "Toggle lock selected container." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2699 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2699 msgid "Toggle show non-inspected demand elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2707 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2707 msgid "Toggle show number of overlapped routes." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2930 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2930 msgid "Toggle show additionals." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2951 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2951 msgid "Draw TAZREL drawing mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2951 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2951 msgid "Toggle draw TAZREL drawing mode." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2958 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2958 msgid "Toggle draw TAZ fill" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2965 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2965 msgid "Toggle draw TAZRel only from" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2972 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2972 msgid "Toggle draw TAZRel only to" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3471 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3471 msgid "Set inspect mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3471 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3471 msgid "Mode for inspect elements and change their attributes. (I)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3477 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3477 msgid "Set delete mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3477 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3477 msgid "Mode for delete elements. (D)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3546 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3690 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3546 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3681 msgid "Set move mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3546 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3690 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3546 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3681 msgid "Mode for move elements. (M)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3552 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3552 msgid "Set create edge mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3552 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3552 msgid "Mode for creating junction and edges. (E)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3558 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3558 msgid "Set connection mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3558 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3558 msgid "Mode for edit connections between lanes. (C)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3564 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3564 msgid "Set prohibition mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3564 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3564 msgid "Mode for editing connection prohibitions. (H)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3570 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3570 msgid "Set traffic light mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3570 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3570 msgid "Mode for edit traffic lights over junctions. (T)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3576 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3576 msgid "Set additional mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3576 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3576 msgid "Mode for adding additional elements. (A)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3582 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3582 msgid "Set crossing mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3582 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3582 msgid "Mode for creating crossings between edges. (R)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3588 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3588 msgid "Set TAZ mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3588 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3588 msgid "Mode for creating Traffic Assignment Zones. (Z)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3594 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3594 msgid "Set polygon mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3594 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3594 msgid "Mode for creating polygons and POIs. (P)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3600 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3600 msgid "Set wire mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3600 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3600 msgid "Mode for editing wires. (W)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3696 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3687 msgid "Create route mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3696 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3687 msgid "Mode for creating routes. (R)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3702 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3693 msgid "Create vehicle mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3702 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3693 msgid "Mode for creating vehicles. (V)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3708 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3699 msgid "Create type mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3708 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3699 msgid "Mode for creating types (vehicles, person and containers). (T)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3714 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3705 +msgid "Create type distribution mode" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3705 +msgid "Mode for creating type distribution. (U)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3711 msgid "Create stop mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3714 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3711 msgid "Mode for creating stops. (A)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3720 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3717 msgid "Create person mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3720 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3717 msgid "Mode for creating persons. (P)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3726 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3723 msgid "Create person plan mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3726 -msgid "Mode for creating person plans. (C)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3723 +msgid "Mode for creating person plans. (L)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3732 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3729 msgid "Create container mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3732 -msgid "Mode for creating containers. (P)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3729 +msgid "Mode for creating containers. (C)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3738 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3735 msgid "Create container plan mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3738 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3735 msgid "Mode for creating container plans. (H)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3815 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3816 msgid "Create edge data mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3815 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3816 msgid "Mode for creating edge datas. (E)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3821 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3822 msgid "Create edge relation data mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3821 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3822 msgid "Mode for creating edge relation datas. (R)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3827 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3828 msgid "Create TAZ relation data mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3827 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3828 msgid "Mode for creating TAZ relation datas. (Z)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3833 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3834 msgid "MeanData mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3833 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3834 msgid "Mode for MeanData elements. (M)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:102 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:103 msgid "Undo the last change. (Ctrl+Z)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:105 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:106 msgid "Redo the last change. (Ctrl+Y)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:113 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:114 msgid "Compute path manager" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:113 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:114 msgid "Compute path manager." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:521 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:528 msgid "WalkingArea Chooser" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:590 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:597 msgid "Route Chooser" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:598 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:605 msgid "Stop Chooser" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:629 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:641 msgid "TLS Chooser" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:640 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:652 msgid "Additional Chooser" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:669 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:681 msgid "Poly Chooser" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:120 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:96 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:108 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:97 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:145 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:128 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:118 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:96 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:108 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:97 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:145 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:128 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:118 msgid "Undo create " msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:122 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:99 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:110 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:99 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:147 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:130 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:122 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:99 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:110 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:99 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:147 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:120 msgid "Undo delete " msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:130 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:118 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:107 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:155 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:138 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:128 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:118 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:107 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:155 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:138 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:128 msgid "Redo create " msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:132 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:120 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:109 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:157 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:140 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:132 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:109 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:157 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:140 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:130 msgid "Redo delete " msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Attribute.cpp:158 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Attribute.cpp:158 msgid "Undo change " msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Attribute.cpp:164 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Attribute.cpp:164 msgid "Redo change " msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:147 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:158 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:147 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:158 msgid "Undo moving up " msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:149 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:156 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:149 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:156 msgid "Undo moving down " msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:151 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:160 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:175 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:184 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:151 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:160 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:175 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:184 msgid "Invalid operation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:171 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:180 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:171 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:180 msgid "Redo moving front " msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:173 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:182 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:173 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:182 msgid "Redo moving back " msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:108 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:108 msgid "Redo create connection '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:111 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:111 msgid "Redo delete connection '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:163 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:163 msgid "Undo create crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:165 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:165 msgid "Undo delete crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:173 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:173 msgid "Redo create crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:175 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:175 msgid "Redo delete crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:136 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:136 msgid "Undo create edge '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:138 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:138 msgid "Undo delete edge '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:146 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:146 msgid "Redo create edge '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:148 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:148 msgid "Redo delete edge '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:111 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:111 msgid "Undo create edgeType '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:113 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:113 msgid "Undo delete edgeType '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:121 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:121 msgid "Redo create edgeType '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:123 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:123 msgid "Redo delete edgeType '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:113 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:115 -msgid "Undo enable " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:113 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:115 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:123 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:125 -msgid " attribute in '" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:113 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:115 +msgid "Undo enable % attribute in '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:123 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:125 -msgid "Redo enable " +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:123 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:125 +msgid "Redo enable % attribute in '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:109 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:109 msgid "Undo create junction '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:111 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:111 msgid "Undo delete junction '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:119 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:119 msgid "Redo create junction '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:121 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:121 msgid "Redo delete junction '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:158 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:158 msgid "Undo create lane '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:160 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:160 msgid "Undo delete lane '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:168 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:168 msgid "Redo create lane '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:170 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:170 msgid "Redo delete lane '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:172 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:172 msgid "Undo create TLS '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:174 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:174 msgid "Undo delete TLS '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:182 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:182 msgid "Redo create TLS '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:184 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:184 msgid "Redo delete TLS '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:38 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:38 msgid "About Eclipse SUMO netedit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:53 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:53 msgid "Network editor for Eclipse SUMO, the Simulation of Urban MObility" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:54 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:54 msgid "Graphical editor for road networks and infrastructure." msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:66 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:66 msgid "This application is based on code provided by the Eclipse SUMO project." msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:67 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:67 msgid "" "These core components are available under the conditions of the Eclipse " "Public License v2." msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:923 msgid "Accept" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:62 msgid "Close accepting changes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:94 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:93 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1368 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:377 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:925 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1396 msgid "Cancel" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:63 msgid "Close discarding changes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:64 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:93 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:378 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:97 msgid "Reset" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:64 msgid "Reset to previous values" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:276 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:649 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:59 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:690 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:494 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:133 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:276 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:650 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:59 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:713 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:494 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:133 msgid "accept" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:276 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:277 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:278 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:415 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:649 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:650 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:651 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:411 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:690 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:691 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:692 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:408 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:494 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:495 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:234 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:247 -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:285 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:384 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:559 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:298 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:487 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:134 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:276 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:277 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:416 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:650 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:651 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:652 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:413 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:713 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:714 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:715 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:408 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:494 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:495 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:380 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:298 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:487 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:134 #, fuzzy msgid "close" msgstr "Fermer" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:277 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:650 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:60 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:691 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:495 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:277 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:651 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:60 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:714 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:495 msgid "cancel" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:278 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:651 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:692 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:652 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:715 msgid "reset" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNECalibratorDialog.cpp:237 +#: D:\Repos\sumo/src\netedit\dialogs\GNECalibratorDialog.cpp:237 msgid "routes cannot be empty" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNECalibratorDialog.cpp:472 +#: D:\Repos\sumo/src\netedit\dialogs\GNECalibratorDialog.cpp:472 msgid "No routes defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:71 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:638 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:389 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:71 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:638 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:389 msgid "&Accept" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:75 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:90 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:75 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:90 msgid "close accepting changes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:64 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:76 msgid "close discarding changes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:65 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:65 msgid "&Reset" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:65 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:77 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:65 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:77 msgid "reset to previous values" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDialogACChooser.cpp:111 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDialogACChooser.cpp:111 #, fuzzy msgid "Invalid Junction" msgstr "&Connexions" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDialogACChooser.cpp:117 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDialogACChooser.cpp:117 msgid "Invalid number of TLSs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:257 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:333 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:457 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:257 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:333 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:457 msgid "Activate friendlyPos and save" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:257 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:333 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:257 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:333 msgid "" "Friendly pos parameter will be activated in all stopping places and E2 " "detectors" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:259 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:460 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:259 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:460 msgid "Save invalid positions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:259 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:259 msgid "Save stopping places and E2 detectors with invalid positions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:263 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:335 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:466 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:263 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:335 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:466 msgid "Fix positions and save" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:263 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:335 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:263 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:335 msgid "Position of stopping places and E2 detectors will be fixed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:265 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:265 #, fuzzy msgid "Select invalid additionals" msgstr "Chargement de données additionnelles depuis '" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:265 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:265 msgid "" "Cancel saving of additionals and select invalid stopping places and E2 " "detectors" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:325 msgid "Build connections between lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:325 msgid "New connections will be created between non-connected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:327 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:327 msgid "Remove invalid E2 detectors" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:327 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:327 msgid "Remove Multilane E2 Detectors with non-connected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:202 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:189 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:202 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:189 msgid "Save list of conflicted items" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:240 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:240 msgid "Remove invalid routes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:243 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:243 msgid "Save invalid routes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:246 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:246 msgid "Select conflicted routes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:249 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:249 msgid "Remove stops out of route" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:351 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:351 msgid "Remove invalid vehicles" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:354 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:354 msgid "Save invalid vehicles" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:357 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:357 msgid "Select conflicted vehicle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:360 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:360 msgid "Remove stops out of vehicle's route" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:463 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:463 msgid "Select conflicted Stops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:557 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:557 msgid "Delete person plan" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:560 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:560 msgid "Save invalid person plans" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:563 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:563 msgid "Select conflicted person plans" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:52 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:52 msgid "Fix network elements problems" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:206 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:206 msgid "Saving successfully" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:213 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:213 msgid "Saving list of conflicted items failed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:227 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:227 msgid "Remove invalid edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:230 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:230 msgid "Save invalid edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:233 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:233 msgid "Select conflicted edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:308 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:308 msgid "Remove invalid crossings" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:311 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:311 msgid "Save invalid crossings" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:314 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:314 msgid "Select conflicted crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:285 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:281 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:286 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:283 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:278 msgid "Sort" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:286 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:282 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:279 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:55 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:251 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:287 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:284 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:279 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:252 msgid "Clear" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:289 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:285 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:282 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:59 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:748 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:73 -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:318 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:113 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:420 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:60 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:83 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:37 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:39 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:222 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1194 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:290 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:287 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:756 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:318 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:109 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:37 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:39 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:223 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1191 msgid "Help" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:299 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:295 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:292 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:300 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:297 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:292 msgid "Open Parameter Template" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:314 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:310 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:307 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:315 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:312 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:307 #, c-format msgid "Loading of Parameters From % failed." msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:317 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:313 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:310 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:318 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:315 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:310 #, fuzzy msgid "Loaded % Parameters." msgstr "Charger Programmes des Feux de Circulation..." -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:327 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:323 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:320 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:328 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:320 msgid "Save Parameter Template file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:403 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:399 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:396 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:404 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:401 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:396 msgid "- Parameters are defined by a Key and a Value.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:404 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:400 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:397 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:405 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:402 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:397 msgid "" "- In Netedit can be defined using format key1=parameter1|" "key2=parameter2|...\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:405 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:401 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:398 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:406 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:403 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:398 msgid " - Duplicated and empty Keys aren't valid.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:406 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:402 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:399 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:407 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:404 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:399 msgid " - Whitespace and certain characters aren't allowed (@$%^&/|\\....)\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:448 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:447 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:444 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:449 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:449 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:444 msgid "Key of Parameter not defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:450 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:449 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:446 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:451 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:451 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:446 msgid "Value of Parameter not defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:458 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:457 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:454 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:454 msgid "Key of Parameter cannot be empty" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:460 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:459 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:456 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:461 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:461 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:456 #, c-format msgid "Key '%' of Parameter contains invalid characters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:463 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:462 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:464 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:464 #, c-format msgid "Key '%' already exist" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:478 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:479 msgid "" "Only for\n" "existent keys" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:59 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:59 #, fuzzy msgid "load elements" msgstr "Eléments de Demande" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:60 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:60 #, fuzzy msgid "cancel loading of elements" msgstr "rechargement des données liées au réseau depuis '" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:61 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:61 msgid "overwrite" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:61 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:61 msgid "overwrite elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:182 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:182 msgid "Rerouter has more than one edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:321 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:321 msgid "There are no lanes in the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:341 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:361 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:341 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:361 msgid "There are no edges in the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:398 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:398 msgid "There are no parking areas in the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEUndoListDialog.cpp:58 +#: D:\Repos\sumo/src\netedit\dialogs\GNEUndoListDialog.cpp:58 msgid "OK\tclose dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:459 #, c-format msgid "Key '%' already exists" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:446 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:753 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:446 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1159 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1168 msgid "Edit parameters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:466 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:466 msgid "Invalid row type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:635 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:425 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:455 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1252 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:635 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:426 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:463 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1249 msgid "Color Dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:660 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:660 msgid "Open Image" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:687 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:687 msgid "Open OSG File" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:266 +msgid "Could not load configuration '" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:271 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:169 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:173 +msgid "Could not load tool configuration '" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:275 +msgid "Loaded configuration." +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:295 +msgid "Save options" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:297 +msgid "Save configuration file" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:298 +msgid "Load options" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:300 +msgid "Load configuration file" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:301 +msgid "Default options" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:303 +msgid "Reset all options to default" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:311 +msgid "Topics" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:362 +msgid "Search" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:364 +msgid "Include description in search" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:81 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:138 +msgid "Reset value" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:226 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:238 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:251 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:272 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:734 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:746 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:760 +msgid "true" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:229 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:241 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:254 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:275 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:737 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:749 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:766 +msgid "false" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:458 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:82 +msgid "Select filename" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:63 msgid "Grid" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:64 msgid "Spider" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:65 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:65 msgid "Random grid" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:66 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:66 msgid "Random" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:82 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:232 -msgid "Select filename" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:92 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:92 msgid "Advanced" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:92 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:92 msgid "open advance netgenerate dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:94 msgid "Close dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:71 -msgid "Save options" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:71 +msgid "Save toolcfg" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:73 -msgid "Load options" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:73 +msgid "Save file with tool configuration" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:74 +msgid "Load toolcfg" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:75 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:76 +msgid "Load file with tool configuration" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:77 msgid "Sorted by name" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:78 msgid "Grouped by categories" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:89 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:90 +msgid "Blue options are mandatory" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:93 msgid "run python tool" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:91 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:95 msgid "close tool dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:93 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:97 msgid "reset to default values" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:122 -msgid "Reset value" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:245 +#, c-format +msgid "Use current % file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:227 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:251 #, c-format -msgid "Use current % file" +msgid "Select % file" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:274 +msgid "Use current selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:253 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:349 msgid "network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:296 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:392 msgid "additional" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:339 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:435 msgid "route" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:382 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:478 msgid "data" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:556 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:568 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:582 -msgid "true" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:521 +msgid "sumo config" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:559 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:571 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:585 -msgid "false" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:70 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:71 msgid "Save output" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:65 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:66 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:72 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:73 msgid "Console output" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:75 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:82 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:83 msgid "Abort" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:75 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:82 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:83 msgid "abort running" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:77 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:78 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:84 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:85 msgid "Rerun" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:77 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:78 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:84 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:85 msgid "rerun tool" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:79 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:80 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:86 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:87 msgid "Back" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:79 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:80 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:86 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:87 msgid "back to tool dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:87 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:88 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:95 msgid "close dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:134 msgid "Nothing to enable, implement in Children" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:141 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:141 msgid "Nothing to disable, implement in Children" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:631 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:631 #, c-format msgid "TagProperty for tag '%' not defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:849 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:849 msgid "Nothing to toggle, implement in Children" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:913 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:913 msgid "The id of the node" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:918 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1903 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1909 msgid "The x-y-z position of the node on the plane in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:923 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:923 msgid "An optional type for the node" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:929 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:929 msgid "A custom shape for that node" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:934 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:934 msgid "Optional turning radius (for all corners) for that node in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:940 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:940 msgid "" "Whether the junction-blocking-heuristic should be activated at this node" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:946 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:946 msgid "How to compute right of way rules at this node" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:953 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:953 msgid "Whether this junction is at the fringe of the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:960 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:960 msgid "Optional name of junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:965 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:965 msgid "An optional type for the traffic light algorithm" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:971 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:971 msgid "An optional layout for the traffic light plan" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:980 msgid "An optional id for the traffic light program" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:993 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:993 msgid "The id of the edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:998 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1116 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:998 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1116 msgid "The number of lanes of the edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1004 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1104 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1004 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1104 msgid "The maximum speed allowed on the edge in m/s" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1010 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1064 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1127 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1230 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1446 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1064 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1230 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1446 msgid "" "Explicitly allows the given vehicle classes (not given will be not allowed)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1016 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1070 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1133 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1236 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1452 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1016 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1070 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1133 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1236 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1452 msgid "" "Explicitly disallows the given vehicle classes (not given will be allowed)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1021 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1148 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1021 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1148 msgid "" "The spreadType defines how to compute the lane geometry from the edge " "geometry (used for visualization)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1028 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1110 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1110 msgid "The priority of the edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1034 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1160 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1160 msgid "" "Lane width for all lanes of this edge in meters (used for visualization)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1040 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1040 msgid "The width of the sidewalk that should be added as an additional lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1045 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1045 msgid "The width of the bike lane that should be added as an additional lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1058 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1058 msgid "The maximum speed allowed on the lane in m/s" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1075 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1075 msgid "" "Lane width for all lanes of this lane in meters (used for visualization)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1089 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2650 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2698 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1089 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2656 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2704 msgid "Edge ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1094 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1094 msgid "The name of a node within the nodes-file the edge shall start at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1099 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1099 msgid "The name of a node within the nodes-file the edge shall end at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1122 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1122 msgid "The name of a type within the SUMO edge type file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1138 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1138 msgid "" "If the shape is given it should start and end with the positions of the from-" "node and to-node" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1143 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1143 msgid "The length of the edge in meter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1155 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1155 msgid "street name (does not need to be unique, used for visualization)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1166 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1247 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1166 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1247 msgid "Move the stop line back from the intersection by the given amount" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1172 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1172 msgid "" "Custom position in which shape start (by default position of junction from)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1177 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1177 msgid "" "Custom position in which shape end (by default position of junction from)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1182 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1182 msgid "Show if edge is bidirectional" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1188 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1188 msgid "Distance" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1194 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1288 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1194 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1288 msgid "The stop offset as positive value in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1200 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1294 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1200 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1294 msgid "Specifies, for which vehicle classes the stopOffset does NOT apply." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1214 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1214 msgid "Lane ID (Automatic, non editable)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1219 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1219 msgid "" "The enumeration index of the lane (0 is the rightmost lane, -1 " "is the leftmost one)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1224 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1224 msgid "Speed in meters per second" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1241 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1241 msgid "Width in meters (used for visualization)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1253 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1253 msgid "Enable or disable lane as acceleration lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1259 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1259 msgid "If the shape is given it overrides the computation based on edge shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1264 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1264 msgid "If given, this defines the opposite direction lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1269 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1474 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1269 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1474 msgid "Permit changing left only for to the given vehicle classes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1276 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1481 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1276 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1481 msgid "Permit changing right only for to the given vehicle classes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1283 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1283 msgid "Lane type description (optional)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1308 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1308 msgid "Crossing ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1313 msgid "The (road) edges which are crossed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1318 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1318 msgid "" "Whether the pedestrians have priority over the vehicles (automatically set " "to true at tls-controlled intersections)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1324 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1324 msgid "The width of the crossings" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1330 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1330 msgid "sets the tls-index for this crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1336 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1336 msgid "sets the opposite-direction tls-index for this crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1342 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1342 msgid "Overrides default shape of pedestrian crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1355 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1355 msgid "Walking Area ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1360 msgid "The width of the WalkingArea" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1366 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1366 msgid "The length of the WalkingArea in meter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1371 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1371 msgid "Overrides default shape of pedestrian sidewalk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1384 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1384 msgid "The ID of the edge the vehicles leave" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1389 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1389 msgid "The ID of the edge the vehicles may reach when leaving 'from'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1394 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1394 msgid "the lane index of the incoming lane (numbers starting with 0)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1399 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1399 msgid "the lane index of the outgoing lane (numbers starting with 0)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1404 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1404 msgid "" "if set, vehicles which pass this (lane-2-lane) connection) will not wait" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1410 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1410 msgid "" "if set to false, vehicles which pass this (lane-2-lane) connection) will not " "worry about blocking the intersection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1416 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1416 msgid "" "If set to a more than 0 value, an internal junction will be built at this " "position (in m)/n from the start of the internal lane for this connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1422 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1422 msgid "" "If set to true, This connection will not be TLS-controlled despite its node " "being controlled" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1428 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1428 msgid "Vision distance between vehicles" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1434 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1434 msgid "sets index of this connection within the controlling traffic light" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1440 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1440 msgid "" "sets index for the internal junction of this connection within the " "controlling traffic light" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1457 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1457 msgid "sets custom speed limit for the connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1463 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1463 msgid "sets custom length for the connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1469 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1469 msgid "sets custom shape for the connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1488 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1488 msgid "if set to true, vehicles will make a turn in 2 steps" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1494 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1494 msgid "" "set a custom edge type (for applying vClass-specific speed restrictions)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1500 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1500 msgid "turning direction for this connection (computed)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1505 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1505 msgid "link state for this connection (computed)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1535 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1535 msgid "The id of bus stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1540 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1540 msgid "The name of the lane the bus stop shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1545 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1609 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1707 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1836 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3962 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4073 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1545 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1609 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1707 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3968 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4095 msgid "" "The begin position on the lane (the lower position on the lane) in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1550 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1614 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1712 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1841 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3967 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4078 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4432 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4802 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1550 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1614 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1712 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1841 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3973 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4100 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4470 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4916 msgid "" "The end position on the lane (the higher position on the lane) in meters, " "must be larger than startPos by more than 0.1m" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1555 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1555 msgid "Name of busStop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1560 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1624 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1680 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1722 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1785 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1868 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1979 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2060 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2140 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2219 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2246 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2293 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2959 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3266 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3972 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4083 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4437 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4807 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1560 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1680 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1722 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1785 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1868 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1985 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2066 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2146 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2225 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2252 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2299 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2965 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3272 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3978 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4105 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4475 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4921 msgid "If set, no error will be reported if element is placed behind the lane." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1561 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1561 msgid "" "Instead, it will be placed 0.1 meters from the lanes end or at position 0.1" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1562 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1626 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1682 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1724 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1787 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1870 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1981 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2062 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2142 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2221 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2248 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2295 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2961 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3268 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3974 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4085 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4439 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4809 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1562 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1626 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1682 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1724 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1787 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1870 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1987 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2148 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2227 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2254 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2301 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2967 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3274 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4477 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4923 msgid "" "if the position was negative and larger than the lanes length after " "multiplication with - 1" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1568 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1568 msgid "" "Meant to be the names of the bus lines that stop at this bus stop. This is " "only used for visualization purposes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1573 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1637 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1573 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1637 msgid "" "Larger numbers of persons trying to enter will create an upstream jam on the " "sidewalk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1579 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1643 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1741 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1579 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1741 msgid "Optional space definition for vehicles that park at this stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1585 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1585 msgid "The RGBA color with which the busStop shall be displayed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1599 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1599 msgid "The id of train stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1604 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1604 msgid "The name of the lane the train stop shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1619 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1619 msgid "Name of trainStop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1625 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1681 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1723 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1786 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1869 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1980 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2061 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2141 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2220 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2247 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2294 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2960 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3267 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3973 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4084 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4438 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4808 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1625 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1681 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1723 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1786 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1869 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1986 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2147 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2226 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2253 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2300 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2966 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3273 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3979 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4106 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4476 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4922 msgid "" "Instead, it will be placed 0.1 meters from the lanes end or at position 0.1," msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1632 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1632 msgid "" "Meant to be the names of the train lines that stop at this train stop. This " "is only used for visualization purposes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1649 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1649 msgid "The RGBA color with which the trainStop shall be displayed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1663 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1663 msgid "The name of the lane the stop access shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1668 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1668 msgid "The position on the lane (the lower position on the lane) in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1674 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1674 msgid "The walking length of the access in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1697 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1697 msgid "The id of container stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1702 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1702 msgid "The name of the lane the container stop shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1717 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1717 msgid "Name of containerStop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1730 msgid "" "meant to be the names of the bus lines that stop at this container stop. " "This is only used for visualization purposes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1735 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1735 msgid "" "Larger numbers of container trying to enter will create an upstream jam on " "the sidewalk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1747 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1747 msgid "The RGBA color with which the containerStop shall be displayed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1760 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1760 msgid "The id of charging station" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1765 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1765 msgid "Lane of the charging station location" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1770 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1770 msgid "Begin position in the specified lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1775 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1775 msgid "End position in the specified lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1780 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1780 msgid "Name of chargingStation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1793 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1793 msgid "Charging power in W" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1799 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1799 msgid "Charging efficiency [0,1]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1806 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1806 msgid "" "Enable or disable charge in transit, i.e. vehicle must or must not to stop " "for charging" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1812 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1812 msgid "" "Time delay after the vehicles has reached / stopped on the charging station, " "before the energy transfer (charging) begins" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1826 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1826 msgid "The id of ParkingArea" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1831 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1831 msgid "The name of the lane the Parking Area shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1846 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1846 msgid "Lane position in that vehicle must depart when leaves parkingArea" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1851 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1851 msgid "Name of parkingArea" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1856 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1856 msgid " The number of parking spaces for road-side parking" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1862 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1862 msgid "" "If set, vehicles will park on the road lane and thereby reducing capacity" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1876 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1913 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1876 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1919 msgid "The width of the road-side parking spaces" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1882 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1882 msgid "" "The length of the road-side parking spaces. By default (endPos - startPos) / " "roadsideCapacity" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1888 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1923 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1888 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1929 msgid "" "The angle of the road-side parking spaces relative to the lane angle, " "positive means clockwise" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1908 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1894 +msgid "Enable or disable lefthand position" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1914 msgid "Name of parking space" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1924 msgid "The length of the road-side parking spaces" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1928 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1934 msgid "The slope of the road-side parking spaces" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1943 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1949 msgid "The id of E1" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1948 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2000 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2209 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2236 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2268 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1954 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2006 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2215 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2242 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2274 msgid "" "The id of the lane the detector shall be laid on. The lane must be a part of " "the network used" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1953 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2273 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1959 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2279 msgid "" "The position on the lane the detector shall be laid on in meters. The " "position must be a value between -1*lane's length and the lane's length" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1958 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2016 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2096 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2168 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5770 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1964 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2022 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2102 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5916 msgid "" "The aggregation period the values the detector collects shall be summed up" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1964 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1970 msgid "Name of induction loop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1969 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2032 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2112 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2179 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2283 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1975 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2038 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2118 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2289 msgid "The path to the output file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1974 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2037 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2117 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2184 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2288 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2043 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2123 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2190 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2294 msgid "Space separated list of vehicle type ids to consider" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1995 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2001 msgid "The id of E2" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2005 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2086 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2214 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2241 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2011 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2092 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2220 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2247 msgid "The position on the lane the detector shall be laid on in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2016 msgid "The length of the detector in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2102 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2108 msgid "The traffic light that triggers aggregation when switching" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2027 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2033 msgid "Name of lane area detector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2042 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2122 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2048 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2128 msgid "" "The time-based threshold that describes how much time has to pass until a " "vehicle is recognized as halting)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2048 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2128 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2195 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2054 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2201 msgid "" "The speed-based threshold that describes how slow a vehicle has to be to be " "recognized as halting) in m/s" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2054 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2060 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2140 msgid "" "The minimum distance to the next standing vehicle in order to make this " "vehicle count as a participant to the jam) in m" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2076 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2082 msgid "The id of Multilane E2" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2081 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2087 msgid "The sequence of lane ids in which the detector shall be laid on" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2091 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2097 msgid "The end position on the lane the detector shall be laid on in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2113 msgid "Name of Multilane E2 detector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2157 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2163 msgid "The id of E3" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2162 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2354 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3213 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2168 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3219 msgid "X-Y position of detector in editor (Only used in netedit)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2180 msgid "Name of Entry Exit detector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2189 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2195 msgid "" "The time-based threshold that describes how much time has to pass until a " "vehicle is recognized as halting) in s" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2263 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2269 msgid "The id of Instant Induction Loop (E1Instant)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2278 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2284 msgid "Name of instant induction loop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2309 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2315 msgid "The id of RouteProbe" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2314 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2320 msgid "The id of an edge in the simulation network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2319 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2325 msgid "The frequency in which to report the distribution" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2325 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2331 msgid "Name of route probe" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2330 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2336 msgid "The file for generated output" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2335 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2341 msgid "The time at which to start generating output" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2349 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2355 msgid "The id of Variable Speed Signal" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2366 msgid "List of Variable Speed Sign lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2365 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2371 msgid "Name of Variable Speed Signal" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2370 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2376 msgid "" "Space separated list of vehicle type ids to consider (empty to affect all " "types)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2396 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2402 msgid "Speed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2410 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2466 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2416 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2472 msgid "The id of Calibrator" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2415 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3159 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3179 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2421 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3165 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3185 msgid "The id of edge in the simulation network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2420 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2476 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2426 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2482 msgid "The position of the calibrator on the specified lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2426 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2482 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2432 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2488 msgid "" "The aggregation interval in which to calibrate the flows. Default is step-" "length" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2432 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2438 msgid "Name of Calibrator" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2437 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2493 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2443 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2499 msgid "" "The id of the routeProbe element from which to determine the route " "distribution for generated vehicles" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2442 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2498 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2504 msgid "The output file for writing calibrator information or NULL" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2447 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2503 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2453 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2509 msgid "A threshold value to detect and clear unexpected jamming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2453 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2509 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2459 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2515 msgid "" "space separated list of vehicle type ids to consider (empty to affect all " "types)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2471 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2477 msgid "The id of lane in the simulation network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2488 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2494 msgid "Name of calibrator lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2522 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2528 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3715 msgid "The id of the route the vehicle shall drive along" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2527 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2533 msgid "First calibrator flow departure time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2533 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4962 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2539 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5108 msgid "End of departure interval" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2543 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2549 msgid "The id of the vehicle type to use for this calibrator flow" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2555 msgid "Number of vehicles per hour, equally spaced" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2555 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2561 msgid "Vehicle's speed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2576 msgid "The id of Rerouter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2581 msgid "An edge id or a list of edge ids where vehicles shall be rerouted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2580 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2586 msgid "X,Y position in editor (Only used in netedit)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2586 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2592 msgid "Name of Rerouter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2591 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2597 msgid "The probability for vehicle rerouting (0-1)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2597 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2603 msgid "" "The waiting time threshold (in s) that must be reached to activate rerouting " "(default -1 which disables the threshold)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2603 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2609 msgid "" "The list of vehicle types that shall be affected by this rerouter (empty to " "affect all types)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2608 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2614 msgid "" "Whether the router should be inactive initially (and switched on in the gui)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2630 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2636 msgid "Begin" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2636 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2642 msgid "End" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2656 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2680 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2662 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2686 msgid "allowed vehicles" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2661 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2685 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2667 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2691 msgid "disallowed vehicles" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2674 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2680 msgid "Lane ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2704 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2724 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2750 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2710 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2756 msgid "SUMO Probability" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2718 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2724 msgid "ParkingArea ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2736 msgid "Enable or disable visibility for parking area reroutes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2770 msgid "Edge in which vaporizer is placed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2769 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2775 msgid "Start Time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2775 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2781 msgid "End Time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2781 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2787 msgid "Name of vaporizer" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2802 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2808 msgid "The id of the polygon" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2807 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2813 msgid "The shape of the polygon" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2812 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2818 msgid "The RGBA color with which the polygon shall be displayed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2818 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2824 msgid "An information whether the polygon shall be filled" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2824 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2830 msgid "The default line width for drawing an unfilled polygon" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2830 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2836 msgid "The layer in which the polygon lies" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2842 msgid "A typename for the polygon" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2842 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2848 msgid "Polygon's name" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2847 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2853 msgid "A bitmap to use for rendering this polygon" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2853 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2924 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3014 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3091 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2859 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2930 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3020 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3097 msgid "Enable or disable use image file as a relative path" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2859 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2930 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3020 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3097 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2865 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2936 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3026 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3103 msgid "Angle of rendered image in degree" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2873 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2944 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2879 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2950 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3040 msgid "The id of the POI" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2878 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2884 msgid "The position in view" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2883 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2973 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3050 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2889 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2979 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3056 msgid "The color with which the POI shall be displayed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2889 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2979 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3056 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2895 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2985 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3062 msgid "A typename for the POI" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2895 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2985 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3062 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3146 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2901 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2991 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3152 msgid "Name of POI" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2900 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2990 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2906 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2996 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3073 msgid "The layer of the POI for drawing and selecting" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2906 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2996 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3073 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2912 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3002 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3079 msgid "Width of rendered image in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2912 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3002 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3079 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3008 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3085 msgid "Height of rendered image in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2918 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3008 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3085 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2924 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3014 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3091 msgid "A bitmap to use for rendering this POI" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2949 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2955 msgid "The name of the lane at which the POI is located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2954 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2960 msgid "" "The position on the named lane or in the net in meters at which the POI is " "located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2967 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2973 msgid "The lateral offset on the named lane at which the POI is located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3040 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3046 msgid "The longitude position of the parking vehicle on the view" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3045 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3051 msgid "The latitude position of the parking vehicle on the view" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3119 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3125 msgid "The id of the TAZ" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3124 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3130 msgid "The shape of the TAZ" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3129 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3135 msgid "TAZ center" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3140 msgid "An information whether the TAZ shall be filled" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3140 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3146 msgid "The RGBA color with which the TAZ shall be displayed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3165 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3171 msgid "Depart weight associated to this Edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3185 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3191 msgid "Arrival weight associated to this Edget" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3208 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3214 msgid "Traction substation ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3219 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3225 msgid "Voltage of at connection point for the overhead wire" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3225 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3231 msgid "Current limit of the feeder line" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3239 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3245 msgid "Overhead wire segment ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3244 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3250 msgid "Substation to which the circuit is connected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3249 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3255 msgid "List of consecutive lanes of the circuit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3254 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3260 msgid "Starting position in the specified lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3260 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3266 msgid "Ending position in the specified lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3274 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3280 msgid "Inner lanes, where placing of overhead wire is restricted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3287 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3293 msgid "Overhead wire clamp ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3292 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3298 msgid "" "ID of the overhead wire segment, to the start of which the overhead wire " "clamp is connected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3297 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3303 msgid "ID of the overhead wire segment lane of overheadWireIDStartClamp" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3302 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3308 msgid "" "ID of the overhead wire segment, to the end of which the overhead wire clamp " "is connected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3313 msgid "ID of the overhead wire segment lane of overheadWireIDEndClamp" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3330 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3336 msgid "The id of Route" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3335 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3367 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3341 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3373 msgid "" "The edges the vehicle shall drive along, given as their ids, separated using " "spaces" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3340 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3372 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3346 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3378 msgid "This route's color" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3345 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3377 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3351 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3383 msgid "The number of times that the edges of this route shall be repeated" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3351 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3383 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3389 msgid "" "When defining a repeating route with stops and those stops use the until " "attribute," msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3352 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3384 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3358 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3390 msgid "the times will be shifted forward by 'cycleTime' on each repeat" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3399 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3405 msgid "The id of VehicleType distribution" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3421 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3427 msgid "The id of VehicleType" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3426 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3432 msgid "Vehicle Type Distribution" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3431 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3437 msgid "An abstract vehicle class" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3438 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3444 msgid "This vehicle type's color" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3443 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3449 msgid "The vehicle's netto-length (length) [m]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3454 msgid "Empty space after leader [m]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3453 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3459 msgid "The vehicle's maximum velocity [m/s]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3458 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3464 msgid "" "The vehicle's expected multiplicator for lane speed limits (or a " "distribution specifier)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3463 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3469 msgid "The vehicle's desired maximum velocity (interacts with speedFactor)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3464 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3470 msgid "Applicable when no speed limit applies (bicycles, some motorways) [m/s]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3469 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3475 msgid "An abstract emission class" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3475 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3481 msgid "How this vehicle is rendered" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3481 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3487 msgid "The vehicle's width [m] (only used for drawing)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3487 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3493 msgid "The vehicle's height [m] (only used for drawing)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3493 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3499 msgid "" "Image file for rendering vehicles of this type (should be grayscale to allow " "functional coloring)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3498 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3504 msgid "The model used for changing lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3505 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3511 msgid "The model used for car-following" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3512 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3518 msgid "" "The number of persons (excluding an autonomous driver) the vehicle can " "transport" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3517 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3523 msgid "The number of containers the vehicle can transport" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3522 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3528 msgid "The time required by a person to board the vehicle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3528 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3534 msgid "The time required to load a container onto the vehicle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3534 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3540 msgid "The preferred lateral alignment when using the sublane-model" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3541 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3547 msgid "" "The minimum lateral gap at a speed difference of 50km/h when using the " "sublane-model" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3547 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3553 msgid "The maximum lateral speed when using the sublane-model" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3553 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3559 msgid "" "The interval length for which vehicle performs its decision logic " "(acceleration and lane-changing)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3559 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3565 msgid "" "The probability when being added to a distribution without an explicit " "probability" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3565 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3571 msgid "3D model file for this class" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3576 msgid "Carriage lengths" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3581 msgid "Locomotive lengths" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3580 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3586 msgid "Gap between carriages" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3613 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3619 msgid "The ID of trip" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3618 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3663 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3669 msgid "The id of the vehicle type to use for this trip" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3630 msgid "The ID of the edge the trip starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3629 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3635 msgid "The ID of the edge the trip ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3634 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3640 msgid "List of intermediate edge ids which shall be part of the trip" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3642 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3682 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3648 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3688 msgid "" "The departure time of the (first) trip which is generated using this trip " "definition" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3658 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3664 msgid "The id of trip" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3669 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3675 msgid "The name of the junction the trip starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3674 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3680 msgid "The name of the junction the trip ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3698 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3743 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3704 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3749 msgid "The ID of the vehicle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3703 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3748 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3754 msgid "The id of the vehicle type to use for this vehicle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3714 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3754 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3720 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3760 msgid "The index of the edge within route the vehicle starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3719 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3759 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3725 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3765 msgid "The index of the edge within route the vehicle ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3727 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3767 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3733 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3773 msgid "The time step at which the vehicle shall enter the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3783 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3789 msgid "The ID of the flow" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3788 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3830 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3867 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3909 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3794 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3873 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3915 msgid "The id of the flow type to use for this flow" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3794 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3800 msgid "The ID of the edge the flow starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3799 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3805 msgid "The ID of the edge the flow ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3804 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3810 msgid "List of intermediate edge ids which shall be part of the flow" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3825 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3862 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3831 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3868 msgid "The id of the flow" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3842 msgid "The name of the junction the flow starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3841 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3847 msgid "The name of the junction the flow ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3873 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3879 msgid "The id of the route the flow shall drive along" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3878 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3915 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3884 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3921 msgid "The index of the edge within route the flow starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3883 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3920 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3889 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3926 msgid "The index of the edge within route the flow ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3904 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3910 msgid "The name of the flow" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3957 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3963 msgid "The name of the lane the stop shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3986 msgid "The lateral offset on the named lane at which the vehicle must stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3996 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4842 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4002 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4956 msgid "BusStop associated with this stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4012 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4472 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4018 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4988 +msgid "TrainStop associated with this stop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4510 msgid "ContainerStop associated with this stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4050 msgid "ChargingStation associated with this stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4044 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4066 msgid "ParkingArea associated with this stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4090 msgid "The name of the lane the waypoint shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4091 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4113 msgid "The lateral offset on the named lane at which the vehicle must waypoint" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4129 msgid "BusWaypoint associated with this waypoint" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4123 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4145 +msgid "TrainWaypoint associated with this waypoint" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4161 msgid "ContainerWaypoint associated with this waypoint" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4139 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4177 msgid "ChargingStation associated with this waypoint" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4155 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4193 msgid "ParkingArea associated with this waypoint" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4183 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4221 msgid "The time step at which the person shall enter the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4223 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4261 msgid "The time step at which the container shall enter the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4259 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4289 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4297 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4327 msgid "The ID of the edge the transport starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4264 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4302 msgid "The ID of the edge the transport ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4269 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4337 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4521 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4637 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4744 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4559 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4834 msgid "arrival position on the destination edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4275 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4299 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4337 msgid "list of vehicle alternatives to take for the transport" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4294 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4332 msgid "ID of the destination container stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4321 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4359 msgid "The ID of the edge the tranship starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4326 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4364 msgid "The ID of the edge the tranship ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4331 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4367 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4392 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4405 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4430 msgid "The position at which the tranship shall enter the net" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4343 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4373 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4404 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4381 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4411 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4442 msgid "speed of the container for this tranship in m/s" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4395 msgid "The name of the edge the tranship starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4362 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4400 msgid "Id of the destination container stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4387 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4669 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4425 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4759 msgid "id of the edges to walk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4398 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4674 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4693 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4436 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4783 msgid "Arrival position on the destination edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4427 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4797 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4465 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4911 msgid "The ID of the edge the stop shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4445 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4477 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4815 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4847 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4483 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4515 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4929 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4961 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4993 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5695 msgid "Minimum duration for stopping" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4452 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4484 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4822 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4854 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5556 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4490 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4522 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4936 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4968 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5000 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5702 msgid "The time step at which the route continues" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4458 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4490 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4496 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4528 msgid "Activity displayed for stopped container in GUI and output files " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4511 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4551 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4589 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4623 msgid "The ID of the edge the person trip starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4516 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4554 msgid "The ID of the edge the person trip ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4527 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4561 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4595 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4565 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4599 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4633 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4667 msgid "List of possible vehicle types to take" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4532 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4566 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4600 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4604 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4638 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4672 msgid "" "List of possible traffic modes. Walking is always possible regardless of " "this value" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4537 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4571 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4605 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4609 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4677 msgid "list of vehicle alternatives to take for the person trip" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4556 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4594 msgid "Id of the destination busStop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4585 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4628 +msgid "Id of the destination trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4657 msgid "The name of the junction the person trip starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4590 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4662 msgid "The name of the junction the person trip ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4627 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4651 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4699 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4723 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4741 msgid "The ID of the edge the walk starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4632 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4704 msgid "The ID of the edge the walk ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4656 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4728 msgid "Id of the destination bus stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4688 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4746 +msgid "Id of the destination train stop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4778 msgid "The id of the route to walk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4708 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4798 msgid "The name of the junction the walk starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4713 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4803 msgid "The name of the junction the walk ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4734 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4824 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4854 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4878 msgid "The ID of the edge the ride starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4739 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4829 msgid "The ID of the edge the ride ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4750 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4774 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4840 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4864 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4888 msgid "list of vehicle alternatives to take for the ride" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4769 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4859 msgid "ID of the destination bus stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4828 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4860 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4883 +msgid "ID of the destination train stop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4942 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4974 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5006 msgid "Activity displayed for stopped person in GUI and output files " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4872 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5018 msgid "This vehicle's color" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4878 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5024 msgid "The lane on which thevehicle shall be inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4884 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5030 msgid "The position at which the vehicle shall enter the net" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4890 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5036 msgid "The speed with which the vehicle shall enter the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4896 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5042 msgid "The lane at which the vehicle shall leave the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4902 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5048 msgid "The position at which the vehicle shall leave the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4908 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5054 msgid "The speed with which the vehicle shall leave the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4914 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5060 msgid "" "A string specifying the id of a public transport line which can be used when " "specifying person rides" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4919 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5065 msgid "The number of occupied seats when the vehicle is inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4925 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5071 msgid "The number of occupied container places when the vehicle is inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4931 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5077 msgid "" "The lateral position on the departure lane at which the vehicle shall enter " "the net" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4937 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5083 msgid "" "The lateral position on the arrival lane at which the vehicle shall arrive" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4943 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5089 msgid "Insertion checks" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4956 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5102 msgid "First flow departure time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4968 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4989 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5114 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5135 msgid "probability for emitting a flow each second" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4969 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5115 msgid "(not together with vehsPerHour or period)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4975 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5121 msgid "Number of flows per hour, equally spaced" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4976 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5122 msgid "(not together with period or probability or poisson)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4982 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5128 msgid "Insert equally spaced flows at that period" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4983 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5129 msgid "(not together with vehsPerHour or probability or poisson)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4990 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5136 msgid "(not together with vehsPerHour or period or poisson)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4996 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5142 msgid "" "Insert flow expected vehicles per second with poisson distributed insertion " "rate" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4997 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5143 msgid "(not together with period or vehsPerHour or probability)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5156 msgid "The acceleration ability of vehicles of this type [m/s^2]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5016 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5162 msgid "The deceleration ability of vehicles of this type [m/s^2]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5022 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5168 msgid "" "The apparent deceleration of the vehicle as used by the standard model [m/" "s^2]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5174 msgid "The maximal physically possible deceleration for the vehicle [m/s^2]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5034 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5041 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5180 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5187 msgid "Car-following model parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5047 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5193 msgid "SKRAUSSX parameter 1" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5052 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5198 msgid "SKRAUSSX parameter 2" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5057 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5203 msgid "SKRAUSSX parameter 3" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5062 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5208 msgid "SKRAUSSX parameter 4" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5213 msgid "SKRAUSSX parameter 5" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5072 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5218 msgid "EIDM Look ahead / preview parameter [s]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5078 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5224 msgid "EIDM AP Reaction Time parameter [s]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5084 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5230 msgid "EIDM Wiener Process parameter for the Driving Error [s]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5090 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5236 msgid "EIDM Wiener Process parameter for the Estimation Error [s]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5096 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5242 msgid "EIDM Coolness parameter of the Enhanced IDM [-]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5103 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5249 msgid "EIDM leader speed estimation error parameter [-]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5109 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5255 msgid "EIDM gap estimation error parameter [-]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5115 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5261 msgid "EIDM driving error parameter [-]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5121 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5267 msgid "EIDM maximal jerk parameter [m/s^3]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5273 msgid "" "EIDM maximal negative acceleration between two Action Points (threshold) [m/" "s^2]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5133 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5279 msgid "" "EIDM Time parameter until vehicle reaches amax after startup/driveoff [s]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5139 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5285 msgid "EIDM Flatness parameter of startup/driveoff curve [-]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5145 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5291 msgid "EIDM Shift parameter of startup/driveoff curve [-]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5151 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5297 msgid "" "EIDM parameter if model shall include vehicle dynamics into the acceleration " "calculation [0/1]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5157 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5303 msgid "" "EIDM parameter how many vehicles are taken into the preview calculation of " "the driver (at least always 1!) [-]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5163 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5169 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5309 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5315 msgid "Peter Wagner 2009 parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5175 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5181 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5321 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5327 msgid "IDMM parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5187 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5193 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5199 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5205 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5211 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5217 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5223 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5229 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5235 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5333 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5339 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5345 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5351 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5363 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5381 msgid "W99 parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5241 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5246 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5387 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5392 msgid "Wiedemann parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5251 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5397 msgid "MinGap factor parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5256 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5402 msgid "K parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5261 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5407 msgid "Kerner Phi parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5266 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5412 msgid "IDM Delta parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5271 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5417 msgid "IDM Stepping parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5276 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5422 msgid "Train Types" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5289 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5435 msgid "" "Minimum distance to pedestrians that are walking towards the conflict point " "with the ego vehicle." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5295 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5441 msgid "" "The accumulated waiting time after which a vehicle will drive onto an " "intersection even though this might cause jamming." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5301 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5447 msgid "" "This value causes vehicles to violate a yellow light if the duration of the " "yellow phase is lower than the given threshold." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5453 msgid "" "This value causes vehicles to violate a red light if the duration of the red " "phase is lower than the given threshold." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5459 msgid "" "This value causes vehicles affected by jmDriveAfterRedTime to slow down when " "violating a red light." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5319 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5465 msgid "" "This value causes vehicles to ignore foe vehicles that have right-of-way " "with the given probability." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5325 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5471 msgid "This value is used in conjunction with jmIgnoreFoeProb." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5326 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5472 msgid "" "Only vehicles with a speed below or equal to the given value may be ignored." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5332 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5478 msgid "" "This value configures driving imperfection (dawdling) while passing a minor " "link." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5338 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5484 msgid "" "This value defines the minimum time gap when passing ahead of a prioritized " "vehicle. " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5344 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5490 msgid "Willingess of drivers to impede vehicles with higher priority" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5503 msgid "" "The eagerness for performing strategic lane changing. Higher values result " "in earlier lane-changing." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5363 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5509 msgid "" "The willingness for performing cooperative lane changing. Lower values " "result in reduced cooperation." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5515 msgid "" "The eagerness for performing lane changing to gain speed. Higher values " "result in more lane-changing." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5521 msgid "" "The eagerness for following the obligation to keep right. Higher values " "result in earlier lane-changing." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5381 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5527 msgid "" "The eagerness for using the configured lateral alignment within the lane." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5382 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5528 msgid "" "Higher values result in increased willingness to sacrifice speed for " "alignment." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5388 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5534 msgid "" "The eagerness for overtaking through the opposite-direction lane. Higher " "values result in more lane-changing." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5394 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5540 msgid "Willingness to encroach laterally on other drivers." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5400 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5546 msgid "" "Minimum lateral gap when encroaching laterally on other drives (alternative " "way to define lcPushy)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5406 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5552 msgid "Willingness to accept lower front and rear gaps on the target lane." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5412 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5558 msgid "Dynamic factor for modifying lcAssertive and lcPushy." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5418 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5564 msgid "" "Time to reach maximum impatience (of 1). Impatience grows whenever a lane-" "change manoeuvre is blocked." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5424 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5570 msgid "Maximum lateral acceleration per second." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5430 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5576 msgid "" "Factor for configuring the strategic lookahead distance when a change to the " "left is necessary (relative to right lookahead)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5436 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5582 msgid "" "Factor for configuring the threshold asymmetry when changing to the left or " "to the right for speed gain." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5442 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5588 msgid "Upper bound on lateral speed when standing." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5594 msgid "" "Upper bound on lateral speed while moving computed as lcMaxSpeedLatStanding " "+ lcMaxSpeedLatFactor * getSpeed()" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5454 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5600 msgid "" "Distance to an upcoming turn on the vehicles route, below which the alignment" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5455 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5601 msgid "should be dynamically adapted to match the turn direction." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5461 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5607 msgid "The probability for violating rules gainst overtaking on the right." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5467 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5613 msgid "Time threshold for the willingness to change right." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5473 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5619 msgid "" "Speed difference factor for the eagerness of overtaking a neighbor vehicle " "before changing lanes (threshold = factor*speedlimit)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5495 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5641 msgid "The name of the person" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5500 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5646 msgid "The id of the person type to use for this person" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5506 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5652 msgid "This person's color" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5512 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5658 msgid "The position at which the person shall enter the net" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5525 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5671 msgid "The name of the container" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5530 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5676 msgid "The id of the container type to use for this container" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5536 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5682 msgid "This container's color" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5562 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5708 msgid "" "If set to a non-negative time value, then the stop duration can be extended " "at most by the extension value in seconds" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5568 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5714 msgid "Whether a person or container or bth may end the stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5721 msgid "List of elements that must board the vehicle before it may continue" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5580 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5726 msgid "List of elements that can board the vehicle before it may continue" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5585 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5731 msgid "Whether the vehicle stops on the road or beside" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5592 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5738 msgid "Activity displayed for stopped person in GUI and output files" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5597 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5743 msgid "" "Parameter to be applied to the vehicle to track the trip id within a " "cyclical public transport route" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5602 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5748 msgid "" "New line attribute to be set on the vehicle when reaching this stop (for " "cyclical public transport route)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5608 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5754 msgid "Speed to be kept while driving between startPos and endPos" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5614 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5760 msgid "" "Whether the stop may be skipped if no passengers wants to embark or disembark" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5621 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5767 msgid "" "transfer time if there shall be a jump from this stop to the next route edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5789 msgid "Data set ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5659 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5805 msgid "Interval ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5665 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5811 msgid "Data interval begin time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5671 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5817 msgid "Data interval end time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5687 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5833 msgid "edge ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5701 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5847 msgid "The ID of the edge the edgeRel starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5706 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5852 msgid "The ID of the edge the edgeRel ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5720 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5866 msgid "The name of the TAZ the TAZRel starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5725 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5871 msgid "The name of the TAZ the TAZRel ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5760 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5906 msgid "The id of this set of measurements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5765 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5911 msgid "The path to the output file. The path may be relative" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5775 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5921 msgid "" "The time to start writing. If not given, the simulation's begin is used." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5780 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5926 msgid "The time to end writing. If not given the simulation's end is used." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5785 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5931 msgid "" "If set to true, edges/lanes which were not use by a vehicle during this " "period will not be written" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5792 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5938 msgid "If set, junction internal edges/lanes will be written as well" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5798 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5944 msgid "" "The maximum travel time in seconds to write if only very small movements " "occur" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5804 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5950 msgid "" "Consider an edge/lane unused if it has at most this many sampled seconds" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5810 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5956 msgid "The maximum speed to consider a vehicle halting;" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5816 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5962 msgid "space separated list of vehicle type ids to consider" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5821 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5967 msgid "" "whether aggregation should be performed over all vehicles that entered the " "edge/lane in the aggregation interval" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5827 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5973 msgid "" "Whether pedestrians shall be recorded instead of vehicles. Allowed value is " "walk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5832 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5978 msgid "List of attribute names that shall be written" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5837 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5983 msgid "Restrict output to the given list of edge ids" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5842 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5988 msgid "Restrict output to the given the list of edges given in file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5847 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5993 msgid "" "Whether the traffic statistic of all edges shall be aggregated into a single " "value" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEHierarchicalElement.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\GNEHierarchicalElement.cpp:421 msgid "Some child meanData were lost during sorting" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:96 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:96 msgid "" "element must be at least networkElement, additional, TAZ, demandElement, " "dataElement or meanData" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:100 msgid "" "element can be only a networkElement, additional, demandElement, dataElement " "or meanData at the same time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:104 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:104 msgid "element can be only a shape, TAZ or wire element at the same time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:108 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:108 msgid "" "If attributes mask the start and end position, both attributes have to be " "defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:134 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:134 msgid "Attributes aren't combinables" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:136 msgid "allow need a disallow attribute in the same tag" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:138 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:138 msgid "disallow need an allow attribute in the same tag" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:152 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:152 #, c-format msgid "attribute '%' doesn't have a default value" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:158 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:158 #, c-format msgid "Attribute '%' not defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:165 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:165 #, c-format msgid "Maximum number of attributes for tag % exceeded" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:170 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:170 #, c-format msgid "Attribute '%' already inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:207 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:207 #, c-format msgid "Attribute '%' doesn't exist" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAccess.cpp:173 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEEntryExitDetector.cpp:97 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEInductionLoopDetector.cpp:115 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEInstantInductionLoopDetector.cpp:111 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:174 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:190 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:197 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:136 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:143 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:201 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:132 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:137 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAccess.cpp:173 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEEntryExitDetector.cpp:97 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEInductionLoopDetector.cpp:115 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEInstantInductionLoopDetector.cpp:111 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:174 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:190 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:197 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:143 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:201 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:132 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:137 msgid " > lanes's length" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:148 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:149 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:146 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:128 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:129 -msgid "Copy " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:148 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:146 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:128 -msgid " name to clipboard" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZSourceSink.cpp:146 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:128 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:129 +#, c-format +msgid "Copy % name to clipboard" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:149 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:129 -msgid " typed name to clipboard" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:148 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZSourceSink.cpp:147 +msgid "Copy % typed name to clipboard" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:156 msgid "Open " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:156 msgid " Dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:164 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:174 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:164 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:174 msgid "Cursor position over additional shape: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:168 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:168 msgid "Cursor position over lane: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:178 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:178 msgid "Mouse position over edge: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:181 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:139 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:181 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:139 msgid "Cursor position in view: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:398 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:398 msgid "Invalid number of edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:104 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:104 msgid "add bus stop '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:148 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:148 msgid "add train stop '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:186 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:186 msgid "" "Could not build access in netedit; busStop parent already owns an access in " "the edge '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:188 -msgid "Could not build access in netedit; The lane '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:188 -msgid "' doesn't support pedestrians" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:188 +#, c-format +msgid "" +"Could not build access in netedit; The lane '%' doesn't support pedestrians" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:194 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:194 msgid "add access in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:235 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:235 msgid "add container stop '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:279 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:279 msgid "add charging station '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:322 -msgid "Could not build parking area with ID '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:322 -msgid "' in netedit; Invalid departPos over lane." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:323 +#, c-format +msgid "" +"Could not build parking area with ID '%' in netedit; Invalid departPos over " +"lane." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:330 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:331 msgid "add parking area '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:352 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:353 msgid "" "Could not build parking space in netedit; attribute width cannot be parse to " "float." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:354 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:355 msgid "" "Could not build parking space in netedit; attribute length cannot be parse " "to float." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:356 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:357 msgid "" "Could not build parking space in netedit; attribute angle cannot be parse to " "float." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:377 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:378 msgid "add parking space in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:422 msgid "add induction loop '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:461 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:519 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:528 -msgid "Could not build lane area detector with ID '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:461 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:528 -msgid "' in netedit; invalid traffic light ID." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:462 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:529 +#, c-format +msgid "" +"Could not build lane area detector with ID '%' in netedit; invalid traffic " +"light ID." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:486 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:547 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:487 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:548 msgid "add lane area detector '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:519 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1543 -msgid "' in netedit; Lanes aren't consecutives." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:520 +#, c-format +msgid "" +"Could not build lane area detector with ID '%' in netedit; Lanes aren't " +"consecutives." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:592 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:593 msgid "add entry-exit detector '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:627 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:628 msgid "add entry detector in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:662 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:663 msgid "add exit detector in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:699 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:700 msgid "add instant induction loop '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:749 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:750 msgid "add lane calibrator '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:803 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:804 msgid "add calibrator '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:844 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:845 msgid "add calibrator flow in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:900 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:901 msgid "add rerouter '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:939 -msgid "Could not build interval with ID '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:939 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1244 -msgid "' in netedit; begin is greather than end." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:940 +#, c-format +msgid "" +"Could not build interval with ID '%' in netedit; begin is greather than end." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:947 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:948 msgid "add rerouter interval in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "Could not build interval with begin '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "' in '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "' due overlapping." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:957 +#, c-format +msgid "" +"Could not build interval with begin '%' and end '%' in '%' due overlapping." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:978 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:979 msgid "add closing lane reroute in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1006 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1007 msgid "add closing reroute in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1033 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1034 msgid "add dest prob reroute in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1061 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1062 msgid "add parking area reroute in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1089 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1090 msgid "add route prob reroute in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1126 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1127 msgid "add route probe '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1172 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1173 msgid "add Variable Speed Sign '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1213 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1214 msgid "add VSS Step in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1244 -msgid "Could not build Vaporizer with ID '" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1245 +#, c-format +msgid "" +"Could not build Vaporizer with ID '%' in netedit; begin is greather than end." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1250 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1251 msgid "add vaporizer in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1305 -msgid "Could not build TAZ with ID '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1305 -msgid "' in netedit; Invalid Shape." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1306 +#, c-format +msgid "Could not build TAZ with ID '%' in netedit; Invalid Shape." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1316 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1317 msgid "add TAZ '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1377 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1471 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1378 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1472 msgid "add TAZ Sink in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1400 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1449 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1401 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1450 msgid "add TAZ Source in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1411 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1412 msgid "update TAZ Source in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1482 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1483 msgid "update TAZ Sink in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1511 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1512 msgid "add taction substation '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1543 -msgid "Could not build overhead wire with ID '" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1544 +#, c-format +msgid "" +"Could not build overhead wire with ID '%' in netedit; Lanes aren't " +"consecutives." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1555 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1556 msgid "add overhead wire '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1604 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1605 msgid "add polygon '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1637 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1680 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1719 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1638 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1681 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1720 msgid "add POI '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1711 -msgid "Could not build POI with ID '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1711 -msgid "' in netedit; Network requires a geo projection." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1925 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:116 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -msgid "Could not build " +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1712 +#, c-format +msgid "Could not build POI with ID '%' in netedit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -msgid " with ID '" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1712 +msgid "Network requires a geo projection." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -msgid "' in netedit; ID contains invalid characters." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1908 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1914 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1920 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1932 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1938 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1944 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1950 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:245 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:257 +msgid "Could not build % with ID '%' in netedit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -msgid "' in netedit; Invalid position over lane." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1908 +msgid "ID contains invalid characters." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -msgid "' in netedit; declared twice." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1914 +msgid "Invalid position over lane." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1925 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -msgid " doesn't exist." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1920 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:245 +msgid "Declared twice." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -msgid "' in netedit; attribute " +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1926 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2005 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2023 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:251 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:116 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:132 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2198 +#, c-format +msgid "Could not build % in netedit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -msgid " cannot be negative." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1926 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2005 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2023 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:251 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:257 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2198 +#, c-format +msgid "% doesn't exist." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -msgid "' in netedit; list of VTypes isn't valid." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1932 +#, c-format +msgid "Attribute % cannot be negative." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -msgid "' in netedit; filename is invalid." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1938 +msgid "List of VTypes isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -msgid "' in netedit; list of lanes isn't valid." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1944 +msgid "Filename is invalid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -msgid " in netedit; " +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1950 +msgid "List of lanes isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:194 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:194 msgid "Both edges and lanes aren't defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:238 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:480 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:238 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:480 msgid "Both myEdge and myLane aren't defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibratorFlow.cpp:94 -msgid "calibratorFlow of calibrator '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibratorFlow.cpp:95 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibratorFlow.cpp:94 +#, c-format msgid "" -"' cannot be written. Either type or vehsPerHour or speed must be enabled" +"calibratorFlow of calibrator '%' cannot be written. Either type or " +"vehsPerHour or speed must be enabled" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:179 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:125 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:179 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:125 msgid "lanes aren't consecutives" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:183 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:129 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:183 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:129 msgid "lanes aren't connected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:202 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:141 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:202 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:141 msgid " and " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:115 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:115 msgid "' needs at least one entry and one exit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:317 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:317 msgid "An entry-exit detector needs at least one entry detector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:320 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:320 msgid "An entry-exit detector needs at least one exit detector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:319 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:319 msgid "Release from lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:323 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:323 msgid "Attach to nearest lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:214 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:214 msgid "Simplify Shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:214 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:214 msgid "Replace current shape with a rectangle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:220 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:220 msgid "Open shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:220 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:220 msgid "Open polygon's shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:222 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:65 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:222 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:66 msgid "Close shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:222 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:222 msgid "Close polygon's shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:224 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:224 msgid "Select elements within polygon" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:224 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:224 msgid "Select elements within polygon boundary" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:234 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:234 msgid "Remove geometry point" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:234 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:234 msgid "Remove geometry point under mouse" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:235 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:235 msgid "Set first geometry point" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:447 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:447 msgid "Number of remaining points insufficient" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:474 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:474 msgid "Polygon already opened" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:495 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:495 msgid "Polygon already closed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:506 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:506 msgid "Selected point must be different of the first point" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:571 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:571 msgid "Polygon already simplified" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZ.cpp:282 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZ.cpp:282 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:715 msgid "Set custom Geometry Point" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:62 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:62 msgid "add data set" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:87 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:87 msgid "add data set and data interval" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:102 msgid "add data interval" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:128 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:165 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:130 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:167 msgid "add edge rel" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:205 -msgid "There is already a TAZ rel defined between '" +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:207 +msgid "There is already a TAZ rel defined between '%' and '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:207 -msgid "There is already a TAZ rel defined in '" +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:209 +msgid "There is already a TAZ rel defined in '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:211 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:222 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:213 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:224 msgid "add TAZ rel" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1511 -msgid "' doesn't exist." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataInterval.cpp:173 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataInterval.cpp:173 msgid "GenericData was already inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataInterval.cpp:199 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataInterval.cpp:199 msgid "GenericData wasn't previously inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:214 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:214 msgid "DataInterval was already inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:231 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:255 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:231 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:255 msgid "DataInterval wasn't previously inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:316 -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdgeType.cpp:155 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:136 +msgid "Open % Dialog" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:316 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdgeType.cpp:155 msgid "Invalid index" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:64 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:64 msgid "Could not build meanDataEdge; " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:64 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:93 -msgid " already exists" +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:64 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:93 +#, c-format +msgid "% already exists" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:70 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:70 msgid "add meanDataEdge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:93 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:93 msgid "Could not build meanDataLane; " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:99 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:99 msgid "add meanDataLane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:116 -msgid " in netedit; edge doesn't exist." +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:116 +msgid "Edge doesn't exist." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -msgid " in netedit; attribute '" +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:132 +#, c-format +msgid "Attribute '%' doesn't exist." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEPersonTrip.cpp:306 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEPersonTrip.cpp:317 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEPersonTrip.cpp:312 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEPersonTrip.cpp:323 msgid "This personTrip use junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:71 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:100 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1499 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1523 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1535 -msgid "There is another " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:71 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:100 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1499 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1523 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1535 -msgid " with the same ID='" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:76 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:126 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:161 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:206 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:258 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:299 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:345 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:389 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:436 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:480 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:516 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:547 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:593 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:609 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:625 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:677 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:694 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:709 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:725 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:741 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:778 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:794 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:827 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:858 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:893 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:909 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:949 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:966 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:982 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1107 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1122 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1142 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:71 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1608 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1632 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1644 +msgid "There is another % with the same ID='%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:76 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:126 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:152 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:197 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:250 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:291 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:337 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:381 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:428 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:472 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:508 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:539 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:591 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:607 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:623 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:639 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:697 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:714 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:729 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:745 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:761 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:777 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:820 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:836 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:852 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:885 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:916 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:951 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:967 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1007 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1024 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1040 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1189 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1209 msgid "add " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:102 -msgid " need at least one " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:108 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:118 -msgid " with id '" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:102 +msgid "% needs at least one %" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:108 -msgid "' doesn't exist in " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:108 +msgid "% with id '%' doesn't exist in % '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:115 -msgid "Invalid definition for " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:115 +msgid "Invalid definition for % in % '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:115 -msgid " in " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:118 +msgid "% with id '%' cannot be created in % '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:118 -msgid "' cannot be created in " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:192 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:244 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:285 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:333 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:377 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:424 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:468 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:508 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:539 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:819 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:850 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:183 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:236 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:277 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:325 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:369 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:416 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:460 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:500 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:531 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:877 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:908 msgid "VType distributions currently unsupported in netedit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:194 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:246 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:335 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:379 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:426 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:470 -msgid "Invalid vehicle type '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:194 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:246 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:290 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:335 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:379 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:426 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:470 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:510 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:541 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:821 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:852 -msgid "' used in " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:197 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:199 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:251 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:253 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:338 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:340 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:382 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:384 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:429 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:431 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:473 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:475 -msgid " used in " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:238 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:279 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:327 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:371 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:418 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:462 +msgid "Invalid vehicle type '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:188 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:243 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:284 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:330 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:374 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:465 +msgid "Invalid % used in % '%'. % is greater than number of lanes" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:190 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:245 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:286 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:332 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:376 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:423 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:467 +msgid "Invalid % used in % '%'. % is greater than vType %" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:231 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:223 msgid "netedit doesn't support route distributions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:290 -msgid "Invalid route '" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:241 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:282 +msgid "Invalid route '%' used in % '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:251 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:253 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:338 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:340 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:382 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:384 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:429 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:431 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:473 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:475 -msgid "Invalid " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:502 +msgid "Invalid person type '%' used in % '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -msgid " is greater than number of lanes" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:533 +msgid "Invalid personFlow type '%' used in % '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -msgid " is greater than vType" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:879 +msgid "Invalid container type '%' used in % '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:510 -msgid "Invalid person type '" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:910 +msgid "Invalid containerFlow type '%' used in % '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:541 -msgid "Invalid personFlow type '" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1102 +msgid "Containers don't support stops at busStops or trainStops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1039 -msgid "Containers don't support stops at busStops" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1047 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1110 msgid "Persons don't support stops at containerStops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1055 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1118 msgid "Persons don't support stops at chargingStations" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1058 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1121 msgid "Containers don't support stops at chargingStations" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1066 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1129 msgid "Persons don't support stops at parkingAreas" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1069 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1132 msgid "Containers don't support stops at parkingAreas" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1079 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1142 msgid "vehicles don't support stops at edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1092 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1155 msgid "A stop must be defined either over a stoppingPlace, a edge or a lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1094 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1157 msgid "A stop requires only a stoppingPlace, edge or lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1214 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1282 msgid "A person trip from edge to edge needs two edges edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1224 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1292 msgid "A person trip from edge to busStop needs one edge and one busStop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1234 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1302 +msgid "A person trip from edge to trainStop needs one edge and one trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1312 msgid "A person trip from junction to junction needs two junctions junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1245 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1404 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1425 -msgid "A ride from busStop to edge needs a busStop and an edge" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1323 +msgid "A walk to edge needs a busStop and an edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1255 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1414 -msgid "A transport from busStop to busStop needs two busStops" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1333 +msgid "A walk to busStop needs two busStops" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1343 +msgid "A walk to trainStop needs two trainStops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1265 -msgid "A transport with edges attribute needs a list of edges" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1353 +msgid "A walk with edges needs a list of edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1275 -msgid "A route transport needs a route" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1363 +msgid "A route walk needs a route" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1285 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1373 msgid "A ride from busStop to junction needs a busStop and an junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1296 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1384 msgid "A ride from edge to edge needs two edges edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1306 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1394 msgid "A ride from edge to busStop needs one edge and one busStop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1320 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1459 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1404 +msgid "A ride from edge to trainStop needs one edge and one trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1418 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1568 msgid "A stop has to be placed over an edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1331 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1470 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1429 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1579 msgid "A stop has to be placed over a busStop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1435 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1440 +msgid "A stop has to be placed over a trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1513 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1534 +msgid "A ride from busStop to edge needs a busStop and an edge" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1523 +msgid "A transport from busStop to busStop needs two busStops" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1544 msgid "A tranship from busStop to busStop needs two busStops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1445 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1554 msgid "A tranship with edges attribute needs a list of edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1511 -msgid "Via edge '" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1620 +#, c-format +msgid "Via edge '%' doesn't exist." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEStop.cpp:443 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEStop.cpp:446 msgid "Invalid Stop parent" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEStop.cpp:458 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEStop.cpp:461 msgid "Invalid parent" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEVehicle.cpp:645 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEVehicle.cpp:645 msgid "Invalid vehicle tag" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEWalk.cpp:331 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEWalk.cpp:346 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEWalk.cpp:336 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEWalk.cpp:351 msgid "This walk use junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEConnection.cpp:679 +#: D:\Repos\sumo/src\netedit\elements\network\GNEConnection.cpp:679 msgid "Could not set attribute '%' (tls is broken)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdge.cpp:2180 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdge.cpp:2180 msgid "Could not compute smooth shape for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdge.cpp:2198 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdge.cpp:2198 msgid "Could not compute smooth elevation for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEInternalLane.cpp:241 +#: D:\Repos\sumo/src\netedit\elements\network\GNEInternalLane.cpp:241 msgid "invalid link state='%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEJunction.cpp:335 +#: D:\Repos\sumo/src\netedit\elements\network\GNEJunction.cpp:335 msgid "Reset junction shapes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:470 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:471 msgid "Unexpected LinkState '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:810 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:672 +msgid "Copy parent edge name to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:681 +msgid "Remove Lane From Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:683 +msgid "Add Lane To Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:687 +msgid "Remove Edge From Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:689 +msgid "Add Edge To Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:706 +msgid "Reset edge end points" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:733 +msgid "Select state for all links from this edge:" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:743 +msgid "Additional options available in 'Inspect Mode'" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:758 +msgid "Shape pos: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:759 +msgid "Length pos: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:761 +msgid "Distance: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:763 +msgid "Height: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:764 +msgid "Angle: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:811 msgid "Lane Parametric Length cannot be never 0" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:972 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:973 msgid "Opposite lane '%' does not connect the same nodes as edge '%'!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:49 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:738 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1846 +#, c-format +msgid "Edge operations (% selected)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1848 +msgid "Edge operations" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1851 +msgid "Split edge here" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1852 +msgid "Split edge in both directions here (no simmetric opposite edge)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1857 +msgid "Split edge in both directions here (no opposite edge)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1864 +msgid "Split edge in both directions here" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1868 +msgid "Set geometry endpoint here (shift-click)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1872 +msgid "Restore both geometry endpoints" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1874 +msgid "Restore geometry endpoints of all selected edges" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1877 +msgid "Restore geometry endpoint (shift-click)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1879 +msgid "Reverse %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1880 +msgid "Add reverse direction for %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1884 +msgid "Add reverse disconnected direction for %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1885 +msgid "Reset lengths for %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1886 +msgid "Straighten %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1887 +msgid "Smooth %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1888 +msgid "Straighten elevation of %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1889 +msgid "Smooth elevation of %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1936 +#, c-format +msgid "Lane operations (% selected)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1938 +msgid "Lane operations" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1940 +msgid "Duplicate lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1941 +msgid "Set custom lane shape" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1942 +msgid "Reset custom shape" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1946 +msgid "Reset opposite lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1958 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1969 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1978 +msgid "Sidewalk" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1959 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1971 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1979 +msgid "Bike lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1960 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1973 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1980 +msgid "Bus lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1963 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1975 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1981 +msgid "Green verge" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1965 +msgid "Green verge (front)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1966 +msgid "Green verge (back)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1983 +msgid "Add restricted %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1984 +msgid "Remove restricted %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1985 +msgid "Transform to restricted %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2026 +#, c-format +msgid "Template operations (% selected)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2028 +msgid "Template operations" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2031 +msgid "Use edge as template" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2032 +msgid "Apply template" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2047 +msgid "Select reachable" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2052 +msgid "Select reachable (compute junctions)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:746 msgid "Internal attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:175 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:177 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:176 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:178 msgid "Invalid input parameter of " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:60 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:61 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:63 msgid "name" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:64 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:65 msgid "button" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:70 msgid "Disabled" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:476 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:477 msgid "Unsupported additional ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:55 msgid "Consecutive lane selector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:59 -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:411 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:59 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:411 msgid "No lanes selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:61 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:61 msgid "Finish path creation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:64 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:64 msgid "Abort path creation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:67 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:67 msgid "Remove last lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:70 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:70 msgid "Show candidate lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:73 msgid "-BACKSPACE: undo click" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:73 msgid "-ESC: Abort path creation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:134 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:134 msgid "Invalid lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:151 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:151 msgid "Lane path needs at least two lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:171 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:393 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:469 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:482 msgid "route creation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:406 msgid "- Selected lanes: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:407 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:943 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:407 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:959 msgid "- Length: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:48 msgid "Parent " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:65 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:65 msgid "Parent element" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:108 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:108 msgid "select item..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:110 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:110 msgid "-Select an item in the list or" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:110 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:110 msgid "click over an element in view" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:133 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:133 msgid "select sub-item..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:136 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:136 msgid "-Clicked over multiple" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:137 msgid "elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:138 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:138 msgid " - Select an item in the" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:139 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:139 msgid " list or click over an" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:140 msgid " element in view" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:333 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:337 msgid "Selected item '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:333 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:337 msgid "' in DemandElementSelector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:346 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:350 msgid "Selected invalid item in DemandElementSelector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:49 msgid "Drawing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:52 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:53 msgid "Start drawing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:53 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:54 msgid "Stop drawing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:54 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:55 msgid "Abort drawing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:58 -msgid "- 'Start drawing' or ENTER" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:59 -msgid " to create shape." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:60 -msgid "- 'Stop drawing' or ENTER to" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:61 -msgid " finish shape creation." +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:59 +msgid "'Start drawing' or ENTER to create a shape." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:62 -msgid "- 'Abort drawing' or ESC to" +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:60 +msgid "'Stop drawing' or ENTER to finish shape creation." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:63 -msgid " abort shape creation." +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:61 +msgid "'Abort drawing' or ESC to abort shape creation." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:64 -msgid "- 'Shift + Click' to remove" +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:62 +msgid "'Shift + Click' to remove the last inserted point." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:65 -msgid " last inserted point." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:134 msgid "A new point cannot be added if drawing wasn't started" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:34 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:34 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:614 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1402 -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:101 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:339 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:619 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:535 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:85 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:34 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:34 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:614 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1406 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:101 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:323 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:621 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:536 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:85 msgid "Information" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:38 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:38 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:38 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:38 msgid " edge candidate" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:42 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:42 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:42 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:42 msgid " last edge selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:45 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:45 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:45 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:45 msgid " edge selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:48 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:51 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:51 msgid " edge disconnected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:62 msgid "Hierarchy" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:211 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:211 #, c-format msgid "Default Vehicle Type '%' cannot be removed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:316 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:84 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:316 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:276 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:84 msgid "Center" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:323 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:1252 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:323 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:1089 msgid "Inspect" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:324 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:259 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:96 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:440 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1356 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:324 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:98 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:442 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1384 msgid "Delete" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:397 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:416 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:477 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:397 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:477 msgid " origin" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:398 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:417 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:478 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:398 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:417 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:478 msgid " destination" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:506 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:632 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:706 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:506 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:632 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:706 msgid " additionals..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:520 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:583 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:646 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:720 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:520 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:583 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:646 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:720 msgid " demand elements..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:534 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:597 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:660 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:738 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:597 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:660 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:738 msgid " edges..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:548 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:611 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:674 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:756 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:548 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:611 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:674 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:756 msgid " lanes..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:569 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:569 msgid " TAZElements..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:815 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:815 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:911 msgid "Data elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:841 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:841 msgid "Incomings" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:851 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:851 msgid "Outgoing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:890 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:65 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1325 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:890 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:65 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1322 msgid "Edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:890 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:890 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:71 msgid "Lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:51 msgid "Flow attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:170 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:469 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:596 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:470 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:597 msgid "rate" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:343 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:344 msgid "change multiple flow attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:369 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:370 msgid "enable multiple flow attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:385 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:386 msgid "disable multiple flow attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:540 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:568 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:541 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:569 msgid "different: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:185 msgid "Parameters of " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:195 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:195 msgid "Attribute" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:196 msgid "Description" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:197 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:197 msgid "Definition" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 msgid "Opening HelpAttributes dialog for tag '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 msgid "' showing " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 msgid " attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:247 msgid "Closing HelpAttributes dialog for tag '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:319 -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:417 -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:494 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:319 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:418 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:495 msgid "Scale: Min -> Max" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:159 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:160 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:168 msgid "Inspect vehicle " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:171 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:172 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:180 msgid "Open dialog for editing color" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:176 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:177 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:248 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:249 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:184 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:256 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:257 msgid "Open dialog for editing allowed vClasses" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:472 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:491 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:607 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:480 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:499 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:615 msgid "change multiple attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:610 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:618 msgid "change " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:610 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:618 msgid " attribute" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid "Value '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid "' for attribute " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid " of " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid " isn't valid" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:681 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:689 msgid "enable attribute '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:689 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:697 msgid "disable attribute '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:963 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:971 msgid "Extended attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:966 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:974 msgid "Open attributes editor" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:997 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1005 msgid "Attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:1001 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1009 msgid "Edit attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:49 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:97 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1155 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1164 +msgid "Parameters" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:93 msgid "Netedit attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:55 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:195 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:196 msgid "reference left" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:56 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:201 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:57 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:201 msgid "reference right" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:57 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:206 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:206 msgid "reference center" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:70 msgid "Center view" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:138 msgid "Current selected reference point isn't valid" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:231 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:231 msgid "- Reference point: Mark the initial position of the additional element." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:232 msgid "" " Example: If you want to create a busStop with a length of 30 in the point " "100 of the lane:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:233 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:233 msgid " - Reference Left will create it with startPos = 70 and endPos = 100." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:234 msgid "" " - Reference Right will create it with startPos = 100 and endPos = 130." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:235 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:235 msgid "" " - Reference Center will create it with startPos = 85 and endPos = 115." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:236 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:236 msgid "" "- Block movement: if is enabled, the created additional element will be " "blocked. i.e. cannot be moved with" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:237 msgid " the mouse. This option can be modified inspecting element." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:238 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:238 msgid "- Center view: if is enabled, view will be center over created element." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:49 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:49 msgid "NetworkElements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:56 msgid "Use selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:63 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:63 msgid "-Click over an edge to select" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:69 msgid "-Click over an lane to select" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:74 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:183 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:183 msgid "Invalid NetworkElementType" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:52 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:52 msgid "Overlapped elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:62 msgid "Overlapped " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:275 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:275 msgid "GEO attributes Help" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:278 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:278 msgid " - Click in the same position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:279 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:279 msgid " for inspect next element" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:280 msgid " - Shift + Click in the same" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:281 msgid " position for inspect" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:282 msgid " previous element" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:145 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:145 msgid "Route creator" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:152 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:948 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1156 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:964 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1153 msgid "No edges selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:154 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:154 msgid "Use last route" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:157 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:157 msgid "Finish route creation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:160 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:160 msgid "Abort route creation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:163 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:163 msgid "Remove last edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:166 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:166 msgid "Show candidate edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:374 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:387 msgid "Double junctions aren't allowed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:382 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:395 msgid "Only two junctions are allowed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:421 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:434 msgid "Double edges aren't allowed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:431 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:444 msgid "Only consecutives edges are allowed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:440 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:453 msgid "Only two edges are allowed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:449 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:462 msgid "Invalid edge (SHIFT + click to add an invalid vClass edge)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:456 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:469 msgid "Invalid edge (CONTROL + click to add a disconnected edge)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:531 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:547 msgid "first select an edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:941 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:957 msgid "- Selected edges: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:942 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:958 msgid "- Path edges: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:944 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:960 msgid "- Average speed: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:48 msgid " edge conflict (vClass)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:36 +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:36 msgid "Parent selector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:39 +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:39 msgid "No element selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:82 +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:82 msgid "Parent type: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:219 -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:230 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:219 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:230 msgid "Invalid row or column" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:254 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:254 msgid "Invalid row" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:264 -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:264 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:274 msgid "Invalid column" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:609 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:609 msgid "Accumulated: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:679 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:679 msgid "Add phase" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:679 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:679 msgid "Add new phase." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:684 msgid "Default phase" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:684 msgid "Add default phase." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:689 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:689 msgid "Duplicate phase" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:689 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:689 msgid "Duplicate this phase." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:694 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:694 msgid "Red phase" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:694 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:694 msgid "Add red phase." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:699 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:699 msgid "Yellow phase" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:699 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:699 msgid "Add yellow phase." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:704 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:704 msgid "Green phase" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:704 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:704 msgid "Add green phase." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:709 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:709 msgid "Green priority phase" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:709 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:709 msgid "Add green priority phase." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:910 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:910 msgid "Cannot be parsed to double" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:922 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:922 msgid "Tooltips only for TextFields" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1252 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1252 msgid "Delete phase" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1252 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1252 msgid "Delete this phase." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1261 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1261 msgid "Move phase up" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1261 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1261 msgid "Move this phase up." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1270 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1270 msgid "Move phase down" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1270 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1270 msgid "Move this phase down." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:89 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:89 msgid "Element" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:152 msgid "network elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:155 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:155 msgid "Additional elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:158 msgid "Shape elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:161 msgid "TAZ elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:164 msgid "Wire elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:167 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1833 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:167 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1835 msgid "Vehicles" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:170 msgid "Stops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:173 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1916 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:173 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1918 msgid "Persons" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:176 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:176 msgid "Person plans" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:182 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:182 msgid "Container plans" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:185 msgid "Person trips" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:188 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:188 msgid "Walks" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:191 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:191 msgid "Rides" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:194 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:194 msgid "Person stops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:64 msgid "Delete geometry points" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:230 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:238 msgid "Protect Elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:240 +msgid "Protect all" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:240 +msgid "Protect all elements" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:242 +msgid "Unprotect all" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:242 +msgid "Unprotect all elements" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:244 msgid "Protect additional elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:235 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:247 msgid "Protect TAZ elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:238 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:250 msgid "Protect demand elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:241 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:253 msgid "Protect data elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEElementSet.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\common\GNEElementSet.cpp:48 msgid "Element Set" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEElementSet.cpp:75 +#: D:\Repos\sumo/src\netedit\frames\common\GNEElementSet.cpp:75 msgid "Invalid supermode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:100 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:96 msgid "Mark as front element" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:181 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:310 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:177 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:306 msgid "Set new parent" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:372 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:368 msgid "" "- Mark as front element: Mark element as front element (Will be drawn over " "all other elements)\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:373 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:369 msgid "- Block movement: disable movement in move mode\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:374 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:370 msgid "" "- Block shape: Disable moving of shape's vertices and edges. Entire shape " "can be moved'.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:375 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:371 msgid "" "- Close shape: Add or remove the last vertex with the same position of first " "edge'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:402 msgid "GEO Attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:470 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:90 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:466 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:91 msgid "No geo-conversion defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:551 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:547 msgid " SUMO uses the World Geodetic System 84 (WGS84/UTM).\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:552 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:548 msgid "" " For a GEO-referenced network, geo coordinates are represented as pairs of " "Longitude and Latitude\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:553 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:549 msgid " in decimal degrees without extra symbols. (N,W..)\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:554 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:550 msgid " - Longitude: East-west position of a point on the Earth's surface.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:551 msgid " - Latitude: North-south position of a point on the Earth's surface.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:556 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:552 msgid "" " - CheckBox 'geo' enables or disables saving position in GEO coordinates\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:570 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:566 msgid "Templates" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:574 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:570 msgid "Set as Template" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:578 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:574 msgid "clear Edge Template" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:673 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:669 msgid "Only one edge must be inspected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:737 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:733 msgid "No edge Template Set" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:749 -msgid "Parameters" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:908 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:745 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:748 msgid "Additional dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:927 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:764 msgid "Open rerouter dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:933 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:770 msgid "Open calibrator dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:939 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:776 msgid "Open calibrator lane dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:945 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:782 msgid "Open VSS dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:58 msgid "Apply selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:112 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:112 msgid "Unknown set" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:270 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:270 msgid "" "- The 'Match Attribute' controls allow to specify a set of objects which are " "then applied to the current selection\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:271 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:460 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:271 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:460 msgid " according to the current 'Modification Mode'.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:272 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:461 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:272 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:461 msgid " 1. Select an object type from the first input box\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:273 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:462 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:273 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:462 msgid " 2. Select an attribute from the second input box\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:274 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:463 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:463 msgid "" " 3. Enter a 'match expression' in the third input box and press " "\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:276 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:465 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:276 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:465 msgid "- The empty expression matches all objects\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:277 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:466 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:277 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:466 msgid "" "- For numerical attributes the match expression must consist of a comparison " "operator ('<', '>', '=') and a number.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:278 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:467 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:278 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:467 msgid "" "- An object matches if the comparison between its attribute and the given " "number by the given operator evaluates to 'true'\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:280 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:469 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:469 msgid "" "- For string attributes the match expression must consist of a comparison " "operator ('', '=', '!', '^') and a string.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:281 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:470 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:470 msgid "" " '' (no operator) matches if string is a substring of that object'ts " "attribute.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:282 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:471 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:471 msgid " '=' matches if string is an exact match.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:283 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:472 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:283 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:472 msgid " '!' matches if string is not a substring.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:284 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:473 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:284 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:473 msgid " '^' matches if string is not an exact match.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:286 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:475 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:286 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:475 msgid "- Examples:\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:287 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:476 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:287 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:476 msgid "" " junction; id; 'foo' -> match all junctions that have 'foo' in their id\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:288 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:477 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:288 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:477 msgid "" " junction; type; '=priority' -> match all junctions of type 'priority', " "but not of type 'priority_stop'\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:289 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:478 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:289 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:478 msgid " edge; speed; '>10' -> match all edges with a speed above 10\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:87 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:87 msgid "speed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:459 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:459 msgid "" "- The 'MatchGenericData Attribute' controls allow to specify a set of " "objects which are then applied to the current selection\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:64 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:65 msgid "Common move options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:66 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:67 msgid "Allow change lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:70 msgid "Merge geometry points" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:93 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:94 msgid "Network move options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:96 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:97 msgid "Move whole polygons" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:132 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:133 msgid "Demand move options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:135 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:136 msgid "Leave stopPersons connected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:172 msgid "Shift selected edges geometry" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:180 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:181 msgid "Apply shift value" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:180 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:181 msgid "" "Shift edge geometry orthogonally to driving direction for all selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:251 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:252 msgid "Change Z in selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:261 msgid "Absolute value" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:261 msgid "Set Z value as absolute" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:262 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:263 msgid "Relative value" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:262 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:263 msgid "Set Z value as relative" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:265 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:266 msgid "Apply Z value" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:265 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:266 msgid "Apply Z value to all selected junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:518 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:518 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:534 msgid "Shift shape geometry" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:534 msgid "" "Shift shape geometry orthogonally to driving direction for all selected " "shapes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:619 -msgid "-Click over edge to" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:620 -msgid " create or edit" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:621 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:624 -msgid " geometry point." +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:616 +msgid "Click over edge to create or edit geometry point." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:622 -msgid "-Shift+click over edge" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:616 +msgid "Shift+click over edge to edit start or end geometry point." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:623 -msgid " to edit start or end" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:628 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:618 msgid "-Move geometry point" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:631 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:621 msgid "-Merge geometry point" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:78 msgid "Selection information" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:149 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:150 msgid "Modification Mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:153 msgid "add" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:153 msgid "Selected objects are added to the previous selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:154 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:155 msgid "remove" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:154 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:155 msgid "Selected objects are removed from the previous selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:156 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:662 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:157 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:661 msgid "keep" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:156 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:157 msgid "Restrict previous selection by the current selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:159 msgid "replace" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:159 msgid "Replace previous selection by the current selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:213 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:214 msgid "Visual Scaling" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:243 msgid "Selection operations" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:251 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:252 msgid "Deselect all objects (hotkey: ESC)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:253 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:254 msgid "Invert" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:253 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:254 msgid "Invert selection status of all objects" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:255 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:256 msgid "Save ids of currently selected objects to a file." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:257 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:258 msgid "Load ids from a file according to the current modification mode." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:259 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:260 msgid "Delete all selected objects (hotkey: DEL)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:261 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:262 msgid "Reduce" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:261 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:262 msgid "Reduce network to current selection." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:275 msgid "Could not open '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:320 -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:125 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:324 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:125 msgid "Open List of Selected Items" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:338 -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:148 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:342 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:148 msgid "Save List of selected Items" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1120 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1124 msgid "Hierarchy operations" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1131 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1141 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1135 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1145 msgid "Select" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1133 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1143 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1137 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1147 msgid "Unselect" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEEdgeDataFrame.cpp:51 +#: D:\Repos\sumo/src\netedit\frames\data\GNEEdgeDataFrame.cpp:51 msgid "There is already a % in edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:69 msgid "DataSet" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:72 msgid "Create new dataSet" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:83 msgid "Create dataSet" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:140 msgid "Invalid dataSet ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:142 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:142 msgid "Invalid empty dataSet ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:144 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:144 msgid "Invalid duplicated dataSet ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:198 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:198 msgid "Interval" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:201 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:201 msgid "Create new interval" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:219 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:219 msgid "create interval" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:392 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:393 msgid "Data attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:68 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:68 msgid "MeanData Type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:161 msgid "MeanData Editor" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:164 msgid "Create MeanData" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:167 msgid "Delete MeanData" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:170 msgid "Copy MeanData" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:276 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:276 msgid "Current MeanData" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:54 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:54 msgid "Confirm TAZRelation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:56 msgid "Create TAZRelation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:56 msgid "Click fromTaz and toTaz (confirm hotkey )" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:58 msgid "Clear selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:58 msgid "Clear selected TAZs (hotkey )" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:122 msgid "From TAZ" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:128 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:128 msgid "To TAZ" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:177 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:177 #, c-format msgid "A % must be defined within an interval." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:179 msgid "There is already a % defined in TAZ'%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:181 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:181 msgid "There is already a % defined between TAZ'%' and '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:117 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerPlanFrame.cpp:114 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerPlanFrame.cpp:114 msgid "Current selected container isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:122 msgid "Current selected container type isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:127 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerPlanFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:127 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerPlanFrame.cpp:119 msgid "Current selected container plan isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:242 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:275 msgid "VType with vClass == 'pedestrian' is oriented to pedestrians" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:244 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:244 msgid "VType with vClass != 'ignoring' is not oriented to containers" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:267 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:267 msgid "Invalid container parameters." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:117 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonPlanFrame.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonPlanFrame.cpp:140 msgid "Current selected person isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:122 msgid "Current selected person type isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:127 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonPlanFrame.cpp:146 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:127 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonPlanFrame.cpp:146 msgid "Current selected person plan isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:250 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:287 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:250 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:277 msgid "VType with vClass == 'ignoring' is oriented to containers" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:252 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:252 msgid "VType with vClass != 'pedestrian' is not oriented to persons" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:275 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:275 msgid "Invalid person parameters." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNERouteFrame.cpp:52 +#: D:\Repos\sumo/src\netedit\frames\demand\GNERouteFrame.cpp:52 msgid "Route mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:78 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:85 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:92 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:99 -msgid "- Shift+Click to select parent\n" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:72 -msgid "- Click over a bus stop to\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:89 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:101 +msgid "Shift+Click to select parent" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:73 -msgid " create a stop." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:72 +msgid "Click over a bus stop to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:79 -msgid "- Click over a container stop\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:78 +msgid "Click over a train stop to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:80 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:87 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:94 -msgid " to create a stop." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:84 +msgid "Click over a container stop to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:86 -msgid "- Click over a charging station\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:90 +msgid "Click over a charging station to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:93 -msgid "- Click over a parking area\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:96 +msgid "Click over a parking area to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:100 -msgid "- Click over a lane to create\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:102 +msgid "Click over a lane to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:101 -msgid " a stop." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:106 +msgid "No stop parents in current network." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:105 -msgid "- No stop parents in current\n" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:106 -msgid " network." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:189 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:189 msgid "Selected Stop type isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:197 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:197 msgid "Selected % '%' as stop parent." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:200 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:200 msgid "Selected Stop parent isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:206 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:206 msgid "Current selected Stop parent isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:237 msgid "Current selected Stop type isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:336 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:352 msgid "Stop must be placed over a route's edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:349 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:365 msgid "Stop must be placed over an embedded route's edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:68 -msgid "Current Type" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:225 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:63 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:218 msgid "Type Editor" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:228 -msgid "Create Type" +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:66 +msgid "Create type distribution" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:230 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:275 -msgid "Delete Type" +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:68 +msgid "Delete type distribution" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:232 -msgid "Copy Type" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:263 -msgid "Reset Type" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:420 -msgid "VType Distributions" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:423 -msgid "Show VType Distributions" +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:62 +msgid "Current Type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:93 -msgid "- Click over a route to\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:221 +msgid "Create Type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:72 -msgid " create a vehicle." +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:223 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:268 +msgid "Delete Type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:76 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:81 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:98 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:103 -msgid "- Select two edges to\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:225 +msgid "Copy Type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:77 -msgid " create a Trip." +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:256 +msgid "Reset Type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:82 -msgid " create a vehicle with\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:71 +msgid "Click over a route to create a vehicle." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:83 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:105 -msgid " embedded route." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:75 +msgid "Select two edges to create a trip." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:87 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:109 -msgid "- Select two junctions\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:79 +msgid "Select two edges to create a vehicle with embedded route." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:88 -msgid " to create a Trip." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:83 +msgid "Select two junctions to create a trip." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:94 -msgid " create a routeFlow." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:88 +msgid "Click over a route to create a routeFlow." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:99 -msgid " create a flow." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:92 +msgid "Select two edges to create a flow." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:104 -msgid " create a flow with\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:96 +msgid "Select two edges to create a flow with embedded route." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:110 -msgid " to create a flow." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:100 +msgid "Select two junctions to create a flow." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:191 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:181 msgid "Current selected vehicle isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:186 msgid "Current selected vehicle type isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:87 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:87 msgid "Current selected additional isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:156 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:156 msgid "E2 multilane detectors need at least two consecutive lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:282 msgid " must be selected before insertion of " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:312 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:312 msgid "Attribute '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:312 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:312 msgid "' cannot be greater than attribute '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:329 -msgid "List ofe dges cannot be empty" +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:329 +msgid "List of edges cannot be empty" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:339 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:339 msgid "List of lanes cannot be empty" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:439 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:439 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:232 msgid "Currently unsupported. Create rerouter elements using rerouter dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:444 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:444 msgid "Currently unsupported. Create VSS steps using VSS dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:449 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:449 msgid "Currently unsupported. Create calibratorFlows using calibrator dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:66 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:67 msgid "Lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:68 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:78 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:79 msgid "No lane selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:80 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:81 msgid "Current Lane: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:89 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:395 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:90 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:396 msgid "Modifications" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:93 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:94 msgid "Discard connection modifications (Esc)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:96 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:97 msgid "Save connection modifications (Enter)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:100 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:101 msgid "Protect routes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:112 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:113 msgid "Changes reverted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:129 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:130 msgid "Error saving connection operations" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:130 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:131 msgid "Connection edition cannot be saved because route '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:130 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:131 msgid "' is broken." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:138 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:139 msgid "Changes accepted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:151 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:152 msgid "Operations" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:155 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:156 msgid "Select Dead Ends" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:155 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:156 msgid "" "Selects all lanes that have no outgoing connection (clears previous " "selection)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:159 msgid "Select Dead Starts" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:159 msgid "" "Selects all lanes that have no incoming connection (clears previous " "selection)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:162 msgid "Select Conflicts" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:162 msgid "" "Selects all lanes with more than one incoming connection from the same edge " "(clears previous selection)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:165 msgid "Select Passing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:165 msgid "" "Selects all lanes with a connection that has has the 'pass' attribute set" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:168 msgid "Clear Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:168 msgid "Clears all connections of all selected objects" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:171 msgid "Reset Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:171 msgid "Recomputes connections at all selected junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:262 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:263 msgid "clear connections from selected lanes, edges and junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:289 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:290 msgid "reset connections from selected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:308 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:168 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2174 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:309 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:168 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2176 msgid "Selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:313 -msgid "-Hold while" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:314 -msgid " clicking to create" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:315 -msgid " unyielding connections" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:316 -msgid " (pass=true)." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:321 -msgid "-Hold while" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:322 -msgid " clicking to create " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:323 -msgid " conflicting connections" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:324 -msgid " (i.e. at zipper nodes" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:325 -msgid " or with incompatible" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:311 +msgid "" +"Hold while clicking to create unyielding connections (pass=true)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:326 -msgid " permissions" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:312 +msgid "" +"Hold while clicking to create conflicting connections (i.e. at zipper " +"nodes or with incompatible permissions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:342 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:326 msgid "Possible Target" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:347 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:331 msgid "Source lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:351 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:335 msgid "Target lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:355 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:339 msgid "Target (pass)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:359 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:343 msgid "Conflict" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:371 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:355 msgid "Edit Connections" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:437 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:421 msgid "modify connections" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:488 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:472 msgid "Pedestrian connections are generated automatically" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:490 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:474 msgid "Incompatible vehicle class permissions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:492 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:476 msgid "Another lane from the same edge already connects to that lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:500 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:484 msgid "Invalid target for connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:74 msgid "Template selector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:79 msgid "Create default edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:80 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:82 msgid "Disallow for pedestrians" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:82 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:84 msgid "Add sidewalk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:85 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:87 msgid "Use edgeType/template" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:93 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:437 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1245 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1310 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:439 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1247 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1312 msgid "Add" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:93 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:95 msgid "Add edge type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:96 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:98 msgid "Delete edge type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:99 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:101 msgid "Create from template" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:99 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:101 msgid "Create edgeType from template" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:318 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:367 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:320 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:369 msgid "create new edge type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:340 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:342 msgid "delete edge type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:405 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:407 msgid "template: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:429 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:431 msgid "LaneType selector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:437 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:439 msgid "Add lane type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:440 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:442 msgid "Delete lane type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:537 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:539 msgid "add laneType" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:574 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:576 msgid "remove laneType" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:623 -msgid "- ESC:" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:625 +msgid "ESC:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:624 -msgid " Deselect origin" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:626 +msgid "Deselect origin" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:625 -msgid "- Control+Click:" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:627 +msgid "Control+Click:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:626 -msgid " Move view" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:628 +msgid "Move view" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:627 -msgid "- Shift+Click:" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:629 +msgid "Shift+Click:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:628 -msgid " Splits edge in both directions" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:630 +msgid "Splits edge in both directions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:629 -msgid "- Alt+Shift+Click:" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:631 +msgid "Alt+Shift+Click:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:630 -msgid " Splits edge in one direction" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:632 +msgid "Splits edge in one direction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:643 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:645 msgid "Create Edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:667 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:669 msgid "Select either default edgeType or a custom edgeType or template" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:669 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:671 msgid "Invalid edge attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:671 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:673 msgid "Invalid lane attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:682 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:747 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:749 msgid "create new edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:752 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:754 msgid "An edge with the same geometry already exists!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:755 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:757 msgid "Start- and endpoint for an edge must be distinct!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:70 msgid "Junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:97 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:98 msgid "selection of edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:102 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:505 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:560 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:566 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:654 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:658 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:103 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:506 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:560 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:566 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:653 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:657 msgid "Use selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:105 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:106 msgid "Clear edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:108 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:109 msgid "Invert edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:197 msgid "Crossing parameters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:484 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1580 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1584 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:485 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1608 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1612 msgid "Create" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:487 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:488 msgid "Create crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:514 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:515 msgid "" "There is already another crossing with the same edges in the junction; " "Duplicated crossing aren't allowed." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:540 -msgid "-Click over junction to" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:541 -msgid " mark candidate edges." +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:539 +msgid "Click over junction to mark candidate edges." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:542 -msgid "-Click over candidate" +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:539 +msgid "Click over candidate edges for selecting." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:543 -msgid " edges for selecting." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:547 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:541 msgid " Candidate" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:551 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:545 msgid " Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:554 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:548 msgid " Invalid" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:567 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:561 msgid "Crossings" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:55 msgid "Selected connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:71 msgid "No Connection selected\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:74 msgid "- Junction: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:75 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:75 msgid "- From lane: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:76 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:76 msgid "- To lane: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:94 msgid "Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:95 msgid "Current selected connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:101 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:101 msgid "No conflict" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:102 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:102 msgid "No conflict with the selected connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:107 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:107 msgid "Yields" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:108 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:108 msgid "Connection yields the selected connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:113 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:113 msgid "Has right of way" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:114 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:114 msgid "Connection has right of way with the selected connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:119 msgid "Unregulated conflict" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:120 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:120 msgid "Connection has a unregulated conflict with the selected connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:125 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:125 msgid "Mutual conflict" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:126 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:126 msgid "Connection has a mutual conflict with the selected connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:175 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:175 msgid "Save prohibition modifications (Enter)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:179 msgid "Unselect connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:181 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:181 msgid "Unselect connection (Esc)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:229 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:229 msgid "Prohibitions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:57 msgid "GEO POI Creator" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:59 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:60 msgid "Format: Lon-Lat" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:61 msgid "Format: Lat-Lon" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:66 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:67 msgid "Center View after creation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:68 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:121 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:178 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:179 msgid "Create GEO POI (clipboard)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:136 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:141 msgid "Cartesian equivalence:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:72 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:141 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:142 msgid "- X = give valid longitude" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:73 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:142 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:143 msgid "- Y = give valid latitude" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:120 msgid "Create GEO POI" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:172 msgid "Using clipboard" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:330 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:228 +msgid "Shapes" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:331 msgid "POILane can be only placed over lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:374 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:375 msgid "Current selected shape isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:422 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:423 msgid "Polygon shape cannot be empty" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:153 msgid "TAZ" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:160 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:204 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:205 msgid "No TAZ selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:173 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:174 msgid "Current TAZ: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:336 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:337 msgid "Invalid TAZ Child" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:345 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:346 msgid "TAZ Statistics" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:348 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:891 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:349 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:888 msgid "Statistics" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:375 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1132 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:376 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1129 msgid "- Number of edges: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:376 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1137 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:377 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1134 msgid "- Min source: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:377 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1138 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:378 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1135 msgid "- Max source: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:378 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1139 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:379 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1136 msgid "- Average source: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:380 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1141 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:381 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1138 msgid "- Min sink: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:381 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1142 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:382 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1139 msgid "- Max sink: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:382 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1143 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:383 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1140 msgid "- Average sink: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:386 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:387 msgid "No TAZ Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:398 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:399 msgid "Confirm changes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:401 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:402 msgid "Cancel changes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:431 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:432 msgid "TAZ changes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:484 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:485 msgid "TAZ Sources/Sinks" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:490 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:491 msgid "Membership" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:491 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:492 msgid "Toggle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:496 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:497 msgid "New source" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:501 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:502 msgid "New sink" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:507 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:508 msgid "Set zero fringe prob." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:511 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:646 -msgid "- Toggle Membership:" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:512 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:647 -msgid " Create new Sources/Sinks" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:512 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:646 +msgid "Toggle Membership:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:513 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:648 -msgid " with given weights." +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:513 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:647 +msgid "Create new Sources/Sinks with given weights." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:563 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:656 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:655 msgid "Remove all edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:582 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:582 msgid "Remove all edges from selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:584 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:584 msgid "Add all edges to selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:588 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:588 msgid "Remove edge from selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:590 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:590 msgid "Add edge to selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:601 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:601 msgid "Remove " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:601 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:601 msgid " edges from to selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:603 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:603 msgid "Add " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:603 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:603 msgid " edges to selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:639 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:639 msgid "toggle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:669 -msgid "- Keep Membership:" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:668 +msgid "Keep Membership:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:670 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:668 msgid " Select Sources/Sinks." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:671 -msgid "- Press ESC to clear" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:672 -msgid " current selection." +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:669 +msgid "Press ESC to clear the current selection." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:849 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:846 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:849 msgid "Set weight 0 in " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:849 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:846 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:849 msgid " sources and " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:850 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:847 msgid " sinks from TAZ '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:853 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:850 msgid " sinks from " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:853 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:850 msgid " TAZs?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:855 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:868 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:865 msgid "Set zero fringe probabilities" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:857 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:854 msgid "set zero fringe probabilities" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:868 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:865 msgid "No source/sinks to update." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:878 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:875 msgid "Selection Statistics" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:882 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:879 msgid "Source" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:887 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:884 msgid "Sink" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:919 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:916 msgid "TAZEdgeColor already selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:951 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:948 msgid "edge wasn't found" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:953 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:950 msgid "Invalid edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1130 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1127 msgid "- Edge ID: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1165 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1162 msgid "TAZ parameters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1190 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1187 msgid "Edges within" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1191 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1298 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1188 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1295 msgid "use" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1300 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1297 msgid "not use" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1330 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1327 msgid "Non TAZ Edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1334 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1331 msgid "Selected TAZ Edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1339 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1336 msgid "Color by Source" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1341 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1338 msgid "Color by Sink" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1343 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1340 msgid "Color by Source + Sink" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1345 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1342 msgid "Color by Source - Sink" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1448 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1445 msgid "TAZs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1614 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1611 msgid "TAZ shape needs at least three points" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:121 msgid "Edit Traffic Light" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:183 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:185 msgid "Click over a junction to edit a TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:195 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:197 msgid "Save TLS Changes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:198 msgid "" "There is unsaved changes in current edited traffic light.\n" "Do you want to save it before changing mode?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:244 msgid "tlLogic '%', program '%' could not be built" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:255 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2935 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:257 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2963 msgid "Loaded " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:255 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:257 msgid " programs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:418 msgid "Invalid phase index" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:512 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:514 msgid "modifying TLS definition" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:526 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:528 msgid "Unsaved modifications. Abort or Save" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:546 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:548 msgid "Traffic light Attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:557 msgid "parameters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 msgid "Assign E1 detectors" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 msgid "Enable assign E1 mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 msgid "Assign E1 detectors to the current TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 msgid "Disable assign E1 mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:879 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:881 msgid "Traffic Light" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:884 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:945 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:886 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:955 msgid "Junction ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:891 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:893 msgid "TLS ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 msgid "Join" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 msgid "Enable join mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 msgid "Join TLS and junctions in the current junction." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 msgid "Disable join mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 msgid "Disjoin" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 msgid "Disjoin current TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 msgid "Disjoin current TLS." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:952 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:923 +msgid "Finish join." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:925 +msgid "Cancel Join." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:962 msgid "no junction selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:974 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:984 msgid "Junction IDs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1061 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1064 msgid "rename TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1140 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1143 msgid "change TLS type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1216 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1227 msgid "join TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1278 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1289 msgid "disjoin TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1340 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1368 msgid "Traffic Light Programs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1353 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1381 msgid "Create TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1353 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1381 msgid "Create a new traffic light program." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1356 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1384 msgid "" "Delete a traffic light program. If all programs are deleted the junction " "turns into a priority junction." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1359 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1387 msgid "Reset single" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1359 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1387 msgid "Reset current TLS program." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1362 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1390 msgid "Reset all" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1362 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1390 msgid "Reset all TLS programs." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1365 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1393 msgid "Save program modifications. (Enter)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1368 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1396 msgid "Discard program modifications. (Esc)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1463 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1491 msgid "TLSDefinition cannot be found" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1505 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1518 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1537 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1533 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1546 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1565 msgid "TLS cannot be created" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1506 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1534 msgid "Traffic Light cannot be created because junction must have" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1507 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1535 msgid "at least one incoming edge and one outgoing edge." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1519 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1538 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1547 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1566 msgid "Traffic Light cannot be created because junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1520 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1548 msgid "must have at least one connection." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1539 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1567 msgid "must have at least one controlled connection." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1582 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1610 msgid "Duplicate" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1622 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1650 msgid "reset current program" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1661 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1689 msgid "reset TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1822 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1850 msgid "duplicate program '%' of traffic light '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1868 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1896 msgid "Traffic light does not control any links" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1880 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1908 msgid "Phases" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1891 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1919 msgid "Clean States" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1892 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1920 msgid "Clean unused states from all phase" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1893 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1921 msgid "Clean unused states from all phase. (Not allowed for multiple programs)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1897 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1925 msgid "Add States" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1898 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1926 msgid "Extend the state vector for all phases by one entry" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1899 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1927 msgid "" "Extend the state vector for all phases by one entry. (Unused until a " "connection or crossing is assigned to the new index)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1903 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1931 msgid "Group Sig." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1904 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1932 msgid "" "Shorten state definition by letting connections with the same signal states " "use the same index" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1905 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1933 msgid "" "Shorten state definition by letting connections with the same signal states " "use the same index. (Not allowed for multiple programs)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1909 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1937 msgid "Ungroup Sig." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1910 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1938 msgid "Let every connection use a distinct index (reverse state grouping)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1939 msgid "" "Let every connection use a distinct index (reverse state grouping). (Not " "allowed for multiple programs)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2039 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2067 msgid "invalid column" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2598 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2626 msgid "Error deleting phase '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2870 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2898 msgid "TLS Program File" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2874 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2902 msgid "Load TLS program from additional file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2876 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2904 msgid "Save TLS program to additional file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2935 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2963 msgid " new programs for tlLogic '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2940 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2968 msgid "Updated program '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2940 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2968 msgid "' for tlLogic '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2944 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2972 msgid "No programs found for traffic light '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2963 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2991 msgid "Save TLS Program as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:75 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:75 msgid "Current selected wire isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:117 #, c-format msgid "A % needs at least two lane positions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:237 msgid "Currently unsupported. Create VSS steps elements using VSS dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/netedit_main.cpp:49 +#: D:\Repos\sumo/src\netedit\netedit_main.cpp:49 msgid "" "Graphical editor for SUMO networks, demand and additional infrastructure." msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:126 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:127 msgid "Original network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:129 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:130 msgid "Modified network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:132 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:133 msgid "Output prefix network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:136 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:137 msgid "Select modified elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:139 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:140 msgid "Select added elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:142 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:143 msgid "Select deleted elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:146 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:147 msgid "Load shapes for elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:149 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:150 msgid "Load shapes for added" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:152 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:153 msgid "Load shapes for deleted elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:165 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:166 msgid "load shapes from '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:169 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:170 msgid "Loading of shape file failed: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:172 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:173 msgid "Loading of shape file sucessfully: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:42 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:43 msgid "Execute python tool '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:153 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:177 #, c-format msgid "Loaded % configuration." msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:182 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:206 #, c-format msgid "Saved % configuration." msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:71 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:55 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:76 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:60 msgid "cancelled by user\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:102 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:86 -msgid "popen() failed!" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:114 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:98 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:119 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:103 msgid "starting process...\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:124 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:108 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:137 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:121 msgid "error processing command\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:136 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:120 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:152 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:136 msgid "process finished\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:142 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:125 -msgid "starting process silently...\n" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:75 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:75 msgid "&Load selection" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:77 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:77 msgid "&Save selection" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:81 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:81 msgid "&Deselect chosen" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:83 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:83 msgid "&Clear selection" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:87 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:87 msgid "Cl&ose" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:137 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:137 msgid "Errors while loading Selection" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:116 +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:116 msgid "Unknown object in GUISelectedStorage::select (id=%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:133 +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:133 msgid "Unknown object in GUISelectedStorage::deselect (id=%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:150 +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:150 msgid "Unknown object in GUISelectedStorage::toggleSelection (id=%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:74 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:74 msgid "Unknown format!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:91 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:91 msgid "Unknown codec, falling back to HEVC!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:95 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:95 msgid "Unknown codec!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:100 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:100 msgid "Could not allocate video codec context!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:136 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:136 msgid "Could not open codec!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:142 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:142 msgid "Could not allocate video frame!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:148 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:148 msgid "Could not allocate the video frame data!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:155 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:155 msgid "Failed to open output file!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:160 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:160 msgid "Failed to write file header!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:165 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:165 msgid "Could not allocate video packet!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:175 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:175 msgid "Error sending final frame!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:183 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:183 msgid "Error during final encoding step!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:214 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:214 msgid "Error sending frame for encoding!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:222 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:222 msgid "Error during encoding!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUIGLObjectPopupMenu.cpp:170 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGLObjectPopupMenu.cpp:170 msgid "Object must be a lane" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:87 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:285 +msgid "Copy name to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:286 +msgid "Copy typed name to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:296 +msgid "Remove From Selected" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:298 +msgid "Add To Selected" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:308 +msgid "Show Parameter" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:317 +msgid "Show Type Parameter" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:326 +msgid "Copy cursor position to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:328 +msgid "Copy cursor geo-position to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:332 +msgid "Show cursor geo-position in " +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:350 +msgid "Open Manipulator..." +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:389 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:412 +msgid "type: %" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:87 msgid "&Save changes" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:88 +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:88 msgid "&Don't save" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:89 +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:89 msgid "&Abort" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUIShapeContainer.cpp:56 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIShapeContainer.cpp:56 msgid "Replacing POI '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUIShapeContainer.cpp:81 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIShapeContainer.cpp:81 msgid "Replacing polygon '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/images/GUIIconSubSys.cpp:981 +#: D:\Repos\sumo/src\utils\gui\images\GUIIconSubSys.cpp:989 msgid "Instance was previously created" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/images/GUITextureSubSys.cpp:223 +#: D:\Repos\sumo/src\utils\gui\images\GUITextureSubSys.cpp:223 msgid "Undefined texture" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/images/VClassIcons.cpp:91 +#: D:\Repos\sumo/src\utils\gui\images\VClassIcons.cpp:91 msgid "Invalid vClass" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:77 +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:77 msgid "The 'value' attribute is deprecated for breakpoints. Please use 'time'." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:383 +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:383 msgid "The 'filename' attribute is deprecated for decals. Please use 'file'." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:559 +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:559 msgid " Could not decode breakpoint '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUIVisualizationSettings.cpp:2348 +#: D:\Repos\sumo/src\utils\gui\settings\GUIVisualizationSettings.cpp:2348 msgid "No color defined for LinkState '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:116 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:116 msgid "Save the data..." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:131 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:131 msgid "Multiplot" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:219 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:219 msgid "Save Data" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:85 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:85 msgid "Track" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:92 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:92 msgid "&Hide Unselected" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:93 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:93 msgid "By &Name" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:93 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:93 msgid "Locate item by name" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:94 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:94 msgid "&Select/deselect" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:94 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:94 msgid "Select/deselect current object" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:95 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:95 msgid "&Filter substring" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:96 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:96 msgid "Select &all" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:96 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:96 msgid "Select all items in list" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:97 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:97 msgid "&Deselect all" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:97 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:97 msgid "Deselect all items in list" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:98 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:98 msgid "&Update" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:98 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:98 msgid "Reload all ids" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:102 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:102 msgid "case-sensitive search" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:104 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:104 msgid "auto-center" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:329 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:329 #, c-format msgid "% objects" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:65 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:65 msgid "Load viewport from file" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:67 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:67 msgid "Save viewport to file" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:210 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:210 msgid "Load Viewport" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:229 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:229 msgid "Save Viewport" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:277 -msgid "Run tool" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:278 -msgid "Cancel tool" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:280 -msgid "Accept settings" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:87 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:87 msgid "View Settings" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:989 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:989 msgid "Enter a name" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:991 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:991 msgid "Please enter an alphanumeric name: " msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1070 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1070 msgid "Export view settings" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1121 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1121 msgid "Import view settings" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1138 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1155 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1138 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1155 msgid "Load Decals" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1172 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1172 msgid "Save Decals" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1242 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1307 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1244 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1309 msgid "No Data" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1246 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1311 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1248 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1313 msgid "Remove" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1569 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1614 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1571 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1616 msgid "Only for selected" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1571 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1573 msgid "constant text size" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1574 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1576 msgid "Size" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1579 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1692 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1730 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1851 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1933 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1973 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1999 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2119 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2154 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2217 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1581 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1694 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1732 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1853 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1935 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1975 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2001 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2121 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2156 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2219 msgid "Color" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1581 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1687 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1583 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1689 msgid "Background" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1612 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1614 msgid "Draw with constant size when zoomed out" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1617 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1619 msgid "Minimum Size" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1621 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1623 msgid "Exaggerate by" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1667 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1669 msgid "Save the setting to registry" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1668 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1670 msgid "Remove the setting from registry" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1669 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1671 msgid "Export setting to file" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1670 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1672 msgid "Load setting from file" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1673 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1675 msgid "Export includes:" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1674 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1676 msgid "Viewport" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1675 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1677 msgid "Delay" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1676 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1678 msgid "Decals" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1677 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1679 msgid "Breakpoints" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1696 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1698 msgid "Decals:" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1699 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1701 msgid "&Load XML Decals" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1700 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1702 msgid "&Save XML Decals" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1701 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1703 msgid "&Clear Decals" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1706 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1708 msgid "Toggle grid" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1710 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1712 msgid "x-spacing" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1715 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1717 msgid "y-spacing" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1724 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1726 msgid "Streets" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1732 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1761 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1855 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1868 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1937 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1977 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2003 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2123 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2158 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2219 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1734 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1763 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1857 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1870 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1939 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1979 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2005 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2125 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2160 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2221 msgid "Interpolate" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1744 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2006 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2229 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1746 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2008 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2231 msgid "Recalibrate Rainbow" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1746 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1748 msgid "hide below" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1750 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1752 msgid "hide above" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1759 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1761 msgid "Scale width" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1782 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1784 msgid "Show bike markings" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1784 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1786 msgid "Show turning arrows" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1787 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1789 msgid "Show right-of-way rules" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1789 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1791 msgid "Realistic stop line colors" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1792 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1794 msgid "Show lane borders" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1794 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1796 msgid "Show lane direction" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1797 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1799 msgid "Hide macro connectors" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1799 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1801 msgid "Show sublanes" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1802 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1804 msgid "Show rails" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1804 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1806 msgid "Spread bidirectional railways/roads" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1804 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1806 msgid "" "Make both directional edges for a bidirectional railways or roads visible" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1807 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1809 msgid "Secondary shape" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1812 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1814 msgid "Exaggerate width by" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1818 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1820 msgid "Minimum size" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1824 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1826 msgid "Show edge id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1825 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1827 msgid "Show street name" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1826 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1828 msgid "Show edge color value" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1827 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1829 msgid "Show edge scale value" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1838 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1921 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1961 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1840 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1923 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1963 msgid "Show As" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1840 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1923 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1963 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1842 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1925 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1965 msgid "'triangles'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1841 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1964 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1843 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1966 msgid "'boxes'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1842 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1925 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1965 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1844 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1927 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1967 msgid "'simple shapes'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1843 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1926 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1966 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1845 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1928 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1968 msgid "'raster images'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1844 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1924 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1846 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1926 msgid "'circles'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1866 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1868 msgid "Scale size" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1875 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1877 msgid "Show vehicle id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1876 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1878 msgid "Show vehicle color value" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1877 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1879 msgid "Show vehicle scale value" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1878 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1880 msgid "Show vehicle text param" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1885 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1887 msgid "Show blinker / brake lights" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1887 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1889 msgid "Show minimum gap" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1889 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1891 msgid "Show brake gap" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1891 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1893 msgid "Show Bluetooth range" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1893 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1895 msgid "Show route index" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1895 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1897 msgid "Scale length with geometry" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1897 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1899 msgid "Show parking info" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1899 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1901 msgid "Draw reversed vehicles in reverse" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1944 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1946 msgid "Show person id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1945 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1947 msgid "Show person color value" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1956 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1958 msgid "Containers" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1984 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1986 msgid "Show container id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1995 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1997 msgid "Junctions" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2012 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2014 msgid "Draw junction shape" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2014 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2016 msgid "Draw crossings/walkingareas" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2016 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2018 msgid "Show lane to lane connections" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2020 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2022 msgid "Show link tls index" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2021 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2023 msgid "Show link junction index" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2022 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2024 msgid "Show junction id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2023 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2025 msgid "Show internal junction id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2024 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2026 msgid "Show internal edge id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2025 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2027 msgid "Show crossing and walkingarea id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2026 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2028 msgid "Show traffic light phase index" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2027 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2029 msgid "Show traffic light phase name" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2028 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2030 msgid "Show junction name" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2034 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2036 msgid "Additional" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2039 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2041 msgid "Show object id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2040 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2042 msgid "Show full name" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2047 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2049 msgid "StoppingPlace" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2048 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2050 msgid "body" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2049 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2051 msgid "sign" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2072 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2074 msgid "element" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2073 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2075 msgid "color" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2074 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2076 msgid "width" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2114 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2116 msgid "POIs" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2130 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2132 msgid "POI detail" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2135 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2137 msgid "Show poi id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2136 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2138 msgid "Show poi type" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2137 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2139 msgid "Show poi text param" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2149 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2151 msgid "Polygons" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2164 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2166 msgid "Show polygon id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2165 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2167 msgid "Show polygon types" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2179 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2181 msgid "Default Selection Color" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2182 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2184 msgid "Miscellaneous" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2231 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2233 msgid "hide below threshold" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2238 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2240 msgid "Exaggerate edgeRelation width by" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2243 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2245 msgid "Exaggerate tazRelation width by" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2249 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2251 msgid "Show data color value" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2255 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2257 msgid "Legend" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2260 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2262 msgid "Show Size Legend" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2263 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2265 msgid "Show Edge Color Legend" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2266 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2268 msgid "Show Vehicle Color Legend" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2279 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2281 msgid "Dither" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2285 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2287 msgid "Draw boundaries" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2288 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2290 msgid "Force draw for position selection" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2291 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2293 msgid "Force draw for rectangle selection" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2294 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2296 msgid "Disable dotted contours during selection/deletion" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2297 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2299 msgid "Recalculate boundaries" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2300 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2302 msgid "Show geometry point indices" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2306 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2308 msgid "3D view" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2311 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2313 msgid "Show TLS link markers" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2314 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2316 msgid "Show domes around TLS models from decals" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2317 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2319 msgid "Show auto-generated TLS models" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2319 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2321 msgid "Show head-up display" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2325 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2327 msgid "Sun brightness" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2337 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2339 msgid "Sky color" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:120 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:120 msgid "Recenter View" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:120 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:120 msgid "Recenter view to the simulated area." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:124 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:124 msgid "Opens a menu which lets you edit the viewport. (Ctrl+I)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:128 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:128 msgid "Toggle Zooming Style" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:128 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:128 msgid "" "Toggles whether zooming is based at cursor position or at the center of the " "view." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:135 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:135 msgid "Locate Structures" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:135 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:135 msgid "Locate structures within the network." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:139 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:139 msgid "Toggle View Tooltips" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:139 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:139 msgid "Toggles whether tooltips in the view shall be shown." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:145 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:145 msgid "Toggle Menu Tooltips" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:145 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:145 msgid "Toggles whether tooltips in the menu shall be shown." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:161 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:161 msgid "Edit Coloring Schemes" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:161 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:161 msgid "Opens a menu which lets you edit the coloring schemes. (F9)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:172 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:172 msgid "Make Snapshot" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:172 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:172 msgid "Makes a snapshot of the view." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:294 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:294 msgid "option window-size requires INT,INT" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:311 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:311 msgid "option window-pos requires INT,INT" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:340 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:340 msgid "Langua&ge" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:342 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:342 msgid "Change language to english. (en)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:344 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:344 msgid "Change language to german. (de)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:346 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:346 msgid "Change language to spanish. (es)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:348 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:348 msgid "Change language to french. (fr)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:350 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:350 msgid "Change language to italian. (it)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:352 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:352 msgid "简体中文 (zh)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:354 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:354 msgid "繁體中文 (zh-Hant)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:356 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:356 msgid "Change language to turkish. (tr)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:358 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:358 msgid "Change language to hungarian. (hu)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:372 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:372 msgid "german" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:376 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:376 msgid "spanish" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:380 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:380 msgid "french" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:384 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:384 msgid "italian" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:388 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:388 msgid "chinese" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:392 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:392 msgid "chinese simplified" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:396 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:396 msgid "turkish" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:400 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:400 msgid "hungarian" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:404 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:404 msgid "english" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:412 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:412 msgid "Language changed to " msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:414 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:414 msgid "Restart needed" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:415 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:415 msgid "Changing display language needs restart to take effect." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:418 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:418 msgid "" "For the Debug build you might also need to set the LANG environment variable." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:421 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:421 msgid "Under development. You can help to improve the translation at:" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:254 +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:254 msgid " (No projection defined)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:1738 +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:1747 msgid "Could not convert coordinates in %." msgstr "" diff -Nru sumo-1.17.0/data/po/fr_py.po sumo-1.18.0/data/po/fr_py.po --- sumo-1.17.0/data/po/fr_py.po 1970-01-01 00:00:00.000000000 +0000 +++ sumo-1.18.0/data/po/fr_py.po 2023-06-28 20:02:17.000000000 +0000 @@ -0,0 +1,136 @@ +# French translations for sumo package. +# Copyright (C) 2023 THE sumo'S COPYRIGHT HOLDER +# This file is distributed under the same license as the sumo package. +# Automatically generated, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: sumo\n" +"Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" +"POT-Creation-Date: 2023-05-26 14:09+0200\n" +"PO-Revision-Date: 2023-06-15 09:26+0000\n" +"Last-Translator: Mirko Barthauer \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.18\n" + +#: D:\Repos\sumo/tools/game\runner.py:63 +msgid "Interactive Traffic Light" +msgstr "Jeu de feux de circulation interactifs" + +#: D:\Repos\sumo/tools/game\runner.py:64 +msgid "Research intersection Ingolstadt" +msgstr "Carrefour de recherche de Ingolstadt" + +#: D:\Repos\sumo/tools/game\runner.py:65 +msgid "Simple Junction" +msgstr "Carrefour simple" + +#: D:\Repos\sumo/tools/game\runner.py:66 +msgid "Simple Junction (Demo)" +msgstr "Carrefour simple (Demo)" + +#: D:\Repos\sumo/tools/game\runner.py:67 +msgid "Four Junctions" +msgstr "Quatre carrefours" + +#: D:\Repos\sumo/tools/game\runner.py:68 +msgid "Six Junctions" +msgstr "Six carrefours" + +#: D:\Repos\sumo/tools/game\runner.py:69 +msgid "Prof. Kühne" +msgstr "Pr Kühne" + +#: D:\Repos\sumo/tools/game\runner.py:70 +msgid "3D Junction Virtual World" +msgstr "Carrefour en 3D Monde virtuel" + +#: D:\Repos\sumo/tools/game\runner.py:71 +msgid "3D Junction OpenStreetMap" +msgstr "Carrefour en 3D OpenStreetMap" + +#: D:\Repos\sumo/tools/game\runner.py:72 +msgid "Highway Ramp" +msgstr "Bretelle d'autoroute" + +#: D:\Repos\sumo/tools/game\runner.py:73 +msgid "Combined Highway On and Off Ramp" +msgstr "Bretelles d'accès et de sortie d'autoroute combinées" + +#: D:\Repos\sumo/tools/game\runner.py:74 +msgid "Corridor" +msgstr "Couloir" + +#: D:\Repos\sumo/tools/game\runner.py:75 +msgid "Highway Ramp A10" +msgstr "Bretelle d'autoroute A10" + +#: D:\Repos\sumo/tools/game\runner.py:76 +msgid "Demand Responsive Transport (new)" +msgstr "Transport à la demande (nouveau)" + +#: D:\Repos\sumo/tools/game\runner.py:77 +msgid "DRT - Advanced (new)" +msgstr "Transport à la demande - niveau avancé (nouveau)" + +#: D:\Repos\sumo/tools/game\runner.py:78 +msgid "DRT - Demo" +msgstr "Transport à la demande - Demo" + +#: D:\Repos\sumo/tools/game\runner.py:79 D:\Repos\sumo/tools/game\runner.py:89 +msgid "Highscore" +msgstr "Meilleurs scores" + +#: D:\Repos\sumo/tools/game\runner.py:80 +msgid "Reset Highscore" +msgstr "Effacer les meilleurs scores" + +#: D:\Repos\sumo/tools/game\runner.py:81 +msgid "German" +msgstr "Allemand" + +#: D:\Repos\sumo/tools/game\runner.py:82 +msgid "English" +msgstr "Anglais" + +#: D:\Repos\sumo/tools/game\runner.py:83 +msgid "Italian" +msgstr "Italien" + +#: D:\Repos\sumo/tools/game\runner.py:84 +msgid "Spanish" +msgstr "Espagnol" + +#: D:\Repos\sumo/tools/game\runner.py:85 +msgid "French" +msgstr "Français" + +#: D:\Repos\sumo/tools/game\runner.py:86 +msgid "Chinese (simplified)" +msgstr "Chinois (simplifié)" + +#: D:\Repos\sumo/tools/game\runner.py:87 +msgid "Chinese (traditional)" +msgstr "Chinois (traditionel)" + +#: D:\Repos\sumo/tools/game\runner.py:88 +msgid "Quit" +msgstr "Quitter" + +#: D:\Repos\sumo/tools/game\runner.py:90 +msgid "Congratulations!" +msgstr "Félicitations !" + +#: D:\Repos\sumo/tools/game\runner.py:91 +msgid "Your Score" +msgstr "Ton score" + +#: D:\Repos\sumo/tools/game\runner.py:92 +msgid "Continue" +msgstr "Continuer" diff -Nru sumo-1.17.0/data/po/fr_sumo.po sumo-1.18.0/data/po/fr_sumo.po --- sumo-1.17.0/data/po/fr_sumo.po 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/po/fr_sumo.po 2023-06-28 20:02:17.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: sumo\n" "Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" -"POT-Creation-Date: 2023-04-15 12:21+0200\n" +"POT-Creation-Date: 2023-06-15 09:59+0200\n" "PO-Revision-Date: 2022-10-09 17:46+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -17,1947 +17,1956 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:46 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:46 msgid "Reading input" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:54 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:54 msgid "Consolidating statistics" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:58 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:58 msgid "Building street representation" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:62 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:62 msgid "Generating work positions" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:66 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:66 msgid "Building bus lines" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:71 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:71 msgid "Generating population" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:75 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:75 msgid "Allocating schools" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:79 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:79 msgid "Allocating work places" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:83 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:83 msgid "Allocating car places" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGenHandler.cpp:178 +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:174 +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:181 +msgid "Invalid % value of edge % is treated as zero." +msgstr "" + +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:186 #, c-format msgid "Edge '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGenHandler.cpp:329 +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:337 msgid "Unknown bus station '%'." msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:61 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:61 msgid "Use FILE as SUMO-network to create trips for" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:64 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:64 msgid "Loads the SUMO-statistics FILE" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:72 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:72 msgid "Write generated trips to FILE" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:81 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:81 msgid "" "Sets the time of beginning of the simulation during the first day (in " "seconds)" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:84 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:84 msgid "" "Sets the time of ending of the simulation during the last day (in seconds)" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:87 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:87 msgid "Sets the duration of the simulation in days" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:64 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:111 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:64 +#: D:\Repos\sumo/src\router\ROLoader.cpp:111 msgid "Missing definition of network to load!" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:67 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:67 #, c-format msgid "The network file '%' could not be accessed." msgstr "" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:69 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:116 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:69 +#: D:\Repos\sumo/src\router\ROLoader.cpp:116 msgid "Loading net" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:79 -#: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:227 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:133 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:79 +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:227 +#: D:\Repos\sumo/src\router\ROLoader.cpp:133 #, c-format msgid "Deprecated vehicle classes '%' in input network." msgstr "" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:89 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:89 #, fuzzy msgid "" "Generates trips of persons throughout a day for the microscopic, multi-modal " "traffic simulation SUMO." msgstr "Un simulateur de trafic microscopique et multimodal." -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:113 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:113 #, c-format msgid "Loaded % edges." msgstr "" -#: /home/micha/programming/sumo/src/activitygen/city/AGCity.cpp:427 +#: D:\Repos\sumo/src\activitygen\city\AGCity.cpp:425 msgid "No street that allows passenger vehicles found in this city." msgstr "" -#: /home/micha/programming/sumo/src/activitygen/city/AGWorkPosition.cpp:126 +#: D:\Repos\sumo/src\activitygen\city\AGWorkPosition.cpp:126 msgid "Work position already occupied. Cannot give it to another adult." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFDetFlowLoader.cpp:76 +#: D:\Repos\sumo/src\dfrouter\RODFDetFlowLoader.cpp:76 msgid "At least one value lies beyond given time boundaries." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFDetFlowLoader.cpp:104 +#: D:\Repos\sumo/src\dfrouter\RODFDetFlowLoader.cpp:104 msgid "At least one line does not contain the correct number of columns." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFDetector.cpp:171 +#: D:\Repos\sumo/src\dfrouter\RODFDetector.cpp:171 msgid "Missing routes for detector '%'." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFDetector.cpp:305 +#: D:\Repos\sumo/src\dfrouter\RODFDetector.cpp:305 #, c-format msgid "Detector '%' has no routes!?" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFDetectorHandler.cpp:86 +#: D:\Repos\sumo/src\dfrouter\RODFDetectorHandler.cpp:86 msgid "Could not add detector '%' (probably the id is already used)." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:61 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:61 msgid "Loads the SUMO-network FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:70 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:70 msgid "Loads detector descriptions from FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:75 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:75 msgid "Loads detector flows from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:82 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:82 msgid "Saves computed routes to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:85 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:85 msgid "Forces dfrouter to compute routes for in-between detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:89 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:89 msgid "Saves typed detectors to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:92 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:92 msgid "Saves detector positions as pois to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:95 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:95 msgid "Saves emitter definitions for source detectors to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:98 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:98 msgid "Add vehicle types to the emitters file (PKW, LKW)" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:101 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:101 msgid "" "Write generated vehicle types into separate FILE instead of including them " "into the emitters-output" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:104 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:104 msgid "Saves emitter positions as pois to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:108 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:108 msgid "Saves variable seed sign definitions for sink detectors to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:111 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:111 msgid "Saves rerouter definitions for sink detectors to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:114 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:114 msgid "" "Write induction loop definitions for the given detector positions to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:117 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:117 msgid "Add source detectors to the validation output" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:123 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:123 msgid "Derive missing flow values from upstream or downstream (not working!)" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:127 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:127 msgid "Switches to highway-mode" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:131 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:131 msgid "Only warn about unparseable detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:135 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:135 msgid "Recomputes detector types even if given" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:139 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:139 msgid "Recomputes routes even if given" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:143 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:143 msgid "Keeps routes even if they have exhausted max-search-depth" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:146 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:146 msgid "Keeps routes even if a shorter one exists" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:150 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:150 msgid "Number of edges to follow a route without passing a detector" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:153 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:153 msgid "Writes only emission times" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:156 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:156 msgid "Do not route on these edges" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:159 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:159 msgid "Only route on edges allowing the given vclass" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:162 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:162 msgid "Allow turnarounds as route continuations" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:167 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:167 msgid "Minimum distance in meters between start and end node of every route" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:170 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:170 msgid "generate random departure times for emitted vehicles" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:174 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:174 msgid "Multiply flow times with TIME to get seconds" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:177 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:177 msgid "Subtracts TIME seconds from (scaled) flow times" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:180 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:180 msgid "Expected distance between two successive data sets" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:185 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:185 msgid "Write calibrators to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:188 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:188 msgid "Include routes in the output which have no vehicles" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:192 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:192 msgid "" "Checks whether detectors with calculated flow 0 can attract additional " "traffic" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:195 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:195 msgid "Removes empty detectors from the list" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:198 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:198 msgid "" "Whether edges with unknown status can prevent an edge from becoming a source" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:201 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:201 msgid "" "Try to determine further inflows to an inbetween detector when computing " "split probabilities" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:205 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:205 msgid "Scale factor for flows" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:209 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:123 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:167 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:199 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:209 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:123 +#: D:\Repos\sumo/src\od2trips_main.cpp:167 +#: D:\Repos\sumo/src\router\ROFrame.cpp:199 msgid "Assigns a default depart lane" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:212 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:127 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:170 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:202 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:212 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:127 +#: D:\Repos\sumo/src\od2trips_main.cpp:170 +#: D:\Repos\sumo/src\router\ROFrame.cpp:202 msgid "Assigns a default depart position" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:215 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:131 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:173 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:205 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:215 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:131 +#: D:\Repos\sumo/src\od2trips_main.cpp:173 +#: D:\Repos\sumo/src\router\ROFrame.cpp:205 msgid "Assigns a default depart speed" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:218 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:135 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:176 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:208 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:218 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:135 +#: D:\Repos\sumo/src\od2trips_main.cpp:176 +#: D:\Repos\sumo/src\router\ROFrame.cpp:208 msgid "Assigns a default arrival lane" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:221 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:139 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:179 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:211 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:221 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:139 +#: D:\Repos\sumo/src\od2trips_main.cpp:179 +#: D:\Repos\sumo/src\router\ROFrame.cpp:211 msgid "Assigns a default arrival position" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:224 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:143 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:182 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:214 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:224 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:143 +#: D:\Repos\sumo/src\od2trips_main.cpp:182 +#: D:\Repos\sumo/src\router\ROFrame.cpp:214 msgid "Assigns a default arrival speed" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:227 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:227 msgid "The default speed deviation of vehicles" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:231 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:231 msgid "Defines the begin time; Previous defs will be discarded" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:234 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:234 msgid "Defines the end time; Later defs will be discarded; Defaults to one day" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:239 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:239 msgid "Lists detectors with no flow (enable -v)" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:242 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:242 msgid "Prints aggregated detector flows" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:246 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:225 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:246 +#: D:\Repos\sumo/src\router\ROFrame.cpp:225 msgid "Disable console output of route parsing step" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:113 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:113 msgid "Computing detector types" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:142 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:142 msgid "Computed detector types:" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:143 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:143 #, c-format msgid " % source detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:144 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:144 #, c-format msgid " % sink detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:145 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:145 #, c-format msgid " % in-between detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:146 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:146 #, c-format msgid " % invalid detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:281 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:281 msgid "Could not close route for '%'" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:439 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:439 #, c-format msgid "" "Detector '%' has no flows.\n" " Trying to rebuild." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:467 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:467 msgid " Could not build list of previous flows." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:504 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:504 msgid " Could not build list of latter flows." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:591 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:591 msgid "Removed detector '%' because no flows for him exist." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:614 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:614 #, c-format msgid "Detector '%' has no flow." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:693 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:693 #, c-format msgid "" "Quitting checking for being a source for detector '%' due to seen edge limit." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:793 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:793 #, c-format msgid "" "Quitting checking for being a destination for detector '%' due to seen edge " "limit." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:869 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:869 #, c-format msgid "" "Quitting checking for being a false source for detector '%' due to seen edge " "limit." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:1002 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:1002 msgid "Average speedFactor for PKW is % maximum speedFactor is %." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:1006 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:1006 msgid "Average speedFactor for LKW is % maximum speedFactor is %." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:70 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:70 msgid "No detector file given (use --detector-files )." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:76 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:76 msgid "Could not open detector file '%'" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:88 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:88 msgid "No detectors found." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:103 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:103 #, c-format msgid "The measure-file '%' can not be opened." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:124 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:124 msgid "Removing empty detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:128 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:128 msgid "Scanning for empty detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:143 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:143 msgid "No source detectors found." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:147 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:147 msgid "Computing routes" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:158 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:158 msgid "The detector types are not defined; use in combination with a network" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:162 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:162 msgid "The emitters have no routes; use in combination with a network" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:193 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:193 msgid "Rechecking loaded flows" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:198 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:198 msgid "Writing emitters" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:210 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:210 msgid "Writing emitter pois" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:217 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:217 msgid "Writing speed triggers" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:224 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:224 msgid "Writing validation detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:231 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:231 msgid "Writing highway end rerouter" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:251 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:251 msgid "Builds vehicle routes for SUMO using detector values." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:69 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:69 msgid "Write generated route alternatives to FILE" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:72 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:72 msgid "Write edge splits and connectivity to FILE" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:75 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:75 msgid "Write intermodal edges with lengths and travel times to FILE" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:78 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:78 msgid "Write trips instead of vehicles (for validating trip input)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:81 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:81 msgid "Write trips with geo-coordinates" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:84 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:84 msgid "Write trips with fromJunction and toJunction" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:87 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:87 msgid "Include the cost attribute in route output" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:92 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:559 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:92 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:565 msgid "" "Edge weights for routing are dynamically disturbed by a random factor drawn " "uniformly from [1,FLOAT)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:95 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:118 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:95 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:118 msgid "" "Aggregation period for the given weight files; triggers rebuilding of " "Contraction Hierarchy" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:98 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:112 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:568 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:98 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:112 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:574 msgid "" "Consider edge priorities in addition to travel times, weighted by factor" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:101 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:574 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:101 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:580 msgid "" "Initialize lookup table for astar from the given file (generated by marouter " "--all-pairs-output)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:104 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:577 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:104 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:583 msgid "Initialize lookup table for astar ALT-variant from the given file" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:107 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:107 msgid "Save lookup table for astar ALT-variant to the given file" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:117 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:206 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:117 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:206 msgid "Use FLOAT as Gawron's beta" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:121 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:210 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:121 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:210 msgid "Use FLOAT as Gawron's a" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:124 -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:62 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:213 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:124 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:62 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:213 msgid "Write exit times (weights) for each edge" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:127 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:251 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:127 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:251 msgid "Include total route length in the output" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:130 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:216 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:130 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:216 msgid "Save routes with near zero probability" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:133 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:219 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:133 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:219 msgid "Only reuse routes from input, do not calculate new ones" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:136 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:136 msgid "The probability of keeping the old route" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:139 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:139 msgid "Route all public transport input" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:142 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:202 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:142 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:202 msgid "Choose a route choice method: gawron, logit, or lohse" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:145 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:145 msgid "Use c-logit model (deprecated in favor of --route-choice-method logit)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:149 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:149 msgid "Use FLOAT as logit's beta" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:153 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:153 msgid "Use FLOAT as logit's gamma" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:157 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:157 msgid "Use FLOAT as logit's theta (negative values mean auto-estimation)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:160 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:580 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:160 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:586 msgid "" "Use FLOAT as a factor on pedestrian maximum speed during intermodal routing" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:163 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:583 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:163 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:589 msgid "" "Use FLOAT as a factor on walking speed against vehicle traffic direction" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:170 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:590 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:170 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:596 msgid "Where taxis can drop off customers ('allJunctions, 'ptStops')" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:173 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:593 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:173 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:599 msgid "Where taxis can pick up customers ('allJunctions, 'ptStops')" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:176 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:599 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:176 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:605 msgid "Estimated time for taxi pickup" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:179 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:602 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:179 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:608 msgid "" "Use FLOAT as a maximum train length when initializing the railway router" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:216 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:216 msgid "Routing algorithm '%' does not support weight-attribute '%'." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:220 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:220 #, c-format msgid "Routing algorithm '%' does not support bulk routing." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:228 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:243 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:228 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:243 msgid "Invalid route choice method '%'." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:232 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:232 msgid "" "The --logit option is deprecated, please use --route-choice-method logit." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:244 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:244 msgid "Cannot derive file name for alternatives output, skipping it." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:251 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:251 msgid "" "Option --write-trips.junctions takes no affect when --write-trips is " "disabled." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:107 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:107 #, c-format msgid "Routing algorithm '%' does not support restriction-params" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:151 -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:180 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:151 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:180 msgid "Unknown routing Algorithm '%'!" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:178 -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:210 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:178 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:210 msgid "No weight data was loaded for attribute '%'." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:238 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:238 #, fuzzy msgid "" "Shortest path router and DUE computer for the microscopic, multi-modal " "traffic simulation SUMO." msgstr "Un simulateur de trafic microscopique et multimodal." -#: /home/micha/programming/sumo/src/jtrrouter/ROJTREdge.cpp:64 +#: D:\Repos\sumo/src\jtrrouter\ROJTREdge.cpp:64 #, c-format msgid "The edges '%' and '%' are not connected." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:59 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:59 msgid "Read turning ratios from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:69 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:69 msgid "Use STR[] as default turn definition" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:73 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:73 msgid "Use STR[] as list of sink edges" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:76 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:76 msgid "Whether all edges are allowed as sink edges" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:79 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:79 msgid "Ignore road restrictions based on vehicle class" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:82 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:82 msgid "Allow to re-use a road" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:85 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:85 msgid "Use all source edges as sink edges." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:88 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:88 msgid "" "Subtract upstream flow when inserting a new flow. When option --sources-are-" "sinks is set, the upstream flow is limited to the value of the source flow " "and the remaining part terminates." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:68 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:68 msgid "" "The turn-file format with elements %, % is deprecated, please use % instead." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:87 -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:143 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:87 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:143 #, c-format msgid "The edge '%' declared as a sink is not known." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:116 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:116 msgid "Ignoring flow '%' without 'from'" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:128 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:128 #, c-format msgid "The edge '%' declared as a source is not known." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:152 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:152 #, c-format msgid "" "The edge '%' is not known within the network (within a 'from-edge' tag)." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:172 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:172 #, c-format msgid "The edge '%' is not known within the network (within a 'to-edge' tag)." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:178 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:178 msgid "'probability' must be positive (in definition of to-edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:201 -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:206 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1302 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1400 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:201 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:206 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1302 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1400 #, c-format msgid "The edge '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:210 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:210 msgid "'probability' must be positive (in edgeRelation from '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:94 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:94 msgid "" "The defaults for turnings must be a tuple of at least two numbers divided by " "','." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:101 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:101 msgid "A turn default is not numeric." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:182 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:182 #, fuzzy msgid "" "Router for the microscopic, multi-modal traffic simulation SUMO based on " "junction turning ratios." msgstr "Un simulateur de trafic microscopique et multimodal." -#: /home/micha/programming/sumo/src/libsumo/GUI.cpp:330 +#: D:\Repos\sumo/src\libsumo\GUI.cpp:332 msgid "This system has no OpenGL support. Exiting." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:904 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:904 #, c-format msgid "" "Ignoring veh '%' no-opposite subscription filter for geographic range object " "collection. Consider using the 'lanes' filter." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1067 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1067 msgid "" "Lanes filter is only feasible for context domain 'vehicle' (current is '%'), " "ignoring filter..." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1164 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1164 msgid "" "Turn filter is only feasible for context domain 'vehicle' (current is '%'), " "ignoring filter..." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1229 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1229 msgid "" "Field of vision opening angle ('%') should be within interval (0, 360), " "ignoring filter..." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1341 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1341 msgid "" "addSubscriptionFilterLateralDistance could not determine shape of lane '%' " "with a lateral shift of %." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1399 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1399 msgid "Vehicle '%' was removed though being controlled by TraCI" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1408 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1408 msgid "Person '%' was removed though being controlled by TraCI" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/MeanData.cpp:83 +#: D:\Repos\sumo/src\libsumo\MeanData.cpp:83 msgid "Found % meanData definitions with id '%'." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Person.cpp:530 +#: D:\Repos\sumo/src\libsumo\Person.cpp:535 #, c-format msgid "" "Departure time=% for person '%' is in the past; using current time=% instead." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Person.cpp:929 -msgid "Could not determine position on lane '% at lateral position %." +#: D:\Repos\sumo/src\libsumo\Person.cpp:934 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1741 +msgid "Could not determine position on lane '%' at lateral position %." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Simulation.cpp:105 +#: D:\Repos\sumo/src\libsumo\Simulation.cpp:105 msgid "Simulation version % started via libsumo with time: %." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Simulation.cpp:699 +#: D:\Repos\sumo/src\libsumo\Simulation.cpp:699 msgid "" "Ignoring vehicle type '%' when performing intermodal routing because it is " "not allowed on the start edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/TrafficLight.cpp:697 +#: D:\Repos\sumo/src\libsumo\TrafficLight.cpp:697 #, c-format msgid "" "Cannot check for all deadlocks on swapConstraints because the route for " "vehicle '%' is not computed yet" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1122 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1133 msgid "" "Stop replacement parameter 'teleport=%' ignored for vehicle '%' when only " "removing stop." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1231 -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1354 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1246 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1374 msgid "Unsupported parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1306 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1326 msgid "Waypoint (speed = %) at index % does not support triggers" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1340 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1360 msgid "" "Triggered stop at index % cannot be changed into a waypoint by setting speed " "to %" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1457 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1477 #, c-format msgid "Ignoring changeLaneRelative for vehicle '%' that isn't on the road" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1459 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1479 msgid "Ignoring indexOffset % for vehicle '%' on laneIndex %." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1551 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1575 #, c-format msgid "" "Departure time for vehicle '%' is in the past; using current time instead." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1717 -msgid "Could not determine position on lane '%' at lateral position %." -msgstr "" - -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1914 -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:422 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1938 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:422 msgid "Invalid route replacement for vehicle '%'. %" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:2597 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:2634 msgid "" "Ignoring lane change subscription filter with non-neighboring lane offset " "direction=%." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/VehicleType.cpp:289 +#: D:\Repos\sumo/src\libsumo\VehicleType.cpp:322 #, c-format msgid "Automatically setting emergencyDecel to % for vType '%' to match decel." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/VehicleType.cpp:301 +#: D:\Repos\sumo/src\libsumo\VehicleType.cpp:334 msgid "New value of emergencyDecel (%) is lower than decel (%)" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAAssignments.cpp:190 +#: D:\Repos\sumo/src\marouter\ROMAAssignments.cpp:190 msgid "Unknown origin '%'." msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAAssignments.cpp:194 +#: D:\Repos\sumo/src\marouter\ROMAAssignments.cpp:194 msgid "Unknown destination '%'." msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:71 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:121 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:71 +#: D:\Repos\sumo/src\od2trips_main.cpp:121 msgid "Does not save vtype information" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:74 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:74 msgid "Writes edge loads and final costs into FILE" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:77 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:77 msgid "Writes complete distance matrix into FILE" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:81 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:85 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:81 +#: D:\Repos\sumo/src\od2trips_main.cpp:85 msgid "Loads O/D-files from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:86 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:90 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:86 +#: D:\Repos\sumo/src\od2trips_main.cpp:90 msgid "Loads O/D-matrix in Amitran format from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:89 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:93 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:89 +#: D:\Repos\sumo/src\od2trips_main.cpp:93 msgid "Loads O/D-matrix in tazRelation format from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:93 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:97 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:93 +#: D:\Repos\sumo/src\od2trips_main.cpp:97 msgid "Define data attribute for loading counts (default 'count')" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:96 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:96 msgid "The travel time influence of prior intervals" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:99 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:99 msgid "Parameter key(s) defining source (and sink) taz" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:102 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:102 msgid "Ignore attributes 'fromTaz' and 'toTaz'" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:106 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:106 msgid "" "Defines the time interval when aggregating single vehicle input; Defaults to " "one hour" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:109 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:109 msgid "Ignore edge priorities when calculating capacities and restraints" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:115 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:115 msgid "" "Aggregate routing queries with the same origin for different vehicle types" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:153 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:137 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:153 +#: D:\Repos\sumo/src\od2trips_main.cpp:137 msgid "Scales the loaded flows by FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:156 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:146 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:156 +#: D:\Repos\sumo/src\od2trips_main.cpp:146 msgid "Defines the name of the vehicle type to use" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:159 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:159 msgid "Defines the prefix for vehicle flow names" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:162 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:152 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:162 +#: D:\Repos\sumo/src\od2trips_main.cpp:152 msgid "Uses STR[] as a timeline definition" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:165 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:155 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:165 +#: D:\Repos\sumo/src\od2trips_main.cpp:155 msgid "Uses STR as a 24h-timeline definition" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:168 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:168 msgid "Keep traffic flows of all time slots in the net" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:172 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:172 msgid "Choose a assignment method: incremental, UE or SUE" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:175 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:175 msgid "Use FLOAT as tolerance when checking for SUE stability" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:178 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:178 msgid "" "Use left-turn penalty FLOAT to calculate link travel time when searching " "routes" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:181 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:181 msgid "" "Use INTEGER as the number of paths needed to be searched for each OD pair at " "each iteration" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:184 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:184 msgid "Penalize existing routes with FLOAT to find secondary routes" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:188 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:188 msgid "Use FLOAT as the upper bound to determine auxiliary link cost" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:192 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:192 msgid "Use FLOAT as the lower bound to determine auxiliary link cost" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:195 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:195 msgid "" "maximal number of iterations for new route searching in incremental and " "stochastic user assignment" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:198 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:198 msgid "" "maximal number of inner iterations for user equilibrium calculation in the " "stochastic user assignment" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:223 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:223 msgid "Use FLOAT as (c-)logit's beta for the commonality factor" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:227 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:227 msgid "Use FLOAT as (c-)logit's gamma for the commonality factor" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:231 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:231 msgid "Use FLOAT as (c-)logit's theta" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:239 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:239 msgid "Invalid assignment method '%'." msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:247 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:247 msgid "" "Contraction hierarchies do not work with k shortest path search (please use " "a different routing algorithm)!" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMARouteHandler.cpp:87 +#: D:\Repos\sumo/src\marouter\ROMARouteHandler.cpp:87 msgid "No origin or no destination given, ignoring '%'!" msgstr "" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:239 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:239 msgid "" "Deterministic user equilibrium ('UE') is not implemented yet, using " "stochastic method ('SUE')." msgstr "" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:323 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:315 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:323 +#: D:\Repos\sumo/src\od2trips_main.cpp:315 msgid "No output file given." msgstr "" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:340 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:340 msgid "" "Import O/D-matrices for macroscopic traffic assignment to generate SUMO " "routes." msgstr "" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:376 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:376 msgid "No districts loaded, will use edge ids!" msgstr "" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:387 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:387 msgid "No valid vehicles loaded." msgstr "" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:390 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:285 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:390 +#: D:\Repos\sumo/src\od2trips_main.cpp:285 msgid "Loading failed." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:89 -#: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:66 -#: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:184 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:89 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:66 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:185 msgid "Vehicle '%' teleports beyond arrival edge '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:109 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:109 msgid "Vehicle '%' ends teleporting on edge '%':%, time=%." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:167 -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:197 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:167 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:197 msgid "Teleporting vehicle '%'; waited too long, from edge '%':%, time=%." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:187 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:187 msgid "" "Teleporting vehicle '%'; waited too long, from edge '%':% to edge '%':%, " "time=%." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:137 -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:603 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:137 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:603 msgid "Clearing jam at calibrator '%' at time=%." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:145 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:145 msgid "Could not clear jam at calibrator '%' at time=%." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:177 -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:414 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:177 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:414 msgid "No valid routes in calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:181 -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:418 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:181 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:418 msgid "Route '%' in calibrator '%' does not contain edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:220 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:220 msgid "Join stops are not available in meso yet (vehicle '%', segment '%')." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:247 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:247 msgid "" "Vehicle '%' has multiple stops on segment '%', time=% (stop-output will be " "merged)." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:370 -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1669 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:370 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1656 #, c-format msgid "" "Vehicle '%' ignores triggered stop on lane '%' due to capacity constraints." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:387 -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1684 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:387 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1671 #, c-format msgid "" "Vehicle '%' ignores container triggered stop on lane '%' due to capacity " "constraints." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:554 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:554 msgid "Error: Invalid vehicles in state (may be a micro state)!" msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.h:188 -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.h:194 -msgid "parkingZoneReroute not implemented for meso" -msgstr "" - -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:172 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:172 msgid "Changing a vehicle ID is not permitted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:289 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:289 msgid "Vehicle '%' is not allowed on any lane of via edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:317 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:317 msgid "Vehicle '%' has no valid route from edge '%' to stop edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:361 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:361 #, c-format msgid "Vehicle '%' has no valid route." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:363 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:363 msgid "Removing vehicle '%' which has no valid route." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:377 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:377 #, c-format msgid "No route for vehicle '%' found." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:447 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:447 #, c-format msgid "current edge '%' not found in new route" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:460 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:460 msgid "Vehicle is on junction-internal edge leading elsewhere" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:473 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:473 msgid "" "Vehicle is moving past junction and committed to move to another successor " "edge" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:543 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:543 msgid "Vehicle '%' could not assign stop '%' after rerouting (%) at time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:683 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:683 msgid "No connection between edge '%' and edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:692 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:692 #, c-format msgid "Edge '%' prohibits." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:706 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:706 #, c-format msgid "Vehicle '%' is not allowed to depart on its first edge." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:736 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:736 msgid "Vehicle '%' has no valid route. %" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:799 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:799 msgid "" "Vehicle '%' ignores attribute arrivalEdge=% after rerouting at time=% " "(routeLength=%)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:813 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:813 msgid "Vehicle '%' will not be able to arrive at the given position!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:833 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:833 msgid "Vehicle '%' will not be able to arrive at the given lane '%_%'!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:845 -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:857 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:845 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:857 msgid "Vehicle '%' has no usable arrivalLane on edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:869 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:869 msgid "Vehicle '%' will not be able to arrive with the given speed!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:885 -msgid "Ignoring departEdge % for vehicle '% with % route edges" +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:885 +msgid "Ignoring departEdge % for vehicle '%' with % route edges" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.h:879 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.h:909 msgid "getLeader not yet implemented for meso" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.h:893 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.h:923 msgid "getFollower not yet implemented for meso" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:660 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:660 msgid "" "Choosing new speed factor % for vehicle '%' to match departure speed % (max " "%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1264 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1264 #, c-format msgid "Bidi-edge '%' does not exist" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1277 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1277 msgid "Ambiguous superposable edges between junction '%' and '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1308 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1308 #, c-format msgid "Edge '%s' and bidi edge '%s' have no matching bidi lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:78 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:78 msgid "Load road network description from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:83 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:83 msgid "Load routes descriptions from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:87 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:87 msgid "Load further descriptions from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:91 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:91 msgid "Load edge/lane weights for online rerouting from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:94 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:108 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:94 +#: D:\Repos\sumo/src\router\ROFrame.cpp:108 msgid "Name of the xml attribute which gives the edge weight" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:97 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:97 msgid "Loads a network state from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:99 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:99 msgid "Shifts all times loaded from a saved state by the given offset" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:101 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:101 msgid "Removes vehicles with the given IDs from the loaded state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:104 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:134 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:104 +#: D:\Repos\sumo/src\router\ROFrame.cpp:134 msgid "" "Initialize a TAZ for every junction to use attributes toJunction and " "fromJunction" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:114 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:114 msgid "Save complete network states into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:119 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:119 msgid "Write also empty edges completely when dumping" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:124 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:124 msgid "Write positions and speeds with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:128 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:128 msgid "Save the emission values of each vehicle" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:130 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:130 msgid "Write emission values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:132 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:132 msgid "Save the positions in emission output using geo-coordinates (lon/lat)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:135 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:135 msgid "" "Write emission values scaled to the step length rather than as per-second " "values" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:138 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:138 msgid "Save the battery values of each vehicle" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:140 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:140 msgid "Write battery values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:143 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:143 msgid "Save the elecHybrid values of each vehicle" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:145 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:145 msgid "Write elecHybrid values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:147 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:147 msgid "Write elecHybrid values into one aggregated file" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:150 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:150 msgid "Write data of charging stations" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:153 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:153 msgid "Write data of overhead wire segments" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:156 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:156 msgid "Write data of electrical substation stations" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:158 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:158 msgid "Write substation values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:161 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:161 msgid "Save the Floating Car Data" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:163 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:163 msgid "Save the Floating Car Data using geo-coordinates (lon/lat)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:165 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:165 msgid "Add the vehicle signal state to the FCD output (brake lights etc.)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:167 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:167 msgid "Add kilometrage to the FCD output (linear referencing)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:169 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:169 msgid "Add acceleration to the FCD output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:171 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:171 msgid "" "Add leader vehicle information to the FCD output (within the given distance)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:173 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:173 msgid "Add generic parameter values to the FCD output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:175 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:175 msgid "Restrict fcd output to the edge selection from the given input file" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:177 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:177 msgid "List attributes that should be included in the FCD output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:179 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:179 msgid "List shape names that should be used to filter the FCD output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:182 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:182 msgid "" "Restrict SSM device output to the edge selection from the given input file" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:185 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:185 msgid "Save a lot of information for each timestep (very redundant)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:188 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:188 msgid "Save the vehicle queues at the junctions (experimental)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:190 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:190 msgid "Save vehicle queues with the given period" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:193 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:193 msgid "" "Save complete vehicle positions inclusive speed values in the VTK Format " "(usage: /path/out will produce /path/out_$TIMESTEP$.vtp files)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:195 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:195 msgid "Save the vehicle trajectories in the Amitran format" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:200 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:200 msgid "Save aggregated vehicle departure info into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:203 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:203 msgid "Save summary-output with the given period" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:206 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:206 msgid "Save aggregated person counts into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:210 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:210 msgid "Save single vehicle trip info into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:213 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:213 msgid "" "Write tripinfo output for vehicles which have not arrived at simulation end" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:216 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:216 msgid "" "Write tripinfo output for vehicles which have not departed at simulation end " "because of depart delay" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:220 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:220 msgid "Save personinfo and containerinfo to separate FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:224 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:224 msgid "Save single vehicle route info into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:228 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:228 msgid "Write the exit times for all edges" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:232 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:232 msgid "Write the last route only" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:236 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:236 msgid "Sorts the output by departure time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:240 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:240 msgid "Write the output in the duarouter alternatives style" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:243 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:243 msgid "Write costs for all routes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:247 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:247 msgid "Write the output with the intended instead of the real departure time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:254 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:254 msgid "" "Write vehroute output for vehicles which have not arrived at simulation end" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:257 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:257 msgid "Skip vehroute output for public transport vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:260 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:260 msgid "Include invalid routes and route stubs in vehroute output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:263 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:263 msgid "Include information about edges between stops" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:266 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:266 msgid "" "Write the vehicle speedFactor (defaults to 'true' if departSpeed is written)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:269 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:269 msgid "Include internal edges in the output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:273 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:273 msgid "Save person and container routes to separate FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:276 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:276 msgid "Save links states into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:279 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:279 msgid "Save railsignal-blocks into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:282 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:282 msgid "" "Save bluetooth visibilities into FILE (in conjunction with device.btreceiver " "and device.btsender)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:285 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:285 msgid "Record lane changes and their motivations for all vehicles into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:288 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:288 msgid "Record start of lane change manoeuvres" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:291 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:291 msgid "Record end of lane change manoeuvres" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:294 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:294 msgid "Record coordinates of lane change manoeuvres" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:297 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:297 msgid "" "Record stops and loading/unloading of passenger and containers for all " "vehicles into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:299 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:299 msgid "Write stop output for stops which have not ended at simulation end" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:302 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:302 msgid "Write collision information into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:305 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:305 msgid "Write aggregated traffic statistics for all edges into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:307 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:307 msgid "Write aggregated traffic statistics for all lanes into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:311 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:311 msgid "Write overall statistics into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:315 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:315 msgid "Save movereminder states of selected vehicles into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:317 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:317 msgid "List of vehicle ids which shall save their movereminder states" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:321 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:321 msgid "Use TIME[] as times at which a network state written" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:323 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:323 msgid "save state repeatedly after TIME period" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:325 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:325 msgid "Keep only the last INT periodic state files" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:327 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:327 msgid "Prefix for network states" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:329 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:329 msgid "Suffix for network states (.xml.gz or .xml)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:331 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:331 msgid "Files for network states" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:333 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:333 msgid "Save random number generator states" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:335 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:335 msgid "Save person and container states (experimental)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:337 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:337 msgid "Save rail signal constraints" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:339 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:339 msgid "Write internal state values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:343 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:343 msgid "Defines the begin time in seconds; The simulation starts at this time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:346 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:346 msgid "Defines the end time in seconds; The simulation ends at this time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:349 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:349 msgid "Defines the step duration in seconds" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:352 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:352 msgid "" "Whether to use ballistic method for the positional update of vehicles " "(default is a semi-implicit Euler method)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:355 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:355 msgid "" "Whether vehicles that depart between simulation steps should extrapolate the " "depart position" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:358 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:358 msgid "Defines the number of threads for parallel simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:361 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:361 msgid "" "Defines the resolution in m when handling lateral positioning within a lane " "(with -1 all vehicles drive at the center of their lane" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:365 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:142 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:365 +#: D:\Repos\sumo/src\router\ROFrame.cpp:142 msgid "Load routes for the next number of seconds ahead" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:368 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:145 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:368 +#: D:\Repos\sumo/src\router\ROFrame.cpp:145 msgid "Disable (junction) internal links" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:371 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:371 msgid "" "Ignore vehicles which block the junction after they have been standing for " "SECONDS (-1 means never ignore)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:374 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:374 msgid "Do not check whether routes are connected" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:377 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:377 msgid "Do not check whether accidents occur" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:380 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:380 msgid "How to deal with collisions: [none,warn,teleport,remove]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:383 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:383 +msgid "" +"How to deal with collisions between vehicle and pedestrian: [none,warn," +"teleport,remove]" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:386 msgid "" "Let vehicle stop for TIME before performing collision.action (except for " "action 'none')" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:386 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:389 +msgid "" +"Let vehicle stop for TIME before performing intermodal-collision.action " +"(except for action 'none')" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:392 msgid "Enables collisions checks on junctions" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:389 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:395 msgid "Increase or decrease sensitivity for junction collision check" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:392 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:398 msgid "" "Sets the fraction of minGap that must be maintained to avoid collision " "detection. If a negative value is given, the carFollowModel parameter is used" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:395 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:401 msgid "Delay vehicle insertion to stay within the given maximum number" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:398 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:404 msgid "" "Abort the simulation if the given maximum number of teleports is exceeded" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:401 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:407 msgid "" "Scale demand by the given factor (by discarding or duplicating vehicles)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:404 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:410 msgid "Suffix to be added when creating ids for cloned vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:407 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:413 msgid "" "Specify how long a vehicle may wait until being teleported, defaults to 300, " "non-positive values disable teleporting" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:410 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:416 msgid "" "The waiting time after which vehicles on a fast road (speed > 69km/h) are " "teleported if they are on a non-continuing lane" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:413 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:419 msgid "" "The waiting time after which vehicles on a fast road (default: speed > 69km/" "h) are teleported if they are on a non-continuing lane" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:416 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:422 msgid "" "The waiting time after which vehicles with a disconnected route are " "teleported. Negative values disable teleporting" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:419 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:425 msgid "" "Whether vehicles shall be removed after waiting too long instead of being " "teleported" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:422 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:428 msgid "" "The waiting time after which persons / containers waiting for a pickup are " "teleported. Negative values disable teleporting" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:425 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:431 msgid "" "The waiting time after which vehicles on bidirectional edges are teleported" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:428 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:434 msgid "" "Length of time interval, over which accumulated waiting time is taken into " "account (default is 100s.)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:431 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:437 msgid "Minimum consecutive waiting time before applying startupDelay" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:434 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:440 msgid "" "How long vehicles wait for departure before being skipped, defaults to -1 " "which means vehicles are never skipped" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:437 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:443 msgid "" "Whether insertion on an edge shall not be repeated in same step once failed" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:440 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:446 msgid "Whether each vehicle is checked separately for insertion on an edge" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:443 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:449 msgid "" "Allow inserting a vehicle in a situation which requires emergency braking" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:446 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:452 msgid "" "Each vehicle receives a random offset to its depart value drawn uniformly " "from [0, TIME]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:449 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:455 msgid "Duration of a lane change maneuver (default 0)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:452 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:458 msgid "Whether overtaking on the right on motorways is permitted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:455 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:461 msgid "Switches off all traffic lights." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:458 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:464 msgid "Sets default visibility for actuation detectors" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:461 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:467 msgid "Sets default jam-threshold parameter for all actuation detectors" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:464 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:470 msgid "Sets default detector length parameter for all actuation detectors" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:467 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:473 msgid "Sets default range for detecting delayed vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:470 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:476 msgid "Minimum deceleration when braking at yellow" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:473 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:479 msgid "Let railsignals operate in moving-block mode by default" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:476 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:482 msgid "" "Specify how long a vehicle may wait until impatience grows from 0 to 1, " "defaults to 300, non-positive values disable impatience growth" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:479 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:485 msgid "" "Length of the default interval length between action points for the car-" "following and lane-change models (in seconds). If not specified, the " @@ -1966,918 +1975,940 @@ "length." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:482 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:488 msgid "Select default car following model (Krauss, IDM, ...)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:486 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:492 msgid "" "Select default speed deviation. A negative value implies vClass specific " "defaults (0.1 for the default passenger class" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:489 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:495 msgid "" "Select default emergencyDecel value among ('decel', 'default', FLOAT) which " "sets the value either to the same as the deceleration value, a vClass-class " "specific default or the given FLOAT in m/s^2" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:492 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:498 msgid "Use Kirchhoff's laws for solving overhead wire circuit" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:495 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:501 msgid "" "Enable recuperation from the vehicle equipped with elecHybrid device into " "the overhead wire." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:498 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:504 msgid "" "Enable current limits of traction substation during solving the overhead " "wire electrical circuit." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:501 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:507 msgid "" "Sets the fraction of emergency decel capability that must be used to trigger " "a warning." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:504 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:510 msgid "" "Whether parking simulation includes maneuvering time and associated lane " "blocking" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:507 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:513 msgid "Override stop until times with stop ended times when given" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:510 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:516 msgid "Override stop arrival times with stop started times when given" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:514 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:520 msgid "Select among pedestrian models ['nonInteracting', 'striping', 'remote']" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:517 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:523 msgid "" "Width of parallel stripes for segmenting a sidewalk (meters) for use with " "model 'striping'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:520 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:526 msgid "Factor for random slow-downs [0,1] for use with model 'striping'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:523 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:529 msgid "" "Minimal gap / safety buffer (in meters) from a pedestrian to another vehicle " "for use with model 'striping'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:526 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:532 msgid "" "Time in seconds after which pedestrians start squeezing through a jam when " "using model 'striping' (non-positive values disable squeezing)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:528 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:534 msgid "" "Time in seconds after which pedestrians start squeezing through a jam while " "on a pedestrian crossing when using model 'striping' (non-positive values " "disable squeezing)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:530 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:536 msgid "" "Time in seconds after which pedestrians start squeezing through a jam while " "on a narrow lane when using model 'striping'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:533 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:539 msgid "Fraction of stripes to reserve for oncoming pedestrians" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:536 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:542 msgid "" "Fraction of stripes to reserve for oncoming pedestrians on crossings and " "walkingareas" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:539 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:545 msgid "Maximum width in m to reserve for oncoming pedestrians" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:542 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:548 msgid "Interpret departPosLat for walks in legacy style" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:545 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:551 msgid "" "Generate INT intermediate points to smooth out lanes within the walkingarea" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:548 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:554 msgid "The address (host:port) of the external simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:551 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:557 msgid "" "Tolerance to apply when matching pedestrian and vehicle positions on " "boarding at individual stops" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:562 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:568 msgid "" "Apply the given time penalty when computing minimum routing costs for minor-" "link internal lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:565 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:571 msgid "" "Apply scaled travel time penalties based on green split when computing " "minimum routing costs for internal lanes at traffic lights" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:571 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:577 msgid "" "Distinguish travel time by turn direction and shift a fraction of the " "estimated time loss ahead of the intersection onto the internal edges" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:596 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:602 msgid "" "When set, trips between the same origin and destination will share a taxi by " "default" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:605 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:611 msgid "Replay exact rerouting sequence from vehroute-output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:610 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:59 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:133 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:123 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:616 +#: D:\Repos\sumo/src\router\ROFrame.cpp:59 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:133 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:123 msgid "Return fuel consumption values in (legacy) unit l instead of mg" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:613 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:90 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:136 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:126 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:619 +#: D:\Repos\sumo/src\router\ROFrame.cpp:90 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:136 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:126 msgid "Determines where to load PHEMlight definitions from" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:616 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:93 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:139 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:129 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:622 +#: D:\Repos\sumo/src\router\ROFrame.cpp:93 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:139 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:129 msgid "Enable fleet age modelling with the given reference year in PHEMlight5" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:619 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:96 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:142 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:132 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:625 +#: D:\Repos\sumo/src\router\ROFrame.cpp:96 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:142 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:132 msgid "Set ambient temperature to correct NOx emissions in PHEMlight5" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:628 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:634 msgid "Disable performance reports for individual simulation steps" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:631 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:637 msgid "Enable statistics on vehicle trips" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:634 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:640 msgid "Disable console output of current simulation step" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:637 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:643 msgid "Number of simulation steps between step-log outputs" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:642 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:648 msgid "Enables TraCI Server if set" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:644 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:650 msgid "Expected number of connecting clients" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:648 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:654 msgid "Enables mesoscopic simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:650 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:656 msgid "Length of an edge segment in mesoscopic simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:652 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:658 msgid "Factor for calculating the net free-free headway time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:654 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:660 msgid "Factor for calculating the net free-jam headway time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:656 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:662 msgid "Factor for calculating the jam-free headway time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:658 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:664 msgid "Factor for calculating the jam-jam headway time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:663 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:669 msgid "Enable multiple queues at edge ends" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:665 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:671 msgid "Enable separate queues for every lane" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:667 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:673 msgid "" "Do not build queues (or reduce capacity) for lanes allowing only the given " "vclasses" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:670 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:676 msgid "Enable mesoscopic traffic light and priority junction handling" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:684 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:690 msgid "Enable mesoscopic overtaking" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:686 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:692 msgid "" "Time interval for rechecking insertion into the next segment after failure" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:698 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:704 msgid "Load visualisation settings from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:701 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:707 msgid "Quits the GUI when the simulation stops" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:704 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:710 msgid "Start the GUI in gaming mode" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:707 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:713 msgid "Select the game type ('tls', 'drt')" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:710 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:716 msgid "Start the simulation after loading" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:713 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:719 msgid "Use FLOAT in ms as delay between simulation steps" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:716 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:722 msgid "Use TIME[] as times when the simulation should halt" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:720 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:726 msgid "Load edge/lane weights for visualization from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:723 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:729 msgid "Load a secondary road network for abstract visualization from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:726 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:732 msgid "Restart the simulation after ending (demo mode)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:729 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:735 msgid "Do not load background pictures" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:732 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:738 msgid "Load current viewport from registry" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:735 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:741 msgid "Create initial window with the given x,y size" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:738 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:744 msgid "Create initial window at the given x,y position" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:741 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:747 msgid "The aggregation period for value tracker windows" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:745 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:751 msgid "Start with an OpenSceneGraph view instead of the regular 2D view" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:750 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:756 msgid "Enable overlay for screen recognition" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:754 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:760 msgid "Enable output messages during GUI-Testing" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:758 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:764 msgid "Save gui settings in the given settings output file" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:809 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:815 msgid "No network file (-n) specified." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:813 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:819 msgid "Invalid scaling factor." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:817 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:823 msgid "A vehroute-output file is needed for exit times." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:829 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:835 msgid "You can either restart or quit on end." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:834 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:840 msgid "" "The option 'meso-junction-control.limited' implies 'meso-junction-control'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:852 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:858 msgid "The begin time should not be negative." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:862 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:868 msgid "The end time should be after the begin time." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:867 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:873 msgid "the minimum step-length is 0.001" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:882 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:888 msgid "The save-state time=% will not be used before simulation end at %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:894 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:900 msgid "" "option movereminder-output.vehicles requires option movereminder-output to " "be set" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:899 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:905 msgid "" "The option 'sloppy-insert' is deprecated, because it is now activated by " "default, see the new option 'eager-insert'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:902 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:908 msgid "" "Only one of the options 'lanechange.duration' or 'lateral-resolution' may be " "given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:906 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:912 msgid "Sublane dynamics are not supported by mesoscopic simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:910 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:916 msgid "" "The option 'ignore-accidents' is deprecated. Use 'collision.action none' " "instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:923 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:929 msgid "" "The option tripinfo-output.write-undeparted implies tripinfo-output.write-" "unfinished." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:945 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:951 #, c-format msgid "Unknown model '%' for option 'carfollow.model'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:954 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:960 #, c-format msgid "" "Invalid value '%' for option 'default.emergencydecel'. Must be a FLOAT or " "'default' or 'decel'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:960 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:966 msgid "You need a non-negative delay." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:973 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:979 msgid "Parallel simulation is only possible when compiled with Fox." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:978 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:984 msgid "You need at least one thread." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:982 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:988 msgid "" "Number of threads exceeds number of thread-rngs. Simulation runs with the " "same seed may produce different results" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:985 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:991 msgid "game.mode must be one of ['tls', 'drt']" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:992 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:998 msgid "" "Invalid transfer option '%'. Must be one of 'parkingAreas', 'ptStops' and " "'allJunctions'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:1051 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:1057 msgid "" "Integration method was set to 'ballistic', since a default action step " "length was specified." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSInsertionControl.cpp:276 -#: /home/micha/programming/sumo/src/router/RONet.cpp:481 +#: D:\Repos\sumo/src\microsim\MSInsertionControl.cpp:276 +#: D:\Repos\sumo/src\router\RONet.cpp:481 #, c-format msgid "Another vehicle with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSInternalJunction.cpp:55 +#: D:\Repos\sumo/src\microsim\MSInternalJunction.cpp:55 #, c-format msgid "Internal junction % has no incoming lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:312 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:314 msgid "Unequal lengths of neigh lane '%' and lane '%' (% != %)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:321 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:323 msgid "Unequal lengths of bidi lane '%' and lane '%' (% != %)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:758 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:760 #, c-format msgid "Vehicle '%' is inserted in emergency situation." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:764 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:766 msgid "Vehicle '%' will not be able to depart using the given velocity (%)!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:780 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:782 msgid "" "Invalid departPos % given for vehicle '%'. Inserting at lane end instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1025 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:1027 msgid "" "Vehicle '%' is inserted too fast and will violate the speed limit on a lane " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1029 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:1031 msgid "" "Vehicle '%' will not be able to depart using the given velocity (slow lane " "ahead)!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1658 -msgid "" -"Vehicle '%' collision with person '%', lane='%', gap=%, time=%, stage=%." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2059 +msgid "Vehicle '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1800 -msgid "Vehicle '%' collision with person '%', lane='%', time=%, stage=%." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2088 +#, c-format +msgid "Teleporting vehicle '%' after" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2101 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2093 +#, c-format +msgid "Removing vehicle '%' after" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2097 +#, c-format +msgid "Keeping remote-controlled vehicle '%' after" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2110 +msgid " collision with person '%', lane='%', gap=%, time=%, stage=%." +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2113 +msgid " collision with person '%', lane='%', time=%, stage=%." +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2179 msgid "Teleporting vehicle '%'; beyond end of lane, target lane='%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2108 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2186 msgid "Removing vehicle '%' after earlier collision, lane='%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2113 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2191 msgid "Teleporting vehicle '%' after earlier collision, lane='%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2585 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2663 msgid "" "Lane '%' is approached multiple times from edge '%'. This may cause " "collisions." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:4184 -msgid "Invalid collision.action '%'." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:4268 +msgid "Invalid % '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:4314 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:4405 msgid "" "State was saved with more than % threads. Change the number of threads or do " "not load RNG state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:169 -#: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:232 -#: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:239 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:169 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:232 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:239 msgid "Method not supported" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:187 -#: /home/micha/programming/sumo/src/router/RONet.cpp:60 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:187 +#: D:\Repos\sumo/src\router\RONet.cpp:60 msgid "A network was not yet constructed." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:221 -#: /home/micha/programming/sumo/src/router/RONet.cpp:83 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:221 +#: D:\Repos\sumo/src\router\RONet.cpp:83 msgid "A network was already constructed." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:286 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:286 msgid "" "Option weights.separate-turns is only supported when simulating with " "internal lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:388 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:388 msgid "Simulation version % started with time: %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1459 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1463 msgid "" "TraCI and Triggers cannot use routing algorithm '%'. using 'astar' instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1629 -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:427 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:235 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:221 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1633 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:427 +#: D:\Repos\sumo/src\router\ROLoader.cpp:235 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:221 #, c-format msgid "Loading of % failed." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1649 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1653 #, c-format msgid "Loading state from '%' failed." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:103 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:108 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:103 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:108 msgid "Taz usage was requested but no taz present in % '%'!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:262 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:262 #, c-format msgid "Vehicle type distribution '%' is empty." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:266 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:910 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:266 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:910 #, c-format msgid "Another vehicle type (or distribution) with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:316 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:287 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:316 msgid "Ids of internal routes are ignored (vehicle '%')." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:306 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:306 msgid "Invalid reference to route '%' in route %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:317 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:317 msgid "Attribute 'period' is deprecated for route. Use 'cycleTime' instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:330 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:330 msgid "Disconnected route % when repeating." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:336 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:336 msgid "Invalid cost for route '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:393 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:393 #, c-format msgid "Route '%' has no edges." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:411 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:446 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:411 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:446 msgid "" "Cannot repeat stops with 'until' in route % because no cycleTime is defined." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:420 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:420 msgid "" "Cannot repeat stops with 'arrival' in route % because no cycleTime is " "defined." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:443 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:443 #, c-format msgid "A vehicle with id '%' already exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:446 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:520 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:446 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:520 #, c-format msgid "Another route (or distribution) with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:524 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:524 #, c-format msgid "Route distribution '%' is empty." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:564 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:559 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:564 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:559 msgid "" "Vehicle type '%' with vClass=pedestrian should only be used for persons and " "not for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:573 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:573 msgid "" "Ignoring child element 'route' for vehicle '%' because attribute 'route' is " "set." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:582 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:582 #, c-format msgid "Vehicle '%' has no route." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:724 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:724 msgid "" "Could not merge vehicle stops for vehicle '%' into implicitly defined route " "'%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:755 -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:327 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:755 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:327 msgid "" "Person '%' receives type '%' which implicitly uses unsuitable vClass '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:891 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:891 msgid "" "There exists a person and a container with the same id '%'. Starting with " "SUMO 1.9.0 this is an error." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:986 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:986 #, c-format msgid "Another flow with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1127 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1127 msgid "The busStop '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1133 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1133 msgid "The containerStop '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1139 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1139 msgid "The parkingArea '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1146 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1146 msgid "The chargingStation '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1153 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1153 msgid "The overhead wire segment '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1157 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1157 msgid "Invalid stop definition%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1305 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1309 msgid "Stop edge '%' missing in attribute 'via' for % '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1324 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1198 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1316 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1329 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1203 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1321 msgid "" "The attribute departPos is no longer supported for walks, please use the " "person attribute, the arrivalPos of the previous step or explicit stops." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1350 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1355 msgid "Ignoring arrivalPos for % because it is outside the given stop '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1356 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1219 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1361 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1224 msgid "No destination edge for %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1385 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1239 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1390 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1244 msgid "Start edge not defined for person '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1395 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1460 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1250 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1307 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1400 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1465 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1255 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1312 msgid "Non-positive walking duration for '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1422 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1466 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1311 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1427 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1471 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1316 msgid "Non-positive walking speed for '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1491 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1496 msgid "No edges to walk for person '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1528 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1533 msgid "" "Could not find departure lane for walk of person '%' when interpreting " "departPosLat" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1600 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1605 msgid "Could not read tranship speed for container '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1608 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1613 msgid "Non-positive tranship speed for container '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1634 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1639 #, c-format msgid "The start edge for container '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1653 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1658 msgid "" "Inconsistent tranship for container '%', only one option is allowed: " "'edges', 'to', 'containerStop'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1659 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1664 msgid "No edges to tranship container '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:76 -#: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:64 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:164 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteLoader.cpp:36 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:76 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:64 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:164 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteLoader.cpp:36 msgid "Can not read XML-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:87 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:87 msgid "Could not parse time from state file '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:184 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:184 msgid "State was written with sumo version % (present: %)!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:229 -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:285 -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignalConstraint.cpp:144 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:229 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:285 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignalConstraint.cpp:144 #, c-format msgid "Unknown lane '%' in loaded state." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:389 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:389 #, c-format msgid "Ignoring program '%' for traffic light '%' in loaded state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:424 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:424 msgid "Could not load vehicle control state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:433 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:433 msgid "Removed % vehicles while loading state." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:459 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:459 #, c-format msgid "Could not load vehicle '%' from state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:319 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:319 msgid "No gap control available for meso." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:714 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:714 msgid "" "Lane change model did not provide a reason for changing (state=%, time=%\n" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:755 -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:171 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:755 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:171 msgid "should not happen" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:944 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:944 msgid "" "Vehicle '%' moved by TraCI from % to % (dist %) with implied speed of % " "(exceeding maximum speed %). time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1701 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1688 msgid "Vehicle '%' aborts joining after extension of %s at time %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1846 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1833 msgid "Vehicle '%' to split from vehicle '%' is not known. time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:2741 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:2769 msgid "Suspicious right_before_left junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4375 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4487 msgid " for unknown reasons" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4383 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4495 msgid "" -"Vehicle '%' performs emergency stop at the end of lane '%'% (decel=%, " -"offset=%), time=%." +"Vehicle '%' performs emergency stop at the end of lane '%'% (decel=%, offset=" +"%), time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4458 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4570 msgid "Unexpected end of opposite lane for vehicle '%' at lane '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4576 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4688 msgid "" "Vehicle '%' performs emergency braking on lane '%' with decel=%, wished=%, " "severity=%, time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:5427 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:5571 #, c-format msgid "Vehicle '%' aborts stop." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:7213 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:7408 msgid "Error: Invalid vehicles in state (may be a meso state)!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleControl.cpp:449 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:7439 +msgid "Action steps are out of sync for loaded vehicle '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSVehicleControl.cpp:469 #, c-format msgid "Vehicle '%' aborted waiting for a % that will never come." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:169 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:170 msgid "Vehicle '%' ends teleporting on edge '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:308 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:318 msgid "" "Value of 'emergencyDecel' (%) should be higher than 'decel' (%) for vType " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:311 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:321 msgid "" "Value of 'emergencyDecel' (%) is lower than 'apparentDecel' (%) for vType " "'%' may cause collisions." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:433 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:443 #, c-format msgid "" "Value of tau=% in vehicle type '%' lower than simulation step size may cause " "collisions." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:439 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:449 #, c-format msgid "" "Vehicle class '%' of vType '%' is set as ignored by option --meso-ignore-" @@ -2885,1068 +2916,1164 @@ "queue for multi-modal meso simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_CC.cpp:66 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_CC.cpp:66 msgid "" "The number of lanes needs to be specified in the attributes of carFollowing-" "CC with the \"lanesCount\" attribute" msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Daniel1.cpp:61 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Daniel1.cpp:61 msgid "" "Maximum speed of vehicle '%' is lower than the minimum speed (min: %, max: " "%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Krauss.cpp:58 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Krauss.cpp:58 msgid "Rounding 'sigmaStep' to % for vType '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Rail.cpp:50 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Rail.cpp:50 msgid "Unknown train type: %. Exiting!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Rail.cpp:252 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Rail.cpp:252 msgid "" "Anything else than semi implicit euler update is not yet implemented. " "Exiting!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:161 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:165 #, c-format msgid "Device '%' cannot save state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:201 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:205 msgid "Invalid float value '%'for parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:214 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:218 msgid "Invalid bool value '%'for parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:227 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:231 msgid "Invalid time value '%'for parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:65 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:65 msgid "The range of the bt receiver" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:68 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:68 msgid "Whether all recognition point shall be written" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:71 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:71 msgid "The offtime used for calculating detection probability (in seconds)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:295 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:295 msgid "" "The vehicle '%' cannot be in the range of vehicle '%', leave, and enter it " "in one step." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:421 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:436 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:421 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:436 msgid "" "btreceiver: Can not update position of vehicle '%' which is not on the road." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTsender.cpp:120 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTsender.cpp:134 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTsender.cpp:120 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTsender.cpp:134 msgid "" "btsender: Can not update position of vehicle '%' which is not on the road." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:52 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:52 msgid "Track fuel consumption for non-electric vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:109 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:122 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:128 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:113 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:126 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:132 msgid "" "Battery builder: Vehicle '%' doesn't have a valid value for parameter % (%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:199 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:203 #, c-format msgid "Battery of vehicle '%' is depleted." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:309 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:319 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:329 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:313 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:323 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:333 msgid "Trying to set into the battery device of vehicle '%' an invalid % (%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Bluelight.cpp:59 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Bluelight.cpp:59 msgid "" "Set the distance at which other drivers react to the blue light and siren " "sound" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Bluelight.cpp:68 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Bluelight.cpp:68 msgid "" "bluelight device is not compatible with mesosim (ignored for vehicle '%')" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:66 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:66 msgid "Initial value assigned to the driver's awareness." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:68 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:68 msgid "Time scale for the error process." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:70 msgid "Noise intensity driving the error process." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:72 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:72 msgid "" "General scaling coefficient for applying the error to the perceived speed " "difference (error also scales with distance)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:74 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:74 msgid "" "General scaling coefficient for applying the error to the perceived distance " "(error also scales with distance)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:76 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:76 msgid "" "General scaling coefficient for applying the error to the vehicle's own " "speed when driving without a leader (error also scales with own speed)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:78 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:78 msgid "" "Base threshold for recognizing changes in the speed difference (threshold " "also scales with distance)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:80 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:80 msgid "" "Base threshold for recognizing changes in the headway (threshold also scales " "with distance)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:82 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:82 msgid "Minimal admissible value for the driver's awareness." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:84 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:84 msgid "" "Maximal reaction time (~action step length) induced by decreased awareness " "level (reached for awareness=minAwareness)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:102 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:116 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:116 msgid "Invalid value '%'for vType parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:166 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:179 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:166 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:179 msgid "" "ElecHybrid builder: Vehicle '%' doesn't have a valid value for parameter % " "(%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:374 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:374 #, c-format msgid "" "The resistivity of overhead wire segment connected to vehicle % is < 0. Set " "to 1e-6." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:432 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:528 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:711 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:848 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:432 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:528 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:711 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:848 msgid "" "Overhead wire solver is on, but the Eigen library has not been compiled in!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:648 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:883 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:648 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:883 msgid "The element or node with the last Id was not found in the circuit!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Emissions.cpp:47 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Emissions.cpp:47 msgid "Recording begin time for emission-data" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Emissions.cpp:50 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Emissions.cpp:50 msgid "Recording period for emission-output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:48 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:48 msgid "" "An exemplary parameter which can be used by all instances of the example " "device" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:63 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:63 #, c-format msgid "Invalid value '%'for vehicle parameter 'example'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:75 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:75 #, c-format msgid "Invalid value '%'for vType parameter 'example'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:67 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:67 msgid "Recording begin time for FCD-data" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:70 -#: /home/micha/programming/sumo/src/microsim/devices/MSTransportableDevice_FCD.cpp:49 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSTransportableDevice_FCD.cpp:49 msgid "Recording period for FCD-data" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:73 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:73 msgid "Record objects in a radius around equipped vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:123 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:123 #, c-format msgid "Specified shape '%' for filtering fcd-output could not be found." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:148 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:148 msgid "Could not load names of edges for filtering fcd-output from '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:167 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:167 #, c-format msgid "Unknown attribute '%' to write in fcd output." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Friction.cpp:48 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Friction.cpp:48 msgid "" "The measurement noise parameter which can be applied to the friction device" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Friction.cpp:50 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Friction.cpp:50 msgid "" "The measurement offset parameter which can be applied to the friction device " "-> e.g. to force false measurements" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:49 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:49 msgid "The communication range to the traffic light" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:52 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:52 msgid "The maximum speed factor when approaching a green light" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:55 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:55 msgid "Minimum speed when coasting towards a red light" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:171 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:171 msgid "" "Invalid value '%' for parameter 'device.glosa.range' of traffic light '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:54 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:54 msgid "The period with which the vehicle shall be rerouted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:58 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:58 msgid "The rerouting period before depart" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:62 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:62 msgid "The weight of prior edge weights for exponential moving average" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:66 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:66 msgid "The number of steps for moving average weight of prior edge weights" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:70 msgid "The interval for updating the edge weights" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:75 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:75 msgid "Use zones (districts) as routing start- and endpoints" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:78 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:78 msgid "" "Use weight files given with option --weight-files for initializing edge " "weights" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:82 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:82 msgid "The number of parallel execution threads used for rerouting" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:85 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:85 msgid "Let rerouting happen at the same time for all vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:88 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:88 msgid "Allow rerouting triggered by rail signals." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:91 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:91 msgid "Compute separate average speeds for bicycles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:94 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:94 msgid "Save adapting weights to FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:102 msgid "" "Only one of the options 'device.rerouting.adaptation-steps' or 'device." "rerouting.adaptation-weight' may be given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:106 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:106 msgid "weights.random-factor cannot be less than 1" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:110 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:110 msgid "Negative value for device.rerouting.adaptation-interval!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:115 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:115 msgid "" "The value for device.rerouting.adaptation-weight must be between 0 and 1!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:120 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:243 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:120 +#: D:\Repos\sumo/src\router\ROFrame.cpp:243 msgid "Parallel routing is only possible when compiled with Fox." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:125 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:125 msgid "Adapting number of routing threads to number of simulation threads." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:220 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:234 msgid "" "Specifies which measures will be logged (as a space or comma-separated " -"sequence of IDs in ('TTC', 'DRAC', 'PET'))" +"sequence of IDs in ('TTC', 'DRAC', 'PET', 'PPET','MDRAC'))" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:222 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:236 msgid "" "Specifies space or comma-separated thresholds corresponding to the specified " "measures (see documentation and watch the order!). Only events exceeding the " "thresholds will be logged." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:224 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:238 msgid "" "Specifies whether trajectories will be logged (if false, only the extremal " "values and times are reported)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:226 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:240 msgid "" "Specifies the detection range in meters. For vehicles below this distance " "from the equipped vehicle, SSM values are traced." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:228 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:242 msgid "" "Specifies the time in seconds to be logged after a conflict is over. " "Required >0 if PET is to be calculated for crossing conflicts." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:230 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:244 +msgid "Specifies the perception reaction time for MDRAC computation." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:246 msgid "Give a global default filename for the SSM output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:232 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:248 msgid "Whether to use coordinates of the original reference system in output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:234 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:250 msgid "Whether to write positions (coordinates) for each timestep" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:236 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:252 msgid "Whether to write lanes and their positions for each timestep" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:247 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:254 +msgid "" +"Which conflicts will be excluded from the log according to the conflict type " +"they have been classified (combination of values in 'ego', 'foe' , '', any " +"numerical valid conflict type code). An empty value will log all and " +"'ego'/'foe' refer to a certain conflict type subset." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:265 msgid "Could not load names of edges for filtering SSM device output from '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:1057 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:1119 msgid "" "SSM device of vehicle '%' detected collision with vehicle '%' at time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2188 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2331 msgid "" "Cannot classify SSM encounter between ego vehicle % and foe vehicle % at " "time=%\n" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2366 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2390 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2509 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2533 msgid "" "Cannot compute SSM due to bad internal lane geometry at junction '%'. " "Crossing point between traffic from links % and % not found." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3497 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3699 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3703 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3984 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.measures'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3503 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3705 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3709 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3990 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.measures'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3508 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3714 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.file'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3531 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3737 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.geo'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3537 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3743 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.geo'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3542 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3748 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.geo'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3558 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3764 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.write-positions'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3564 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3770 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.write-positions'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3569 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3596 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3775 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3802 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.write-positions'. " "Using default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3585 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3791 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.write-lane-positions'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3591 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3797 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.write-lane-positions'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3612 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3819 +#, c-format +msgid "Invalid value '%' for vehicle parameter 'ssm.conflict-order'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3827 +#, c-format +msgid "Invalid value '%' for vType parameter 'ssm.conflict-order'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3833 +msgid "" +"Vehicle '%' does not supply vehicle parameter 'device.ssm.exclude-conflict-" +"types'. Using default of '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3851 +msgid "" +"SSM order filter '%' is not supported. Aborting construction of SSM device " +"'%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3868 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.range'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3618 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3874 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.range'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3623 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3879 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.range'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3639 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3895 +#, c-format +msgid "Invalid value '%'for vehicle parameter 'ssm.mdrac.prt'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3901 +#, c-format +msgid "Invalid value '%'for vType parameter 'ssm.mdrac.prt'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3906 +msgid "" +"Vehicle '%' does not supply vehicle parameter 'device.ssm.mdrac.prt'. Using " +"default of '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3924 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.extratime'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3645 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3930 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.extratime'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3650 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3935 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.extratime'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3656 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3941 #, c-format msgid "" "Negative (or no) value encountered for vehicle parameter 'device.ssm." "extratime' in vehicle '%' using default value % instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3670 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3955 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.trajectories'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3676 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3961 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.trajectories'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3681 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3966 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.trajectories'. " "Using default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3710 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3995 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.measures'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3727 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4012 msgid "" "SSM identifier '%' is not supported. Aborting construction of SSM device '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3738 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4023 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.thresholds'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3744 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4029 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.thresholds'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3749 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4034 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.thresholds'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3764 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4049 msgid "" "Given list of thresholds ('%') is not of the same size as the list of " "measures ('%').\n" "Please specify exactly one threshold for each measure." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:82 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:46 +msgid "" +"Time to wait for a rescue vehicle on the road side when the battery is empty" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:48 +msgid "" +"Additional battery buffer for unexpected traffic situation when estimating " +"the battery need" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:50 +msgid "Battery percentage to go into rescue mode" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:52 +msgid "Search radius in travel time seconds" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:54 +msgid "When to trigger a new search if no station has been found" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:56 +msgid "The maximum charging speed of the vehicle battery" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:58 +msgid "Type of energy transfer" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:60 +msgid "" +"After this waiting time vehicle searches for a new station when the initial " +"one is blocked" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:124 +msgid "" +"Rerouting using station finder removes all upcoming stops for vehicle '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:84 msgid "" "The dispatch algorithm [greedy|greedyClosest|greedyShared|routeExtension|" "traci]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:85 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:87 msgid "Write information from the dispatch algorithm to FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:88 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:90 msgid "Load dispatch algorithm parameters in format KEY1:VALUE1[,KEY2:VALUE]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:91 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:93 msgid "The period between successive calls to the dispatcher" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:94 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:96 msgid "The behavior of idle taxis [stop|randomCircling]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:97 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:99 msgid "Write information from the idling algorithm to FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:115 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:117 msgid "Vehicle '%' with device.taxi should have vClass taxi instead of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:122 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:124 msgid "" "Vehicle '%' with personCapacity % and containerCapacity % is not usable as " "taxi." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:147 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:149 #, c-format msgid "Dispatch algorithm '%' is not known" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:313 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:328 msgid "Invalid Re-dispatch for existing customer '%' with a new reservation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:346 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:361 msgid "Re-dispatch did not mention pickup for existing customer '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:453 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:468 msgid "Could not add taxi stop for vehicle '%' to %. time=% error=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:569 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:584 msgid "Taxi '%' reaches scheduled end of service at time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:645 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:660 msgid "" "All customers left vehicle '%' at time=% but there are % remaining stops" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:116 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:116 msgid "Vehicle type for manual driving regime." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:118 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:118 msgid "Vehicle type for automated driving regime." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:120 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:120 msgid "Average response time needed by a driver to take back control." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:122 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:122 msgid "Recovery rate for the driver's awareness after a ToC." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:124 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:124 msgid "" "Attention level below which a driver restrains from performing lane changes " "(value in [0,1])." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:126 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:126 msgid "Average awareness a driver has initially after a ToC (value in [0,1])." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:128 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:128 msgid "Deceleration rate applied during a 'minimum risk maneuver'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:130 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:130 msgid "" "Time, which the vehicle requires to have ahead to continue in automated " "mode. The default value of 0 indicates no dynamic triggering of ToCs." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:132 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:132 msgid "Probability that a dynamically triggered TOR is not answered in time." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:134 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:134 msgid "If true, the vehicle tries to change to the right during an MRM." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:136 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:136 msgid "" "If set, the vehicle tries to reach the given named stopping place during an " "MRM." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:138 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:138 msgid "Duration the vehicle stays at the safe spot after an MRM." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:140 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:140 msgid "" "Maximal acceleration that may be applied during the ToC preparation phase." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:142 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:142 msgid "Timegap for ToC preparation phase." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:144 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:144 msgid "Additional spacing for ToC preparation phase." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:146 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:146 msgid "" "Maximal deceleration applied for establishing increased gap in ToC " "preparation phase." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:148 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:148 msgid "" "Rate of adaptation towards the increased headway during ToC preparation." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:150 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:150 msgid "" "Whether a coloring scheme shall by applied to indicate the different ToC " "stages." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:152 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:152 msgid "Switches on output by specifying an output filename." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:161 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:161 msgid "ToC device is not supported by the mesoscopic simulation." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:200 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:200 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.measures'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:206 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:206 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.measures'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:220 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:220 msgid "" "Given value for ToC device parameter 'dynamicMRMProbability' (=%) is not in " "the admissible range [0,0.5]. Truncated to %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:246 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:246 msgid "" "If any openGap parameters for the ToC model are specified, then at least one " "of toc.ogNewTimeHeadway and toc.ogNewSpaceHeadway must be defined." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:578 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:578 msgid "Ignoring unknown safe spot '%' for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:731 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:731 #, c-format msgid "vType '%' for vehicle '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:933 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:933 msgid "" "Setting device.toc.currentAwareness during automated mode has no effect." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:950 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:950 #, c-format msgid "" "Value of dynamicToCThreshold must be non-negative. (Given value % for " "vehicle % is ignored)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:961 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:961 #, c-format msgid "" "Value of dynamicMRMProbability must be non-negative. (Given value % for " "vehicle % is ignored)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:975 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:975 #, c-format msgid "" "Value of maxPreparationAccel must be non-negative. (Given value % for " "vehicle % is ignored)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:1000 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:1021 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:1000 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:1021 msgid "Unknown ToCState '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:97 +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:97 msgid "" "Mixing reservations of persons and containers with the same group is not " "supported for % and %" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:200 +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:200 msgid "Inconsistent group reservations." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:204 +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:204 msgid "Inconsistent group reservations (2)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:63 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:65 msgid "Idle taxi '%' has no next segment to stop. time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:104 #, c-format msgid "Idle taxi '%' could not stop within %m" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:155 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:157 #, c-format msgid "Vehicle '%' ends idling in a cul-de-sac" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:96 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:183 +msgid "Could not determine taxi stand for vehicle '%' at time=%" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:96 msgid "Rerouting is useless if the edge weights do not get updated!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:148 +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:148 msgid "weights.priority-factor cannot be negative." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:152 +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:152 msgid "" "Option weights.priority-factor does not take effect because all edges have " "the same priority" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:411 +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:411 msgid "Unknown routing algorithm '%'!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSTransportableDevice_Routing.cpp:46 +#: D:\Repos\sumo/src\microsim\devices\MSTransportableDevice_Routing.cpp:46 msgid "The period with which the person shall be rerouted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/engine/VehicleEngineHandler.cpp:157 +#: D:\Repos\sumo/src\microsim\engine\VehicleEngineHandler.cpp:157 msgid "Invalid engine map type. Only \"poly\" is supported for now" msgstr "" -#: /home/micha/programming/sumo/src/microsim/engine/VehicleEngineHandler.cpp:197 +#: D:\Repos\sumo/src\microsim\engine\VehicleEngineHandler.cpp:197 msgid "Unknown tag '%' while parsing." msgstr "" -#: /home/micha/programming/sumo/src/microsim/lcmodels/MSAbstractLaneChangeModel.cpp:82 +#: D:\Repos\sumo/src\microsim\lcmodels\MSAbstractLaneChangeModel.cpp:82 #, c-format msgid "Lane change model '%' is not compatible with sublane simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/lcmodels/MSAbstractLaneChangeModel.cpp:98 +#: D:\Repos\sumo/src\microsim\lcmodels\MSAbstractLaneChangeModel.cpp:98 #, c-format msgid "Lane change model '%' not implemented" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:124 +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:124 msgid "" "No valid detector length and start position given. Assuming startPos = 0 and " "length = end position" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:128 +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:128 msgid "" "No valid detector length and end position given. Assuming endPos = lane " "length and length = endPos-startPos" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:908 +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:908 msgid "Multi-lane e2Detector does not support detecting persons yet" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:161 +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:160 msgid "Negative vehicle step fraction for '%' on lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:556 +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:554 msgid "aggregated meanData output not yet implemented for trackVehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:755 +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:766 msgid "Unknown attribute '%' to write in meanData '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSStopOut.cpp:69 +#: D:\Repos\sumo/src\microsim\output\MSStopOut.cpp:69 msgid "Vehicle '%' stops on edge '%', time=% without ending the previous stop." msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSStopOut.cpp:105 +#: D:\Repos\sumo/src\microsim\output\MSStopOut.cpp:105 msgid "Vehicle '%' ends stop on edge '%', time=% without entering the stop." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:139 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:140 #, c-format msgid "Traffic light '%' does not control any links" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:227 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:229 msgid "" "Unknown inductionLoop '%' given as custom detector for actuated tlLogic '%', " "program '%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:241 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:242 msgid "" "At actuated tlLogic '%', minDur % is too short for a detector gap of %m." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:406 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:407 msgid "At actuated tlLogic '%', actuated phase % has no controlling detector." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:443 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:444 msgid "At actuated tlLogic '%', linkIndex % has no controlling detector." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:452 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:453 msgid "" "Invalid link '%' given as linkMaxDur parameter for actuated tlLogic '%', " "program '%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:462 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:463 msgid "" "Invalid link '%' given as linkMinDur parameter for actuated tlLogic '%', " "program '%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:903 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:905 msgid "" "At actuated tlLogic '%', transition phase % should not have multiple next " "phases" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1061 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1063 msgid "Unmatched parentheses in condition %'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1076 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1078 msgid "Invalid empty condition '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1091 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1093 msgid "Unsupported condition '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1154 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1156 msgid "Division by 0 in condition '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1205 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1207 #, c-format msgid "Modifying global condition '%' is forbidden" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1217 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1219 msgid "Invalid empty expression" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1313 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1315 msgid "Error when retrieving conditions '%' for tlLogic '%' (%)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSDelayBasedTrafficLightLogic.cpp:96 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSDelayBasedTrafficLightLogic.cpp:96 msgid "" "Unknown laneAreaDetector '%' given as custom detector for delay_based " "tlLogic '%', program '%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSOffTrafficLightLogic.cpp:80 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSOffTrafficLightLogic.cpp:80 msgid "Invalid 'off'-state for link % at junction '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSOffTrafficLightLogic.cpp:84 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSOffTrafficLightLogic.cpp:84 msgid "Inconsistent 'off'-states for linkIndex % at tlLogic '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:109 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:109 #, c-format msgid "Rail signal at junction '%' does not control any links" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:1210 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:1210 msgid "Found circular block after railSignal % (% edges, length %)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:1321 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:1321 msgid "Found circular block at railSignal % (% edges, length %)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignalConstraint.cpp:147 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignalConstraint.cpp:147 #, c-format msgid "Unknown tracker lane '%' in loaded state." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:169 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:169 msgid "Listing output lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:243 -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:277 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:243 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:277 msgid "Unrecognized traffic threshold calculation mode" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:57 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:57 msgid "NO VALID POLICY LIST READ" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:81 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:81 msgid "VEHICLE TYPES WEIGHT only works with phase policy, which is missing" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:160 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:160 #, c-format msgid "" "MSSwarmTrafficLightLogic::init Intersection % pheromoneInputLanes: lane " "% not allowed" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:182 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:182 #, c-format msgid "" "MSSwarmTrafficLightLogic::init Intersection % pheromoneOutputLanes lane " "% not allowed" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:194 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:194 msgid "*** Intersection % will run using MSSwarmTrafficLightLogic ***" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:202 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:202 msgid "TL % time 0 Policy: % (pheroIn= 0 ,pheroOut= 0 ) OldPolicy: % ." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:81 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:81 msgid "Mismatching phase size in tls '%', program '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:116 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:116 msgid "No initial signal plan loaded for tls '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:163 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:163 msgid "Could not build an off-state for tls '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:487 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:487 #, c-format msgid "" "The computed factor sum in WAUT '%' at time '%' equals zero;\n" " assuming an error in WAUT definition." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:159 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:163 msgid "Unused states in tlLogic '%', program '%' in phase % after tl-index %" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:178 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:182 msgid "" "Missing yellow phase in tlLogic '%', program '%' for tl-index % when " "switching% to phase %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:200 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:204 msgid "Missing green phase in tlLogic '%', program '%' for tl-index %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:263 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:267 msgid "" "Program '%' at tlLogic '%' is incompatible with logic at junction " "'%' (mutual conflict between link indices %,% tl indices %,% phase %).\n" @@ -3954,6719 +4081,6784 @@ "include the program when building." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:460 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:464 msgid "Green fraction is only 1% for link % in tlLogic '%', program '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:164 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:164 msgid "" "At NEMA tlLogic '%', different sizes of NEMA phase states. Please check the " "NEMA XML" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:566 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:566 msgid "At NEMA tlLogic '%', actuated phase % has no controlling detector" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:584 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:584 msgid "At NEMA tlLogic '%, linkIndex % has no controlling detector" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:630 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:630 #, c-format msgid "NEMA tlLogic '%' is not coordinated but an offset was set." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:959 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:959 msgid "I am starting in the coordinated phases" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel.h:180 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel.h:182 msgid "moveTo is ignored by the current movement model" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel.h:196 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel.h:198 msgid "moveToXY is ignored by the current movement model" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Remote.cpp:209 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Remote.cpp:209 #, c-format msgid "Edge: % does not allow pedestrians." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Remote.cpp:299 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Remote.cpp:299 msgid "Pedestrian model 'remote' does not support simulation.loadState state\n" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:124 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:871 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:124 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:870 msgid "" "Pedestrian vType '%' width % is larger than pedestrian.striping.stripe-width " "and this may cause collisions with vehicles." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:179 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:179 msgid "Person '%' could not find sidewalk on edge '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:463 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:466 #, c-format msgid "Invalid walkingarea '%' does not allow continuation." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:1923 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:1926 msgid "Disconnected walk for person '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:2124 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:2127 msgid "Person '%' is jammed on edge '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:90 +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:90 msgid "Adjusting departPos for cloned walk with routeDistribution '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:94 +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:94 msgid "Adjusting arrivalPos for cloned walk with routeDistribution '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:98 +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:98 msgid "Adjusting departLane for cloned walk with routeDistribution '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSStageTrip.cpp:174 +#: D:\Repos\sumo/src\microsim\transportables\MSStageTrip.cpp:174 msgid "" "Ignoring vehicle type '%' when routing person '%' because it is not allowed " "on the start edge." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:134 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:134 msgid "Changing a transportable ID is not permitted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:256 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:256 msgid "Teleporting % '%'; waited too long, from edge '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:391 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:391 msgid "parkingAreaReroute not support for containers" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportableControl.cpp:69 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportableControl.cpp:69 msgid "Unknown pedestrian model '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:142 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:142 msgid "No flow intervals in calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:161 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:161 #, c-format msgid "Calibrator '%' has no active or upcoming interval" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:209 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:209 msgid "Insertion lane may differ from calibrator lane for calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:213 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:213 msgid "Unknown vehicle type '%' in calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:216 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:216 msgid "Mandatory attribute missing in definition of calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:218 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:218 msgid "" "Non-numeric value for numeric attribute in definition of calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:221 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:221 msgid "" "Either 'vehsPerHour', 'speed' or 'type' has to be set in flow definition of " "calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:224 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:224 msgid "Type calibration is not supported in meso for calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:318 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:318 msgid "Calibrator '%' could not remove vehicle '%' time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:699 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:699 msgid "Cannot set flow for calibrator '%' with overlapping interval." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:701 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:701 msgid "Cannot set flow for calibrator '%' with negative interval." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSLaneSpeedTrigger.cpp:176 +#: D:\Repos\sumo/src\microsim\trigger\MSLaneSpeedTrigger.cpp:176 msgid "Invalid or unsorted time entry in vss '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSLaneSpeedTrigger.cpp:192 +#: D:\Repos\sumo/src\microsim\trigger\MSLaneSpeedTrigger.cpp:192 msgid "Time % was set twice for vss '%'; replacing first entry." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:354 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:409 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:454 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:471 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:492 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:518 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:544 -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:386 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:354 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:409 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:454 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:471 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:492 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:518 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:544 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:386 msgid "" "Overhead circuit solver requested, but solver support (Eigen) not compiled " "in." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:579 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:579 msgid "Overhead circuit solver requested, but solver support not compiled in." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:690 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:690 #, c-format msgid "" "The requested total power could not be delivered by the overhead wire. Only " "% of originally requested power was provided." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:127 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:127 msgid "MSTriggeredRerouter %: No destination edge id given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:192 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:192 msgid "MSTriggeredRerouter %: No route id given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:217 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:217 msgid "MSTriggeredRerouter %: No parking area id given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:505 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:505 #, c-format msgid "" "Cannot keep destination edge '%' for vehicle '%' due to closed edges. " "Terminating route." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:604 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:604 msgid "Invalid value '%' for vehicle parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:612 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:612 msgid "Invalid value '%' for vType parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:784 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:782 #, c-format msgid "" "Parkingarea '%' along the way cannot be used by vehicle '%' for unknown " "reason" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1105 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1103 msgid "" "Invalid distance computation for vehicle '%' to parkingArea '%' at time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1160 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1158 msgid "" "Invalid distance computation for vehicle '%' from parkingArea '%' at time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1236 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1234 msgid "" "ParkingArea '%' is targeted by rerouter '%' but doesn't have it's own " "rerouter. This may cause parking search to abort." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:119 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:153 msgid "Ambiguity in turnarounds computation at junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:269 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:358 msgid "Converting invalid rail_crossing to priority junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:273 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:362 msgid "Converting invalid rail_crossing to traffic_light at junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:282 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1739 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:423 -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:358 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:371 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1744 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:423 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:358 msgid "Could not allocate tls '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:173 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:176 msgid "" "Added % bidi-edges to ensure that all tracks are usable in both directions." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:175 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:178 #, c-format msgid "Ignore % edges because they have the wrong spreadType" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:197 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:200 #, c-format msgid "Bidi-edge '%' prevented by filtering rules." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:211 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:214 msgid "Could not add bidi-edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:272 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:275 msgid "Railway nodes by number of incoming,outgoing edges:" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:370 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:373 msgid "Found % railway nodes marked as buffer_stop" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:380 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:383 msgid "Found % bidirectional rail edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:406 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:409 msgid "Found % railway edges and % railway nodes (% signals)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:523 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:526 msgid "Added % bidi-edges as extension of existing bidi edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:534 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:537 msgid "Could not find bidi-edge for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:639 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:642 msgid "Found % reversible edge sequences between broken rail nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:668 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:671 msgid "Reversed % sequences (count by length: %)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:689 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:692 msgid "Ignoring buffer stop junction '%' with % edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:746 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:749 msgid "Added % edges to connect % buffer stops in both directions." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:827 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:830 msgid "" "Added % bidi-edges between % pairs of railway switches (count by length: %)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:974 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:977 msgid "" "Edge sequence is not consistent with stop sequence in line '%', not adding " "bidi edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1016 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1019 #, c-format msgid "" "Stop on edge '%' can only be reached in reverse but edge has the wrong " "spreadType." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1037 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1044 msgid "No connection found between stops on edge '%' and edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1147 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1154 msgid "" "Added % bidi-edges to ensure connectivity of straight tracks at geometry-" "like nodes." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1149 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1156 msgid "" "Added % bidi-edges to ensure connectivity of straight tracks at switches." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1209 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1216 msgid "" "Cannot extend track direction priority because there are no track edges with " "positive priority" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1265 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1272 msgid "" "Edge '%' was loaded with undefined priority (%) but has unambiguous main " "direction (no bidi edge)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:116 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1359 +msgid "Added % rail signals at % stops." +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:116 #, c-format msgid "Can not build ramp on edge '%' - the edge is unsuitable." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:120 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:120 #, c-format msgid "Can not build on ramp on edge '%' - the edge is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:131 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:131 #, c-format msgid "Can not build off ramp on edge '%' - the edge is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:249 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:249 msgid "Ups - could not build on-ramp for edge '%' (node could not be build)!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:254 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:254 msgid "Ups - could not build on-ramp for edge '%'!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:284 -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:289 -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:400 -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:403 -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:710 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:284 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:289 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:400 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:403 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:710 msgid "Could not set connection!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:356 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:356 msgid "Ups - could not build off-ramp for edge '%' (node could not be build)!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:361 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:361 msgid "Ups - could not build off-ramp for edge '%'!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:423 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:423 msgid "For edge '%': could not compute shape." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:431 -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:459 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:432 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:460 #, c-format msgid "At least one of edge's '%' nodes is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:456 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:457 #, c-format msgid "Edge '%' needs at least one lane." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:462 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:463 msgid "Invalid edge id '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:492 -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:626 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:493 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:627 #, c-format msgid "Edge's '%' from- and to-node are at the same position." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:999 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1000 msgid "Found angle of % degrees at edge '%', segment %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1155 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1156 msgid "Could not set connection from '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1667 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1668 msgid "Connection '%_%->%_%' is only %m short." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1768 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1770 msgid "" "Intersecting left turns at junction '%' from lane '%' and lane '%' (increase " "junction radius to avoid this)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1868 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1870 msgid "" "Speed of % connection '%' reduced by % due to turning radius of % (length=%, " "angle=%)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2208 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2210 msgid "In lane '%': lane shape could not be determined (%)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2221 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2223 msgid "In lane '%': Could not build shape (%)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2629 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2637 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " "directions but only % targets" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2670 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2678 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " "directions and % targets (after target pruning)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2689 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2697 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " "connections with directions '%' but target edge '%' has only % suitable lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2716 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2724 msgid "" "Cannot apply turn sign information for edge '%' because not enough target " "lanes could be determined for direction '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2955 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2985 msgid "Edge '%' is not connected to outgoing edges at junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2969 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2999 msgid "Lane '%' is not connected from any incoming edge at junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2986 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3016 #, c-format msgid "Ignoring changeLeft prohibition for '%' to avoid dead-end" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2989 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3019 #, c-format msgid "Ignoring changeRight prohibition for '%' to avoid dead-end" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:3590 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3620 #, c-format msgid "The lane '%' on edge '%' already had a traffic light signal." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:3596 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3626 msgid "Could not set any signal of the tlLogic '%' (unknown group)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4079 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4117 msgid "Ignoring invalid stopOffset for edge '%' (negative offset)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4088 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4126 msgid "Ignoring invalid stopOffset for lane '%' (negative offset)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4094 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4132 msgid "Ignoring invalid stopOffset for lane '%' (invalid lane index)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4357 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4395 #, c-format msgid "Edge % allows pedestrians on all lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4415 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4453 #, c-format msgid "Edge '%' already has a dedicated lane for %s. Not adding another one." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4452 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4490 #, c-format msgid "Edge '%' doesn't have a dedicated lane for %s. Cannot be restored." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4500 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4538 msgid "Could not avoid overlapping shape at node '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:121 -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:140 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:121 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:140 msgid "Invalid boundary: need at least 2 coordinates" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:142 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:142 msgid "Invalid boundary: malformed coordinate" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:259 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:259 msgid "" "Cannot prune edges using a geo-boundary because no projection has been loaded" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:438 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:438 msgid "Attempt to rename edge using existing id '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:498 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:499 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:501 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:498 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:499 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:501 msgid "Error on parsing a split (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:556 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:556 msgid "Split at '%' lies beyond the edge's length (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:639 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:639 msgid "Could not insert edge '%' before split of edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:643 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:643 msgid "Could not insert edge '%' after split of edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:880 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:880 msgid "Moving opposite lane '%' from invalid lane '%' to lane index %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:882 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:882 msgid "Removing opposite lane '%' for invalid lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:891 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:891 msgid "Removing unknown opposite lane '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:896 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:896 msgid "Adapting invalid opposite lane '%' for edge '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:902 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:902 msgid "Adapting missing opposite lane '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:908 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:908 msgid "Averaging edge lengths for lane '%' (length %) and edge '%' (length %)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:921 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:921 msgid "Opposite lane '%' does not connect the same nodes as edge '%'!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1421 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1421 msgid "Replacing loaded roundabout '%' with '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1739 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1739 msgid "Edge '%' overlaps with edge '%' by %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1755 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1755 #, c-format msgid "Edge '%' has a vertical jump of %m." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1757 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1757 #, c-format msgid "Edge '%' has a grade of %%." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1767 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1767 #, c-format msgid "Connection '%' has a vertical jump of %m." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1769 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1769 #, c-format msgid "Connection '%' has a grade of %%." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1809 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1809 msgid "Not joining tram edge '%' with % lanes." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1883 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1883 msgid "Ambiguous tram edges '%' and '%' for lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:2037 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:138 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:554 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:2037 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:138 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:554 #, c-format msgid "Edge's '%' from-node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:2041 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:142 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:566 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:2041 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:142 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:566 #, c-format msgid "Edge's '%' to-node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:52 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:52 msgid "The default number of lanes in an edge" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:56 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:56 msgid "The default width of lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:59 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:59 msgid "The default method for computing lane shapes from edge shapes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:63 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:63 msgid "The default speed on an edge (in m/s)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:67 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:67 msgid "The default friction on an edge" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:71 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:71 msgid "The default priority of an edge" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:74 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:74 msgid "The default edge type" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:77 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:77 msgid "The default width of added sidewalks" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:80 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:80 msgid "The default width of added bike lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:83 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:83 msgid "The default width of a pedestrian crossing" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:86 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:86 msgid "The default speed 'limit' on a pedestrian crossing (in m/s)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:89 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:89 msgid "The default speed 'limit' on a pedestrian walkingarea (in m/s)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:92 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:92 msgid "The default for allowed vehicle classes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:95 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:95 msgid "The default for disallowed vehicle classes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:98 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:98 msgid "Whether junctions should be kept clear by default" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:101 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:101 msgid "The default turning radius of intersections" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:104 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:104 msgid "The default length when overriding connection lengths" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:107 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:107 msgid "" "The default algorithm for computing right of way rules ('default', " "'edgePriority')" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:110 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:110 msgid "" "Allow building right-before-left junctions when the incoming edge speeds are " "below FLOAT (m/s)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:113 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:113 msgid "" "Build left-before-right junctions instead of right-before-left junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:117 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:117 msgid "Omits internal links" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:120 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:120 msgid "" "Remaps alphanumerical IDs of nodes and edges to ensure that all IDs are " "integers" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:123 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:123 msgid "Remaps IDs of nodes to integers starting at INT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:126 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:126 msgid "Remaps IDs of edges to integers starting at INT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:130 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:130 msgid "" "Ensures that generated ids do not included any of the typed IDs from FILE " "(sumo-gui selection file format)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:134 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:134 msgid "Removes vehicle class restrictions from imported edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:138 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:138 msgid "Disables building turnarounds" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:142 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:142 msgid "Disables building turnarounds at tls-controlled junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:145 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:145 msgid "Disables building turnarounds at geometry-like junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:148 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:148 msgid "Disables building turnarounds except at dead end junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:151 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:151 msgid "" "Disables building turnarounds except at at junctions with a dedicated " "turning lane" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:154 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:154 msgid "Disables building turnarounds at fringe junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:157 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:157 msgid "Disables building connections to left" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:161 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:161 msgid "Splits edges across geometry nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:165 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:165 msgid "" "Replace nodes which only define edge geometry by geometry points (joins " "edges)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:168 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:168 msgid "Ensure that the given list of edges is not modified" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:176 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:176 msgid "Ensure that edges with public transport stops are not modified" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:188 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:192 msgid "splits geometry to restrict segment length" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:192 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:196 msgid "reduces too similar geometry points" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:195 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:199 msgid "" "Warn about edge geometries with an angle above DEGREES in successive segments" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:198 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:202 msgid "" "Warn about edge geometries with a turning radius less than METERS at the " "start or end" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:201 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:205 msgid "" "Straighten edge geometries to avoid turning radii less than geometry.min-" "radius" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:204 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:208 msgid "" "Straighten edge geometries to avoid turning radii less than geometry.min-" "radius (only railways)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:207 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:211 msgid "" "Warn if the junction shape is to far away from the original node position" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:210 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:214 msgid "Warn if edges overlap by more than the given threshold value" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:213 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:217 msgid "" "Ignore overlapping edges if they are separated vertically by the given " "threshold." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:216 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:220 msgid "Modify edge geometries to avoid overlap at junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:219 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:223 msgid "" "join adjacent lanes that have the same permissions and which do not admit " "lane-changing (sidewalks and disallowed lanes)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:222 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:226 msgid "" "Matches stops outside the road network to the referencing pt line when below " "the given distance" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:226 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:230 msgid "Repair topology of the railway network" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:229 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:233 msgid "" "Repair topology of the railway network just enough to let loaded public " "transport lines to work" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:232 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:236 msgid "" "Allow bidirectional rail use wherever rails with opposite directions meet at " "a straight angle" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:235 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:239 msgid "Add turn-around connections at all loaded stops." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:238 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:242 +msgid "" +"Penalty factor for adding new bidi edges to connect public transport stops" +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:245 msgid "Make all rails usable in both direction" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:241 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:248 msgid "Make all rails edge ids from FILE usable in both direction" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:244 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:251 msgid "Set edge priority values based on estimated main direction" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:247 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:254 msgid "Extend loaded edge priority values based on estimated main direction" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:250 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:257 +msgid "Guess signals that guard public transport stops" +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:260 msgid "The search radius for finding suitable road accesses for rail stops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:254 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:264 msgid "The maximum road accesses registered per rail stops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:258 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:268 msgid "" "The walking length of the access is computed as air-line distance multiplied " "by FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:262 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:272 msgid "Skips automatic generation of stops on the bidi-edge of a loaded stop" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:266 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:276 #, c-format msgid "Warn about edge geometries with a grade in % above FLOAT." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:269 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:279 msgid "Smooth edge geometries with a grade above the warning threshold." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:273 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:283 msgid "Turn off normalizing node positions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:277 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:186 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:287 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:186 msgid "Adds FLOAT to net x-positions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:281 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:190 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:291 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:190 msgid "Adds FLOAT to net y-positions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:284 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:193 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:294 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:193 msgid "Adds FLOAT to net z-positions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:288 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:298 msgid "Flips the y-coordinate along zero" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:292 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:302 msgid "Enable roundabout-guessing" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:295 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:305 msgid "Default visibility when approaching a roundabout" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:298 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:308 msgid "Enable guessing of opposite direction lanes usable for overtaking" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:301 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:311 msgid "Ensure that opposite edges have the same length" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:304 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:314 msgid "Enable guessing of network fringe nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:307 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:317 msgid "Guess disconnected edges above the given speed as outer fringe" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:310 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:320 msgid "Assumes left-hand traffic on the network" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:326 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:336 msgid "Interprets STR[] as list of junctions to exclude from joining" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:338 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:348 msgid "Modifies all edge speeds by adding FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:341 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:351 msgid "Modifies all edge speeds by multiplying by FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:344 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:354 msgid "Modifies all edge speeds to at least FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:352 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:362 msgid "Generate INT intermediate points to smooth out intersection corners" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:355 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:365 msgid "" "Generate INT intermediate points to smooth out lanes within the intersection" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:358 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:368 msgid "" "Generate longer intersections to allow for smooth s-curves when the number " "of lanes changes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:398 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:411 msgid "Forces rectangular cuts between lanes and intersections" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:457 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:470 msgid "Always build walking areas even if there are no crossings" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:460 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:473 msgid "" "Do not create a walkingarea between sidewalks that are connected by a " "pedestrian junction within FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:605 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:618 msgid "Only keep edges with speed in meters/second > FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:609 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:622 msgid "Remove edges in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:613 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:626 msgid "" "Only keep edges in STR[] or those which are kept due to other keep-edges or " "remove-edges options" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:616 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:629 msgid "" "Only keep edges in FILE (Each id on a single line. Selection files from sumo-" "gui are also supported) or those which are kept due to other keep-edges or " "remove-edges options" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:619 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:632 msgid "" "Remove edges in FILE. (Each id on a single line. Selection files from sumo-" "gui are also supported)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:623 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:636 msgid "Remove edges after joining" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:627 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:640 msgid "" "Only keep edges which are located within the given boundary (given either as " "CARTESIAN corner coordinates or as polygon )" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:630 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:643 msgid "" "Only keep edges which are located within the given boundary (given either as " "GEODETIC corner coordinates or as polygon " ")" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:634 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:647 msgid "Only keep edges which allow one of the vclasses in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:637 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:650 msgid "Remove edges which allow only vclasses from STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:640 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:653 msgid "Only keep edges where type is in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:643 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:656 msgid "Only keep the INT largest weakly connected components" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:646 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:659 msgid "Remove edges where type is in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:650 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:663 msgid "Removes isolated edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:657 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:670 msgid "All nodes will be unregulated" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:662 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:675 msgid "Do not regulate nodes in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:666 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:679 msgid "Do not regulate district nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:672 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:685 msgid "Enable ramp-guessing" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:675 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:688 msgid "" "Guess on-ramps and mark acceleration lanes if they exist but do not add new " "lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:679 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:692 msgid "Treat edges with speed > FLOAT as no ramps" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:683 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:696 msgid "Treat edges with speed < FLOAT as no highways" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:687 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:700 msgid "Use FLOAT as ramp-length" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:691 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:704 msgid "Use FLOAT as minimum ramp-length" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:695 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:708 msgid "Tries to handle the given edges as ramps" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:698 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:711 msgid "Do not consider the given edges as ramps" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:702 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:715 msgid "Avoids edge splitting" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:713 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:725 #, c-format msgid "unsupported value '%' for option '--tls.default-type'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:717 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:729 msgid "" "only one of the options 'keep-edges.in-boundary' or 'keep-edges.in-geo-" "boundary' may be given" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:721 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:733 msgid "" "only one of the options 'no-internal-links' or 'crossings.guess' may be given" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:725 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:737 msgid "only one of the options 'no-internal-links' or 'walkareas' may be given" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:729 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:741 msgid "" "only one of the options 'tls.green.time' or 'tls.cycle.time' may be given" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:733 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:745 msgid "default.lanenumber must be at least 1" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:741 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:753 msgid "" "only one of the options 'default.disallow' or 'default.allow' may be given" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:745 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:757 msgid "junctions.internal-link-detail must >= 2" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:750 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:762 msgid "" "Option 'junctions.scurve-stretch' requires internal lanes to work. Option '--" "no-internal-links' will be disabled." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:757 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:769 msgid "" "option 'default.junctions.radius' is smaller than option 'junctions.small-" "radius'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:765 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:777 msgid "tls.layout must be 'opposites', 'incoming' or 'alternateOneWay'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:770 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:782 msgid "default.right-of-way must be one of '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:774 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:786 msgid "roundabouts.visibility-distance must be positive or -1" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:790 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:802 msgid "Unknown value for default.spreadtype '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:88 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:88 msgid "Cannot supply height since no height data was loaded" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:136 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:136 msgid "Could not get height data for coordinate %" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:190 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:190 msgid "Could not open shape file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:204 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:204 msgid "" "Could not create geocoordinates converter; check whether proj.4 is installed." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:231 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:231 msgid "Ignored heightmap feature type %" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:276 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:276 msgid "Cannot load shape file since SUMO was compiled without GDAL support." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:288 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:288 msgid "Cannot load GeoTIFF file." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:303 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:303 msgid "Could not parse geo information from %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:312 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:312 msgid "Unknown color band in %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:319 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:319 msgid "Failure in reading %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:348 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:348 msgid "Cannot load GeoTIFF file since SUMO was compiled without GDAL support." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:89 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:89 msgid "Could not load names of edges too keep from '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:107 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:107 msgid "Could not load IDs from '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:123 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:123 msgid "Invalid lane id '%' (missing '_')." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:130 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:130 msgid "Invalid lane index '%' for lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedSUMOTLDef.cpp:359 +#: D:\Repos\sumo/src\netbuild\NBLoadedSUMOTLDef.cpp:359 #, c-format msgid "Could not patch tlLogic '%' for changed crossings" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedSUMOTLDef.cpp:889 +#: D:\Repos\sumo/src\netbuild\NBLoadedSUMOTLDef.cpp:889 msgid "Unused state in tlLogic '%', program '%' at tl-index %" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:83 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:83 msgid "" "TYellow of signal group '%' was less than the computed one; patched (was:%, " "is:%)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:300 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:300 msgid "During computation of traffic light '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:514 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:514 msgid "Could not set signal on connection (signal: %, group: %)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:612 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:612 msgid "myNeedsContRelation was not propperly initialized\n" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:94 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:94 msgid "Removing self-loops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:98 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:98 msgid "Finding isolated roads" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:103 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:103 msgid "Finding largest components" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:110 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:110 msgid "Removing unwished edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:117 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:117 msgid "Processing public transport stops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:132 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:132 msgid "Revising public transport stops based on pt lines" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:138 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:138 msgid "Cleaning up public transport stops that are not served by any line" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:144 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:144 #, c-format msgid "Removed % pt stops because they could not be assigned to the network" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:149 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:149 msgid "Align pt stop id signs with corresponding edge id signs" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:186 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:186 msgid "Joining tram edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:190 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:190 msgid " Joined % tram edges into roads." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:228 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:228 msgid "Joining junction clusters" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:233 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:233 #, c-format msgid " Joined % junction cluster(s)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:236 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:236 msgid "Joining junctions with identical coordinates" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:240 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:240 #, c-format msgid " Joined % junctions." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:245 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:245 msgid "Joining lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:248 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:248 #, c-format msgid " Joined lanes on % edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:258 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:258 #, c-format msgid " % nodes removed." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:278 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:278 msgid "Reducing geometries" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:285 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:285 msgid "Joining similar edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:295 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:295 msgid "guessing opposite direction edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:301 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:301 msgid "Splitting geometry edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:308 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:308 #, c-format msgid " Joined % junctions after splitting geometry." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:313 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:313 msgid "Computing turning directions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:322 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:322 msgid "Assigning nodes to traffic lights" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:345 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:345 msgid "Guessing and setting on-/off-ramps" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:361 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:361 msgid "Guessed % bike lanes." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:372 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:372 #, c-format msgid "Guessed % sidewalks." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:382 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:382 #, c-format msgid "Remapped % edge IDs and % node IDs." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:397 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:397 msgid "Sorting nodes' edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:402 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:402 msgid "Computing node shapes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:410 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:410 msgid "Computing edge shapes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:423 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:423 msgid "Applying speed modifications" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:436 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:436 msgid "Computing node types" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:447 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:447 #, c-format msgid "Guessed % pedestrian crossings." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:475 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:475 msgid "Computing priorities" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:479 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:479 msgid "Computing approached edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:484 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:484 msgid "Guessing and setting roundabouts" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:487 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:487 msgid " Guessed % roundabout(s)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:493 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:493 msgid "Computing approaching lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:497 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:497 msgid "Dividing of lanes on approached lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:503 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:503 msgid "Guessing Network fringe" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:506 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:506 #, c-format msgid " Guessed % fringe nodes." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:511 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:511 msgid "Processing turnarounds" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:529 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:529 msgid "Rechecking of lane endings" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:551 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:551 msgid "Joining traffic light nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:558 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:558 msgid "Computing traffic light control information" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:565 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:565 msgid "Computing node logics" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:570 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:570 msgid "Computing traffic light logics" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:577 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:577 msgid " % traffic light(s) %computed." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:585 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:588 msgid "Building inner edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:598 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:601 msgid "stretching junctions to smooth geometries" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:627 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:630 msgid "Generating street signs" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:638 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:641 msgid "Checking overlapping edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:643 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:646 msgid "Checking edge grade" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:658 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:661 msgid "Find accesses for pt rail stops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:681 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:684 msgid "" "Network contains very large coordinates and will probably flicker in the " "GUI. Check for outlying nodes and make sure the network is shifted to the " "coordinate origin" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:688 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:691 msgid "Moving network to origin" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:299 -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:321 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:299 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:321 msgid "Invalid node id '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:465 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:465 msgid " Removing self-looping edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:744 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:744 msgid "Could not compute indirect left turn shape at node '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:760 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:760 #, c-format msgid "Connection '%' starts at a non-existant lane." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:763 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:763 #, c-format msgid "Connection '%' targets a non-existant lane." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:777 -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:795 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:777 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:795 msgid "Could not use custom shape for connection %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:786 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:786 msgid "Custom shape has distance % to incoming lane for connection %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:803 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:803 msgid "Custom shape has distance % to outgoing lane for connection %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1003 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1003 msgid "" "Junction '%' is too complicated (% connections, max %); will be set to %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1144 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1144 #, c-format msgid "Shape for junction '%' has distance % to its given position." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1148 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1148 msgid "For junction '%': could not compute shape." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1852 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1850 msgid "Something went wrong during the building of a connection..." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:2871 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:2878 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (no " "walkingarea found)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3047 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3054 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (no vehicle " "lanes to cross)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3066 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3073 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (invalid " "shape)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3217 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3224 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' targets '%' and " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3240 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3247 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' is targeted by '%' " "and '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3245 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3252 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' starts and ends at " "walkingarea '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3465 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3472 msgid "Invalid pedestrian topology: crossing '%' across [%] has no target." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3685 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3692 msgid "Request for unknown crossing '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3701 -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3712 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3708 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3719 msgid "Request for unknown crossing for the given Edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:319 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:319 msgid "Removed a road without junctions: %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:406 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:406 msgid "Found % components and removed % (% edges)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:447 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:447 msgid "Removed % railway components (% edges)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:658 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:663 #, c-format msgid "" "Ignoring join exclusion for junction '%' since it already occurred in a list " "of nodes to be joined." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:691 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:696 msgid "" "Ignoring join-cluster because junction '%' was already excluded from joining." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:694 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:699 #, c-format msgid "" "Ignoring join-cluster because junction '%' already occurred in another join-" "cluster." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:700 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:705 #, c-format msgid "Unknown junction '%' in join-cluster." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:708 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:713 msgid "Ignoring join-cluster '%' because it has size '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:722 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:727 msgid "unknown junction '%' while joining." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:780 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:821 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:828 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:833 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:840 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:785 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:826 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:833 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:838 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:845 msgid "Not joining junctions % (%)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:800 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:814 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:805 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:819 msgid "Reducing junction cluster % (%)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1709 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1714 msgid "Could not join junctions %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1909 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1956 msgid "Ambiguous traffic light type for node cluster '%', setting to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2005 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2052 #, c-format msgid " The junction '%' to set as not-controlled is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2174 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2221 msgid "Could not build joined tls '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2219 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2266 msgid "Could not build guessed, joined tls." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2335 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2382 msgid "Could not build a joined tls." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2352 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2399 msgid "Building a tl-logic for junction '%' twice is not possible." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2434 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2526 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2481 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2573 msgid "-----------------------------------------------------" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2435 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2482 msgid "Summary:" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2493 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2540 msgid " Node type statistics:" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2522 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2569 msgid " Network boundaries:" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2555 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2602 msgid "Attempt to rename node using existing id '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeShapeComputer.cpp:441 +#: D:\Repos\sumo/src\netbuild\NBNodeShapeComputer.cpp:444 msgid "Fixing offset for edge '%' at node '%." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:561 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:561 #, c-format msgid "" "Minor green from edge '%' to edge '%' exceeds %m/s. Maybe a left-turn lane " "is missing." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:773 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:773 msgid "" "Generating NEMA phases is not support for traffic light '%' with % incoming " "edges. Using tlType 'actuated' as fallback" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:799 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:799 msgid "The traffic light '%' cannot be adapted to a cycle time of %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:818 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:818 msgid "The traffic light '%' has a high cycle time of %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:197 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:197 msgid "Could not retrieve edge '%' for first stop of line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:203 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:203 msgid "First stop edge '%' is not part of the route of line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:227 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:227 msgid "Could not retrieve edge '%' for last stop of line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:233 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:233 msgid "Last stop edge '%' is not part of the route of line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:294 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:302 msgid "Removed invalid stop '%' from line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:312 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:320 msgid "Removed duplicate stop '%' at area '%' from line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:315 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:323 msgid "Removed duplicate stop '%' named '%' from line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:99 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:99 msgid "" "Cannot revise pt stop localization for pt line '%', which consist of one way " "only. Ignoring!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:103 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:103 msgid "" "Cannot revise pt stop localization for pt line '%', which has no route " "edges. Ignoring!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:122 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:122 msgid "" "Cannot assign stop '%' on edge '%' to pt line '%' (wayNodes not found). " "Ignoring!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:137 -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:151 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:137 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:151 msgid "" "Cannot revise pt stop localization for incomplete pt line '%'. Ignoring!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:162 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:162 msgid "Could not re-assign PT stop '%', probably broken osm file." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:171 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:171 msgid "PT stop '%' has been moved to edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:243 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:243 msgid "" "Could not assign stop '%' to pt line '%' (closest edge '%', distance %). " "Ignoring!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:275 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:275 msgid "Cannot assign stop % on edge '%' to pt line '%'. Ignoring!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:458 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:475 msgid "" "Could not determine vehicle class for public transport line of type '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:523 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:540 msgid "Could not determine direction for line '%' at stop '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:110 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:110 msgid "" "Could not find corresponding edge or compatible lane for pt stop '%' (%). " "Thus, it will be removed!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:136 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:136 msgid "" "Could not create reverse-direction stop for superposed edge '%' (origStop " "'%'). Stop id '%' already in use by stop on edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:170 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:170 #, c-format msgid "Added % stops for superposed rail edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:272 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:272 msgid "Could not determine cross product for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:326 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:326 msgid "Removing pt stop '%' on non existing edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:357 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:357 msgid "Could not re-assign pt stop '%' after replacing edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:446 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:446 msgid "" "Could not find corresponding edge or compatible lane for free-floating pt " "stop '%' (%). Thus, it will be removed!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:44 +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:44 #, c-format msgid "Ignoring parking area on edge '%' due to invalid permissions." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:51 +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:51 #, c-format msgid "Ignoring parking area on edge '%' due to insufficient space." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:71 +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:71 msgid "Could not find edge for parkingArea '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:115 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:115 #, c-format msgid "The traffic light '%' does not control any links; it will not be build." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:229 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:229 msgid "Unreachable edge '%' within tlLogic '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:509 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:509 #, c-format msgid "The rail crossing '%' does not have any roads." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogic.cpp:100 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogic.cpp:100 #, c-format msgid "When adding phase: illegal character '%' in state" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogic.cpp:233 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogic.cpp:233 #, c-format msgid "Non-static traffic light '%' does not define variable phase length." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogicCont.cpp:235 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:243 msgid "Could not build program '%' for traffic light '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogicCont.cpp:376 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:384 msgid "Guessing signalID for link index % at traffic light '%'." msgstr "" -#: /home/micha/programming/sumo/src/netconvert_main.cpp:97 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:491 +#, c-format +msgid "" +"Was not able to apply the OpenDRIVE signal group information onto the signal " +"program of traffic light % generated by SUMO." +msgstr "" + +#: D:\Repos\sumo/src\netconvert_main.cpp:98 #, fuzzy msgid "" "Network importer / builder for the microscopic, multi-modal traffic " "simulation SUMO." msgstr "Un simulateur de trafic microscopique et multimodal." -#: /home/micha/programming/sumo/src/netconvert_main.cpp:120 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:273 -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:93 +#: D:\Repos\sumo/src\netconvert_main.cpp:121 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:273 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:93 msgid "Could not build projection!" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:41 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:41 msgid "Read edge-type defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:44 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:44 msgid "" "The Ids of generated nodes use an alphanumerical code for easier readability " "when possible" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:48 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:48 msgid "Generate INT left-turn lanes" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:50 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:50 msgid "Set the length of generated turning lanes to FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:53 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:53 msgid "" "Apply random spatial perturbation in x direction according the the given " "distribution" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:55 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:55 msgid "" "Apply random spatial perturbation in y direction according the the given " "distribution" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:57 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:57 msgid "" "Apply random spatial perturbation in z direction according the the given " "distribution" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:63 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:63 msgid "Defines the probability to build a reverse edge" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:67 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:67 msgid "Draw lane numbers randomly from [1,default.lanenumber]" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:71 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:71 msgid "Draw edge priority randomly from [1,default.priority]" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:74 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:74 msgid "Draw edge type randomly from all loaded types" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:80 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:80 msgid "Forces NETGEN to build a grid-like network" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:85 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:85 msgid "The number of junctions in both dirs" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:90 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:90 msgid "The length of streets in both dirs" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:95 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:95 msgid "The number of junctions in x-dir; Overrides --grid-number" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:100 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:100 msgid "The number of junctions in y-dir; Overrides --grid-number" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:105 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:105 msgid "The length of horizontal streets; Overrides --grid-length" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:110 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:110 msgid "The length of vertical streets; Overrides --grid-length" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:114 -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:147 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:114 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:147 msgid "" "The length of streets attached at the boundary; 0 means no streets are " "attached" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:117 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:117 msgid "" "The length of streets attached at the boundary in x direction; 0 means no " "streets are attached" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:119 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:119 msgid "" "The length of streets attached at the boundary in y direction; 0 means no " "streets are attached" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:124 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:124 msgid "Forces NETGEN to build a spider-net-like network" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:129 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:129 msgid "The number of axes within the net" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:134 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:134 msgid "The number of circles of the net" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:139 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:139 msgid "The distances between the circles" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:144 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:144 msgid "Omit the central node of the network" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:152 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:152 msgid "Forces NETGEN to build a random network" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:157 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:157 msgid "Describes how many times an edge shall be added to the net" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:162 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:162 msgid "The maximum distance for each edge" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:167 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:167 msgid "The minimum distance for each edge" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:172 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:172 msgid "The minimum angle for each pair of (bidirectional) roads in DEGREES" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:177 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:177 msgid "The number of tries for creating each node" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:182 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:182 msgid "Probability for roads to continue at each node" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:187 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:187 msgid "Probability for a node having exactly 1 neighbor" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:192 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:192 msgid "Probability for a node having exactly 2 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:197 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:197 msgid "Probability for a node having exactly 3 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:202 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:202 msgid "Probability for a node having exactly 4 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:207 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:207 msgid "Probability for a node having exactly 5 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:212 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:212 msgid "Probability for a node having exactly 6 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:215 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:215 msgid "Place nodes on a regular grid with spacing rand.min-distance" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:235 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:235 msgid "You have to specify the type of network to generate." msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:239 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:239 msgid "You may specify only one type of network to generate at once." msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:274 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:274 msgid "Option 'random-type' takes no effect unless 'type-files' are loaded" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:90 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:90 msgid "" "[traffic_light|priority|right_before_left|left_before_right|" "traffic_light_right_on_red|priority_stop|allway_stop|...] Determines " "junction type (see wiki/Networks/PlainXML#Node_types)" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:119 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:120 msgid "Spider networks need at least 3 arms." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:123 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:124 msgid "Spider networks with many arms should use option spider.omit-center" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:126 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:127 msgid "Spider networks need at least one circle." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:134 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:135 #, c-format msgid "" "The radius of spider networks should be at least % for the given lanenumber, " "lanewidth and junction radius" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:176 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:177 msgid "" "The number of nodes must be positive and at least 2 in one direction if " "there are no attachments." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:184 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:185 #, c-format msgid "" "The distance between nodes should be at least % for the given lanenumber, " "lanewidth and junction radius" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:190 -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:195 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:191 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:196 #, c-format msgid "" "The length of attached streets should be at least % for the given " "lanenumber, lanewidth and junction radius" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:230 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:231 #, fuzzy msgid "" "Synthetic network generator for the microscopic, multi-modal traffic " "simulation SUMO." msgstr "Un simulateur de trafic microscopique et multimodal." -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:266 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:267 msgid " Generation done;" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:267 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:268 #, c-format msgid " % nodes generated." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:268 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:269 #, c-format msgid " % edges generated." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:273 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:274 msgid " Removed % traffic lights at geometry-like nodes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:53 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:53 msgid "Read SUMO-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:60 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:60 msgid "Read XML-node defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:66 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:66 msgid "Read XML-edge defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:72 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:72 msgid "Read XML-connection defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:75 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:75 msgid "Read XML-traffic light defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:81 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:81 msgid "Read XML-type defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:86 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:86 msgid "Reads public transport stops from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:88 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:88 msgid "Reads public transport lines from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:90 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:90 msgid "Reads polygons from FILE for embedding in network where applicable" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:97 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:97 msgid "Read shapefiles (ArcView, Tiger, ...) from files starting with 'FILE'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:102 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:102 msgid "" "Read converted Navteq GDF data (unsplitted Elmar-network) from path 'FILE'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:106 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:106 msgid "Read OSM-network from path 'FILE(s)'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:110 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:110 msgid "Read OpenDRIVE-network from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:114 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:114 msgid "Read VISUM-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:118 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:118 msgid "Read VISSIM-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:123 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:123 msgid "Read RoboCup-net from DIR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:127 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:127 msgid "Read MATsim-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:131 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:131 msgid "Read ITSUMO-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:134 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:134 msgid "Read heightmap from ArcGIS shapefile" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:137 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:137 msgid "Read heightmap from GeoTIFF" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:145 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:159 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:199 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:145 +#: D:\Repos\sumo/src\od2trips_main.cpp:159 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:199 msgid "Continue on broken input" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:148 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:148 msgid "Continue on invalid connections" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:151 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:151 msgid "Show errors in connections at parsing" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:154 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:154 msgid "Continue on unknown edge types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:157 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:157 msgid "vmax is parsed as given in km/h" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:160 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:160 msgid "" "Use YYYY-MM-DD date to determine the readiness of features under construction" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:163 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:163 msgid "Remove all z-data" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:166 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:166 msgid "Remove the list of keys from all params" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:169 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:169 msgid "" "List vehicle classes that may ignore lane changing restrictions ('all' " "discards all restrictions)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:174 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:174 msgid "If edge shapes do not end at the node positions, extend them" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:178 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:178 msgid "Skips the check for duplicate nodes and edges" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:181 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:181 msgid "Imports elevation data" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:184 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:184 msgid "" "Reconstruct (relative) elevation based on layer data. Each layer is raised " "by FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:187 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:187 #, c-format msgid "" "Maximum grade threshold in % at 50km/h when reconstrucing elevation based on " "layer data. The value is scaled according to road speed." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:190 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:190 msgid "Whether one-way roads should be spread to the side instead of centered" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:193 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:193 msgid "Import lane-specific access restrictions" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:197 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:197 msgid "Import bike lanes and fix directions and permissions on bike paths" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:200 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:200 msgid "Import sidewalks" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:203 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:203 msgid "Import crossings" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:206 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:206 msgid "Import turning arrows from OSM to help with connection building" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:209 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:209 msgid "The default length of a public transport stop in FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:211 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:211 msgid "The default length of a bus stop in FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:213 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:213 msgid "The default length of a tram stop in FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:215 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:215 msgid "The default length of a train stop in FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:218 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:219 msgid "Whether additional attributes shall be imported" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:221 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:223 msgid "" "List of additional attributes that shall be imported from OSM via osm.all-" "attributes (set 'all' to import all)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:224 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:226 msgid "" "The speed limit to be set when there is no actual speed limit in reality" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:228 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:230 msgid "The edge lengths given in the MATSIM-file will be kept" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:231 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:233 msgid "The lane number will be computed from the capacity" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:237 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:239 msgid "Read edge ids from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:241 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:243 msgid "Read from-node ids from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:245 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:247 msgid "Read to-node ids from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:249 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:251 msgid "Read type ids from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:252 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:254 msgid "Read lane number from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:255 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:257 msgid "Read speed from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:258 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:260 msgid "Read custom edge length from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:261 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:263 msgid "Read total edge width from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:264 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:266 msgid "Read (non-unique) name from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:267 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:269 msgid "" "Distance threshold for determining whether distinct shapes are connected " "(used when from-id and to-id are not available)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:270 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:272 msgid "Add the list of field names as edge params" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:274 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:276 msgid "Uses edge type defaults on problems" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:279 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:281 msgid "Insert edges in both directions" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:283 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:285 msgid "Guess the proper projection" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:286 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:125 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:288 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:125 msgid "Use traditional axis order (lon, lat)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:291 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:293 msgid "Allow more vehicle classes by default" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:294 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:296 msgid "The edge lengths given in the DLR Navteq-file will be kept" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:300 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:302 msgid "Structure join offset" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:303 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:305 msgid "Use FLOAT as default speed" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:306 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:308 msgid "Factor for edge velocity" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:309 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:311 msgid "Writes lanes without an explicit speed set" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:314 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:95 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:316 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:95 msgid "Load language mappings from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:317 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:319 msgid "Uses priorities from types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:320 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:322 msgid "Uses lane numbers from types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:323 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:325 msgid "Uses speeds from types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:326 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:328 msgid "Sets connector speed" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:330 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:332 msgid "Sets connector lane number" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:333 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:335 msgid "Excludes connectors" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:337 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:339 msgid "Computes the number of lanes from the edges' capacities" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:340 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:342 msgid "Prints all warnings, some of which are due to VISUM misbehaviour" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:345 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:347 msgid "The factor for flow to no. lanes conversion" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:350 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:352 msgid "Imports all lane types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:352 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:354 msgid "Whether lane widths shall be ignored." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:354 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:356 msgid "" "The geometry resolution in m when importing curved geometries as line " "segments." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:356 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:358 msgid "" "Allow stop lines to be built beyond the start of the junction if the " "geometries allow so" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:358 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:360 msgid "" "The minimum lane width for determining start or end of variable-width lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:360 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:362 msgid "Import internal lane shapes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:362 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:364 msgid "Sets edge-id based on road-id and offset in m (legacy)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:364 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:366 msgid "Use custom lane shapes to compensate discarded lane types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:375 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:368 +msgid "" +"Use the OpenDRIVE controller information for the generated signal program" +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:379 msgid "" "Discard all railway signal information loaded from other formats than plain-" "xml" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:397 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:400 msgid "" "Cannot import network data without PROJ-Library. Please install package proj " "before building sumo" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:422 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:314 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:425 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:314 msgid "Environment variable SUMO_HOME is not set, using built in type maps." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:455 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:458 msgid "It is recommend to use option osm.crossings with osm.sidewalks" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:138 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:139 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:138 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:139 msgid "Could not open shape description '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:187 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:187 msgid "Needed field '%' (street-id) is missing." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:198 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:198 msgid "Needed field '%' (from node id) is missing." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:202 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:202 msgid "Needed field '%' (to node id) is missing." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:218 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:218 msgid "Unknown type '%' for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:233 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:233 #, c-format msgid "" "Required field '%' or '%' is missing (add fields or set option --shapefile." "use-defaults-on-failure)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:249 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:249 msgid "" "Road geometry must be of type 'linestring' or 'linestring25D' (found '%')" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:261 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:90 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:261 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:90 msgid "No coordinate system found and coordinates look already projected." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:264 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:93 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:264 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:93 msgid "Could not find geo coordinate system, assuming WGS84." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:277 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1488 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:600 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimAbstractEdge.cpp:44 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:171 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:277 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1562 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:600 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimAbstractEdge.cpp:44 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:171 msgid "Unable to project coordinates for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:290 -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:304 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:304 #, c-format msgid "Node '%' could not be added" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:312 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:312 #, c-format msgid "Edge '%' connects identical nodes, skipping." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:329 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:329 #, c-format -msgid "Edge '% is not unique." +msgid "Edge '%' is not unique." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:338 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:338 msgid "Edge '%' is not unique. Renaming subsequent edge to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:354 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:354 msgid "Could not create edge '%'. An edge with the same id already exists." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:368 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:368 msgid "Could not create edge '-%'. An edge with the same id already exists." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:382 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:331 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:382 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:331 msgid "SUMO was compiled without GDAL support." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:76 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:76 msgid "Loading nodes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:80 -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:105 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:80 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:105 #, c-format msgid "The file '%' could not be opened." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:90 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:90 msgid "Loading street names" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:95 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:95 msgid "Output will not contain street names because the file '%' was not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:100 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:100 msgid "Loading edges" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:114 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:114 msgid "Loading traffic lights" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:123 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:123 msgid "Loading prohibited manoeuvres" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:132 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:132 msgid "Loading connected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:141 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:141 msgid "Loading time restrictions" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:210 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:210 msgid "Non-numerical value for intermediate status in node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:215 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:215 msgid "Non-numerical value for number of geometries in node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:222 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:222 msgid "Non-numerical value for x-position in node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:226 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:226 msgid "Non-numerical value for y-position in node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:230 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:321 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:230 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:321 msgid "Unable to project coordinates for node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:240 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:240 msgid "Could not add add node '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:242 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:260 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:379 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:474 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1350 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:242 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:267 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:386 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:481 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1424 msgid "Could not add node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:299 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:299 msgid "Missing version string in file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:309 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:309 msgid "Non-numerical value for form_of_way of link '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:316 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:316 msgid "Non-numerical value for brunnel_type of link '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:329 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:329 msgid "Non-numerical value for street_type of link '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:351 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:351 msgid "Non-numerical value for the SPEED_RESTRICTION of link '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:366 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:366 msgid "Non-numerical value for the number of lanes of link '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:420 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:538 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:596 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:759 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:420 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:545 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:603 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:760 msgid "Could not add edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:431 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:431 msgid "Missing column %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:442 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:442 msgid "Missing optional column % without default value." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:499 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:499 #, c-format msgid "The traffic light edge '%' could not be found." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:511 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:511 msgid "Could not allocate tls for '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:702 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:702 msgid "Could not parse YYYY-MM-DD date '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:747 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:747 msgid "Ignoring temporary prohibited manoeuvre (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:756 -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:801 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:756 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:801 msgid "Ignoring prohibition from unknown start edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:761 -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:806 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:761 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:806 msgid "Ignoring prohibition from unknown end edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:811 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:811 msgid "" "Ignoring invalid lane index '%' in connection from edge '%' with % lanes." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:816 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:816 msgid "Ignoring invalid lane index '%' in connection to edge '%' with % lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:821 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:821 msgid "Could not set loaded connection from '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:117 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:117 msgid "Could not open itsumo-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:217 -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:180 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:217 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:180 msgid "Could not add edge '%'. Probably declared twice." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:232 -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:142 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:703 -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:148 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:232 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:142 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:703 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:148 msgid "Unable to project coordinates for node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:237 -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:147 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:237 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:147 msgid "Could not add node '%'. Probably declared twice." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:240 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:240 msgid "Not numeric position information for node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:242 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:242 msgid "Missing data in node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:260 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:260 msgid "Missing node in laneset '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:263 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:263 msgid "Fond laneset-id '%' twice." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:277 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:277 msgid "Not numeric value in laneset '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:279 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:279 msgid "Missing data in laneset '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:290 msgid "Not numeric value in lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:292 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:292 msgid "Missing data in lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:202 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:202 msgid "Bogus capacity period format; requires 'hh:mm:ss'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:234 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:234 msgid "Could not find from-node for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:237 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:237 msgid "Could not find to-node for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:253 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:253 msgid "Could not add intermediate node to split loop edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:211 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:217 msgid "Could not find signal reference '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:274 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:312 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:281 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:319 msgid "Could not build node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:411 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:418 msgid "Ignoring road '%' without geometry." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:435 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:442 msgid "Could not apply laneOffsets for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:668 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:633 #, c-format msgid "Edge '%' has no lanes." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:704 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:674 #, c-format msgid "While setting connections: from-edge '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:714 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:684 #, c-format msgid "While setting connections: to-edge '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:740 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:743 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:710 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:713 msgid "Could not find fromEdge representation of '%' in connection '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:792 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:766 +#, c-format +msgid "" +"Controlling multiple junctions by the same controller '%' is currently not " +"implemented." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:787 #, c-format msgid "Edge '%' has signals but no lane sections." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:814 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:809 msgid "Ambiguous start of connection." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:831 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:826 msgid "Ambiguous end of connection." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:844 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:859 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:892 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:839 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:854 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:901 msgid "Could not find edge '%' for signal '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:881 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:875 +msgid "" +"The signaling of the connection from '%' to '%' (controller '%') is " +"ambiguous because it is overwritten signal '%' and with controller '%'." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:890 msgid "Found a traffic light signal on an unknown edge (original edge id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1287 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1319 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:921 +msgid "" +"The signaling of the connection from '%' to '%' (controller '%') is " +"ambiguous because it is overwritten with signal '%' and controller '%'." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1361 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1393 #, c-format msgid "While setting connections: incoming road '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1362 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1436 msgid "Could not find node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1455 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1529 msgid "Mismatched geometry for edge '%' between geometry segments % and %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1636 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1710 #, c-format msgid "The sections of edge '%' are not sorted properly." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1648 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1722 msgid "" "Almost duplicate s-value '%' for lane sections occurred at edge '%'; second " "entry was removed." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1691 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1765 msgid "Could not compute spiral geometry for edge '%' (cDot=% length=%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1740 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1814 msgid "Could not compute spiral geometry for edge '%' (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2012 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2086 msgid "" "Will discard access settings as both denied and allowed classes have been " "specified." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2320 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2392 msgid "Ignoring invalid pRange value '%' for road '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2420 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2617 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2470 +msgid "Ignoring missing signal '%' in controller '%'." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2508 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2704 #, c-format msgid "In laneLink-element: incoming road '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2516 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2603 msgid "Ignoring object without id at edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2534 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2621 msgid "Repeat without object at edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2588 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2675 msgid "Could not set projection (%). This can be ignored with --ignore-errors." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2592 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2679 #, c-format msgid "geoReference format '%' currently not supported" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2661 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2752 msgid "Mismatching parenthesis in geometry definition for road '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2665 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2756 msgid "Double geometry information for road '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:156 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:104 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:156 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:104 msgid "Could not open osm-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:168 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:168 #, c-format msgid "Found and substituted % osm nodes." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:192 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:192 msgid "Removing duplicate edges" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:207 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:207 #, c-format msgid "Removed % duplicate osm edges." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:241 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:241 msgid "Discarding way '%' because it has only % node(s)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:404 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:404 msgid "Could not insert junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:462 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:462 msgid "" "Discarding edge '%' which connects two identical nodes without geometry." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:574 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:574 msgid "New value for oneway found: %" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:606 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:607 msgid "Skipping edge '%' because it has zero lanes." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:626 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:627 msgid "Skipping edge '%' because it has speed %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:746 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:747 msgid "" "Forward lanes count for edge '%' ('%') is not matching the number of lanes " "defined in width:lanes:forward key ('%'). Using default width values." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:792 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:793 msgid "" "Backward lanes count for edge '%' ('%') is not matching the number of lanes " "defined in width:lanes:backward key ('%'). Using default width values." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:805 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:806 msgid "Could not add edge '-%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:893 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:894 msgid "" "Attribute 'id' in the definition of a node is not of type long long int." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:899 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:900 msgid "Tag element on wrong XML hierarchy level." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:941 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:942 msgid "Value of key '%' is invalid ('%') in node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:946 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:947 msgid "Value of key '%' is not numeric ('%') in node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1091 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:592 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1092 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:592 msgid "The referenced geometry information (ref='%') is not known" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1329 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1331 #, c-format msgid "Using default lane width for edge '%' as key '%' could not be parsed." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1332 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1334 #, c-format msgid "Using default lane width for edge '%' as value '%' could not be parsed." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1375 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1377 msgid "Using minimum lane number from list (%) for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1377 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1381 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1392 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1404 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1427 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1437 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1379 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1383 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1394 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1406 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1429 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1439 msgid "Value of key '%' is not numeric ('%') in edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1434 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1436 msgid "Ignoring track count % for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1605 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1607 msgid "Unknown lane use specifier '%' ignored for way '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1714 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1716 msgid "No node found for reference '%' in relation '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1776 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1778 msgid "Found unknown restriction type '%' in relation '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1814 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1816 msgid "Invalid color value '%' in relation %" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1832 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1834 msgid "No way found for reference '%' in relation '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1844 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1846 msgid "Ignoring restriction relation '%' with unknown type." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1848 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1850 msgid "Ignoring restriction relation '%' with unknown from-way." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1852 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1854 msgid "Ignoring restriction relation '%' with unknown to-way." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1856 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1858 msgid "Ignoring restriction relation '%' with unknown via." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1860 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1862 msgid "Ignoring restriction relation '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1885 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1887 #, c-format msgid "" "Platform '%' in relation: '%' is given as polygon, which currently is not " "supported." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1906 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1908 #, c-format msgid "" "Referenced platform: '%' in relation: '%' is corrupt. Probably OSM file is " "incomplete." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1945 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1947 #, c-format msgid "PT line '%' in relation % seems to be split, only keeping first part." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1978 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1980 msgid "" "PT line in relation % with no stops ignored. Probably OSM file is incomplete." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1984 -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:222 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1986 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:222 msgid "Ignoring duplicate PT line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1999 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2001 msgid "Via-node '%' was not instantiated" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2005 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2007 #, c-format msgid "from-edge '%' of restriction relation could not be determined" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2009 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2011 #, c-format msgid "to-edge '%' of restriction relation could not be determined" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2039 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2041 msgid "direction of restriction relation could not be determined%" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2060 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2062 #, c-format msgid "Ambiguous way reference '%' in restriction relation" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2311 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2314 msgid "" "Discarding unknown compound '%' in type '%' (first occurrence for edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2315 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2320 msgid "Discarding unusable type '%' (first occurrence for edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2364 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2365 msgid "Discarding compound type '%' (first occurrence for edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2369 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2380 msgid "Adding new type '%' (first occurrence for edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2404 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2415 msgid "Ambiguous railway kilometrage direction for way '%' (assuming forward)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2411 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2422 msgid "Inconsistent railway kilometrage direction for way '%': % (skipping)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2456 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2467 msgid "Value of railway:position is not numeric ('%') in node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2548 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2559 msgid "" "Ignoring turn sign information for % lanes on edge % with % driving lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:118 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:118 msgid "Could not open sumo-net-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:146 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:146 #, c-format msgid "Edge's '%' from-node and to-node '%' are identical." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:165 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:165 msgid "Could not insert edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:191 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:787 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:318 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:191 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:787 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:318 #, c-format msgid "Unknown edge '%' given in connection." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:230 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:272 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:230 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:272 #, c-format msgid "The traffic light '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:288 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:290 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:292 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:294 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:288 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:292 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:294 #, c-format msgid "Edge '%' in prohibition was not built." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:345 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:345 #, c-format msgid "Deprecated vehicle class(es) '%' in input network." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:403 -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1683 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:403 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1688 #, c-format msgid "Unknown edge '%' in roundabout" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:520 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:520 #, c-format msgid "Edge '%' occurred at least twice in the input." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:542 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:542 msgid "Unmatched closing tag for tl-logic." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:545 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:545 msgid "Could not add program '%' for traffic light '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:615 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:615 msgid "Unknown spreadType '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:628 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:628 #, c-format msgid "Found lane '%' not within edge element." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:633 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:633 msgid "Renaming lane '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:699 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:699 msgid "" "Duplicate definition of stopOffset for edge %.\n" "Ignoring duplicate specification." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:705 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:705 msgid "" "Duplicate definition of lane's stopOffset on edge %.\n" "Ignoring duplicate specifications." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:742 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:742 #, c-format msgid "Junction '%' occurred at least twice in the input." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:839 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:839 msgid "Invalid lane index '%' for connection from '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:929 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:929 msgid "Definition of tl-logic '%' was not finished." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:941 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:127 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:941 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:127 msgid "Unknown traffic light type '%' for tlLogic '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:955 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:955 msgid "found phase without tl-logic" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:963 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:963 msgid "Phase duration for tl-logic '%/%' must be positive." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1019 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1019 msgid "Missing connection divider in prohibition attribute '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1026 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1030 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1026 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1030 msgid "Unknown edge prohibition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:205 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:205 msgid "Can not open visum-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:247 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:247 #, c-format msgid "Too short value line in % occurred." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:249 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:249 msgid "A value in % should be numeric but is not (id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:251 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:251 msgid "One of the needed values ('%') is missing in %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:326 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:326 msgid "Duplicate node occurred ('%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:344 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:344 msgid "Unable to project coordinates for district %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:350 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:350 msgid "Duplicate district occurred ('%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:368 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:368 msgid "Unable to project coordinates for point %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:458 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:475 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:458 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:475 msgid "Duplicate edge occurred ('%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:580 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:580 msgid "" "Incoming connector '%' will not be build - would be not connected to network." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:584 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:618 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:584 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:618 #, c-format msgid "The district '%' could not be built." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:594 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:629 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:594 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:629 msgid "A duplicate edge id occurred (ID='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:614 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:614 msgid "" "Outgoing connector '%' will not be build - would be not connected to network." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:665 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:671 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:720 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:665 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:671 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:720 msgid "There is no edge from node '%' to node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:698 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:698 msgid "Error in geometry description from node '%' to node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:757 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:757 msgid "A lane number for edge '%' is not numeric (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:762 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:762 msgid "A lane number for edge '%' is not positive (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:781 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:781 msgid "A lane length for edge '%' is not numeric (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:785 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:785 msgid "A lane length for edge '%' is not positive (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:846 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:846 msgid "Could not find split position for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:856 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:856 msgid "Ups - could not insert node!" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:917 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:917 #, c-format msgid "Could not find TLS '%' for setting the signal group." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:930 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:930 msgid "Ignoring SIGNALGRUPPEZUFSABBIEGER because LsaNr is not known" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:987 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:987 msgid "Unknown edge in TEILFLAECHENELEMENT" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1007 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1007 msgid "Unknown are for area part '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1069 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1069 msgid "" "Ignoring lane-to-lane connection (not yet implemented for this format " "version)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1107 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1107 msgid "A from-lane number for edge '%' is not numeric (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1112 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1112 msgid "A from-lane number for edge '%' is not positive (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1121 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1121 msgid "A to-lane number for edge '%' is not numeric (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1126 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1126 msgid "A to-lane number for edge '%' is not positive (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1142 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1142 msgid "" "A from-lane number for edge '%' is larger than the edge's lane number (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1146 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1146 msgid "" "A to-lane number for edge '%' is larger than the edge's lane number (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1162 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1162 msgid "Ignoring stopping place '%' without edge id" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1164 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1164 msgid "Ignoring stopping place '%' without node informatio" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1171 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1171 msgid "" "Could not find edge with from-node '%' and base id '%' for stopping place '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1176 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1176 msgid "Unexpected from-node '%' for edge '%' of stopping place '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1182 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1182 msgid "" "Could not find edge with to-node '%' and base id '%' for stopping place '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1187 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1187 msgid "Unexpected to-node '%' for edge '%' of stopping place '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1271 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1271 #, c-format msgid "The node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1508 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1508 msgid "Could not build connector node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1518 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1518 msgid " The from-node was not found within the net" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1521 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1521 msgid " The to-node was not found within the net" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1524 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1524 msgid " Both nodes are the same" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1539 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:431 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1539 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:431 msgid "Could not load VISUM language map from '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1551 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1551 #, c-format msgid "Unknown entry '%' in VISUM language map" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:103 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:103 msgid " Removed % traffic lights before loading plain-XML" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:112 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:112 msgid "No nodes loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:115 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:115 msgid "No edges loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:126 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:126 msgid " Import done:" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:128 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:128 #, c-format msgid " % districts loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:130 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:130 #, c-format msgid " % nodes loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:132 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:132 msgid " % types loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:134 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:134 #, c-format msgid " % edges loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:136 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:136 #, c-format msgid "The split of edges was performed % times." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:144 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:144 msgid "Proj projection parameters used: '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:165 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:165 #, c-format msgid "Deprecated vehicle class(es) '%' in input edge files." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:61 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:61 msgid "Invalid speed code (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:64 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:64 msgid "Non-numerical value for an edge's speed type occurred (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:90 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:90 msgid "Invalid lane number (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:94 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:94 msgid "Non-numerical value for an edge's lane number occurred (edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NITypeLoader.cpp:62 +#: D:\Repos\sumo/src\netimport\NITypeLoader.cpp:62 msgid "Could not open %-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIVisumTL.cpp:76 +#: D:\Repos\sumo/src\netimport\NIVisumTL.cpp:76 msgid "invalid node for traffic light '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:85 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:85 msgid "" "Target edge '%' is not connected with '%'; the connection cannot be reset." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:99 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:99 msgid "Edge '%' has no connection to lane '%'; the connection cannot be reset." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:267 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:267 msgid "Unable to project shape for connection from edge '%' to edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:275 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:275 msgid "Could not set loaded connection from lane '%' to lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:347 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:347 #, c-format msgid "Node '%' in crossing is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:356 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:356 msgid "No edges specified for crossing at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:364 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:364 #, c-format msgid "Edge '%' for crossing at node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:372 -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:450 -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:455 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:372 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:450 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:455 msgid "Edge '%' does not touch node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:385 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:385 #, c-format msgid "Crossing at controlled node '%' must be prioritized" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:390 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:390 msgid "Unable to project shape for crossing at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:403 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:403 msgid "Crossing with edges '%' already exists at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:435 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:435 msgid "No edges specified for walkingArea at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:441 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:441 #, c-format msgid "Edge '%' for walkingArea at node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:467 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:467 msgid "Unable to project shape for walkingArea at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:222 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:222 msgid "Duplicate edge id occurred ('%'); assuming overwriting is wished." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:227 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:227 #, c-format msgid "Edge '%' changed it's type; assuming type override is wished." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:315 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:315 msgid "Ignoring self-looped edge '%' at junction '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:393 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:393 #, c-format msgid "'%' is deprecated, please use '%' instead." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:403 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:403 msgid "Lane index is larger than number of lanes (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:447 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:447 msgid "Unable to project coordinates for lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:472 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:472 msgid "Ignoring 'split' because it cannot be assigned to an edge" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:481 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:481 msgid "Edge '%' has a split at invalid position %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:486 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:486 msgid "Edge '%' has already a split at position %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:520 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:520 msgid "Invalid split node id for edge '%' (from- and to-node are forbidden)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:558 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:558 msgid "The from-node is not given for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:570 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:570 msgid "The to-node is not given for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:616 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:616 msgid "Ignoring unknown spreadType '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:674 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:674 #, c-format msgid "Duplicate edge '%' occurred." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:683 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:683 msgid "An important information is missing in edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:705 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:705 #, c-format msgid "Unknown edge '%' in roundabout." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:151 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:151 msgid "Missing position (at node ID='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:184 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:184 msgid "Could not insert node though checked this before (id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:213 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:213 msgid "Unable to project node shape at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:321 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:321 msgid "Unknown traffic light type '%' for node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:330 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:330 msgid "Unknown traffic light layout '%' for node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:341 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:341 msgid "Changing traffic light type '%' to '%' for tl '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:153 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:153 #, c-format msgid "Edge '%' for stop '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:161 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:161 #, c-format msgid "Lane '%' for stop '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:173 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:173 msgid "Could not add public transport stop '%' (already exists)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:192 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:192 #, c-format msgid "Edge '%' for access to stop '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:253 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:253 msgid "Found route outside line definition" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:263 -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:283 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:263 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:283 #, c-format msgid "Edge '%' in route of line '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:302 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:302 msgid "Stop '%' within line '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:318 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:318 msgid "Stop '%' within route '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLShapeHandler.cpp:46 -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1744 +#: D:\Repos\sumo/src\netimport\NIXMLShapeHandler.cpp:46 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1749 #, c-format msgid "Lane '%' to place poi '%' on is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLShapeHandler.cpp:59 -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1757 +#: D:\Repos\sumo/src\netimport\NIXMLShapeHandler.cpp:59 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1762 #, c-format msgid "lane position % for poi '%' is not valid." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:114 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:114 msgid "Definition of tlLogic '%' was not finished." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:140 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:158 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:140 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:158 msgid "Cannot load traffic light program for unknown id '%', programID '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:331 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:331 msgid "Invalid lane index '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTypesHandler.cpp:85 +#: D:\Repos\sumo/src\netimport\NIXMLTypesHandler.cpp:85 msgid "Invalid lane spread type '%'. Using default 'right'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTypesHandler.cpp:114 +#: D:\Repos\sumo/src\netimport\NIXMLTypesHandler.cpp:114 msgid "Invalid lane index % for edge type '%' with % lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/NIImporter_Vissim.cpp:887 +#: D:\Repos\sumo/src\netimport\vissim\NIImporter_Vissim.cpp:887 msgid "Could not open vissim-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnection.cpp:241 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnection.cpp:241 msgid "Could not build connection between '%' and '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnection.cpp:248 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnection.cpp:248 msgid "Lane sizes differ for connection '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnectionCluster.cpp:496 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnectionCluster.cpp:496 msgid "NIVissimConnectionCluster:More than a single node" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnectionCluster.cpp:662 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnectionCluster.cpp:662 msgid "NIVissimConnectionCluster: how to get an edge's position?" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:205 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:205 #, c-format msgid "Could not build district '%' - edge '%' is missing." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:360 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:360 msgid "" "No streams assigned at district'%'.\n" " Using default speed 200km/h" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:377 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:526 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:377 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:526 #, c-format msgid "The referenced speed distribution '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:378 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:385 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:378 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:385 msgid ". Using default." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:143 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:143 msgid "Ugly split to prohibit '%' by '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:186 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:186 msgid "Could not prohibit '%' by '%'. Have not found disturbance." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:191 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:191 msgid "Could not prohibit '%' by '%'. Disturbance connects same node." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:210 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:262 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:210 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:262 #, c-format msgid "Would have to split edge '%' to build a prohibition" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:237 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:237 #, c-format msgid "Could not prohibit '%' - it was not built." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:243 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:243 msgid "Could not prohibit '%' by '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:307 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:307 msgid "NIVissimDisturbance: no connection" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:340 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:340 #, c-format msgid "Could not build % of % disturbances." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:439 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:439 msgid "Will not build edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:464 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:472 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:464 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:472 #, c-format msgid "Could not insert node '%' to nodes container." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:490 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:490 msgid "Could not build edge '%'; would connect same node." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:532 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:532 msgid "What about distribution '%' " msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:138 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:138 #, c-format msgid "Could not set tls signal at edge '%' - the edge was not built." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:152 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:152 msgid "Edge '%': Lanes were not assigned." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:375 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:375 msgid "" "Error on adding a traffic light\n" " Must be a multiple id ('%')" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:383 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:383 msgid "The signal group '%' could not be assigned to tl '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:392 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:392 msgid "The signal '%' could not be assigned to tl '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:399 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:399 msgid "Could not set % of % traffic lights." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:402 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:402 #, c-format msgid "Could not set % of % groups." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:405 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:405 #, c-format msgid "Could not set % of % signals." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Lichtsignalanlagendefinition.cpp:84 -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:93 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Lichtsignalanlagendefinition.cpp:84 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:93 #, c-format msgid "Unsupported LSA-Type '%' occurred." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgeberdefinition.cpp:73 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgeberdefinition.cpp:73 msgid "Omitting unknown traffic light." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:142 -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:170 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:142 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:170 msgid "VAS traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:154 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:154 msgid "VSPLUS traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:162 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:162 msgid "TRENDS traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:178 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:178 msgid "TL traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:186 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:186 msgid "POS traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:194 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:194 msgid "externally defined traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Simdauer.cpp:49 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Simdauer.cpp:49 msgid "Simulation duration could not be parsed" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:85 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:85 msgid "Trying to set the effort for the unknown edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:100 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:100 msgid "Trying to set the travel time for the unknown edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:129 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:129 msgid "Invalid network, no network version declared." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:133 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:133 msgid "" "Network contains internal links which are ignored. Vehicles will 'jump' " "across junctions and thus underestimate route lengths and travel times." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:163 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:163 msgid "State was written at a different time=% than the begin time %!" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:197 -#: /home/micha/programming/sumo/src/router/RONet.cpp:223 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:197 +#: D:\Repos\sumo/src\router\RONet.cpp:223 #, c-format msgid "A TAZ with id '%' already exists. Not building junction TAZ." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:228 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:228 msgid "" "Loading vehicles ahead of a state file is not supported. Correct --begin " "option or load vehicles with option --route-files" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:256 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:256 msgid "Loading weights from '%'..." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:285 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:285 msgid "Loading done." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:390 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:390 msgid "Wrong number of state file names!" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:425 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:425 msgid "Loading % from '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:445 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:445 #, c-format msgid "The route file '%' is not accessible." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLDetectorBuilder.cpp:526 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:461 +msgid "" +"LaneData requested for mesoscopic simulation but --meso-lane-queue is not " +"active. Falling back to edgeData." +msgstr "" + +#: D:\Repos\sumo/src\netload\NLDetectorBuilder.cpp:526 msgid "" "The netstate type 'hbefa' is deprecated. Please use the type 'emissions' " "instead." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:198 +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:198 msgid "Asymmetrical neigh lane '%' for lane '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:218 +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:218 #, c-format msgid "" "Internal edge '%' is not properly connected (probably a manually modified " "net.xml)." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:391 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:391 msgid "Unknown from-node '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:395 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:395 msgid "Unknown to-node '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:535 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:535 #, c-format msgid "" "Shape of lane '%' is broken.\n" " Can not build according edge." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:557 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:557 #, c-format msgid "Another lane with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:627 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:627 msgid "An unknown lane ('%') was tried to be set as incoming to junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:781 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:781 msgid "Traffic light '%' has unknown type '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:785 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:785 #, c-format msgid "" "Traffic light type '%' cannot be used in mesoscopic simulation. Using '%' as " "fallback." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:874 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:874 msgid "maxDur % should not be smaller than minDir % in phase of tlLogic %" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:889 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:889 msgid "Duplicate condition '%' in tlLogic '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:942 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:942 msgid "Invalid person mode '%' in E1 detector definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1001 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1001 msgid "" "VTypeProbes are deprecated. Use fcd-output devices (assigned to the vType) " "instead." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1061 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1061 msgid "Ignoring deprecated argument 'cont' for E2 detector '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1077 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1077 msgid "Invalid person mode '%' in E2 detector definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1091 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1091 msgid "" "Trying to specify detector's lane by the given id since the argument 'lane' " "is missing." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1131 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1131 msgid "" "Missing argument 'pos' for E2Detector '%'. Assuming detector start == lane " "start of lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1136 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1136 msgid "" "Missing argument 'endPos' for E2Detector '%'. Assuming detector end == lane " "end of lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1205 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1205 #, c-format msgid "" "Ignoring argument 'period' for E2Detector '%' since argument 'tl' was given." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1262 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1262 msgid "Invalid person mode '%' in E3 detector definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1341 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1341 msgid "Invalid person mode '%' in edgeData definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1365 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1365 msgid "Unknown edge '%' in edgeData definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1414 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1372 +msgid "" +"LaneData '%' requested for mesoscopic simulation but --meso-lane-queue is " +"not active. Falling back to edgeData." +msgstr "" + +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1419 #, c-format msgid "Unknown from-edge '%' in connection." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1420 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1425 #, c-format msgid "Unknown to-edge '%' in connection." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1425 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1430 msgid "Invalid lane index in connection from '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1506 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1511 #, c-format msgid "Unknown from-edge '%' in conflict." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1511 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1516 #, c-format msgid "Unknown to-edge '%' in connflict." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1516 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1521 msgid "Invalid lane index in conflict with '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1568 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1573 msgid "" "no valid geo projection loaded from network. fcd-output.geo will not work" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1596 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1601 msgid "Replacing junction-taz '%' with loaded TAZ." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1639 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1644 msgid "Skipping visualization of taz '%', polygon already exists." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1670 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1675 msgid "At district '%': succeeding edge '%' does not exist." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:116 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:116 msgid "Information about the number of nodes was missing." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:126 -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:143 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:126 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:143 msgid "Ignoring junction logic for junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:333 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:333 msgid "Invalid traffic light type '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:344 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:344 #, c-format msgid "Another logic with id '%' and programID '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:471 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:471 msgid "Traffic lights could not be built." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:75 +#: D:\Repos\sumo/src\netload\NLNetShapeHandler.cpp:163 +#, c-format +msgid "" +"% edges of the primary network did not occur in the alternative-net-file" +msgstr "" + +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:75 msgid "Vaporizers are deprecated. Use rerouters instead." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:84 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:84 msgid "Unknown edge ('%') referenced in a vaporizer." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:93 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:93 msgid "A vaporization begin time is negative (edge id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:97 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:97 msgid "A vaporization ends before it starts (edge id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:191 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:191 msgid "" "The overheadWireSegment '%' was not created as it is attached to internal " "lane. It will be build automatically." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:196 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:196 #, c-format msgid "" "The overheadWireSegment '%' not built as it is attached to internal lane. It " "will be build automatically." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:208 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:208 #, c-format msgid "" "The overheadWireSegment '%' has wrong position. Automatically set from 0 to " "the length of the lane." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:216 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:216 msgid "" "Overhead wire solver (Eigen) not compiled in, expect errors in overhead wire " "simulation" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:376 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:376 msgid "" "A connecting overhead wire start segment '%' defined for overhead wire clamp " "'%' is not assigned to the traction substation '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:378 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:378 msgid "" "A connecting overhead wire end segment '%' defined for overhead wire clamp " "'%' is not assigned to the traction substation '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:382 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:382 msgid "" "The overhead wire clamp '%' defined in an overhead wire section was not " "assigned to the substation '%'. Please define proper in additional files before defining overhead wire section." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:397 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:397 msgid "" "Cannot check circuit, overhead circuit solver support (Eigen) not compiled " "in." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:469 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:469 msgid "" "Not building overhead wire clamps, overhead wire solver support (Eigen) not " "compiled in." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:472 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:472 msgid "" "Ignoring overhead wire clamps, they make no sense when overhead wire circuit " "solver is off." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:526 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:526 msgid "Ignoring invalid access from non-pedestrian lane '%' in busStop '%'." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:54 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:54 msgid "The generated net will be written to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:59 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:59 msgid "Prefix of files to write plain xml nodes, edges and connections to" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:62 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:62 msgid "Write all lanes and their attributes even when they are not customized" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:69 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:69 msgid "Defines a prefix for edge and junction names" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:74 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:74 msgid "Write geo coordinates in plain-xml" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:79 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:79 msgid "The generated net will be written to FILE using Amitran format" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:82 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:82 msgid "The generated net will be written to FILE using MATsim format" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:85 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:85 msgid "The generated net will be written to FILE using OpenDRIVE format" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:88 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:88 msgid "" "The generated net will be written to dlr-navteq files with the given PREFIX" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:91 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:91 msgid "" "The network coordinates are written with the specified level of output " "precision" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:94 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:94 msgid "Street names will be included in the output (if available)" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:97 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:97 msgid "Writes original names, if given, as parameter" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:100 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:100 msgid "Writes street signs as POIs to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:104 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:104 msgid "Writes public transport stops to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:106 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:106 msgid "Writes public transport lines to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:108 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:108 msgid "Clean-up pt stops that are not served by any line" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:111 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:111 msgid "Writes parking areas to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:114 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:114 msgid "Analyze topology of the railway network" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:118 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:118 msgid "" "Write shapes that are embedded in the network input and that are not " "supported by polyconvert (OpenDRIVE)" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:123 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:123 msgid "" "Builds parameterized curves whenever the angular change between straight " "segments exceeds FLOAT degrees" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:127 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:127 msgid "Write lanes in lefthand networks on the left side (positive indices)" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:130 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:130 msgid "" "Match loaded shapes to the closest edge within FLOAT and export as road " "objects" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:154 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:153 msgid "OpenDRIVE export needs internal links computation." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:164 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:163 msgid "" "OpenDRIVE cannot represent oblique lane cuts and should use option " "'rectangular-lane-cut'." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:173 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:173 msgid "public transport lines output requires 'ptstop-output' to be set" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:177 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:177 msgid "" "'ptline-clean-up' only works in conjunction with 'ptline-output'. Ignoring " "invalid option." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:186 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:186 msgid "Writing network" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:91 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:91 msgid "" "DlrNavteq node data will be written in (floating point) cartesian coordinates" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:155 -#: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:162 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:155 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:162 msgid "Could not reconstruct shape for edge:'%' (%)." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:307 +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:313 msgid "Could not compute smooth shape for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:450 +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:456 msgid "" "Could not compute smooth shape from lane '%' to lane '%'. Use option " "'junctions.scurve-stretch' or increase radius of junction '%' to fix this." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:957 +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:963 msgid "" "Uneven stop line at lane '%' (dist=%) cannot be represented in OpenDRIVE." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:231 +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:235 msgid "" "Embedding TAZ-data inside the network is deprecated. Use option --taz-output " "instead" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:351 +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:458 msgid "Could not find bidi-connection for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:517 +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:545 #, c-format msgid "Lane '%' has a maximum allowed speed of 0." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_XML.cpp:88 -#: /home/micha/programming/sumo/src/polyconvert/PCPolyContainer.cpp:105 +#: D:\Repos\sumo/src\netwrite\NWWriter_XML.cpp:88 +#: D:\Repos\sumo/src\polyconvert\PCPolyContainer.cpp:105 msgid "" "Ignoring option \"proj.plain-geo\" because no geo-conversion has been defined" msgstr "" -#: /home/micha/programming/sumo/src/od/ODAmitranHandler.cpp:48 -msgid "Invalid duration for timeSlice starting %." +#: D:\Repos\sumo/src\od2trips_main.cpp:80 +msgid "Loads TAZ (districts; also from networks) from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/od/ODDistrictCont.cpp:72 -#, c-format -msgid "Could not access network file '%' to load." +#: D:\Repos\sumo/src\od2trips_main.cpp:102 +msgid "Writes trip definitions into FILE" msgstr "" -#: /home/micha/programming/sumo/src/od/ODDistrictHandler.cpp:130 -msgid "'probability' must be positive (in definition of % '%')." +#: D:\Repos\sumo/src\od2trips_main.cpp:105 +msgid "Writes flow definitions into FILE" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:80 -msgid "Missing origin '%' and destination '%' (% vehicles)." +#: D:\Repos\sumo/src\od2trips_main.cpp:108 +msgid "Writes probabilistic flow instead of evenly spaced flow" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:86 -msgid "Missing origin '%' (% vehicles)." +#: D:\Repos\sumo/src\od2trips_main.cpp:111 +msgid "Writes pedestrians instead of vehicles" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:91 -msgid "Missing destination '%' (% vehicles)." +#: D:\Repos\sumo/src\od2trips_main.cpp:114 +msgid "Writes persontrips instead of vehicles" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:97 -#, c-format -msgid "District '%' has no source." +#: D:\Repos\sumo/src\od2trips_main.cpp:117 +msgid "Add modes attribute to personTrips" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:101 -#, c-format -msgid "District '%' has no sink." +#: D:\Repos\sumo/src\od2trips_main.cpp:124 +msgid "Writes trips between junctions" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:193 -msgid "" -"Cannot find different source and sink edge for origin '%' and destination " -"'%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:129 +#: D:\Repos\sumo/src\router\ROFrame.cpp:116 +msgid "Defines the begin time; Previous trips will be discarded" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:364 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:384 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:410 +#: D:\Repos\sumo/src\od2trips_main.cpp:132 +#: D:\Repos\sumo/src\router\ROFrame.cpp:119 msgid "" -"Flow density of % vehicles per second, cannot be represented with a simple " -"probability. Falling back to even spacing." +"Defines the end time; Later trips will be discarded; Defaults to the maximum " +"time that SUMO can represent" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:434 -msgid "End of file while reading %." +#: D:\Repos\sumo/src\od2trips_main.cpp:140 +msgid "Spreads trips uniformly over each time period" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:461 -msgid "Broken period definition '%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:143 +msgid "Always choose source and sink edge which are not identical" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:475 -msgid "Broken factor: '%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:149 +msgid "Defines the prefix for vehicle names" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:509 -#, c-format -msgid "Missing line with % district names." +#: D:\Repos\sumo/src\od2trips_main.cpp:162 +msgid "Disable console output of current time step" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:519 -msgid "Missing line for district %." +#: D:\Repos\sumo/src\od2trips_main.cpp:193 +msgid "No TAZ input file (-n) specified." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:533 -msgid "More entries than districts found." +#: D:\Repos\sumo/src\od2trips_main.cpp:197 +msgid "No input specified." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:538 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:586 -msgid "Not numeric vehicle number in line '%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:201 +msgid "No trip table output file (-o) or flow-output is specified." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:584 -msgid "Missing at least one information in line '%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:205 +msgid "Only one of the the options 'pedestrians' and 'persontrips' may be set." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:647 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:154 -msgid "Could not open '%'." -msgstr "" +#: D:\Repos\sumo/src\od2trips_main.cpp:248 +#, fuzzy +msgid "" +"Importer of O/D-matrices for the microscopic, multi-modal traffic simulation " +"SUMO." +msgstr "Un simulateur de trafic microscopique et multimodal." -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:658 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:664 -#, c-format -msgid "'%' does not contain the needed information about the time described." +#: D:\Repos\sumo/src\od2trips_main.cpp:270 +msgid "You must supply a TAZ, network or districts file ('-n')." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:674 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:687 -#, c-format -msgid "Could not access matrix file '%' to load." +#: D:\Repos\sumo/src\od2trips_main.cpp:276 +msgid "No districts loaded." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:714 -#, c-format -msgid "Could not access route file '%' to load." +#: D:\Repos\sumo/src\od2trips_main.cpp:282 +msgid "No vehicles loaded." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:731 -msgid "Assuming 24 entries for a day timeline, but got %." +#: D:\Repos\sumo/src\od\ODAmitranHandler.cpp:48 +msgid "Invalid duration for timeSlice starting %." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:741 -msgid "Broken time line definition: missing a value in '%'." +#: D:\Repos\sumo/src\od\ODDistrictCont.cpp:72 +#, c-format +msgid "Could not access network file '%' to load." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:80 -msgid "Loads TAZ (districts; also from networks) from FILE(s)" +#: D:\Repos\sumo/src\od\ODDistrictHandler.cpp:130 +msgid "'probability' must be positive (in definition of % '%')." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:102 -msgid "Writes trip definitions into FILE" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:80 +msgid "Missing origin '%' and destination '%' (% vehicles)." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:105 -msgid "Writes flow definitions into FILE" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:86 +msgid "Missing origin '%' (% vehicles)." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:108 -msgid "Writes probabilistic flow instead of evenly spaced flow" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:91 +msgid "Missing destination '%' (% vehicles)." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:111 -msgid "Writes pedestrians instead of vehicles" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:97 +#, c-format +msgid "District '%' has no source." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:114 -msgid "Writes persontrips instead of vehicles" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:101 +#, c-format +msgid "District '%' has no sink." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:117 -msgid "Add modes attribute to personTrips" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:193 +msgid "" +"Cannot find different source and sink edge for origin '%' and destination " +"'%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:124 -msgid "Writes trips between junctions" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:364 D:\Repos\sumo/src\od\ODMatrix.cpp:384 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:410 +msgid "" +"Flow density of % vehicles per second, cannot be represented with a simple " +"probability. Falling back to even spacing." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:129 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:116 -msgid "Defines the begin time; Previous trips will be discarded" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:434 +msgid "End of file while reading %." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:132 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:119 -msgid "" -"Defines the end time; Later trips will be discarded; Defaults to the maximum " -"time that SUMO can represent" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:461 +msgid "Broken period definition '%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:140 -msgid "Spreads trips uniformly over each time period" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:475 +msgid "Broken factor: '%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:143 -msgid "Always choose source and sink edge which are not identical" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:509 +#, c-format +msgid "Missing line with % district names." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:149 -msgid "Defines the prefix for vehicle names" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:519 +msgid "Missing line for district %." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:162 -msgid "Disable console output of current time step" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:533 +msgid "More entries than districts found." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:193 -msgid "No TAZ input file (-n) specified." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:538 D:\Repos\sumo/src\od\ODMatrix.cpp:586 +msgid "Not numeric vehicle number in line '%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:197 -msgid "No input specified." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:584 +msgid "Missing at least one information in line '%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:201 -msgid "No trip table output file (-o) or flow-output is specified." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:647 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:154 +msgid "Could not open '%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:205 -msgid "Only one of the the options 'pedestrians' and 'persontrips' may be set." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:658 D:\Repos\sumo/src\od\ODMatrix.cpp:664 +#, c-format +msgid "'%' does not contain the needed information about the time described." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:248 -#, fuzzy -msgid "" -"Importer of O/D-matrices for the microscopic, multi-modal traffic simulation " -"SUMO." -msgstr "Un simulateur de trafic microscopique et multimodal." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:674 D:\Repos\sumo/src\od\ODMatrix.cpp:687 +#, c-format +msgid "Could not access matrix file '%' to load." +msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:270 -msgid "You must supply a TAZ, network or districts file ('-n')." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:714 +#, c-format +msgid "Could not access route file '%' to load." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:276 -msgid "No districts loaded." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:731 +msgid "Assuming 24 entries for a day timeline, but got %." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:282 -msgid "No vehicles loaded." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:741 +msgid "Broken time line definition: missing a value in '%'." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:471 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:168 +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:471 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:168 msgid "Could not load '%'." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:491 +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:491 msgid "Loaded decal '%' with bounding box % %." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:597 +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:597 msgid "Could not load '%'. The model is replaced by a cone shape." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGManipulator.cpp:257 +#: D:\Repos\sumo/src\osgview\GUIOSGManipulator.cpp:257 #, c-format msgid "Currently in % camera mode. Press [F] to switch." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:166 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:166 msgid "Could not load traffic light files." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:454 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:454 msgid "Invalid link index in '%'." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:456 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:456 msgid "Unknown traffic light in '%'." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:992 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:992 msgid " (No projection defined)" msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:996 -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:997 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:996 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:997 msgid "N/A" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:107 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:208 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:263 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:341 -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:240 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:107 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:208 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:263 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:341 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:240 msgid "Unable to project coordinates for polygon '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:184 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:184 msgid "Missing id under '%'" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:232 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:265 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:140 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:299 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:271 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:385 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:232 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:265 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:140 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:299 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:271 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:385 msgid "Unable to project coordinates for POI '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:300 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:300 msgid "Unsupported shape type occurred (id='%')." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:71 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:71 msgid "Could not open dlr-navteq-poi-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:86 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:86 msgid "Could not open dlr-navteq-poly-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:128 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:128 msgid "Invalid x coordinate for POI '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:132 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:132 msgid "Invalid y coordinate for POI '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:137 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:137 msgid "The name of a POI is missing." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:191 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:191 msgid "Invalid dlr-navteq-polygon - line: '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:220 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:220 #, c-format msgid "The polygon '%' is empty." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:224 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:224 msgid "The name of a polygon is missing; it will be discarded." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:157 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:157 msgid "Could not import polygon from relation '%' (missing ways)" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:212 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:212 msgid "" "Could not import polygon from relation '%' (name:% reason: found gap of %m " "to way '%')\n" " Total length of remaining ways: %m." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:230 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:230 msgid "Assembled polygon from relation '%' (name:%)" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:254 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:254 #, c-format msgid "Polygon '%' has no shape." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:114 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:114 msgid "Could not open visum-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:149 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:149 msgid "Unable to project coordinates for point '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderXML.cpp:63 +#: D:\Repos\sumo/src\polyconvert\PCLoaderXML.cpp:63 msgid "Could not open xml-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:55 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:55 msgid "Could not open net-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:71 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:71 msgid "Could not find projection parameter in net." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCTypeDefHandler.cpp:71 +#: D:\Repos\sumo/src\polyconvert\PCTypeDefHandler.cpp:71 msgid "Could not add polygon type '%' (probably the id is already used)." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:81 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:81 msgid "Loads SUMO-network FILE as reference to offset and projection" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:85 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:85 msgid "" "Reads polygons from FILE assuming they're coded in DLR-Navteq (Elmar)-format" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:87 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:87 msgid "" "Reads pois from FILE+ assuming they're coded in DLR-Navteq (Elmar)-format" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:92 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:92 msgid "Reads polygons from FILE assuming it's a Visum-net" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:100 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:100 msgid "Reads pois and shapes from FILE assuming they're coded in XML" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:105 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:105 msgid "Reads pois from FILE+ assuming they're coded in OSM" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:107 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:107 msgid "The type will be made of the key-value - pair" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:109 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:109 msgid "The id will be set from the given 'name' attribute" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:111 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:111 msgid "" "If FLOAT >= 0, assemble one polygon from all ways of a relation if they all " "connect with gaps below FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:118 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:118 msgid "Reads shapes from shapefiles FILE+" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:122 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:122 msgid "Guesses the shapefile's projection" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:130 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:130 msgid "Defines in which column the id can be found" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:134 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:134 msgid "Defines which columns form the type id (comma separated list)" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:137 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:137 msgid "A running number will be used as id" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:140 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:140 msgid "Extract all additional columns as params" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:143 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:143 msgid "" "[auto|true|false]. Forces the 'fill' status to the given value. Default " "'auto' tries to determine it from the data type" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:148 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:148 msgid "Reads types from FILE" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:156 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:156 msgid "Write generated polygons/pois to FILE" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:159 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:159 msgid "Write generated polygons/pois to a dlr-tdp file with the given prefix" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:165 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:169 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:172 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:177 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:181 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:165 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:169 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:172 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:177 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:181 msgid "Pruning" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:165 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:165 msgid "Enables pruning on net boundaries" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:169 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:169 msgid "" "Uses FLOAT,FLOAT,FLOAT,FLOAT as offset definition added to the net boundary. " "Positive values grow the boundary on all sides while negative values shrink " "it." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:172 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:172 msgid "Uses STR as pruning boundary" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:177 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:177 msgid "Items in STR will be kept though out of boundary" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:181 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:181 msgid "Items with names in STR[] will be removed" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:196 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:196 msgid "Imports all attributes as key/value pairs" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:202 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:202 msgid "" "Adds FLOAT to the layer value for each poi (i.e. to raise it above polygons)" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:206 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:206 msgid "Sets STR as default color" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:209 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:209 msgid "Sets STR as default prefix" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:212 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:212 msgid "Sets STR as default type" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:215 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:215 msgid "Fills polygons by default" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:218 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:218 msgid "Sets FLOAT as default layer" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:221 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:221 msgid "Sets default action to discard" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:225 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:225 msgid "Write geo coordinates in output" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:232 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:232 #, fuzzy msgid "" "Importer of polygons and POIs for the microscopic, multi-modal traffic " "simulation SUMO." msgstr "Un simulateur de trafic microscopique et multimodal." -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:285 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:285 msgid "In order to prune the input on the net, you have to supply a network." msgstr "" -#: /home/micha/programming/sumo/src/router/ROEdge.cpp:204 +#: D:\Repos\sumo/src\router\ROEdge.cpp:204 msgid "" "No interval matches passed time=% in edge '%'.\n" " Using edge's length / max speed." msgstr "" -#: /home/micha/programming/sumo/src/router/ROEdge.cpp:230 +#: D:\Repos\sumo/src\router\ROEdge.cpp:230 msgid "" "No interval matches passed time=% in edge '%'.\n" " Using edge's length / edge's speed." msgstr "" -#: /home/micha/programming/sumo/src/router/ROEdge.cpp:453 +#: D:\Repos\sumo/src\router\ROEdge.cpp:453 msgid "" "Option weights.priority-factor does not take effect because all edges have " "the same priority." msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:47 +#: D:\Repos\sumo/src\router\ROFrame.cpp:47 msgid "Write generated routes to FILE" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:53 +#: D:\Repos\sumo/src\router\ROFrame.cpp:53 msgid "Write used vehicle types into separate FILE" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:56 +#: D:\Repos\sumo/src\router\ROFrame.cpp:56 msgid "Keep vTypeDistribution ids when writing vehicles and their types" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:63 +#: D:\Repos\sumo/src\router\ROFrame.cpp:63 msgid "Use FILE as SUMO-network to route on" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:66 +#: D:\Repos\sumo/src\router\ROFrame.cpp:66 msgid "Write vehicles that reference routes by their id" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:73 +#: D:\Repos\sumo/src\router\ROFrame.cpp:73 msgid "Read additional network data (districts, bus stops) from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:87 +#: D:\Repos\sumo/src\router\ROFrame.cpp:87 msgid "Read sumo routes, alternatives, flows, and trips from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:101 +#: D:\Repos\sumo/src\router\ROFrame.cpp:101 msgid "Read network weights from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:104 +#: D:\Repos\sumo/src\router\ROFrame.cpp:104 msgid "Read lane-based network weights from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:125 +#: D:\Repos\sumo/src\router\ROFrame.cpp:125 msgid "Continue if a route could not be build" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:128 +#: D:\Repos\sumo/src\router\ROFrame.cpp:128 msgid "Prune the number of alternatives to INT" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:131 +#: D:\Repos\sumo/src\router\ROFrame.cpp:131 msgid "Use origin and destination zones (districts) for in- and output" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:139 +#: D:\Repos\sumo/src\router\ROFrame.cpp:139 msgid "Assume input is unsorted" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:148 +#: D:\Repos\sumo/src\router\ROFrame.cpp:148 msgid "generate random departure times for flow input" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:151 +#: D:\Repos\sumo/src\router\ROFrame.cpp:151 msgid "" "Remove loops within the route; Remove turnarounds at start and end of the " "route" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:154 +#: D:\Repos\sumo/src\router\ROFrame.cpp:154 msgid "Tries to correct a false route" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:157 +#: D:\Repos\sumo/src\router\ROFrame.cpp:157 msgid "" "Tries to correct an invalid starting edge by using the first usable edge " "instead" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:160 +#: D:\Repos\sumo/src\router\ROFrame.cpp:160 msgid "" "Tries to correct an invalid destination edge by using the last usable edge " "instead" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:163 +#: D:\Repos\sumo/src\router\ROFrame.cpp:163 msgid "" "Maximum distance when mapping input coordinates (fromXY etc.) to the road " "network" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:166 +#: D:\Repos\sumo/src\router\ROFrame.cpp:166 msgid "Match positions to junctions instead of edges" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:169 +#: D:\Repos\sumo/src\router\ROFrame.cpp:169 msgid "Aggregate routing queries with the same origin" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:173 +#: D:\Repos\sumo/src\router\ROFrame.cpp:173 msgid "The number of parallel execution threads used for routing" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:177 +#: D:\Repos\sumo/src\router\ROFrame.cpp:177 msgid "" "Select among routing algorithms ['dijkstra', 'astar', 'CH', 'CHWrapper']" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:181 +#: D:\Repos\sumo/src\router\ROFrame.cpp:181 msgid "" "Comma separated list of param keys to compare for additional restrictions" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:186 +#: D:\Repos\sumo/src\router\ROFrame.cpp:186 msgid "Interpolate edge weights at interval boundaries" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:190 +#: D:\Repos\sumo/src\router\ROFrame.cpp:190 msgid "Expand the end of the last loaded weight interval to infinity" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:194 +#: D:\Repos\sumo/src\router\ROFrame.cpp:194 msgid "" "Apply the given time penalty when computing routing costs for minor-link " "internal lanes" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:217 +#: D:\Repos\sumo/src\router\ROFrame.cpp:217 msgid "Defaults will override given values" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:222 +#: D:\Repos\sumo/src\router\ROFrame.cpp:222 msgid "Defines how often statistics shall be printed" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:233 +#: D:\Repos\sumo/src\router\ROFrame.cpp:233 msgid "No output specified." msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:238 +#: D:\Repos\sumo/src\router\ROFrame.cpp:238 msgid "A positive number of alternatives must be enabled." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:62 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:64 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:83 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:85 +#: D:\Repos\sumo/src\router\ROLoader.cpp:62 +#: D:\Repos\sumo/src\router\ROLoader.cpp:64 +#: D:\Repos\sumo/src\router\ROLoader.cpp:83 +#: D:\Repos\sumo/src\router\ROLoader.cpp:85 msgid "Trying to set a weight for the unknown edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:114 +#: D:\Repos\sumo/src\router\ROLoader.cpp:114 #, c-format msgid "The network file '%' is not accessible." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:140 +#: D:\Repos\sumo/src\router\ROLoader.cpp:140 #, c-format msgid "The additional file '%' is not accessible." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:217 +#: D:\Repos\sumo/src\router\ROLoader.cpp:217 msgid "Routes found between time steps % and %." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:243 +#: D:\Repos\sumo/src\router\ROLoader.cpp:243 msgid "The loader for % from file '%' could not be initialised (%)." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:281 -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:158 +#: D:\Repos\sumo/src\router\ROLoader.cpp:281 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:183 msgid "failed." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:162 +#: D:\Repos\sumo/src\router\RONet.cpp:162 #, c-format msgid "The edge '%' occurs at least twice." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:176 +#: D:\Repos\sumo/src\router\RONet.cpp:176 #, c-format msgid "The TAZ '%' occurs at least twice." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:199 +#: D:\Repos\sumo/src\router\RONet.cpp:199 #, c-format msgid "The TAZ '%' is unknown." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:204 +#: D:\Repos\sumo/src\router\RONet.cpp:204 #, c-format msgid "The edge '%' for TAZ '%' is unknown." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:259 +#: D:\Repos\sumo/src\router\RONet.cpp:259 #, c-format msgid "The bidi edge '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:270 +#: D:\Repos\sumo/src\router\RONet.cpp:270 #, c-format msgid "The node '%' occurs at least twice." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:279 +#: D:\Repos\sumo/src\router\RONet.cpp:279 msgid "The % '%' occurs at least twice." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:446 +#: D:\Repos\sumo/src\router\RONet.cpp:446 #, c-format msgid "The vehicle type '%' occurs at least twice." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:498 +#: D:\Repos\sumo/src\router\RONet.cpp:498 msgid "Requesting departure time for unknown vehicle '%'" msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:528 +#: D:\Repos\sumo/src\router\RONet.cpp:528 #, c-format msgid "Another person with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:637 +#: D:\Repos\sumo/src\router\RONet.cpp:637 msgid "" "Bulking different maximum speeds ('%' and '%') may lead to suboptimal routes." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:640 +#: D:\Repos\sumo/src\router\RONet.cpp:640 msgid "" "Bulking different vehicle classes ('%' and '%') may lead to invalid routes." msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:137 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:137 msgid "Unknown node '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:243 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:243 msgid "Ignoring lane '%' with broken shape." msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:280 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:280 msgid "Skipping isolated junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:299 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:299 #, c-format msgid "unknown from-edge '%' in connection" msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:302 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:302 #, c-format msgid "unknown to-edge '%' in connection" msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:316 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:316 #, c-format msgid "unknown via-edge '%' in connection" msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:368 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:368 msgid "Ignoring invalid access from non-pedestrian edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteDef.cpp:123 +#: D:\Repos\sumo/src\router\RORouteDef.cpp:123 msgid "Repaired route of vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteDef.cpp:222 +#: D:\Repos\sumo/src\router\RORouteDef.cpp:222 msgid "" "There are stop edges which were not part of the original route for vehicle " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteDef.cpp:237 +#: D:\Repos\sumo/src\router\RORouteDef.cpp:237 msgid "Edge '%' not connected to edge '%' for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:200 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:200 msgid "Triggered departure for person '%' requires starting with a ride." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:202 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:202 msgid "" "Triggered departure for container '%' requires starting with a transport." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:224 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:224 #, c-format msgid "Found % outside container element" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:338 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:338 msgid "No probability for route %, using default." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:493 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:493 msgid "Ids of internal route distributions are ignored (vehicle '%')." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:609 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:609 msgid "Discarding person '%' because her plan is empty" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:635 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:635 msgid "Discarding personFlow '%' because their plan is empty" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:643 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:643 #, c-format msgid "probabilistic personFlow '%' must specify end time" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:716 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:716 msgid "Discarding container '%' because it's plan is empty" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:733 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:733 msgid "Discarding containerFlow '%' because it's plan is empty" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1036 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1041 msgid "Triggered departure for container '%' requires a unique lines value." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1076 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1081 msgid "Cannot convert geo-positions because the network has no geo-reference" msgstr "" -#: /home/micha/programming/sumo/src/sumo_main.cpp:49 +#: D:\Repos\sumo/src\sumo_main.cpp:49 msgid "Another interrupt signal received, hard exit." msgstr "Un autre signal d'interruption reçu, fermeture forcée." -#: /home/micha/programming/sumo/src/sumo_main.cpp:52 +#: D:\Repos\sumo/src\sumo_main.cpp:52 msgid "Interrupt signal received, trying to exit gracefully." msgstr "Signal d'interruption reçu, fermeture." -#: /home/micha/programming/sumo/src/sumo_main.cpp:86 +#: D:\Repos\sumo/src\sumo_main.cpp:86 msgid "A microscopic, multi-modal traffic simulation." msgstr "Un simulateur de trafic microscopique et multimodal." -#: /home/micha/programming/sumo/src/sumo_main.cpp:114 -#: /home/micha/programming/sumo/src/sumo_main.cpp:123 +#: D:\Repos\sumo/src\sumo_main.cpp:114 D:\Repos\sumo/src\sumo_main.cpp:123 msgid "Quitting (on error)." msgstr "Fermeture (suite à une erreur)." -#: /home/micha/programming/sumo/src/sumo_main.cpp:126 +#: D:\Repos\sumo/src\sumo_main.cpp:126 msgid "Quitting (on unknown error)." msgstr "Fermeture (suite à une erreur inconnue)." -#: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:76 +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:76 msgid "Unknown actor configuration '%' for vehicle '%'!" msgstr "" -#: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:94 +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:94 msgid "Motion state for unknown vehicle '%'!" msgstr "" -#: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:136 +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:136 msgid "Acceleration information is missing; try running with --compute-a." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:62 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:62 msgid "Computes emissions by driving a time line using SUMO's emission models." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:70 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:70 msgid "Defines the file to read the driving cycle from." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:74 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:74 msgid "Skips the first NUM lines." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:78 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:78 msgid "Defines the entry separator." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:83 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:83 msgid "" "Defines the netstate, route and trajectory files to read the driving cycles " "from." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:86 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:86 msgid "Load emission parameters (vTypes) from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:89 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:89 msgid "Defines for which emission class the emissions shall be generated. " msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:92 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:92 msgid "Defines the vehicle type to use for emission parameters." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:96 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:96 msgid "" "If set, the acceleration is computed instead of being read from the file. " msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:99 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:99 msgid "" "If set, the acceleration for time t is computed from v(t+1) - v(t) instead " "of v(t) - v(t-1). " msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:102 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:102 msgid "If set, the acceleration for time t is set to 0 if the speed is 0. " msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:105 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:105 msgid "If set, the first line of the read file is skipped." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:108 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:108 msgid "If set, the given speed is interpreted as being given in km/h." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:111 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:111 msgid "If set, the fourth column is read and used as slope (in deg)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:114 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:114 msgid "" "Sets a global slope (in deg) that is used if the file does not contain slope " "information." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:119 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:119 msgid "Defines the file to write the emission cycle results into." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:122 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:122 msgid "Defines the attributes to write." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:125 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:125 msgid "Save the emission values of each vehicle in XML" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:129 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:129 msgid "Save the aggregated and normed emission values of each vehicle in CSV" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:145 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:145 msgid "Defines the begin time in seconds;" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:148 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:148 msgid "Defines the end time in seconds;" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:152 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:152 msgid "Not writing anything." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:169 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:169 msgid "Either a timeline or a netstate / amitran file must be given." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:172 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:172 msgid "The output file must be given." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:185 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:185 #, c-format msgid "Unknown attribute '%' to write in output." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:213 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:213 msgid "" "Option --vtype requires option --additional-files for loading vehicle types" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:225 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:225 #, c-format msgid "Vehicle type '%' is not defined" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:245 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:245 msgid "Unreadable file '%'." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:276 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:276 msgid "Missing an entry in line '%'." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:278 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:278 msgid "Not numeric entry in line '%'." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:58 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:58 msgid "Writing map of '%' into '%'." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:62 -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:291 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:62 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:291 #, c-format msgid "Could not open file '%' for writing." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:86 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:86 msgid "Builds and writes an emissions map for SUMO's emission models." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:92 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:92 msgid "If set, maps for all available emissions are written." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:95 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:95 msgid "Defines the name of the emission class to generate the map for." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:98 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:98 msgid "Defines the minimum velocity boundary of the map to generate (in m/s)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:100 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:100 msgid "Defines the maximum velocity boundary of the map to generate (in m/s)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:102 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:102 msgid "Defines the velocity step size (in m/s)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:104 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:104 msgid "" "Defines the minimum acceleration boundary of the map to generate (in m/s^2)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:106 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:106 msgid "" "Defines the maximum acceleration boundary of the map to generate (in m/s^2)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:108 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:108 msgid "Defines the acceleration step size (in m/s^2)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:110 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:110 msgid "Defines the minimum slope boundary of the map to generate (in deg)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:112 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:112 msgid "Defines the maximum slope boundary of the map to generate (in deg)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:114 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:114 msgid "Defines the slope step size (in deg)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:119 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:119 msgid "" "Defines the file (or the path if --iterate was set) to write the map(s) into." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:159 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:159 msgid "The emission class (-e) must be given." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:162 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:162 msgid "The output file (-o) must be given." msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:314 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:314 msgid "Starting TraCI without using internal lanes!" msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:320 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:320 msgid "***Starting server on port % ***" msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:323 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:323 #, c-format msgid " waiting for % clients..." msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:347 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:347 msgid " client connected" msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:480 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:480 msgid "" "Execution order (libsumo::CMD_SETORDER) was not set for all TraCI clients in " "pre-execution phase." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/FileHelpers.cpp:73 +#: D:\Repos\sumo/src\utils\common\FileHelpers.cpp:73 msgid "Cannot get file attributes for file '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/FileHelpers.h:318 +#: D:\Repos\sumo/src\utils\common\FileHelpers.h:318 msgid "Invalid follower index in route '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/FileHelpers.h:328 +#: D:\Repos\sumo/src\utils\common\FileHelpers.h:328 #, c-format msgid "An edge within the route '%' is not known!" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:153 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:178 #, c-format msgid "done (%ms)." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:155 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:180 msgid "done." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:253 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:278 msgid "Could not set locale to '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:258 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:283 msgid "" "Environment variable SUMO_HOME is not set, could not find localized messages." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:264 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:289 msgid "Could not find localized messages." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:87 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:87 msgid "Invalid conversion from string to double (%)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:90 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:90 msgid "Invalid conversion from string to double (empty value)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:109 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:109 msgid "Invalid conversion from string to doubles (%)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:112 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:112 msgid "Invalid conversion from string to doubles (empty value)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:205 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:205 msgid "Invalid format of parameter (%)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:230 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:230 msgid "Invalid format of attribute '%'. Attribute must start with a letter" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:237 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:237 msgid "Invalid format of attribute (%)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/RandHelper.cpp:65 +#: D:\Repos\sumo/src\utils\common\RandHelper.cpp:65 msgid "Initialises the random number generator with the current system time" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/RandHelper.cpp:69 +#: D:\Repos\sumo/src\utils\common\RandHelper.cpp:69 msgid "Initialises the random number generator with the given value" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:187 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:187 msgid "Simultaneous specification of vClasses and exceptions is not allowed" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:191 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:191 msgid "StopOffset requires an offset value" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:341 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:341 #, c-format msgid "Unknown vehicle class '%' encountered." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:382 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:382 msgid "" "SVCPermissions must be specified either via 'allow' or 'disallow'. Ignoring " "'disallow'" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:408 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:408 #, c-format msgid "The vehicle class '%' is deprecated, use '%' instead." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:43 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:43 msgid "Loads the named config on startup" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:48 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:48 msgid "Saves current configuration into FILE" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:52 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:52 msgid "Enforce relative paths when saving the configuration" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:55 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:55 msgid "Saves a configuration template (empty) into FILE" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:58 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:58 msgid "Saves the configuration schema into FILE" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:62 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:62 msgid "Adds comments to saved template, configuration, or schema" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:71 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:71 msgid "Switches to verbose output" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:74 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:74 msgid "Prints option values before processing" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:77 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:77 msgid "Prints this screen or selected topics" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:80 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:80 msgid "Prints the current version" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:97 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:97 msgid "Disables output of warnings" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:100 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:100 msgid "Aggregate warnings of the same type whenever more than INT occur" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:104 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:104 msgid "Writes all messages to FILE (implies verbose)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:107 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:107 msgid "Writes all non-error messages to FILE (implies verbose)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:110 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:110 msgid "Writes all warnings and errors to FILE" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:113 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:113 msgid "Language to use in messages" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:116 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:116 msgid "Include license info into every output file" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:119 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:119 msgid "" "Prefix which is applied to all output files. The special string 'TIME' is " "replaced by the current time." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:122 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:122 msgid "Defines the number of digits after the comma for floating point output" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:125 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:125 msgid "Defines the number of digits after the comma for lon,lat output" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:128 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:128 msgid "" "Write time values as hour:minute:second or day:hour:minute:second rather " "than seconds" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:43 -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:184 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:43 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:184 msgid "Process Error" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:72 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:72 msgid "Empty Data" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:99 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:99 msgid "Invalid Number Format %" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:112 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:112 msgid "Invalid Time Format %" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:125 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:125 msgid "Invalid Bool Format %" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:137 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:137 msgid "Out Of Bounds" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:151 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:151 msgid "Unknown Element" msgstr "" -#: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:74 -#: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:76 -#: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:93 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:74 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:76 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:93 msgid "Invalid format of distribution parameterized" msgstr "" -#: /home/micha/programming/sumo/src/utils/emissions/EnergyParams.cpp:153 +#: D:\Repos\sumo/src\utils\emissions\EnergyParams.cpp:153 msgid "Vehicle device '%' doesn't have a valid value for parameter % (%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/emissions/HelpersEnergy.cpp:225 +#: D:\Repos\sumo/src\utils\emissions\HelpersEnergy.cpp:225 msgid "An acceleration given by the power was not found." msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:71 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:74 msgid "Add decal" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:71 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:74 msgid "Add decal." msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:151 -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:162 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:160 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:171 msgid "Invalid row or column" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:186 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:195 msgid "Invalid row" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:196 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:205 msgid "Invalid column" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:332 -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:790 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:341 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:798 msgid "Open decal" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:337 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:346 msgid "All files (*)" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:790 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:798 msgid "Open decal." msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:798 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:806 msgid "Remove decal" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:798 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:806 msgid "Remove decal." msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:87 +#: D:\Repos\sumo/src\utils\foxtools\MFXTextFieldSearch.cpp:66 +msgid "Type to search..." +msgstr "" + +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:87 msgid "Ignoring geoidgrids and vgridshift in projection" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:232 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:232 msgid "Inverse projection works only with explicit proj parameters." msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:237 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:237 msgid "The projection method needs to be uniquely defined." msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:288 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:288 msgid "Uses a simple method for projection" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:291 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:291 msgid "Scaling factor for input coordinates" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:294 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:294 msgid "Rotation (clockwise degrees) for input coordinates" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:298 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:298 msgid "" "Determine the UTM zone (for a universal transversal mercator projection " "based on the WGS84 ellipsoid)" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:304 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:304 msgid "Uses STR as proj.4 definition for projection" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:307 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:307 msgid "Inverses projection" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:310 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:310 msgid "Convert from Gauss-Krueger to UTM" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:434 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:434 msgid "Could not transform (%,%)" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:578 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:578 #, c-format msgid "" "Ignoring loaded location attribute nr. % for tracking of original location" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeomHelper.cpp:238 +#: D:\Repos\sumo/src\utils\geom\GeomHelper.cpp:238 msgid "GeomHelper::makeCircle() requires nPoints>=3" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:607 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:607 msgid "Splitting vector close to end (pos: %, length: %)" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:1503 -#: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:1517 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:1503 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:1517 msgid "Trying to subtract PositionVectors of different lengths." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:960 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:963 msgid "'lane' and 'length' must be defined together in a lane area detector." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:965 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:968 msgid "'lanes' and 'endPos' must be defined together in a lane area detector." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1242 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1245 msgid "Calibrators need either an edge or a lane" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1289 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1292 msgid "" "CalibratorFlows need either the attribute vehsPerHour or speed or type (or " "any combination of these)" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1428 -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1454 -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1479 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1431 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1457 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1482 #, c-format msgid "Probability of % must be equal or greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1665 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1668 msgid "X and Y must be be defined together in POIs" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1671 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1674 msgid "lane and position must be be defined together in POIs" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1677 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1680 msgid "lon and lat must be be defined together in POIs" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1743 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1746 msgid "Parameters must be defined within an object." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1745 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:848 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1748 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:857 msgid "Parameters cannot be defined in the additional file's root." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1747 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:850 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1750 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:859 msgid "Parameters cannot be defined within another parameter." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1755 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1758 #, c-format msgid "Error parsing key from % generic parameter. Key cannot be empty." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1757 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1760 #, c-format msgid "" "Error parsing key from % generic parameter. Key contains invalid characters." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/DataHandler.cpp:111 +#: D:\Repos\sumo/src\utils\handlers\DataHandler.cpp:111 msgid "Data elements cannot load attributes as params" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/MeanDataHandler.cpp:54 +#: D:\Repos\sumo/src\utils\handlers\MeanDataHandler.cpp:54 msgid "MeanData elements cannot load attributes as params" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:370 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:373 msgid "" "Could not build % with ID '%' in netedit; ID contains invalid characters." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:420 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:423 msgid "" "a route must be defined either within a vehicle/flow or with an ID attribute" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:437 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:440 #, c-format msgid "cycleTime of % must be equal or greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:482 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:549 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:485 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:552 msgid "Attributes 'from' and 'fromJunction' cannot be defined together" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:484 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:551 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:487 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:554 msgid "Attributes 'to' and 'toJunction' cannot be defined together" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:515 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:518 msgid "trip definition needs either 'from/to' or 'fromJunction/toJunction'" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:846 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:855 msgid "Parameters must be defined within an object" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:858 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:867 #, c-format msgid "Error parsing key from % generic parameter. Key cannot be empty" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:860 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:869 #, c-format msgid "" "Error parsing key from % generic parameter. Key contains invalid characters" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:876 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:224 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:885 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:225 msgid "" "Defining car-following parameters in a nested element is deprecated in vType " "'%', use attributes instead!" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:884 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:886 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:227 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:229 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:893 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:895 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:228 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:230 msgid "Invalid parsing embedded VType" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:970 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:979 msgid "A stop must be defined either with an edge or with an lane, not both" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:984 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:995 msgid "A stop must be defined only in a StoppingPlace" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:987 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:998 msgid "A stop must be defined in an edge, a lane, or in a StoppingPlace" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/TemplateHandler.cpp:67 +#: D:\Repos\sumo/src\utils\handlers\TemplateHandler.cpp:67 msgid "Could not load template '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice.cpp:86 +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice.cpp:86 msgid "No port number given." msgstr "" -#: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice.cpp:161 +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice.cpp:161 msgid "Error on closing output devices." msgstr "" -#: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice_File.cpp:46 +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice_File.cpp:46 msgid "Could not redirect to NUL device (%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:315 +#: D:\Repos\sumo/src\utils\options\Option.cpp:352 #, c-format msgid "'%' is not a valid float." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:349 +#: D:\Repos\sumo/src\utils\options\Option.cpp:386 #, c-format msgid "'%' is not a valid bool." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:409 +#: D:\Repos\sumo/src\utils\options\Option.cpp:446 msgid "" "Please note that using ';' as list separator is deprecated and not accepted " "anymore." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:419 +#: D:\Repos\sumo/src\utils\options\Option.cpp:456 #, c-format msgid "'%' is not a valid integer vector." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:65 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:66 msgid "" "Copyright (C) 2001-2023 German Aerospace Center (DLR) and others; https://" "sumo.dlr.de" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:151 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:152 msgid "Internal request for unknown option '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:174 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:175 #, c-format msgid "No option with the name '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:191 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:192 #, c-format msgid "" "Please note that '%' is deprecated.\n" " Use '%' instead." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:387 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:388 #, c-format msgid "The file list for '%' is empty." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:393 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:394 msgid "File '%' is not accessible (%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:396 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:397 msgid "Empty file name given; ignoring." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:417 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:418 msgid "Option '%' needs option '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:616 -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:638 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:621 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:643 msgid " Build features: " msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:620 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:625 msgid "" " License EPL-2.0: Eclipse Public License Version 2 " msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:621 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:626 msgid " Use --help to get the list of options." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:669 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:674 msgid "Could not save configuration to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:673 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:678 msgid "Written configuration to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:686 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:691 msgid "Could not save template to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:690 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:695 msgid "Written template to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:702 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:707 msgid "Could not save schema to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:706 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:711 msgid "Written schema to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:88 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:135 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:88 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:135 msgid "Could not parse commandline options." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:103 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:103 msgid "Could not access configuration '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:107 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:107 msgid "Loading configuration" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:121 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:121 msgid "Could not load configuration '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsLoader.cpp:77 +#: D:\Repos\sumo/src\utils\options\OptionsLoader.cpp:77 msgid "Could not set option '%' (probably defined twice)." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:127 -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:134 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:127 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:134 msgid "Missing value for parameter '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:146 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:146 #, c-format msgid "" "The parameter '%' is not allowed in this context.\n" " Switch or parameter name expected." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:150 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:150 msgid "Mixed parameter syntax in '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:124 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:124 msgid "Could not load landmark-lookup-table from '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:138 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:138 #, c-format msgid "Duplicate edge '%' in landmark file." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:143 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:143 #, c-format msgid "Landmark edge '%' does not exist in the network." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:154 -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:167 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:154 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:167 #, c-format msgid "Unknown or unordered edge '%' in landmark file." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:164 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:164 msgid "Broken landmark file, unexpected number of entries (%) for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:187 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:187 msgid "Calculating new lookup table." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:194 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:194 msgid "No lookup table for landmark edge '%', recalculating." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:196 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:196 msgid "" "Not all network edges were found in the lookup table '%' for landmark edge " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:293 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:293 msgid "Saving new matrix to '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:295 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:295 #, c-format msgid "Edge '%' not found in intermodal network.'" msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:304 -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:338 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:304 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:338 #, c-format msgid "Depart edge '%' not found in intermodal network." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:350 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:350 #, c-format msgid "Arrival edge '%' not found in intermodal network." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:620 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:620 msgid "Ignoring unordered stop at '%' until % for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:632 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:632 msgid "Ignoring stop at '%' until % for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:637 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:637 #, c-format msgid "" "Not using public transport line '%' for routing persons. It has less than " "two usable stops." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalRouter.h:214 -#: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:125 +#: D:\Repos\sumo/src\utils\router\IntermodalRouter.h:220 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:125 msgid "Do not use this method" msgstr "" -#: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:87 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:87 #, c-format msgid "Departure edge '%' does not allow pedestrians." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:91 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:91 #, c-format msgid "Destination edge '%' does not allow pedestrians." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:84 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:84 msgid "Error parsing key from shape generic parameter. Key cannot be empty" msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:86 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:86 msgid "" "Error parsing key from shape generic parameter. Key contains invalid " "characters" msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:139 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:139 msgid "Invalid characters for PoI ID" msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:170 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:170 msgid "Either (x, y), (lon, lat) or (lane, pos) must be specified for PoI '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:173 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:173 msgid "" "(lon, lat) is specified for PoI '%' but no geo-conversion is specified for " "the network." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:185 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:185 msgid "Unable to project coordinates for PoI '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:191 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:191 #, c-format msgid "PoI '%' already exists." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:209 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:209 msgid "Invalid characters for Poly ID" msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:252 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:252 msgid "Polygon's shape cannot be empty." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:257 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:257 msgid "Polygon's lineWidth must be greater than 0." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:262 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:262 #, c-format msgid "Polygon '%' already exists." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:279 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:279 #, c-format msgid "Loading of shapes from % failed." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:44 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:44 #, c-format msgid "The node: '%' already exists." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:239 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:239 msgid "Index of renumbered node exceeded the reduced number of equations." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:250 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:250 msgid "Index of renumbered element exceeded the reduced number of equations." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:257 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:257 msgid "Structural error in reduced circuit matrix." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:288 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:288 msgid "Initial solution x used during solving DC circuit is out of bounds.\n" msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:312 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:456 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:312 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:456 msgid "wrongly assigned row of matrix A during solving the circuit" msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:354 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:479 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:354 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:479 msgid "The negative node of current source is not the groud." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:508 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:518 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:526 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:508 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:518 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:526 msgid "Results deployment during circuit evaluation was unsuccessful." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:576 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:576 msgid "" "Cannot assign unambigous electric current value to two voltage sources " "connected in parallel at the same node." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:798 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:798 msgid "" "Trying to add resistor element into the overhead wire circuit with " "resistance < 1e-6. " msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:800 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:800 msgid "" "Trying to add resistor element into the overhead wire circuit with " "resistance < 0. " msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:919 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:919 msgid "" "Circuit Voltage Source '%' is connected to less than two nodes, please " "adjust the definition of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:927 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:927 msgid "" "Circuit Element '%' is connected to less than two nodes, please adjust the " "definition of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:942 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:942 msgid "" "Circuit Node with id '-1' is not the grounded, please adjust the definition " "of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:966 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:966 msgid "" "A Circuit Resistor Element connects the ground, please adjust the definition " "of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:975 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:975 msgid "" "Circuit Node or Voltage Source with internal id '%' has been not visited " "during checking of the circuit. The circuit is disconnected, please adjust " "the definition of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Element.cpp:53 +#: D:\Repos\sumo/src\utils\traction_wire\Element.cpp:53 msgid "Undefined element type for '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:63 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:64 msgid "Route file should be sorted by departure time, ignoring '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParameter.cpp:653 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParameter.cpp:658 msgid "Invalid % % given for %. Using edge end instead." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParameter.cpp:703 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParameter.cpp:708 msgid "" "Value of stop attribute 'trigger' must be 'person', 'container', 'join' or a " "boolean" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:268 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:267 msgid "Undefined end for % '%', defaulting to 24hour duration." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:402 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:401 msgid "Invalid % id '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:404 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:403 msgid "Invalid % id '%'. Contains invalid characters." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:947 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:946 msgid "Lane change model 'JE2013' is deprecated. Using default model instead." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1139 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1138 msgid "maneuverAngleTimes format for vType '%' % contains an invalid triplet." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1148 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1147 #, c-format msgid "" "Triplet '%' for vType '%' maneuverAngleTimes cannot be parsed as 'int double " "double'" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1174 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1173 msgid "Unknown car-following model % when parsing vType '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1176 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1175 msgid "Unknown car-following model when parsing vType '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1209 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1225 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1208 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1224 msgid "Invalid Car-Following-Model Attribute %. Cannot be parsed to float" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1213 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1236 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1212 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1235 msgid "Invalid Car-Following-Model Attribute %. Must be greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1247 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1246 msgid "" "Invalid Car-Following-Model Attribute %. Only values between [0-1] are " "allowed" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1506 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1505 msgid "Invalid Lane-Change-Model Attribute %. Cannot be parsed to float" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1523 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1522 msgid "Invalid Lane-Change-Model Attribute %. Must be equal or greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1534 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1533 msgid "Invalid Lane-Change-Model Attribute %. Must be greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1545 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1544 msgid "Invalid Lane-Change-Model Attribute %. Must be between -1 and 1" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1591 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1576 msgid "Invalid Junction-Model Attribute %. Cannot be parsed to float" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1600 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1585 msgid "" "Invalid Junction-Model Attribute %. Only values between [0-1] are allowed" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1606 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1591 msgid "Invalid Junction-Model Attribute %. Must be equal or greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1636 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1621 msgid "The vehicle class '%' for % '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1654 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1639 msgid "The shape '%' for % '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:271 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:271 msgid "Undefined vehicleType parameter" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:281 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:281 msgid "Undefined vehicle parameter" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:291 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:291 msgid "Undefined stop parameter" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:513 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:513 msgid "Trying to get undefined % attribute '%' in SUMOBaseObject '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/GenericHandler.cpp:83 -#: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:105 +#: D:\Repos\sumo/src\utils\xml\GenericHandler.cpp:83 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:105 msgid "Found root element '%' in file '%' (expected '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:209 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:209 msgid " In file '" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:210 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:210 msgid " At line/column " msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SAXWeightsHandler.cpp:145 +#: D:\Repos\sumo/src\utils\xml\SAXWeightsHandler.cpp:145 msgid "Missing value '%' in edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:110 -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:136 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:110 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:136 msgid "Cannot read file '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:113 -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:139 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:113 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:139 #, c-format msgid "File '%' is a directory!" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:156 -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:165 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:156 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:165 msgid "The XML-parser was not initialized." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:191 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:191 msgid "The XML-parser could not be build." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:92 -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:98 -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:105 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:92 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:98 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:105 msgid "" "Environment variable SUMO_HOME is not set properly, disabling XML " "validation. Set 'auto' or 'always' for web lookups." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:111 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:111 msgid "" "Environment variable SUMO_HOME is not set properly, XML validation will fail " "or use slow website lookups." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:120 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:120 msgid "Cannot read local schema '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:167 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:167 msgid "" "Disabling XML validation for external file '%'. Use 'auto' or 'always' to " "enable." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:189 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:189 msgid "Runtime error: % while parsing '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:191 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:191 msgid "Error occurred: % while parsing '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:193 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:193 msgid "" "SAX error occured while parsing '%':\n" " %" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:195 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:195 msgid "Unspecified error occurred wile parsing '%'" msgstr "" diff -Nru sumo-1.17.0/data/po/hu_gui.po sumo-1.18.0/data/po/hu_gui.po --- sumo-1.17.0/data/po/hu_gui.po 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/po/hu_gui.po 2023-06-28 20:02:17.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: sumo\n" "Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" -"POT-Creation-Date: 2023-04-15 12:21+0200\n" +"POT-Creation-Date: 2023-06-15 09:59+0200\n" "PO-Revision-Date: 2022-10-12 11:05+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -17,3166 +17,3202 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:292 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:295 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2208 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2209 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2211 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:507 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:510 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:513 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1558 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1559 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1560 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:292 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:295 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2218 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2219 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2221 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:513 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:516 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:519 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1567 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1568 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1569 msgid "N/A" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:292 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:507 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:292 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:513 msgid "Original coordinate (before coordinate transformation in netconvert)" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:295 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:510 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:295 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:516 msgid "Network coordinate" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:323 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:528 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:323 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:534 msgid "Ready." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:444 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1322 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:444 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1329 msgid "&File" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:446 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:200 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:446 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:200 msgid "New Window" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:446 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:446 msgid "Open a new sumo-gui window." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:450 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:450 msgid "&Open Simulation..." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:450 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:450 msgid "Open a simulation (Configuration file)." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:453 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:453 msgid "Open &Network..." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:453 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:453 msgid "Open a network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:456 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:456 msgid "Open Shapes " msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:456 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:456 msgid "Load POIs and Polygons for visualization." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:459 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:459 msgid "Open EdgeData " msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:459 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:459 msgid "Load edge related data for visualization." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:462 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1009 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:256 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:462 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1015 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:256 msgid "&Reload" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:462 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:462 msgid "Reloads the simulation / the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:465 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:465 msgid "Quick-Reload" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:465 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:465 msgid "Reloads the simulation (but not network)." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:469 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:469 msgid "Save Configuration" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:469 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:469 msgid "Save current options as a configuration file." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:472 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:300 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:91 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:87 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:88 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:472 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:300 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:95 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:95 msgid "Close" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:472 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:472 msgid "Close the simulation." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:480 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1343 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:480 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1350 msgid "&Quit" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:480 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1343 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:480 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1350 msgid "Quit the Application." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:489 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1357 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:489 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1364 msgid "&Edit" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:491 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:491 msgid "Edit Selected..." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:491 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:491 msgid "Opens a dialog for editing the list of selected items." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:494 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:494 msgid "Select lanes which allow..." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:494 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:494 msgid "Opens a menu for selecting a vehicle class by which to selected lanes." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:498 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:498 msgid "Edit Breakpoints" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:498 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:498 msgid "Opens a dialog for editing breakpoints." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:501 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1268 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:501 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1302 msgid "Edit Visualisation" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:501 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1268 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:501 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1302 msgid "Opens a dialog for editing visualization settings." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:504 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1271 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:124 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:1587 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1305 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:124 +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:1596 msgid "Edit Viewport" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:504 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1271 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1305 msgid "Opens a dialog for editing viewing area, zoom and rotation." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:508 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:508 msgid "Open network in netedit" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:508 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:508 msgid "Opens current network in NETEDIT." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:515 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:515 msgid "&Settings" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:517 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:53 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:517 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:53 msgid "Application Settings" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:517 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:517 msgid "Open a Dialog for Application Settings editing." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:520 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:520 msgid "Gaming Mode\tCtrl+G\tToggle gaming mode on/off." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:523 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:523 msgid "Full Screen Mode" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:523 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:523 msgid "Toggle full screen mode on/off." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:527 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1393 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:527 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1400 msgid "&Locate" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:529 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1314 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1945 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1348 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1979 msgid "&Junctions" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:529 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:529 msgid "Open a Dialog for Locating a Junction." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:532 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1319 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1948 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1353 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1982 msgid "&Edges" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:532 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:532 msgid "Open a Dialog for Locating an Edge." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:535 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1374 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1954 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:535 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1408 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1988 msgid "&Vehicles" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:535 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:535 msgid "Open a Dialog for Locating a Vehicle." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:538 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1379 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1957 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:538 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1413 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1991 msgid "&Persons" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:538 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:538 msgid "Open a Dialog for Locating a Person." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:541 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:541 msgid "&Container" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:541 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:541 msgid "Open a Dialog for Locating a Container." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:544 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1966 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:544 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2000 msgid "&TLS" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:544 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:544 msgid "Open a Dialog for Locating a Traffic Light." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:547 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:604 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1969 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:547 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:630 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2003 msgid "&Additional" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:547 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:547 msgid "Open a Dialog for Locating an Additional Structure." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:550 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1972 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:550 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2006 msgid "P&oI" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:550 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:550 msgid "Open a Dialog for Locating a Point of Interest." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:553 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1975 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:553 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2009 msgid "Po&lygon" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:553 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:553 msgid "Open a Dialog for Locating a Polygon." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:557 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:557 msgid "Show Internal Structures" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:557 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:557 msgid "Show internal junctions and streets in locator dialog." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:560 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:560 msgid "Show Parking Vehicles" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:560 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:560 msgid "Show parking vehicles in locator dialog." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:564 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:564 msgid "Show vehicles outside the road network" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:564 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:564 msgid "" "Show vehicles that are teleporting or driving remote-controlled outside the " "road network in locator dialog." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:570 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:570 msgid "Simulation" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:572 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:90 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:89 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:277 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:572 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:373 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:90 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:93 msgid "Run" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:572 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:572 msgid "Start/ Resume the simulation." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:575 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:575 msgctxt "Simulation" msgid "Stop" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:575 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:575 msgid "Halt the simulation." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:578 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:578 msgid "Step" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:578 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:578 msgid "Perform one simulation step." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:581 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:581 msgid "Delay+" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:581 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:581 msgid "Increase simulation step delay." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:583 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:583 msgid "Delay-" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:583 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:583 msgid "Decrease simulation step delay." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:585 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:288 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:284 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:281 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:255 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1365 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2876 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:67 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:585 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:289 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:286 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:256 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1393 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2904 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:67 msgid "Save" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:585 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:585 msgid "Save the current simulation state to a file." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:588 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:287 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:283 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:280 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:73 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:257 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2874 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:65 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:588 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:288 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:285 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:258 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2902 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:65 msgid "Load" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:588 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:588 msgid "Load simulation state for the current network from file." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:592 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1458 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1465 msgid "&Window" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:593 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:747 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:593 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:747 msgid "Open new view" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:595 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:750 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:595 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:750 msgid "Open new 3D view" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:598 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:598 msgid "Tile &Horizontally" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:601 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:601 msgid "Tile &Vertically" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:604 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:604 msgid "Cascade" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:608 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:97 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:100 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:608 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:98 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:100 msgid "&Close" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:618 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:618 msgid "&Others..." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:622 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2092 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:622 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2126 msgid "Show Status Line" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:622 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:622 msgid "Toggle the Status Bar on/off." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:625 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2095 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:625 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2129 msgid "Show Message Window" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:625 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2095 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:625 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2129 msgid "Toggle the Message Window on/off." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:628 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:628 msgid "Show Simulation Time" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:628 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:628 msgid "Toggle the Simulation Time on/off." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:631 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:631 msgid "Show Simulation Delay" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:631 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:631 msgid "Toggle the Simulation Delay Entry on/off." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:637 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2099 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:637 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2133 msgid "Clear Message Window" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:637 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:637 msgid "Clear the message window." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:644 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1463 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:644 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1470 msgid "&Help" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:646 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2115 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:646 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2149 msgid "&Online Documentation" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:646 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2115 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:646 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2149 msgid "Open Online documentation." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:649 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2118 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:649 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2152 msgid "&Changelog" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:649 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2118 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:649 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2152 msgid "Open Changelog." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:651 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2120 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:651 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2154 msgid "&Hotkeys" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:651 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2120 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:651 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2154 msgid "Open Hotkeys." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:653 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2122 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:653 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2156 msgid "&Tutorial" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:653 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2122 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:653 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2156 msgid "Open Tutorial." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:655 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2124 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:655 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2158 msgid "&Feedback" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:655 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:655 msgid "Open feedback dialog." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:658 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2127 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:658 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2161 msgid "&About" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:658 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:658 msgid "About sumo-gui." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:673 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:673 msgid "\tOpen simulation\tOpen a simulation (Configuration file)." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:675 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:675 msgid "\tOpen network\tOpen a network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:677 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:677 msgid "\tReload\tReloads the simulation / the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:686 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:686 msgid "\tRun\tStart/Resume the loaded simulation." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:688 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:688 msgid "\tStop\tHalt the running simulation." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:690 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:690 msgid "\tStep\tPerform a single simulation step." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:698 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:698 msgid "" "Time:\tToggle between time formats\tToggle between seconds and hour:minute:" "seconds display." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:712 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:712 msgid "" "Delay (ms):\tDelay per simulated second\tDelay per simulated second. Click " "to toggle between the last two delay values." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:735 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:735 msgid "Scale Traffic:" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:735 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:735 msgid "" "Scale traffic from flows and vehicles that are loaded incrementally from " "route files." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:747 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:747 msgid "Open a new microscopic view." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:750 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:750 msgid "Open a new 3D view." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:760 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:760 msgid "Waiting Time:" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:760 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:760 msgid "Time spent waiting accumulated for all vehicles" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:771 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:771 msgid "Time Loss:" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:771 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:771 msgid "" "Time lost due to being unable to drive with maximum speed for all vehicles" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:782 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:782 msgid "Distance (km):" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:782 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:782 msgid "Total distance driven by DRT vehicles" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:793 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:793 msgid "Emergency Vehicle waiting time:" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:793 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:793 msgid "Time spent waiting accumulated for emergency vehicles" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:818 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:150 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:818 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:150 msgid "Cl&ear Recent Networks" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:819 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:151 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:819 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:151 msgid "No Recent Networks" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:823 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:155 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:823 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:155 msgid "Recent Networks" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:841 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:173 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:841 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:173 msgid "Cl&ear Recent Configs" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:842 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:174 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:842 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:174 msgid "No Recent Configs" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:846 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:178 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:846 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:178 msgid "Recent Configs" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:986 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1021 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1058 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:986 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1021 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1058 msgid "Running %." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1068 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1068 msgid "Open Simulation Configuration" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1088 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1088 msgid "Open Network" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1108 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1108 msgid "Open Shapes" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1122 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1150 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4634 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4669 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4704 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4736 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1122 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1150 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4650 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4685 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4720 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4752 #, c-format msgid "Loading of % failed." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1139 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1139 msgid "Open EdgeData" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1173 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1174 +msgid "Auto-Reloading." +msgstr "" + +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1174 +msgid "TraCI-Loading." +msgstr "" + +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1176 msgid "Reloading." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1183 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1187 msgid "Quick-Reloading." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1193 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1081 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1197 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1087 msgid "Already loading!" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1205 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1209 msgid "Save SUMO Configuration" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1220 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1224 msgid "Configuration saved to %." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1222 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1226 msgid "Could not save configuration to %." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1278 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1304 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2134 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1282 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1308 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2144 msgid "No simulation loaded!" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1320 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1324 msgid "Save Simulation State" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1334 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1338 msgid "Simulation state saved to '%'." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1342 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1346 msgid "Load Simulation State" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1354 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1358 msgid "State loaded from '%'." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1356 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1360 msgid "Failed to load state from '%' (%)." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1813 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1817 #, c-format msgid "Loading of '%' failed!" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1827 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1831 #, c-format msgid "'%' loaded." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2027 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2031 +msgid "Simulation ended at time: %. (%)" +msgstr "" + +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2037 msgid "Simulation ended" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2125 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2135 msgid "Loading '%'." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUILoadThread.cpp:206 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2288 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2290 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2291 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2292 +msgid "seconds" +msgstr "" + +#: D:\Repos\sumo/src\gui\GUILoadThread.cpp:206 msgid "Could not load edgedata-files '%'" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIRunThread.cpp:100 -#: /home/micha/programming/sumo/src/gui/GUIRunThread.cpp:106 +#: D:\Repos\sumo/src\gui\GUIRunThread.cpp:100 +#: D:\Repos\sumo/src\gui\GUIRunThread.cpp:106 msgid "Quitting (on error)." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIRunThread.cpp:265 +#: D:\Repos\sumo/src\gui\GUIRunThread.cpp:265 msgid "Simulation started with time: %." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:142 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:448 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:142 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:455 msgid "Save Snapshot" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:167 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:468 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:167 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:475 msgid "No file extension was specified - saving Snapshot as PNG." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:173 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:475 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:173 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:482 msgid "Saving failed." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:175 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:479 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:175 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:486 msgid "Snapshot successfully saved!" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:219 -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:268 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:219 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:268 msgid "Unknown Message ID in onCmdLocate" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:233 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:505 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:233 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:512 msgid "Junction Chooser" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:237 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:513 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:237 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:520 msgid "Edge Chooser" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:241 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:529 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:87 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:241 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:536 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:87 msgid "Vehicle Chooser" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:245 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:576 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:245 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:583 msgid "Person Chooser" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:249 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:249 msgid "Container Chooser" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:253 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:253 msgid "Traffic Lights Chooser" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:257 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:257 msgid "Additional Objects Chooser" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:261 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:655 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:261 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:667 msgid "POI Chooser" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:265 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:265 msgid "Polygon Chooser" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:269 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:269 msgid "phase names" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:272 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:272 msgid "detectors" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:273 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:273 msgid "conditions" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:336 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:336 msgid "Overflow in time computation occurred." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:114 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:332 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:114 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:334 msgid "Locate Junctions" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:114 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:114 msgid "Locate a junction within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:119 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:336 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:119 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:338 msgid "Locate Edges" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:119 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:119 msgid "Locate an edge within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:124 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:344 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:124 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:346 msgid "Locate Vehicles" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:124 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:124 msgid "Locate a vehicle within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:129 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:348 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:129 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:350 msgid "Locate Persons" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:129 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:129 msgid "Locate a person within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:134 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:134 msgid "Locate Container" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:134 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:134 msgid "Locate a container within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:139 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:367 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:139 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:369 msgid "Locate TLS" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:139 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:139 msgid "Locate a tls within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:144 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:371 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:144 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:373 msgid "Locate Additional" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:144 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:144 msgid "Locate an additional structure within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:149 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:375 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:149 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:377 msgid "Locate PoI" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:149 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:149 msgid "Locate a PoI within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:154 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:379 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:154 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:381 msgid "Locate Polygon" msgstr "" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:154 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:154 msgid "Locate a Polygon within the network." msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AboutSUMO.cpp:69 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:58 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_HallOfFame.cpp:57 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:415 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:411 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:408 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:234 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:247 -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:285 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:384 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:559 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:298 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:487 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:96 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:173 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:280 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AboutSUMO.cpp:69 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:58 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_HallOfFame.cpp:57 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:416 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:413 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:408 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:375 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:380 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:298 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:487 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:97 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:173 msgid "OK" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:62 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:62 msgid "Quit on Simulation End" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:64 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:64 msgid "Autostart Simulation on Load and Reload" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:66 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:66 msgid "Reload Simulation after finish (Demo mode)" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:68 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:68 msgid "Locate elements when clicking on messages" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:74 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:74 msgid "Breakpoint offset when clicking on time message" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:98 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:98 msgid "Allow Textures" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:101 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:76 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:133 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:995 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2352 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:101 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:76 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:133 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:995 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2354 msgid "&OK" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:102 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:64 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:72 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:639 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:390 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:134 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:996 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2353 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:102 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:72 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:639 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:390 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:134 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:996 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2355 msgid "&Cancel" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:69 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:69 msgid "Breakpoints Editor" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:89 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:90 msgid "&Load" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:91 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:92 msgid "&Save" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:94 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:95 msgid "Clea&r" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:126 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2391 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2397 msgid "Time" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:141 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:142 msgid "Load Breakpoints" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:162 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:163 msgid "Save Breakpoints" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:172 -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:155 -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:258 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:240 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1102 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1183 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:173 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:155 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:258 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:240 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1102 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1183 msgid "Storing failed!" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:241 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:244 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:242 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:245 msgid "Time format error" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:46 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:46 msgid "- General problem solving" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:50 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:50 msgid "- Sumo-user mailing list" msgstr "" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:54 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:54 msgid "- Send us an Email" msgstr "" -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_InductionLoop.cpp:55 -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_InductionLoop.cpp:59 -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_TrafficLight.cpp:56 -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_TrafficLight.cpp:60 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_InductionLoop.cpp:55 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_InductionLoop.cpp:59 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_TrafficLight.cpp:56 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_TrafficLight.cpp:60 #, c-format msgid "Hotkey '%' is not supported" msgstr "" -#: /home/micha/programming/sumo/src/guisim/GUIBaseVehicle.cpp:300 +#: D:\Repos\sumo/src\guisim\GUIBaseVehicle.cpp:300 msgid "GUI-triggered stop not implemented for meso" msgstr "" -#: /home/micha/programming/sumo/src/guisim/GUIBaseVehicle.cpp:876 -#: /home/micha/programming/sumo/src/guisim/GUIVehicle.cpp:668 +#: D:\Repos\sumo/src\guisim\GUIBaseVehicle.cpp:876 +#: D:\Repos\sumo/src\guisim\GUIVehicle.cpp:663 msgid "Vehicle parameter '%' key '%' is not a number for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:326 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:326 msgid "Network size exceeds 1 Lightyear. Please reconsider your inputs.\n" msgstr "" -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:666 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:666 msgid "Trying to set data value for the unknown edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:690 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:690 msgid "" "Trying to set data value for the unknown relation from edge '%' to edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:708 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:708 msgid "No data defined after simulation begin time." msgstr "" -#: /home/micha/programming/sumo/src/guisim_main.cpp:57 +#: D:\Repos\sumo/src\guisim_main.cpp:57 msgid "GUI version of the microscopic, multi-modal traffic simulation SUMO." msgstr "" -#: /home/micha/programming/sumo/src/guisim_main.cpp:77 -#: /home/micha/programming/sumo/src/netedit/netedit_main.cpp:81 +#: D:\Repos\sumo/src\guisim_main.cpp:77 +#: D:\Repos\sumo/src\netedit\netedit_main.cpp:81 msgid "This system has no OpenGL support. Exiting." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:468 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:469 msgid "A microscopic, multi-modal traffic simulation." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:510 msgid "Recomputing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:510 msgid "Recomputing is needed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:513 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:519 msgid "Test coordinate" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:827 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:850 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:833 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:856 msgid "loading TLS Programs from '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:892 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:898 msgid "Loaded edge types from '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:894 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:927 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:900 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:933 msgid "load edgeTypes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:925 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:931 msgid "Reloaded edge types from '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:982 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:988 msgid "Reloading netedit config file '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:986 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:992 msgid "Reloading sumo config file '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:990 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1051 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:996 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1057 msgid "Reloading network file '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1006 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1012 msgid "&Reload Netedit config" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1007 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1013 msgid "&Reload Sumo config" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1008 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1014 msgid "&Reload Network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1253 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1260 msgid "Loading of '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1258 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1265 msgid "'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1258 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1265 msgid "' loaded." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1347 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1354 msgid "&Modes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1382 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1389 msgid "L&ock" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1389 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1396 msgid "&Processing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1414 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1421 msgid "&Tools" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1416 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1423 msgid "Detectors" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1417 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1424 msgid "Districts" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1418 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1425 msgid "DRT" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1419 -msgid "Emissions" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1420 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1427 msgid "CityBrain" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1421 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1428 msgid "GTFS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1422 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1429 msgid "Vissim" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1423 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1430 msgid "Visum" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1431 msgid "Import" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1425 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1432 msgid "Net" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1426 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:673 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2744 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1433 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:699 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2750 msgid "Route" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1427 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1434 msgid "Output" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1428 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:227 -msgid "Shapes" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1429 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1436 msgid "TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1430 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1437 msgid "Turn-defs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1431 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1438 msgid "Visualization" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1432 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1439 msgid "XML" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1519 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1526 msgid "Network computed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1523 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1530 msgid "Press F5" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1524 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1531 msgid "Network requires recomputing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1591 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1600 msgid "Loading console arguments" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1619 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1628 msgid "Creating new network." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1630 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1639 msgid "Trying to load an empty network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1646 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1655 msgid "Loading network file '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1658 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1667 msgid "Trying to load an empty configuration" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1674 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1683 msgid "Loading configuration file '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1704 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1713 msgid "Select Import Options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1710 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1719 msgid "Loading OSM file '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1732 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1739 msgid "Recompute with volatile options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1733 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1740 msgid "" "Changes produced in the net due a recomputing with volatile options cannot " "be undone. Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1973 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2033 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1980 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2040 msgid "Running " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1996 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2003 msgid "Loading network '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1996 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2005 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2003 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2012 msgid "' in SUMO-GUI" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2005 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2012 msgid "Loading sumo config '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2317 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2325 msgid "Netedit options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2334 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1826 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2342 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1860 msgid "Sumo options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2351 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2359 msgid "Netgenerate options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2368 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1253 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:102 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2376 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1287 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:103 msgid "Undo" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2400 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1256 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:105 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2408 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1290 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:106 msgid "Redo" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3072 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3080 msgid "Saving Network failed!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3078 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3086 msgid "Network saved in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3084 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3092 msgid "Could not save network in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3130 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3148 msgid "Plain XML saved with prefix '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3135 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3153 msgid "Saving plain xml failed!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3159 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3177 msgid "Joined junctions saved to '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3164 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3182 msgid "Saving joined junctions failed!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3227 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3245 msgid "Netedit configuration saved in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3233 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3251 msgid "Could not save netedit configuration in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3337 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3355 msgid "SUMO configuration saved in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3345 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3363 msgid "Could not save SUMO configuration in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3399 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3417 msgid "TLS Programs saved in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3422 msgid "Saving TLS Programs failed!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3447 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3465 msgid "EdgeType saved in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3452 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3470 msgid "Saving edgeTypes failed!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3556 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3574 msgid "load additionals from '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3560 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1304 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3578 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1307 msgid "Loading of additional file failed: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3566 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1306 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3584 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1309 msgid "Loading of additional file sucessfully: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3610 msgid "reloading additionals from '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3597 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3615 msgid "Reloading of additional file failed: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3640 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3658 msgid "Additionals saved in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3650 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3667 msgid "Saving additionals failed!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3720 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4659 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4662 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3737 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4675 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4678 msgid "loading demand elements from '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3724 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1315 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3741 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1318 msgid "Loading of route file failed: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3730 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1317 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3747 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1320 msgid "Loading of route file sucessfully: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3761 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3778 msgid "Reloading of route file failed: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3802 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3819 msgid "Demand elements saved in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3812 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3828 msgid "Saving demand elements failed!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3884 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4728 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3900 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4744 msgid "loading data elements from '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3888 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1326 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3904 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1329 msgid "Loading of data file failed: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3894 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1328 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3910 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1331 msgid "Loading of data file sucessfully: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3924 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3940 msgid "reloading data elements from '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3929 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3945 msgid "Reloading of data file failed: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3971 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3987 msgid "Data elements saved in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3976 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3992 msgid "Saving data elements failed!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4048 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4064 msgid "load meanDatas from '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4052 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1337 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4068 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1340 msgid "Loading of meandata file failed: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4058 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4089 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1339 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4074 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4105 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1342 msgid "Loading of meandata file sucessfully: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4084 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4100 msgid "reloading meanDatas from '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4128 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4144 msgid "MeanDatas saved in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4133 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4149 msgid "Saving meanData failed!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4182 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4198 msgid "Confirm close Network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4183 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4199 msgid "You have unsaved changes in the network." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4184 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4250 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4294 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4338 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4382 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4200 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4266 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4310 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4354 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4398 msgid "Do you wish to close and discard all changes?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4248 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4264 msgid "Save additional elements before close" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4249 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4265 msgid "You have unsaved additional elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4292 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4308 msgid "Save demand elements before close" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4293 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4309 msgid "You have unsaved demand elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4336 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4352 msgid "Save data elements before close" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4337 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4353 msgid "You have unsaved data elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4380 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4396 msgid "Save meanData elements before close" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4381 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4397 msgid "You have unsaved meanData elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4624 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4640 msgid "loading additional elements from '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4627 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4643 msgid "loading additionals from '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4694 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4710 msgid "loading meanDatas from '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4697 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4713 msgid "loading meandatas from '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4731 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4747 msgid "Loading data elements from '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:130 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:130 msgid "nets" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:131 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:131 msgid "configs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:196 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:196 msgid "&New Network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:196 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:196 msgid "Create a new network." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:200 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:200 msgid "Open a new netedit window." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:204 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:204 msgid "Generate Network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:204 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:204 msgid "Create network using netgenerate." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:211 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:211 msgid "Load Netedit config..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:211 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:211 msgid "Load a netedit configuration file." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:215 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:215 msgid "Load Sumo config..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:215 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:215 msgid "Load a SUMO configuration file." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:222 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:222 msgid "&Open Network..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:222 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:222 msgid "Open a SUMO network." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:226 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:226 msgid "Open Netconvert Configura&tion..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:226 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:226 msgid "Open a configuration file with NETCONVERT options." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:230 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:230 msgid "Import &Foreign Network..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:230 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:230 msgid "Import a foreign network such as OSM." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:237 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:237 msgid "&Save Network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:237 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:237 msgid "Save the network." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:241 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:241 msgid "Save Net&work As..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:241 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:241 msgid "Save the network to another file." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:245 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:245 msgid "Save Plain XM&L..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:245 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:245 msgid "Save a plain XML representation of the network." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:249 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:249 msgid "Save &Joined Junctions..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:249 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:249 msgid "Save log of joined junctions (allows reproduction of joins)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:256 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:260 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:256 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:260 msgid "Reload the network." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:260 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:260 msgid "Reload Network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:267 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:267 msgid "Netedit Config" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:271 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:271 msgid "Sumo Config" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:275 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:275 msgid "Traffic Lights" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:279 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:279 msgid "Edge Types" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:283 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:283 msgid "Additionals and Shapes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:287 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:287 msgid "Demand Elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:291 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:291 msgid "Data Elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:295 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:295 msgid "MeanData Elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:300 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:300 msgid "Close the network." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:334 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:334 msgid "Save Netedit Config" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:334 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:334 msgid "Save netedit configuration file." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:338 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:338 msgid "Save Netedit Config As..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:338 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:338 msgid "Save netedit configuration in a new file." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:344 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:344 msgid "Reload Netedit Config" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:344 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:344 msgid "Reload netedit configuration." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:352 msgid "Save Sumo Config" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:352 msgid "Save sumo configuration file." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:356 msgid "Save Sumo Config As..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:356 msgid "Save sumo configuration in a new file." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:362 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:362 msgid "Reload Sumo Config" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:362 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:362 msgid "Reload sumo configuration." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:370 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:370 msgid "Load TLS Programs..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:370 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:370 msgid "Load programs for traffic lights in the current net." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:376 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:376 msgid "Save TLS Programs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:376 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:376 msgid "Save all traffic light programs of the current network." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:380 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:380 msgid "Save TLS Programs As..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:380 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:380 msgid "Save all traffic light programs of the current network to another file." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:386 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:386 msgid "Reload TLS Programs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:386 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:386 msgid "Reload TLS Programs." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:394 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:394 msgid "Load Edge Types..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:394 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:394 msgid "Load edge types in the current net." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:400 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:400 msgid "Save Edge Types" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:400 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:400 msgid "Save edge types of the current net." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:404 msgid "Save Edge Types As..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:404 msgid "Save edge types of the current net to another file." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:410 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:410 msgid "Reload edge types" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:410 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:410 msgid "Reload edge types." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:418 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:418 msgid "Load Additionals..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:418 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:418 msgid "Load additionals and shapes." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:424 msgid "Save Additionals" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:424 msgid "Save additionals and shapes." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:428 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:428 msgid "Save Additionals As..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:428 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:428 msgid "Save additional elements to another file." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:434 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:434 msgid "Reload Additionals" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:434 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:434 msgid "Reload additionals." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:442 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:442 msgid "Load Demand Elements..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:442 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:442 msgid "Load demand elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:448 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:448 msgid "Save Demand Elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:448 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:448 msgid "Save demand elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:452 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:452 msgid "Save Demand Elements As..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:452 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:452 msgid "Save demand elements to another file." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:458 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:458 msgid "Reload Demand Elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:458 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:458 msgid "Reload demand elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:466 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:466 msgid "Load Data Elements..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:466 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:466 msgid "Load data elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:472 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:472 msgid "Save Data Elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:472 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:472 msgid "Save data elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:476 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:476 msgid "Save Data Elements As..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:476 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:476 msgid "Save data elements to another file." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:482 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:482 msgid "Reload Data Elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:482 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:482 msgid "Reload data elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:490 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:490 msgid "Load MeanDatas..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:490 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:490 msgid "Load meanDatas and shapes." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:496 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:496 msgid "Save MeanDatas" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:496 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:496 msgid "Save meanDatas and shapes." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:500 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:500 msgid "Save MeanDatas As..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:500 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:500 msgid "Save meanData elements to another file." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:506 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:506 msgid "Reload MeanDatas" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:506 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:506 msgid "Reload meanDatas." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:526 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:526 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2197 +msgid "&Network" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:526 +msgid "Supermode network." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2200 +msgid "&Demand" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:529 +msgid "Sueprmode demand." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2203 +msgid "&Data" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:532 +msgid "Supermode data." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:552 msgid "&Inspect" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:526 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:552 msgid "Inspect elements and change their attributes." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:555 msgid "&Delete" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:555 msgid "Delete elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:558 msgid "&Select" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:558 msgid "Select elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:589 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:670 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:615 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:696 msgid "&Move" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:589 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:670 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:615 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:696 msgid "Move elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:618 msgid "&Edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:618 msgid "Create junction and edges." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:595 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:621 msgid "&Connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:595 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:621 msgid "Modes connections between lanes." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:598 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:624 msgid "Pro&hibition" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:598 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:624 msgid "Modes connection prohibitions." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:601 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:627 msgid "Modes traffic lights over junctions." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:604 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:630 msgid "Create additional elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:607 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:633 msgid "C&rossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:607 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:633 msgid "Create crossings between edges." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:610 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:636 msgid "TA&Z" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:610 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:636 msgid "Create Traffic Assignment Zones." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:613 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:639 msgid "Create Points-Of-Interest and polygons." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:616 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:642 msgid "&Wire" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:616 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:642 msgid "Create wires." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:673 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:699 msgid "Create Routes." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:676 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:702 msgid "Vehicle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:676 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:702 msgid "Create vehicles." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:679 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:705 msgid "Type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:679 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:705 msgid "Create types (vehicles, person an containers)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:682 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:708 +msgid "TypeDistribution" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:708 +msgid "Create type distributions." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:711 msgid "Stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:682 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:711 msgid "Create stops." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:685 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:714 msgid "Person" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:685 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:714 msgid "Create persons." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:688 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:717 msgid "Person plan" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:688 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:717 msgid "Create person plans." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:691 -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:179 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:720 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:179 msgid "Container" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:691 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:720 msgid "Create containers." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:694 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:723 msgid "Container plan" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:694 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:723 msgid "Create container plans." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:729 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:758 msgid "&EdgeData" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:729 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:758 msgid "Create edgeData elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:732 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:761 msgid "Edge&Relation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:732 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:761 msgid "Create edgeRelation elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:735 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:764 msgid "TA&ZRelation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:735 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:764 msgid "Create TAZRelation elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:738 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:767 msgid "&MeanData" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:738 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:767 msgid "Create MeanData edge/lanes." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:800 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:997 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2316 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2627 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:834 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1031 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2316 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2627 msgid "Show grid" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:805 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1002 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1137 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2324 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2635 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2922 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:839 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1036 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1171 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2324 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2635 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2922 msgid "Hide junction shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:810 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:844 msgid "Draw vehicles spread in lane or in depart position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:815 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1152 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2340 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2944 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:849 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1186 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2340 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2944 msgid "Show demand elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:820 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:854 msgid "Clicking should target lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:825 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2355 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:859 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2355 msgid "Show connections over junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:830 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2363 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:864 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2363 msgid "Hide connections" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:835 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:869 msgid "Show sub-additional elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:840 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2379 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:874 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2379 msgid "Show TAZ elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:845 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:879 msgid "Selecting multiple edges automatically select their junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:850 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:884 msgid "Clicking should apply state changes to all phases of TLS plan" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:855 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:889 msgid "Ask for confirmation before merging junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:860 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:894 msgid "Show bubbles over junctions shapes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:865 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:899 msgid "Apply mouse movement to elevation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:870 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:904 msgid "Create consecutive edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:875 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:909 msgid "Create an edge in the opposite direction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1007 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2643 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1041 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2643 msgid "Draw vehicles spread/depart position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1012 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1147 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2651 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2937 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1046 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1181 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2651 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2937 msgid "Show shapes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1017 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2659 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1051 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2659 msgid "Show all trips" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1022 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2667 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1056 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2667 msgid "Show all person plans" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1027 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2675 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1061 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2675 msgid "Lock selected person" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1032 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1066 msgid "Show all container plans" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1037 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2691 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1071 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2691 msgid "Lock selected container" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1042 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2699 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1076 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2699 msgid "Show non-inspected demand elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1047 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2707 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1081 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2707 msgid "Show number of overlapped routes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1142 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2930 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1176 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2930 msgid "Show additionals" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1157 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1191 msgid "Draw TAZRel from center" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1162 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1196 msgid "Draw TAZ fill" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1167 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1201 msgid "Only draw TAZRel from" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1172 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1206 msgid "Only draw TAZRel to" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1253 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1287 msgid "Undo the last change." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1256 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1290 msgid "Redo the last change." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1259 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1293 msgid "Show undo/redo history" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1259 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1293 msgid "Open undo/redo history dialog." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1280 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1314 msgid "Clear front element" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1280 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1314 msgid "Clear current front element" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1289 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1323 msgid "Load additionals in sumo-gui" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1289 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1323 msgid "Load additionals in sumo-gui." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1293 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1327 msgid "Load demand in sumo-gui" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1293 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1327 msgid "Load demand in sumo-gui." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1297 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1331 msgid "Open in sumo-gui" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1297 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1331 msgid "Opens the sumo-gui application with the current network." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1324 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1358 msgid "&Lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1329 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1363 msgid "&Connections" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1334 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1368 msgid "C&rossings" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1339 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1373 msgid "Walkin&gAreas" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1344 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1378 msgid "&Additionals" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1349 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1383 msgid "&TAZs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1354 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1388 msgid "&Wires" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1359 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1393 msgid "&Polygons" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1364 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1398 msgid "P&OIs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1369 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1403 msgid "&Routes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1384 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1418 msgid "Person&Trips" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1389 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1423 msgid "&Walks" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1394 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1428 msgid "Ri&des" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1399 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1433 msgid "&Containers" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1438 msgid "Tra&nsports" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1409 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1443 msgid "Trans&hips" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1414 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1448 msgid "Stop&s" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1419 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1453 msgid "&EdgeDatas" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1458 msgid "E&dgeRelDatas" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1429 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1463 msgid "Edge&TAZRel" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1437 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1471 msgid "Lock selected elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1437 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1471 msgid "selected elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1444 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1478 msgid "Lock all elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1444 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1478 msgid "all elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1448 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1482 msgid "Unlock all elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1784 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1818 msgid "Compute Junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1784 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1818 msgid "Compute junction shape and logic." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1821 msgid "Compute Junctions with volatile options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1821 msgid "Compute junction shape and logic using volatile junctions." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1790 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1824 msgid "Clean Junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1790 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1824 msgid "Remove solitary junctions." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1793 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1827 msgid "Join Selected Junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1793 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1827 msgid "Join selected junctions into a single junction." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1796 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1830 msgid "Clean invalid crossings" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1796 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1830 msgid "Clear invalid crossings." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1802 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1836 msgid "Recompute Network in Data Mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1808 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1842 msgid "Compute demand" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1808 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1842 msgid "Computes demand elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1811 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1845 msgid "Clean routes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1811 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1845 msgid "Removes routes without vehicles." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1814 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1848 msgid "Join routes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1814 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1848 msgid "Joins routes with the same edges." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1817 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1851 msgid "Adjust person plans" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1817 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1851 msgid "Adjust person plans (start/end positions, arrival positions, etc.)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1820 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1854 msgid "Clean invalid route elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1820 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1854 msgid "Clear elements with an invalid path (routes, Trips, Flows...)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1826 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1860 msgid "Configure sumo Options." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1832 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:53 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1866 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:312 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:61 msgid "Options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1832 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1866 msgid "Configure netedit Options." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1945 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1979 msgid "Open a dialog for locating a Junction." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1948 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1982 msgid "Open a dialog for locating an Edge." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1951 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1985 msgid "&WalkingAreas" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1951 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1985 msgid "Open a dialog for locating a Walking Area." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1954 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1988 msgid "Open a dialog for locating a Vehicle." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1957 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1991 msgid "Open a dialog for locating a Person." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1960 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1994 msgid "&Route" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1960 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1994 msgid "Open a dialog for locating a Route." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1963 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1997 msgid "&Stops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1963 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1997 msgid "Open a dialog for locating a Stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1966 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2000 msgid "Open a dialog for locating a Traffic Light." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1969 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2003 msgid "Open a dialog for locating an Additional Structure." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1972 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2006 msgid "Open a dialog for locating a Point of Interest." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1975 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2009 msgid "Open a dialog for locating a Polygon." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2092 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2126 msgid "Toggle this Status Bar on/off." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2099 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2133 msgid "Clear the Message Window." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2124 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2158 msgid "Open feedback channels." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2127 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2161 msgid "About netedit." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2163 -msgid "&Network" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2163 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2197 msgid "Select network mode." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2166 -msgid "&Demand" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2166 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2200 msgid "Select demand mode." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2169 -msgid "&Data" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2169 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2203 msgid "Select data mode." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2201 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2205 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2238 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2242 msgid "Could not load SUMO configuration '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2250 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2254 -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:145 -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:149 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2289 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2293 msgid "Could not load netedit configuration '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2700 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2739 msgid "Save file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2701 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2705 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2721 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2731 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2746 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2799 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2804 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2815 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2820 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2831 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2836 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2847 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2852 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2863 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2868 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2879 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2884 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2894 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2898 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2740 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2744 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2760 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2770 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2778 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2841 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2846 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2857 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2862 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2873 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2878 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2889 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2894 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2905 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2910 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2921 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2926 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2936 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2940 msgid "XML files (*.xml)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2702 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2706 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2722 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2732 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2747 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2755 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2771 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2775 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2785 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2789 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2800 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2805 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2816 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2821 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2832 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2837 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2848 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2853 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2864 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2869 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2880 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2885 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2895 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2899 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2741 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2761 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2771 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2779 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2788 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2796 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2812 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2817 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2827 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2831 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2842 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2847 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2858 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2863 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2874 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2879 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2890 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2895 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2906 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2911 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2922 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2927 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2937 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2941 msgid "All files (*)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2704 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2743 msgid "Open file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2714 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2753 msgid "Save Network file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2715 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2754 msgid "SUMO Network files (*.net.xml)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2716 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2755 msgid "SUMO Network files zipped (*.net.xml.gz)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2717 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2756 msgid "" "XML files (*.xml)\n" "All files (*)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2719 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2758 msgid "Open Network file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2720 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2759 msgid "SUMO Network files (*.net.xml,*.net.xml.gz)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2729 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2768 msgid "Open NetConvert file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2730 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2769 msgid "Netconvert files (*.netccfg)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2738 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2777 msgid "Save plain XML as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2744 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2785 msgid "Save joined Junctions as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2786 msgid "Junction files (*.nod.xml)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2753 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2794 msgid "Save tool log" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2754 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2795 msgid "Text file (*.txt)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2761 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2802 msgid "Open OSM file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2762 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2803 msgid "OSM net (*.osm.xml,*.osm)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2769 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2810 msgid "Save netedit Config file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2770 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2774 -msgid "Netedit Config files (*.neteditcfg)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2811 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2815 +msgid "Netedit Config files (*.netecfg)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2773 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2814 msgid "Open netedit Config file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2783 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2816 +msgid "Netedit Config files (*.neteditcfg)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2825 msgid "Save SUMO Config file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2784 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2788 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2826 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2830 msgid "SUMO Config files (*.sumocfg)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2829 msgid "Open SUMO Config file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2797 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2839 msgid "Save TLS file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2798 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2803 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2840 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2845 msgid "TLS files (*.tll.xml)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2802 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2844 msgid "Open TLS file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2813 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2855 msgid "Save EdgeType file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2814 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2856 msgid "EdgeType files (*.tll.xml)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2818 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2860 msgid "Open EdgeType file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2819 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2861 msgid "EdgeType files (*.typ.xml)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2829 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2871 msgid "Save Additionals file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2830 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2835 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2872 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2877 msgid "Additional files (*.add.xml)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2834 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2876 msgid "Open Additionals file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2845 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2887 msgid "Save Route file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2846 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2851 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2888 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2893 msgid "Route files (*.rou.xml)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2850 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2892 msgid "Open Route file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2861 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2903 msgid "Save Data file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2862 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2867 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2904 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2909 msgid "Data files (*.dat.xml)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2866 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2908 msgid "Open Data file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2877 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2919 msgid "Save MeanData file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2878 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2883 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2920 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2925 msgid "Meandata files (*.add.xml)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2882 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2924 msgid "Open MeanData file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2893 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2935 msgid "Save options file as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2897 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2939 msgid "Open options file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:95 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:100 #, c-format msgid "Loading of sumo config file '%' failed." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:108 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:113 #, c-format msgid "Loading of netedit config file '%' failed." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:117 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:122 msgid "" "Invalid input network option. Load with either sumo/netedit/netconvert " "config or with -new option" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:130 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:136 msgid "Invalid Options. Nothing loaded" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:144 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:150 msgid "Could not build projection!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:172 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:178 msgid "Performing initial computation ..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:206 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:212 msgid "Failed to build network." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:251 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:257 msgid "Start plain GUI with empty net" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:252 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:258 msgid "Open a SUMO network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:253 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:259 msgid "Open a configuration file (netedit or netconvert config)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:254 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:260 msgid "Open a SUMO config file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:279 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:285 msgid "Load sumo config" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:283 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:289 msgid "Load additional and shapes descriptions from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:287 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:293 msgid "Load demand elements descriptions from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:291 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:297 msgid "Load data elements descriptions from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:295 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:301 msgid "Load meanData descriptions from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:300 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:306 msgid "File in which TLS Programs must be saved" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:303 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:309 msgid "File in which edgeTypes must be saved" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:309 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:315 msgid "Start netedit with a new network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:312 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:318 msgid "Write attribute help to file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:317 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:323 msgid "Prefix for node naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:320 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:326 msgid "Prefix for edge naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:323 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:329 msgid "Enable edge-infix ()" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:328 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:334 msgid "Prefix for busStop naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:331 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:337 msgid "Prefix for trainStop naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:334 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:340 msgid "Prefix for containerStop naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:337 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:343 msgid "Prefix for chargingStation naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:340 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:346 msgid "Prefix for parkingArea naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:343 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:349 msgid "Prefix for e1Detector naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:346 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:352 msgid "Prefix for e2Detector naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:349 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:355 msgid "Prefix for e3Detector naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:352 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:358 msgid "Prefix for e1InstantDetector naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:355 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:361 msgid "Prefix for rerouter naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:358 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:364 msgid "Prefix for calibrator naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:361 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:367 msgid "Prefix for routeProbe naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:364 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:370 msgid "Prefix for variable speed sign naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:367 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:373 msgid "prefix for traction substation naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:370 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:376 msgid "Prefix for overhead wire naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:373 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:379 msgid "Prefix for polygon naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:376 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:382 msgid "Prefix for poi naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:381 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:387 msgid "Prefix for route naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:384 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:390 msgid "Prefix for vType naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:387 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:393 msgid "Prefix for vehicle naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:390 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:396 msgid "Prefix for trip naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:393 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:399 msgid "Prefix for flow naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:396 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:402 msgid "Prefix for person naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:399 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:405 msgid "Prefix for personFlow naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:402 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:408 msgid "Prefix for container naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:405 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:411 msgid "Prefix for containerFlow naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:412 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:418 msgid "Prefix for meanDataEdge naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:415 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:421 msgid "Prefix for meanDataLane naming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:422 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:428 msgid "Disable icons of special lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:425 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:431 msgid "Disable textures" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:428 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:434 msgid "Load visualisation settings from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:433 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:439 msgid "Load current viewport from registry" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:436 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:442 msgid "Create initial window with the given x,y size" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:439 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:445 msgid "Create initial window at the given x,y position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:444 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:450 msgid "Enable overlay for screen recognition" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:447 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:453 msgid "Enable output messages during GUI-Testing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:450 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:456 msgid "Enable output messages during GUI-Testing specific of gl functions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:453 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:459 msgid "Save gui settings in the given settings-output file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:460 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:466 msgid "Defines the begin time in seconds; The simulation starts at this time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:463 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:469 msgid "Defines the end time in seconds; The simulation ends at this time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:466 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:472 msgid "" "Length of the default interval length between action points for the car-" "following and lane-change models (in seconds). If not specified, the " @@ -3185,9356 +3221,9591 @@ "length." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:469 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:475 msgid "" "Select default speed deviation. A negative value implies vClass specific " "defaults (0.1 for the default passenger class" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:508 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:514 msgid "Failed to reset options." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:370 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:370 msgid "delete junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:412 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:412 msgid "delete edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:491 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:491 msgid "replace edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:553 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:553 msgid "delete lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:588 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:588 msgid "delete connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:603 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:603 msgid "delete crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:621 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:650 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:672 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:685 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:698 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:728 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:621 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:650 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:672 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:685 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:698 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:728 msgid "delete " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:644 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:644 msgid "Trying to delete a default Vehicle Type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:737 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2685 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:737 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2690 msgid "duplicate lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:856 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:856 msgid "split edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:973 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:973 msgid "split edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:995 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:995 msgid "reverse edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1008 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1012 msgid "add reversed edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1043 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1046 msgid "merge junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1079 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1082 msgid "select roundabout" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1095 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1098 msgid "create roundabout" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1273 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1276 msgid "Forced computing junctions with volatile options ..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1275 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1278 msgid "Forced computing junctions ..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1282 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1285 msgid "Computing junctions with volatile options ..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1284 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1287 msgid "Computing junctions ..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1347 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1350 msgid "Finished computing junctions." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1353 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1356 msgid "Computing demand elements ..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1367 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1370 msgid "Finished computing demand elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1373 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1376 msgid "Computing data elements ..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1380 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1383 msgid "Finished computing data elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1459 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1462 msgid "Position of joined junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1460 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1463 msgid "" "There is another unselected junction in the same position of joined junction." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1461 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1464 msgid "It will be joined with the other selected junctions. Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1582 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1592 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1585 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1595 msgid "Clear crossings" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1583 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1586 msgid "There are no invalid crossings to remove." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1593 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1596 msgid "Crossings will be cleared. Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1604 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1607 msgid "clear crossings" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1617 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1620 msgid "clear junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1646 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1649 msgid "clear unused routes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1701 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1704 msgid "merge routes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1755 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1758 msgid "adjust person plans" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1795 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1798 msgid "remove invalid demand elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1810 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1813 msgid "replace junction by geometry" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1855 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1858 msgid "Junction isn't removable" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1867 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1870 msgid "split junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1907 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1910 msgid "Could not rename split node to '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1946 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1949 msgid "clear junction connections" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1958 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1961 msgid "reset junction connections" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1969 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1972 msgid "clear additional elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1982 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1985 msgid "clear demand elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1995 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1998 msgid "clear data elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2006 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2009 msgid "clear meanData elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2326 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2403 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2331 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2413 msgid "Duplicated ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2689 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2689 msgid "Network size exceeds 1 Lightyear. Please reconsider your inputs." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:1461 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:1468 msgid "Default vType doesn't exist" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2478 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2486 msgid "Invalid meanData pointer" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2739 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2747 msgid "Redo replace in TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2753 msgid "Undo replace in TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:332 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:334 msgid "Locate a junction within the network. (Shift+J)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:336 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:338 msgid "Locate an edge within the network. (Shift+E)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:340 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:342 msgid "Locate WalkingAreas" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:340 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:342 msgid "Locate a walkingArea within the network. (Shift+W)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:344 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:346 msgid "Locate a vehicle within the network. (Shift+V)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:348 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:350 msgid "Locate a person within the network. (Shift+P)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:354 msgid "Locate Route" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:354 msgid "Locate a route within the network. (Shift+R)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:358 msgid "Locate Stops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:358 msgid "Locate a stop within the network. (Shift+S)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:367 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:369 msgid "Locate a tls within the network. (Shift+T)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:371 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:373 msgid "Locate an additional structure within the network. (Shift+A)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:375 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:377 msgid "Locate a PoI within the network. (Shift+O)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:379 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:381 msgid "Locate a Polygon within the network. (Shift+L)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:453 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:455 msgid "Remove from Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:455 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:457 msgid "Add to Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:612 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:614 msgid "GUI-Settings cannot be saved in " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:805 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:807 msgid "Confirm Junction Merger" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:806 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:808 msgid "Do you wish to merge junctions '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:807 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:205 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:809 msgid "' and '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:808 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:810 msgid "' will be eliminated and its roads added to '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:836 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:838 msgid " requires switch to network mode. Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:838 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:840 msgid " requires switch to demand mode. Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:840 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:842 msgid " requires switch to data mode. Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:845 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:847 msgid "Confirm switch mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1423 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1425 msgid "Cannot delete in this mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1426 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1428 msgid "delete network inspected elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1434 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1436 msgid "delete network selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1442 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1444 msgid "delete demand inspected elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1450 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1452 msgid "delete demand selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1458 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1460 msgid "delete data inspected elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1466 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1468 msgid "delete data selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2101 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2106 msgid "Reverse selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2108 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2113 msgid "Reverse edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2122 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2127 msgid "Add Reverse edge for selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2129 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2134 msgid "Add reverse edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2143 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2148 msgid "Add Reverse disconnected edge for selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2150 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2155 msgid "Add reverse disconnected edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2179 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2184 msgid "reset geometry points" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2200 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2205 msgid "straighten selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2208 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2213 msgid "straighten edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2222 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2227 msgid "smooth selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2229 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2234 msgid "smooth edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2243 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2248 msgid "straighten elevation of selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2250 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2255 msgid "straighten edge elevation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2264 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2269 msgid "smooth elevation of selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2271 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2276 msgid "smooth edge elevation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2285 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2290 msgid "reset edge lengths" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2314 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2319 msgid "copy edge template" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2335 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2340 msgid "simplify shapes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2377 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2382 msgid "close polygon shapes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2408 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2413 msgid "open polygon shapes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2457 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2462 msgid "select within polygon boundary" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2502 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2507 #, c-format msgid "No lanes around % to attach it" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2525 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2530 msgid "attach POI into lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2538 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2543 msgid "release POI from lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2572 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2577 msgid "change edge Geometry Point position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2604 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2609 msgid "change polygon Geometry Point position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2624 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2629 msgid "change TAZ Geometry Point position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2648 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2653 msgid "reset end points of selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2659 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2664 msgid "reset end points of edge '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2678 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2683 msgid "duplicate selected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2715 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2720 msgid "reset custom lane shapes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2722 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2727 msgid "reset custom lane shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2738 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2743 msgid "reset opposite lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2750 msgid "reset opposite lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2799 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2804 msgid "select lane reachability" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2841 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2846 msgid "Multiple lane in the same edge selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2842 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2847 msgid "There are selected lanes that belong to the same edge." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2843 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2848 msgid "Only one lane per edge will be restricted for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2858 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2866 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2863 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2871 msgid "Set vclass for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2859 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2867 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2940 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2948 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2864 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2872 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2945 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2953 msgid " to selected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2860 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2941 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2865 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2946 msgid "" "All lanes own already another lane in the same edge with a restriction for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2868 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2873 msgid " lanes will be restricted for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2869 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2874 msgid ". Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2896 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2901 msgid "restrict lane to " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2939 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2947 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2944 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2952 msgid "Add vclass for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2949 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3044 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2954 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3049 msgid " restrictions for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2950 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2955 msgid " will be added. Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2967 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2972 msgid "add restrictions for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2977 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2982 msgid "add vclass for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3034 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3042 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3072 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3039 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3047 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3077 msgid "Remove vclass for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3035 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3040 msgid " from selected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3036 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3041 msgid "Selected lanes and edges haven't a restriction for " msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3043 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3048 msgid " in selected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3045 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3050 msgid " will be removed. Continue?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3214 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3219 msgid "reset edge endpoints" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3259 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3526 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3561 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3584 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3264 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3531 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3566 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3589 msgid "Grid is still active, press ctrl+g to deactivate" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3278 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3283 msgid "reset custom junction shapes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3285 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3290 msgid "reset custom junction shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3396 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3401 msgid "clear connections of selected junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3428 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3433 msgid "reset connections of selected junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3452 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3479 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3457 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3484 msgid "add TLS in multiple junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:5564 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:5579 msgid "Shift + click to create two additionals in the same position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:5813 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:5828 msgid "Control + click to create two stop in the same position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1467 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1488 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1467 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1488 msgid "moving selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1668 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1668 msgid "Selection width:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1669 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1669 msgid " height:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1670 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1670 msgid " diagonal:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1834 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1834 msgid "selection using rectangle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1868 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1868 #, c-format msgid "Invalid windows size-format: %for option 'window-size'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1946 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1946 msgid "Save NETEDITConfig" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1946 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1946 msgid "Save NETEDITConfig. (Ctrl+Shift+E)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1952 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1952 msgid "Save SumoConfig" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1952 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1952 msgid "Save SumoConfig. (Ctrl+Shift+S)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1958 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1958 msgid "Save network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1958 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1958 msgid "Save network. (Ctrl+S)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1966 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1966 msgid "Save individual files" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1966 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1966 msgid "Save individual files." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1972 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1972 msgid "Save additional elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1972 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1972 msgid "Save additional elements. (Ctrl+Shift+A)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1978 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1978 msgid "Save demand elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1978 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1978 msgid "Save demand elements. (Ctrl+Shift+D)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1984 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1984 msgid "Save data elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1984 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1984 msgid "Save data elements. (Ctrl+Shift+B)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1990 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1990 msgid "Save mean data elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1990 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1990 msgid "Save mean data elements. (Ctrl+Shift+M)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 msgid "Network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 msgid "Edit network elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 msgid "Set mode for edit network elements. (F2)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2067 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2069 msgid "Demand" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 msgid "Edit traffic demand elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 msgid "Set mode for edit traffic demand. (F3)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2211 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2213 msgid "Data" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 msgid "Edit data elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 msgid "Set mode for edit data demand. (F4)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2065 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2065 msgid "Mode already selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2150 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2150 msgid "Network mode already selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2155 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2155 msgid "Save modifications in TLS before change mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2200 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2200 msgid "Demand mode already selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2235 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2235 msgid "Data mode already selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2316 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2627 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2316 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2627 msgid "" "Show grid and restrict movement to the grid - define grid size in " "visualization options. (Ctrl+G)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2324 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2635 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2922 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2324 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2635 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2922 msgid "Toggle hiding junction shape. (Ctrl+J)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2332 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2332 msgid "Draw vehicles spread in lane or depart position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2332 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2643 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2332 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2643 msgid "Draw vehicles spread in lane or in depart position." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2340 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2944 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2340 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2944 msgid "Toggle show demand elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2348 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2348 msgid "Clicks target lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2348 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2348 msgid "" "Toggle whether clicking should inspect/select/delete lanes instead of edges." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2355 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2355 msgid "Toggle show connections over junctions." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2363 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2363 msgid "Toggle hide connections." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2371 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2371 msgid "Show additional sub-elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2371 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2371 msgid "Toggle show additional sub-elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2379 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2379 msgid "Toggle show TAZ elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2387 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2387 msgid "Automatic select junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2387 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2387 msgid "" "Toggle whether selecting multiple edges should automatically select their " "junctions." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2395 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2395 msgid "Apply state to all phases" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2395 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2395 msgid "" "Toggle whether clicking should apply state changes to all phases of the " "current TLS plan." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2403 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2403 msgid "Automatic merging junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2403 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2403 msgid "Toggle ask for confirmation before merging junction." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2410 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2410 msgid "Show bubbles" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2410 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2410 msgid "Toggle show bubbles over junctions shapes." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2418 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2418 msgid "Move elevation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2418 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2418 msgid "Apply mouse movement to elevation instead of x,y position." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2426 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2426 msgid "Edge chain mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2426 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2426 msgid "Create consecutive edges with a single click (hit ESC to cancel chain)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2434 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2434 msgid "Edge opposite direction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2434 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2434 msgid "Automatically create an edge in the opposite direction." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2651 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2937 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2651 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2937 msgid "Toggle show shapes (Polygons and POIs)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2659 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2659 msgid "Toggle show all trips (requires updated demand - F5)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2667 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2667 msgid "Toggle show all person plans." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2675 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2675 msgid "Toggle lock selected person." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2683 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2683 msgid "Show all containers plans" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2683 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2683 msgid "Toggle show all container plans." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2691 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2691 msgid "Toggle lock selected container." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2699 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2699 msgid "Toggle show non-inspected demand elements." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2707 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2707 msgid "Toggle show number of overlapped routes." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2930 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2930 msgid "Toggle show additionals." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2951 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2951 msgid "Draw TAZREL drawing mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2951 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2951 msgid "Toggle draw TAZREL drawing mode." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2958 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2958 msgid "Toggle draw TAZ fill" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2965 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2965 msgid "Toggle draw TAZRel only from" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2972 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2972 msgid "Toggle draw TAZRel only to" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3471 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3471 msgid "Set inspect mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3471 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3471 msgid "Mode for inspect elements and change their attributes. (I)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3477 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3477 msgid "Set delete mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3477 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3477 msgid "Mode for delete elements. (D)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3546 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3690 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3546 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3681 msgid "Set move mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3546 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3690 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3546 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3681 msgid "Mode for move elements. (M)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3552 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3552 msgid "Set create edge mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3552 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3552 msgid "Mode for creating junction and edges. (E)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3558 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3558 msgid "Set connection mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3558 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3558 msgid "Mode for edit connections between lanes. (C)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3564 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3564 msgid "Set prohibition mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3564 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3564 msgid "Mode for editing connection prohibitions. (H)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3570 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3570 msgid "Set traffic light mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3570 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3570 msgid "Mode for edit traffic lights over junctions. (T)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3576 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3576 msgid "Set additional mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3576 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3576 msgid "Mode for adding additional elements. (A)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3582 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3582 msgid "Set crossing mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3582 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3582 msgid "Mode for creating crossings between edges. (R)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3588 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3588 msgid "Set TAZ mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3588 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3588 msgid "Mode for creating Traffic Assignment Zones. (Z)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3594 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3594 msgid "Set polygon mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3594 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3594 msgid "Mode for creating polygons and POIs. (P)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3600 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3600 msgid "Set wire mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3600 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3600 msgid "Mode for editing wires. (W)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3696 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3687 msgid "Create route mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3696 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3687 msgid "Mode for creating routes. (R)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3702 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3693 msgid "Create vehicle mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3702 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3693 msgid "Mode for creating vehicles. (V)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3708 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3699 msgid "Create type mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3708 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3699 msgid "Mode for creating types (vehicles, person and containers). (T)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3714 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3705 +msgid "Create type distribution mode" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3705 +msgid "Mode for creating type distribution. (U)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3711 msgid "Create stop mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3714 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3711 msgid "Mode for creating stops. (A)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3720 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3717 msgid "Create person mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3720 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3717 msgid "Mode for creating persons. (P)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3726 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3723 msgid "Create person plan mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3726 -msgid "Mode for creating person plans. (C)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3723 +msgid "Mode for creating person plans. (L)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3732 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3729 msgid "Create container mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3732 -msgid "Mode for creating containers. (P)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3729 +msgid "Mode for creating containers. (C)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3738 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3735 msgid "Create container plan mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3738 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3735 msgid "Mode for creating container plans. (H)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3815 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3816 msgid "Create edge data mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3815 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3816 msgid "Mode for creating edge datas. (E)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3821 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3822 msgid "Create edge relation data mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3821 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3822 msgid "Mode for creating edge relation datas. (R)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3827 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3828 msgid "Create TAZ relation data mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3827 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3828 msgid "Mode for creating TAZ relation datas. (Z)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3833 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3834 msgid "MeanData mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3833 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3834 msgid "Mode for MeanData elements. (M)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:102 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:103 msgid "Undo the last change. (Ctrl+Z)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:105 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:106 msgid "Redo the last change. (Ctrl+Y)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:113 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:114 msgid "Compute path manager" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:113 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:114 msgid "Compute path manager." msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:521 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:528 msgid "WalkingArea Chooser" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:590 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:597 msgid "Route Chooser" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:598 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:605 msgid "Stop Chooser" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:629 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:641 msgid "TLS Chooser" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:640 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:652 msgid "Additional Chooser" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:669 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:681 msgid "Poly Chooser" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:120 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:96 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:108 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:97 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:145 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:128 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:118 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:96 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:108 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:97 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:145 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:128 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:118 msgid "Undo create " msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:122 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:99 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:110 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:99 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:147 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:130 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:122 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:99 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:110 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:99 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:147 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:120 msgid "Undo delete " msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:130 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:118 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:107 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:155 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:138 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:128 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:118 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:107 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:155 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:138 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:128 msgid "Redo create " msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:132 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:120 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:109 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:157 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:140 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:132 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:109 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:157 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:140 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:130 msgid "Redo delete " msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Attribute.cpp:158 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Attribute.cpp:158 msgid "Undo change " msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Attribute.cpp:164 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Attribute.cpp:164 msgid "Redo change " msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:147 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:158 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:147 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:158 msgid "Undo moving up " msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:149 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:156 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:149 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:156 msgid "Undo moving down " msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:151 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:160 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:175 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:184 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:151 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:160 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:175 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:184 msgid "Invalid operation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:171 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:180 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:171 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:180 msgid "Redo moving front " msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:173 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:182 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:173 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:182 msgid "Redo moving back " msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:108 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:108 msgid "Redo create connection '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:111 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:111 msgid "Redo delete connection '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:163 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:163 msgid "Undo create crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:165 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:165 msgid "Undo delete crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:173 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:173 msgid "Redo create crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:175 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:175 msgid "Redo delete crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:136 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:136 msgid "Undo create edge '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:138 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:138 msgid "Undo delete edge '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:146 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:146 msgid "Redo create edge '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:148 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:148 msgid "Redo delete edge '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:111 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:111 msgid "Undo create edgeType '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:113 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:113 msgid "Undo delete edgeType '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:121 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:121 msgid "Redo create edgeType '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:123 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:123 msgid "Redo delete edgeType '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:113 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:115 -msgid "Undo enable " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:113 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:115 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:123 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:125 -msgid " attribute in '" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:113 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:115 +msgid "Undo enable % attribute in '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:123 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:125 -msgid "Redo enable " +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:123 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:125 +msgid "Redo enable % attribute in '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:109 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:109 msgid "Undo create junction '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:111 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:111 msgid "Undo delete junction '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:119 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:119 msgid "Redo create junction '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:121 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:121 msgid "Redo delete junction '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:158 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:158 msgid "Undo create lane '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:160 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:160 msgid "Undo delete lane '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:168 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:168 msgid "Redo create lane '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:170 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:170 msgid "Redo delete lane '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:172 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:172 msgid "Undo create TLS '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:174 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:174 msgid "Undo delete TLS '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:182 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:182 msgid "Redo create TLS '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:184 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:184 msgid "Redo delete TLS '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:38 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:38 msgid "About Eclipse SUMO netedit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:53 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:53 msgid "Network editor for Eclipse SUMO, the Simulation of Urban MObility" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:54 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:54 msgid "Graphical editor for road networks and infrastructure." msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:66 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:66 msgid "This application is based on code provided by the Eclipse SUMO project." msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:67 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:67 msgid "" "These core components are available under the conditions of the Eclipse " "Public License v2." msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:923 msgid "Accept" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:62 msgid "Close accepting changes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:94 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:93 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1368 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:377 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:925 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1396 msgid "Cancel" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:63 msgid "Close discarding changes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:64 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:93 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:378 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:97 msgid "Reset" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:64 msgid "Reset to previous values" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:276 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:649 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:59 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:690 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:494 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:133 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:276 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:650 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:59 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:713 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:494 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:133 msgid "accept" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:276 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:277 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:278 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:415 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:649 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:650 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:651 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:411 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:690 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:691 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:692 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:408 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:494 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:495 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:234 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:247 -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:285 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:384 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:559 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:298 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:487 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:134 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:276 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:277 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:416 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:650 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:651 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:652 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:413 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:713 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:714 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:715 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:408 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:494 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:495 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:380 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:298 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:487 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:134 msgid "close" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:277 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:650 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:60 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:691 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:495 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:277 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:651 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:60 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:714 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:495 msgid "cancel" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:278 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:651 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:692 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:652 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:715 msgid "reset" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNECalibratorDialog.cpp:237 +#: D:\Repos\sumo/src\netedit\dialogs\GNECalibratorDialog.cpp:237 msgid "routes cannot be empty" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNECalibratorDialog.cpp:472 +#: D:\Repos\sumo/src\netedit\dialogs\GNECalibratorDialog.cpp:472 msgid "No routes defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:71 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:638 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:389 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:71 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:638 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:389 msgid "&Accept" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:75 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:90 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:75 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:90 msgid "close accepting changes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:64 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:76 msgid "close discarding changes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:65 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:65 msgid "&Reset" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:65 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:77 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:65 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:77 msgid "reset to previous values" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDialogACChooser.cpp:111 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDialogACChooser.cpp:111 msgid "Invalid Junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDialogACChooser.cpp:117 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDialogACChooser.cpp:117 msgid "Invalid number of TLSs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:257 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:333 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:457 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:257 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:333 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:457 msgid "Activate friendlyPos and save" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:257 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:333 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:257 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:333 msgid "" "Friendly pos parameter will be activated in all stopping places and E2 " "detectors" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:259 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:460 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:259 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:460 msgid "Save invalid positions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:259 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:259 msgid "Save stopping places and E2 detectors with invalid positions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:263 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:335 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:466 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:263 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:335 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:466 msgid "Fix positions and save" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:263 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:335 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:263 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:335 msgid "Position of stopping places and E2 detectors will be fixed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:265 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:265 msgid "Select invalid additionals" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:265 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:265 msgid "" "Cancel saving of additionals and select invalid stopping places and E2 " "detectors" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:325 msgid "Build connections between lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:325 msgid "New connections will be created between non-connected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:327 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:327 msgid "Remove invalid E2 detectors" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:327 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:327 msgid "Remove Multilane E2 Detectors with non-connected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:202 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:189 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:202 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:189 msgid "Save list of conflicted items" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:240 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:240 msgid "Remove invalid routes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:243 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:243 msgid "Save invalid routes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:246 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:246 msgid "Select conflicted routes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:249 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:249 msgid "Remove stops out of route" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:351 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:351 msgid "Remove invalid vehicles" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:354 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:354 msgid "Save invalid vehicles" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:357 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:357 msgid "Select conflicted vehicle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:360 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:360 msgid "Remove stops out of vehicle's route" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:463 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:463 msgid "Select conflicted Stops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:557 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:557 msgid "Delete person plan" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:560 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:560 msgid "Save invalid person plans" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:563 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:563 msgid "Select conflicted person plans" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:52 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:52 msgid "Fix network elements problems" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:206 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:206 msgid "Saving successfully" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:213 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:213 msgid "Saving list of conflicted items failed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:227 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:227 msgid "Remove invalid edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:230 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:230 msgid "Save invalid edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:233 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:233 msgid "Select conflicted edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:308 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:308 msgid "Remove invalid crossings" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:311 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:311 msgid "Save invalid crossings" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:314 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:314 msgid "Select conflicted crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:285 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:281 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:286 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:283 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:278 msgid "Sort" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:286 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:282 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:279 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:55 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:251 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:287 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:284 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:279 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:252 msgid "Clear" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:289 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:285 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:282 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:59 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:748 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:73 -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:318 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:113 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:420 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:60 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:83 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:37 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:39 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:222 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1194 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:290 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:287 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:756 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:318 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:109 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:37 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:39 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:223 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1191 msgid "Help" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:299 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:295 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:292 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:300 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:297 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:292 msgid "Open Parameter Template" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:314 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:310 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:307 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:315 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:312 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:307 #, c-format msgid "Loading of Parameters From % failed." msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:317 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:313 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:310 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:318 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:315 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:310 msgid "Loaded % Parameters." msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:327 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:323 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:320 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:328 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:320 msgid "Save Parameter Template file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:403 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:399 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:396 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:404 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:401 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:396 msgid "- Parameters are defined by a Key and a Value.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:404 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:400 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:397 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:405 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:402 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:397 msgid "" "- In Netedit can be defined using format key1=parameter1|" "key2=parameter2|...\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:405 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:401 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:398 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:406 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:403 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:398 msgid " - Duplicated and empty Keys aren't valid.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:406 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:402 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:399 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:407 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:404 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:399 msgid " - Whitespace and certain characters aren't allowed (@$%^&/|\\....)\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:448 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:447 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:444 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:449 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:449 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:444 msgid "Key of Parameter not defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:450 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:449 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:446 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:451 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:451 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:446 msgid "Value of Parameter not defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:458 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:457 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:454 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:454 msgid "Key of Parameter cannot be empty" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:460 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:459 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:456 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:461 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:461 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:456 #, c-format msgid "Key '%' of Parameter contains invalid characters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:463 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:462 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:464 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:464 #, c-format msgid "Key '%' already exist" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:478 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:479 msgid "" "Only for\n" "existent keys" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:59 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:59 msgid "load elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:60 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:60 msgid "cancel loading of elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:61 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:61 msgid "overwrite" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:61 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:61 msgid "overwrite elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:182 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:182 msgid "Rerouter has more than one edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:321 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:321 msgid "There are no lanes in the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:341 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:361 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:341 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:361 msgid "There are no edges in the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:398 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:398 msgid "There are no parking areas in the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEUndoListDialog.cpp:58 +#: D:\Repos\sumo/src\netedit\dialogs\GNEUndoListDialog.cpp:58 msgid "OK\tclose dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:459 #, c-format msgid "Key '%' already exists" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:446 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:753 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:446 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1159 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1168 msgid "Edit parameters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:466 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:466 msgid "Invalid row type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:635 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:425 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:455 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1252 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:635 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:426 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:463 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1249 msgid "Color Dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:660 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:660 msgid "Open Image" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:687 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:687 msgid "Open OSG File" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:266 +msgid "Could not load configuration '" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:271 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:169 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:173 +msgid "Could not load tool configuration '" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:275 +msgid "Loaded configuration." +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:295 +msgid "Save options" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:297 +msgid "Save configuration file" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:298 +msgid "Load options" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:300 +msgid "Load configuration file" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:301 +msgid "Default options" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:303 +msgid "Reset all options to default" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:311 +msgid "Topics" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:362 +msgid "Search" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:364 +msgid "Include description in search" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:81 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:138 +msgid "Reset value" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:226 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:238 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:251 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:272 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:734 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:746 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:760 +msgid "true" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:229 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:241 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:254 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:275 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:737 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:749 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:766 +msgid "false" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:458 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:82 +msgid "Select filename" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:63 msgid "Grid" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:64 msgid "Spider" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:65 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:65 msgid "Random grid" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:66 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:66 msgid "Random" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:82 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:232 -msgid "Select filename" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:92 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:92 msgid "Advanced" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:92 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:92 msgid "open advance netgenerate dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:94 msgid "Close dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:71 -msgid "Save options" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:71 +msgid "Save toolcfg" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:73 -msgid "Load options" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:73 +msgid "Save file with tool configuration" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:74 +msgid "Load toolcfg" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:75 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:76 +msgid "Load file with tool configuration" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:77 msgid "Sorted by name" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:78 msgid "Grouped by categories" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:89 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:90 +msgid "Blue options are mandatory" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:93 msgid "run python tool" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:91 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:95 msgid "close tool dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:93 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:97 msgid "reset to default values" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:122 -msgid "Reset value" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:245 +#, c-format +msgid "Use current % file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:227 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:251 #, c-format -msgid "Use current % file" +msgid "Select % file" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:274 +msgid "Use current selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:253 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:349 msgid "network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:296 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:392 msgid "additional" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:339 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:435 msgid "route" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:382 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:478 msgid "data" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:556 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:568 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:582 -msgid "true" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:521 +msgid "sumo config" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:559 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:571 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:585 -msgid "false" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:70 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:71 msgid "Save output" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:65 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:66 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:72 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:73 msgid "Console output" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:75 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:82 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:83 msgid "Abort" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:75 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:82 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:83 msgid "abort running" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:77 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:78 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:84 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:85 msgid "Rerun" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:77 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:78 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:84 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:85 msgid "rerun tool" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:79 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:80 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:86 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:87 msgid "Back" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:79 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:80 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:86 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:87 msgid "back to tool dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:87 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:88 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:95 msgid "close dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:134 msgid "Nothing to enable, implement in Children" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:141 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:141 msgid "Nothing to disable, implement in Children" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:631 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:631 #, c-format msgid "TagProperty for tag '%' not defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:849 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:849 msgid "Nothing to toggle, implement in Children" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:913 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:913 msgid "The id of the node" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:918 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1903 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1909 msgid "The x-y-z position of the node on the plane in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:923 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:923 msgid "An optional type for the node" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:929 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:929 msgid "A custom shape for that node" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:934 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:934 msgid "Optional turning radius (for all corners) for that node in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:940 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:940 msgid "" "Whether the junction-blocking-heuristic should be activated at this node" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:946 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:946 msgid "How to compute right of way rules at this node" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:953 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:953 msgid "Whether this junction is at the fringe of the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:960 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:960 msgid "Optional name of junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:965 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:965 msgid "An optional type for the traffic light algorithm" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:971 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:971 msgid "An optional layout for the traffic light plan" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:980 msgid "An optional id for the traffic light program" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:993 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:993 msgid "The id of the edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:998 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1116 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:998 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1116 msgid "The number of lanes of the edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1004 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1104 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1004 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1104 msgid "The maximum speed allowed on the edge in m/s" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1010 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1064 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1127 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1230 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1446 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1064 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1230 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1446 msgid "" "Explicitly allows the given vehicle classes (not given will be not allowed)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1016 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1070 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1133 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1236 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1452 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1016 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1070 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1133 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1236 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1452 msgid "" "Explicitly disallows the given vehicle classes (not given will be allowed)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1021 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1148 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1021 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1148 msgid "" "The spreadType defines how to compute the lane geometry from the edge " "geometry (used for visualization)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1028 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1110 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1110 msgid "The priority of the edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1034 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1160 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1160 msgid "" "Lane width for all lanes of this edge in meters (used for visualization)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1040 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1040 msgid "The width of the sidewalk that should be added as an additional lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1045 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1045 msgid "The width of the bike lane that should be added as an additional lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1058 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1058 msgid "The maximum speed allowed on the lane in m/s" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1075 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1075 msgid "" "Lane width for all lanes of this lane in meters (used for visualization)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1089 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2650 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2698 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1089 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2656 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2704 msgid "Edge ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1094 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1094 msgid "The name of a node within the nodes-file the edge shall start at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1099 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1099 msgid "The name of a node within the nodes-file the edge shall end at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1122 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1122 msgid "The name of a type within the SUMO edge type file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1138 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1138 msgid "" "If the shape is given it should start and end with the positions of the from-" "node and to-node" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1143 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1143 msgid "The length of the edge in meter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1155 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1155 msgid "street name (does not need to be unique, used for visualization)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1166 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1247 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1166 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1247 msgid "Move the stop line back from the intersection by the given amount" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1172 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1172 msgid "" "Custom position in which shape start (by default position of junction from)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1177 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1177 msgid "" "Custom position in which shape end (by default position of junction from)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1182 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1182 msgid "Show if edge is bidirectional" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1188 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1188 msgid "Distance" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1194 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1288 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1194 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1288 msgid "The stop offset as positive value in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1200 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1294 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1200 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1294 msgid "Specifies, for which vehicle classes the stopOffset does NOT apply." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1214 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1214 msgid "Lane ID (Automatic, non editable)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1219 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1219 msgid "" "The enumeration index of the lane (0 is the rightmost lane, -1 " "is the leftmost one)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1224 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1224 msgid "Speed in meters per second" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1241 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1241 msgid "Width in meters (used for visualization)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1253 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1253 msgid "Enable or disable lane as acceleration lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1259 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1259 msgid "If the shape is given it overrides the computation based on edge shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1264 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1264 msgid "If given, this defines the opposite direction lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1269 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1474 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1269 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1474 msgid "Permit changing left only for to the given vehicle classes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1276 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1481 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1276 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1481 msgid "Permit changing right only for to the given vehicle classes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1283 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1283 msgid "Lane type description (optional)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1308 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1308 msgid "Crossing ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1313 msgid "The (road) edges which are crossed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1318 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1318 msgid "" "Whether the pedestrians have priority over the vehicles (automatically set " "to true at tls-controlled intersections)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1324 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1324 msgid "The width of the crossings" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1330 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1330 msgid "sets the tls-index for this crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1336 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1336 msgid "sets the opposite-direction tls-index for this crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1342 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1342 msgid "Overrides default shape of pedestrian crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1355 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1355 msgid "Walking Area ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1360 msgid "The width of the WalkingArea" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1366 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1366 msgid "The length of the WalkingArea in meter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1371 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1371 msgid "Overrides default shape of pedestrian sidewalk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1384 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1384 msgid "The ID of the edge the vehicles leave" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1389 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1389 msgid "The ID of the edge the vehicles may reach when leaving 'from'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1394 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1394 msgid "the lane index of the incoming lane (numbers starting with 0)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1399 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1399 msgid "the lane index of the outgoing lane (numbers starting with 0)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1404 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1404 msgid "" "if set, vehicles which pass this (lane-2-lane) connection) will not wait" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1410 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1410 msgid "" "if set to false, vehicles which pass this (lane-2-lane) connection) will not " "worry about blocking the intersection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1416 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1416 msgid "" "If set to a more than 0 value, an internal junction will be built at this " "position (in m)/n from the start of the internal lane for this connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1422 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1422 msgid "" "If set to true, This connection will not be TLS-controlled despite its node " "being controlled" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1428 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1428 msgid "Vision distance between vehicles" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1434 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1434 msgid "sets index of this connection within the controlling traffic light" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1440 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1440 msgid "" "sets index for the internal junction of this connection within the " "controlling traffic light" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1457 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1457 msgid "sets custom speed limit for the connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1463 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1463 msgid "sets custom length for the connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1469 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1469 msgid "sets custom shape for the connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1488 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1488 msgid "if set to true, vehicles will make a turn in 2 steps" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1494 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1494 msgid "" "set a custom edge type (for applying vClass-specific speed restrictions)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1500 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1500 msgid "turning direction for this connection (computed)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1505 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1505 msgid "link state for this connection (computed)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1535 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1535 msgid "The id of bus stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1540 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1540 msgid "The name of the lane the bus stop shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1545 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1609 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1707 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1836 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3962 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4073 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1545 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1609 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1707 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3968 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4095 msgid "" "The begin position on the lane (the lower position on the lane) in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1550 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1614 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1712 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1841 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3967 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4078 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4432 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4802 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1550 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1614 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1712 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1841 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3973 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4100 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4470 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4916 msgid "" "The end position on the lane (the higher position on the lane) in meters, " "must be larger than startPos by more than 0.1m" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1555 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1555 msgid "Name of busStop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1560 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1624 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1680 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1722 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1785 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1868 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1979 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2060 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2140 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2219 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2246 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2293 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2959 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3266 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3972 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4083 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4437 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4807 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1560 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1680 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1722 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1785 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1868 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1985 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2066 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2146 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2225 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2252 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2299 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2965 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3272 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3978 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4105 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4475 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4921 msgid "If set, no error will be reported if element is placed behind the lane." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1561 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1561 msgid "" "Instead, it will be placed 0.1 meters from the lanes end or at position 0.1" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1562 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1626 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1682 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1724 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1787 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1870 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1981 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2062 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2142 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2221 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2248 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2295 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2961 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3268 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3974 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4085 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4439 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4809 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1562 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1626 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1682 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1724 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1787 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1870 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1987 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2148 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2227 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2254 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2301 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2967 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3274 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4477 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4923 msgid "" "if the position was negative and larger than the lanes length after " "multiplication with - 1" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1568 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1568 msgid "" "Meant to be the names of the bus lines that stop at this bus stop. This is " "only used for visualization purposes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1573 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1637 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1573 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1637 msgid "" "Larger numbers of persons trying to enter will create an upstream jam on the " "sidewalk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1579 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1643 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1741 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1579 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1741 msgid "Optional space definition for vehicles that park at this stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1585 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1585 msgid "The RGBA color with which the busStop shall be displayed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1599 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1599 msgid "The id of train stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1604 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1604 msgid "The name of the lane the train stop shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1619 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1619 msgid "Name of trainStop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1625 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1681 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1723 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1786 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1869 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1980 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2061 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2141 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2220 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2247 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2294 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2960 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3267 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3973 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4084 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4438 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4808 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1625 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1681 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1723 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1786 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1869 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1986 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2147 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2226 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2253 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2300 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2966 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3273 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3979 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4106 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4476 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4922 msgid "" "Instead, it will be placed 0.1 meters from the lanes end or at position 0.1," msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1632 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1632 msgid "" "Meant to be the names of the train lines that stop at this train stop. This " "is only used for visualization purposes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1649 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1649 msgid "The RGBA color with which the trainStop shall be displayed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1663 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1663 msgid "The name of the lane the stop access shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1668 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1668 msgid "The position on the lane (the lower position on the lane) in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1674 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1674 msgid "The walking length of the access in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1697 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1697 msgid "The id of container stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1702 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1702 msgid "The name of the lane the container stop shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1717 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1717 msgid "Name of containerStop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1730 msgid "" "meant to be the names of the bus lines that stop at this container stop. " "This is only used for visualization purposes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1735 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1735 msgid "" "Larger numbers of container trying to enter will create an upstream jam on " "the sidewalk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1747 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1747 msgid "The RGBA color with which the containerStop shall be displayed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1760 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1760 msgid "The id of charging station" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1765 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1765 msgid "Lane of the charging station location" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1770 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1770 msgid "Begin position in the specified lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1775 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1775 msgid "End position in the specified lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1780 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1780 msgid "Name of chargingStation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1793 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1793 msgid "Charging power in W" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1799 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1799 msgid "Charging efficiency [0,1]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1806 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1806 msgid "" "Enable or disable charge in transit, i.e. vehicle must or must not to stop " "for charging" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1812 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1812 msgid "" "Time delay after the vehicles has reached / stopped on the charging station, " "before the energy transfer (charging) begins" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1826 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1826 msgid "The id of ParkingArea" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1831 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1831 msgid "The name of the lane the Parking Area shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1846 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1846 msgid "Lane position in that vehicle must depart when leaves parkingArea" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1851 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1851 msgid "Name of parkingArea" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1856 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1856 msgid " The number of parking spaces for road-side parking" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1862 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1862 msgid "" "If set, vehicles will park on the road lane and thereby reducing capacity" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1876 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1913 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1876 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1919 msgid "The width of the road-side parking spaces" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1882 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1882 msgid "" "The length of the road-side parking spaces. By default (endPos - startPos) / " "roadsideCapacity" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1888 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1923 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1888 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1929 msgid "" "The angle of the road-side parking spaces relative to the lane angle, " "positive means clockwise" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1908 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1894 +msgid "Enable or disable lefthand position" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1914 msgid "Name of parking space" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1924 msgid "The length of the road-side parking spaces" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1928 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1934 msgid "The slope of the road-side parking spaces" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1943 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1949 msgid "The id of E1" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1948 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2000 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2209 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2236 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2268 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1954 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2006 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2215 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2242 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2274 msgid "" "The id of the lane the detector shall be laid on. The lane must be a part of " "the network used" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1953 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2273 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1959 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2279 msgid "" "The position on the lane the detector shall be laid on in meters. The " "position must be a value between -1*lane's length and the lane's length" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1958 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2016 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2096 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2168 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5770 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1964 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2022 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2102 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5916 msgid "" "The aggregation period the values the detector collects shall be summed up" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1964 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1970 msgid "Name of induction loop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1969 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2032 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2112 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2179 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2283 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1975 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2038 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2118 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2289 msgid "The path to the output file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1974 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2037 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2117 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2184 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2288 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2043 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2123 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2190 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2294 msgid "Space separated list of vehicle type ids to consider" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1995 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2001 msgid "The id of E2" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2005 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2086 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2214 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2241 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2011 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2092 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2220 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2247 msgid "The position on the lane the detector shall be laid on in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2016 msgid "The length of the detector in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2102 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2108 msgid "The traffic light that triggers aggregation when switching" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2027 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2033 msgid "Name of lane area detector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2042 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2122 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2048 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2128 msgid "" "The time-based threshold that describes how much time has to pass until a " "vehicle is recognized as halting)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2048 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2128 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2195 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2054 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2201 msgid "" "The speed-based threshold that describes how slow a vehicle has to be to be " "recognized as halting) in m/s" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2054 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2060 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2140 msgid "" "The minimum distance to the next standing vehicle in order to make this " "vehicle count as a participant to the jam) in m" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2076 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2082 msgid "The id of Multilane E2" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2081 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2087 msgid "The sequence of lane ids in which the detector shall be laid on" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2091 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2097 msgid "The end position on the lane the detector shall be laid on in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2113 msgid "Name of Multilane E2 detector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2157 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2163 msgid "The id of E3" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2162 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2354 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3213 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2168 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3219 msgid "X-Y position of detector in editor (Only used in netedit)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2180 msgid "Name of Entry Exit detector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2189 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2195 msgid "" "The time-based threshold that describes how much time has to pass until a " "vehicle is recognized as halting) in s" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2263 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2269 msgid "The id of Instant Induction Loop (E1Instant)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2278 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2284 msgid "Name of instant induction loop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2309 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2315 msgid "The id of RouteProbe" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2314 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2320 msgid "The id of an edge in the simulation network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2319 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2325 msgid "The frequency in which to report the distribution" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2325 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2331 msgid "Name of route probe" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2330 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2336 msgid "The file for generated output" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2335 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2341 msgid "The time at which to start generating output" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2349 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2355 msgid "The id of Variable Speed Signal" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2366 msgid "List of Variable Speed Sign lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2365 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2371 msgid "Name of Variable Speed Signal" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2370 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2376 msgid "" "Space separated list of vehicle type ids to consider (empty to affect all " "types)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2396 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2402 msgid "Speed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2410 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2466 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2416 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2472 msgid "The id of Calibrator" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2415 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3159 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3179 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2421 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3165 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3185 msgid "The id of edge in the simulation network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2420 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2476 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2426 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2482 msgid "The position of the calibrator on the specified lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2426 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2482 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2432 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2488 msgid "" "The aggregation interval in which to calibrate the flows. Default is step-" "length" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2432 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2438 msgid "Name of Calibrator" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2437 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2493 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2443 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2499 msgid "" "The id of the routeProbe element from which to determine the route " "distribution for generated vehicles" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2442 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2498 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2504 msgid "The output file for writing calibrator information or NULL" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2447 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2503 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2453 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2509 msgid "A threshold value to detect and clear unexpected jamming" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2453 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2509 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2459 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2515 msgid "" "space separated list of vehicle type ids to consider (empty to affect all " "types)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2471 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2477 msgid "The id of lane in the simulation network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2488 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2494 msgid "Name of calibrator lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2522 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2528 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3715 msgid "The id of the route the vehicle shall drive along" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2527 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2533 msgid "First calibrator flow departure time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2533 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4962 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2539 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5108 msgid "End of departure interval" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2543 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2549 msgid "The id of the vehicle type to use for this calibrator flow" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2555 msgid "Number of vehicles per hour, equally spaced" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2555 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2561 msgid "Vehicle's speed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2576 msgid "The id of Rerouter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2581 msgid "An edge id or a list of edge ids where vehicles shall be rerouted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2580 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2586 msgid "X,Y position in editor (Only used in netedit)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2586 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2592 msgid "Name of Rerouter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2591 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2597 msgid "The probability for vehicle rerouting (0-1)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2597 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2603 msgid "" "The waiting time threshold (in s) that must be reached to activate rerouting " "(default -1 which disables the threshold)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2603 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2609 msgid "" "The list of vehicle types that shall be affected by this rerouter (empty to " "affect all types)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2608 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2614 msgid "" "Whether the router should be inactive initially (and switched on in the gui)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2630 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2636 msgid "Begin" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2636 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2642 msgid "End" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2656 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2680 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2662 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2686 msgid "allowed vehicles" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2661 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2685 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2667 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2691 msgid "disallowed vehicles" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2674 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2680 msgid "Lane ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2704 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2724 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2750 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2710 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2756 msgid "SUMO Probability" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2718 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2724 msgid "ParkingArea ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2736 msgid "Enable or disable visibility for parking area reroutes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2770 msgid "Edge in which vaporizer is placed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2769 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2775 msgid "Start Time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2775 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2781 msgid "End Time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2781 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2787 msgid "Name of vaporizer" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2802 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2808 msgid "The id of the polygon" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2807 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2813 msgid "The shape of the polygon" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2812 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2818 msgid "The RGBA color with which the polygon shall be displayed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2818 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2824 msgid "An information whether the polygon shall be filled" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2824 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2830 msgid "The default line width for drawing an unfilled polygon" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2830 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2836 msgid "The layer in which the polygon lies" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2842 msgid "A typename for the polygon" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2842 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2848 msgid "Polygon's name" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2847 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2853 msgid "A bitmap to use for rendering this polygon" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2853 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2924 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3014 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3091 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2859 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2930 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3020 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3097 msgid "Enable or disable use image file as a relative path" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2859 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2930 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3020 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3097 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2865 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2936 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3026 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3103 msgid "Angle of rendered image in degree" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2873 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2944 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2879 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2950 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3040 msgid "The id of the POI" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2878 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2884 msgid "The position in view" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2883 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2973 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3050 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2889 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2979 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3056 msgid "The color with which the POI shall be displayed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2889 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2979 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3056 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2895 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2985 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3062 msgid "A typename for the POI" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2895 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2985 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3062 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3146 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2901 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2991 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3152 msgid "Name of POI" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2900 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2990 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2906 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2996 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3073 msgid "The layer of the POI for drawing and selecting" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2906 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2996 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3073 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2912 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3002 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3079 msgid "Width of rendered image in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2912 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3002 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3079 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3008 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3085 msgid "Height of rendered image in meters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2918 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3008 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3085 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2924 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3014 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3091 msgid "A bitmap to use for rendering this POI" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2949 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2955 msgid "The name of the lane at which the POI is located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2954 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2960 msgid "" "The position on the named lane or in the net in meters at which the POI is " "located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2967 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2973 msgid "The lateral offset on the named lane at which the POI is located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3040 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3046 msgid "The longitude position of the parking vehicle on the view" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3045 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3051 msgid "The latitude position of the parking vehicle on the view" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3119 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3125 msgid "The id of the TAZ" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3124 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3130 msgid "The shape of the TAZ" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3129 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3135 msgid "TAZ center" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3140 msgid "An information whether the TAZ shall be filled" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3140 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3146 msgid "The RGBA color with which the TAZ shall be displayed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3165 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3171 msgid "Depart weight associated to this Edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3185 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3191 msgid "Arrival weight associated to this Edget" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3208 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3214 msgid "Traction substation ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3219 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3225 msgid "Voltage of at connection point for the overhead wire" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3225 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3231 msgid "Current limit of the feeder line" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3239 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3245 msgid "Overhead wire segment ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3244 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3250 msgid "Substation to which the circuit is connected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3249 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3255 msgid "List of consecutive lanes of the circuit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3254 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3260 msgid "Starting position in the specified lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3260 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3266 msgid "Ending position in the specified lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3274 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3280 msgid "Inner lanes, where placing of overhead wire is restricted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3287 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3293 msgid "Overhead wire clamp ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3292 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3298 msgid "" "ID of the overhead wire segment, to the start of which the overhead wire " "clamp is connected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3297 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3303 msgid "ID of the overhead wire segment lane of overheadWireIDStartClamp" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3302 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3308 msgid "" "ID of the overhead wire segment, to the end of which the overhead wire clamp " "is connected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3313 msgid "ID of the overhead wire segment lane of overheadWireIDEndClamp" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3330 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3336 msgid "The id of Route" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3335 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3367 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3341 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3373 msgid "" "The edges the vehicle shall drive along, given as their ids, separated using " "spaces" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3340 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3372 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3346 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3378 msgid "This route's color" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3345 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3377 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3351 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3383 msgid "The number of times that the edges of this route shall be repeated" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3351 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3383 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3389 msgid "" "When defining a repeating route with stops and those stops use the until " "attribute," msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3352 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3384 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3358 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3390 msgid "the times will be shifted forward by 'cycleTime' on each repeat" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3399 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3405 msgid "The id of VehicleType distribution" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3421 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3427 msgid "The id of VehicleType" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3426 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3432 msgid "Vehicle Type Distribution" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3431 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3437 msgid "An abstract vehicle class" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3438 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3444 msgid "This vehicle type's color" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3443 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3449 msgid "The vehicle's netto-length (length) [m]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3454 msgid "Empty space after leader [m]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3453 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3459 msgid "The vehicle's maximum velocity [m/s]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3458 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3464 msgid "" "The vehicle's expected multiplicator for lane speed limits (or a " "distribution specifier)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3463 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3469 msgid "The vehicle's desired maximum velocity (interacts with speedFactor)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3464 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3470 msgid "Applicable when no speed limit applies (bicycles, some motorways) [m/s]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3469 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3475 msgid "An abstract emission class" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3475 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3481 msgid "How this vehicle is rendered" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3481 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3487 msgid "The vehicle's width [m] (only used for drawing)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3487 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3493 msgid "The vehicle's height [m] (only used for drawing)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3493 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3499 msgid "" "Image file for rendering vehicles of this type (should be grayscale to allow " "functional coloring)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3498 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3504 msgid "The model used for changing lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3505 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3511 msgid "The model used for car-following" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3512 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3518 msgid "" "The number of persons (excluding an autonomous driver) the vehicle can " "transport" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3517 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3523 msgid "The number of containers the vehicle can transport" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3522 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3528 msgid "The time required by a person to board the vehicle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3528 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3534 msgid "The time required to load a container onto the vehicle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3534 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3540 msgid "The preferred lateral alignment when using the sublane-model" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3541 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3547 msgid "" "The minimum lateral gap at a speed difference of 50km/h when using the " "sublane-model" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3547 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3553 msgid "The maximum lateral speed when using the sublane-model" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3553 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3559 msgid "" "The interval length for which vehicle performs its decision logic " "(acceleration and lane-changing)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3559 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3565 msgid "" "The probability when being added to a distribution without an explicit " "probability" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3565 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3571 msgid "3D model file for this class" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3576 msgid "Carriage lengths" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3581 msgid "Locomotive lengths" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3580 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3586 msgid "Gap between carriages" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3613 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3619 msgid "The ID of trip" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3618 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3663 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3669 msgid "The id of the vehicle type to use for this trip" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3630 msgid "The ID of the edge the trip starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3629 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3635 msgid "The ID of the edge the trip ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3634 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3640 msgid "List of intermediate edge ids which shall be part of the trip" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3642 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3682 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3648 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3688 msgid "" "The departure time of the (first) trip which is generated using this trip " "definition" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3658 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3664 msgid "The id of trip" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3669 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3675 msgid "The name of the junction the trip starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3674 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3680 msgid "The name of the junction the trip ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3698 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3743 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3704 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3749 msgid "The ID of the vehicle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3703 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3748 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3754 msgid "The id of the vehicle type to use for this vehicle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3714 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3754 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3720 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3760 msgid "The index of the edge within route the vehicle starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3719 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3759 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3725 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3765 msgid "The index of the edge within route the vehicle ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3727 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3767 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3733 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3773 msgid "The time step at which the vehicle shall enter the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3783 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3789 msgid "The ID of the flow" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3788 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3830 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3867 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3909 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3794 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3873 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3915 msgid "The id of the flow type to use for this flow" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3794 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3800 msgid "The ID of the edge the flow starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3799 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3805 msgid "The ID of the edge the flow ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3804 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3810 msgid "List of intermediate edge ids which shall be part of the flow" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3825 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3862 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3831 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3868 msgid "The id of the flow" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3842 msgid "The name of the junction the flow starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3841 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3847 msgid "The name of the junction the flow ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3873 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3879 msgid "The id of the route the flow shall drive along" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3878 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3915 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3884 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3921 msgid "The index of the edge within route the flow starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3883 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3920 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3889 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3926 msgid "The index of the edge within route the flow ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3904 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3910 msgid "The name of the flow" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3957 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3963 msgid "The name of the lane the stop shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3986 msgid "The lateral offset on the named lane at which the vehicle must stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3996 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4842 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4002 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4956 msgid "BusStop associated with this stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4012 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4472 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4018 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4988 +msgid "TrainStop associated with this stop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4510 msgid "ContainerStop associated with this stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4050 msgid "ChargingStation associated with this stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4044 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4066 msgid "ParkingArea associated with this stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4090 msgid "The name of the lane the waypoint shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4091 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4113 msgid "The lateral offset on the named lane at which the vehicle must waypoint" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4129 msgid "BusWaypoint associated with this waypoint" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4123 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4145 +msgid "TrainWaypoint associated with this waypoint" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4161 msgid "ContainerWaypoint associated with this waypoint" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4139 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4177 msgid "ChargingStation associated with this waypoint" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4155 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4193 msgid "ParkingArea associated with this waypoint" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4183 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4221 msgid "The time step at which the person shall enter the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4223 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4261 msgid "The time step at which the container shall enter the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4259 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4289 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4297 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4327 msgid "The ID of the edge the transport starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4264 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4302 msgid "The ID of the edge the transport ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4269 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4337 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4521 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4637 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4744 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4559 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4834 msgid "arrival position on the destination edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4275 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4299 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4337 msgid "list of vehicle alternatives to take for the transport" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4294 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4332 msgid "ID of the destination container stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4321 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4359 msgid "The ID of the edge the tranship starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4326 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4364 msgid "The ID of the edge the tranship ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4331 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4367 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4392 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4405 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4430 msgid "The position at which the tranship shall enter the net" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4343 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4373 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4404 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4381 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4411 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4442 msgid "speed of the container for this tranship in m/s" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4395 msgid "The name of the edge the tranship starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4362 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4400 msgid "Id of the destination container stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4387 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4669 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4425 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4759 msgid "id of the edges to walk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4398 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4674 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4693 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4436 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4783 msgid "Arrival position on the destination edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4427 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4797 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4465 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4911 msgid "The ID of the edge the stop shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4445 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4477 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4815 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4847 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4483 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4515 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4929 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4961 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4993 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5695 msgid "Minimum duration for stopping" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4452 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4484 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4822 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4854 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5556 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4490 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4522 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4936 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4968 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5000 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5702 msgid "The time step at which the route continues" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4458 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4490 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4496 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4528 msgid "Activity displayed for stopped container in GUI and output files " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4511 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4551 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4589 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4623 msgid "The ID of the edge the person trip starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4516 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4554 msgid "The ID of the edge the person trip ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4527 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4561 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4595 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4565 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4599 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4633 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4667 msgid "List of possible vehicle types to take" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4532 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4566 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4600 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4604 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4638 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4672 msgid "" "List of possible traffic modes. Walking is always possible regardless of " "this value" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4537 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4571 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4605 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4609 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4677 msgid "list of vehicle alternatives to take for the person trip" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4556 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4594 msgid "Id of the destination busStop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4585 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4628 +msgid "Id of the destination trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4657 msgid "The name of the junction the person trip starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4590 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4662 msgid "The name of the junction the person trip ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4627 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4651 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4699 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4723 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4741 msgid "The ID of the edge the walk starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4632 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4704 msgid "The ID of the edge the walk ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4656 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4728 msgid "Id of the destination bus stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4688 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4746 +msgid "Id of the destination train stop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4778 msgid "The id of the route to walk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4708 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4798 msgid "The name of the junction the walk starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4713 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4803 msgid "The name of the junction the walk ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4734 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4824 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4854 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4878 msgid "The ID of the edge the ride starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4739 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4829 msgid "The ID of the edge the ride ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4750 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4774 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4840 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4864 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4888 msgid "list of vehicle alternatives to take for the ride" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4769 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4859 msgid "ID of the destination bus stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4828 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4860 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4883 +msgid "ID of the destination train stop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4942 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4974 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5006 msgid "Activity displayed for stopped person in GUI and output files " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4872 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5018 msgid "This vehicle's color" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4878 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5024 msgid "The lane on which thevehicle shall be inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4884 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5030 msgid "The position at which the vehicle shall enter the net" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4890 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5036 msgid "The speed with which the vehicle shall enter the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4896 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5042 msgid "The lane at which the vehicle shall leave the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4902 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5048 msgid "The position at which the vehicle shall leave the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4908 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5054 msgid "The speed with which the vehicle shall leave the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4914 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5060 msgid "" "A string specifying the id of a public transport line which can be used when " "specifying person rides" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4919 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5065 msgid "The number of occupied seats when the vehicle is inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4925 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5071 msgid "The number of occupied container places when the vehicle is inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4931 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5077 msgid "" "The lateral position on the departure lane at which the vehicle shall enter " "the net" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4937 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5083 msgid "" "The lateral position on the arrival lane at which the vehicle shall arrive" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4943 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5089 msgid "Insertion checks" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4956 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5102 msgid "First flow departure time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4968 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4989 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5114 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5135 msgid "probability for emitting a flow each second" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4969 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5115 msgid "(not together with vehsPerHour or period)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4975 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5121 msgid "Number of flows per hour, equally spaced" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4976 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5122 msgid "(not together with period or probability or poisson)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4982 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5128 msgid "Insert equally spaced flows at that period" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4983 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5129 msgid "(not together with vehsPerHour or probability or poisson)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4990 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5136 msgid "(not together with vehsPerHour or period or poisson)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4996 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5142 msgid "" "Insert flow expected vehicles per second with poisson distributed insertion " "rate" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4997 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5143 msgid "(not together with period or vehsPerHour or probability)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5156 msgid "The acceleration ability of vehicles of this type [m/s^2]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5016 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5162 msgid "The deceleration ability of vehicles of this type [m/s^2]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5022 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5168 msgid "" "The apparent deceleration of the vehicle as used by the standard model [m/" "s^2]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5174 msgid "The maximal physically possible deceleration for the vehicle [m/s^2]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5034 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5041 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5180 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5187 msgid "Car-following model parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5047 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5193 msgid "SKRAUSSX parameter 1" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5052 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5198 msgid "SKRAUSSX parameter 2" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5057 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5203 msgid "SKRAUSSX parameter 3" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5062 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5208 msgid "SKRAUSSX parameter 4" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5213 msgid "SKRAUSSX parameter 5" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5072 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5218 msgid "EIDM Look ahead / preview parameter [s]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5078 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5224 msgid "EIDM AP Reaction Time parameter [s]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5084 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5230 msgid "EIDM Wiener Process parameter for the Driving Error [s]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5090 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5236 msgid "EIDM Wiener Process parameter for the Estimation Error [s]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5096 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5242 msgid "EIDM Coolness parameter of the Enhanced IDM [-]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5103 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5249 msgid "EIDM leader speed estimation error parameter [-]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5109 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5255 msgid "EIDM gap estimation error parameter [-]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5115 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5261 msgid "EIDM driving error parameter [-]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5121 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5267 msgid "EIDM maximal jerk parameter [m/s^3]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5273 msgid "" "EIDM maximal negative acceleration between two Action Points (threshold) [m/" "s^2]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5133 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5279 msgid "" "EIDM Time parameter until vehicle reaches amax after startup/driveoff [s]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5139 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5285 msgid "EIDM Flatness parameter of startup/driveoff curve [-]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5145 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5291 msgid "EIDM Shift parameter of startup/driveoff curve [-]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5151 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5297 msgid "" "EIDM parameter if model shall include vehicle dynamics into the acceleration " "calculation [0/1]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5157 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5303 msgid "" "EIDM parameter how many vehicles are taken into the preview calculation of " "the driver (at least always 1!) [-]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5163 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5169 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5309 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5315 msgid "Peter Wagner 2009 parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5175 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5181 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5321 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5327 msgid "IDMM parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5187 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5193 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5199 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5205 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5211 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5217 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5223 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5229 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5235 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5333 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5339 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5345 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5351 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5363 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5381 msgid "W99 parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5241 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5246 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5387 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5392 msgid "Wiedemann parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5251 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5397 msgid "MinGap factor parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5256 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5402 msgid "K parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5261 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5407 msgid "Kerner Phi parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5266 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5412 msgid "IDM Delta parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5271 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5417 msgid "IDM Stepping parameter" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5276 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5422 msgid "Train Types" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5289 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5435 msgid "" "Minimum distance to pedestrians that are walking towards the conflict point " "with the ego vehicle." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5295 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5441 msgid "" "The accumulated waiting time after which a vehicle will drive onto an " "intersection even though this might cause jamming." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5301 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5447 msgid "" "This value causes vehicles to violate a yellow light if the duration of the " "yellow phase is lower than the given threshold." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5453 msgid "" "This value causes vehicles to violate a red light if the duration of the red " "phase is lower than the given threshold." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5459 msgid "" "This value causes vehicles affected by jmDriveAfterRedTime to slow down when " "violating a red light." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5319 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5465 msgid "" "This value causes vehicles to ignore foe vehicles that have right-of-way " "with the given probability." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5325 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5471 msgid "This value is used in conjunction with jmIgnoreFoeProb." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5326 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5472 msgid "" "Only vehicles with a speed below or equal to the given value may be ignored." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5332 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5478 msgid "" "This value configures driving imperfection (dawdling) while passing a minor " "link." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5338 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5484 msgid "" "This value defines the minimum time gap when passing ahead of a prioritized " "vehicle. " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5344 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5490 msgid "Willingess of drivers to impede vehicles with higher priority" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5503 msgid "" "The eagerness for performing strategic lane changing. Higher values result " "in earlier lane-changing." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5363 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5509 msgid "" "The willingness for performing cooperative lane changing. Lower values " "result in reduced cooperation." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5515 msgid "" "The eagerness for performing lane changing to gain speed. Higher values " "result in more lane-changing." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5521 msgid "" "The eagerness for following the obligation to keep right. Higher values " "result in earlier lane-changing." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5381 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5527 msgid "" "The eagerness for using the configured lateral alignment within the lane." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5382 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5528 msgid "" "Higher values result in increased willingness to sacrifice speed for " "alignment." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5388 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5534 msgid "" "The eagerness for overtaking through the opposite-direction lane. Higher " "values result in more lane-changing." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5394 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5540 msgid "Willingness to encroach laterally on other drivers." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5400 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5546 msgid "" "Minimum lateral gap when encroaching laterally on other drives (alternative " "way to define lcPushy)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5406 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5552 msgid "Willingness to accept lower front and rear gaps on the target lane." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5412 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5558 msgid "Dynamic factor for modifying lcAssertive and lcPushy." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5418 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5564 msgid "" "Time to reach maximum impatience (of 1). Impatience grows whenever a lane-" "change manoeuvre is blocked." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5424 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5570 msgid "Maximum lateral acceleration per second." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5430 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5576 msgid "" "Factor for configuring the strategic lookahead distance when a change to the " "left is necessary (relative to right lookahead)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5436 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5582 msgid "" "Factor for configuring the threshold asymmetry when changing to the left or " "to the right for speed gain." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5442 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5588 msgid "Upper bound on lateral speed when standing." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5594 msgid "" "Upper bound on lateral speed while moving computed as lcMaxSpeedLatStanding " "+ lcMaxSpeedLatFactor * getSpeed()" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5454 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5600 msgid "" "Distance to an upcoming turn on the vehicles route, below which the alignment" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5455 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5601 msgid "should be dynamically adapted to match the turn direction." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5461 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5607 msgid "The probability for violating rules gainst overtaking on the right." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5467 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5613 msgid "Time threshold for the willingness to change right." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5473 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5619 msgid "" "Speed difference factor for the eagerness of overtaking a neighbor vehicle " "before changing lanes (threshold = factor*speedlimit)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5495 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5641 msgid "The name of the person" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5500 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5646 msgid "The id of the person type to use for this person" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5506 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5652 msgid "This person's color" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5512 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5658 msgid "The position at which the person shall enter the net" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5525 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5671 msgid "The name of the container" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5530 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5676 msgid "The id of the container type to use for this container" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5536 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5682 msgid "This container's color" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5562 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5708 msgid "" "If set to a non-negative time value, then the stop duration can be extended " "at most by the extension value in seconds" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5568 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5714 msgid "Whether a person or container or bth may end the stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5721 msgid "List of elements that must board the vehicle before it may continue" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5580 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5726 msgid "List of elements that can board the vehicle before it may continue" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5585 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5731 msgid "Whether the vehicle stops on the road or beside" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5592 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5738 msgid "Activity displayed for stopped person in GUI and output files" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5597 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5743 msgid "" "Parameter to be applied to the vehicle to track the trip id within a " "cyclical public transport route" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5602 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5748 msgid "" "New line attribute to be set on the vehicle when reaching this stop (for " "cyclical public transport route)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5608 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5754 msgid "Speed to be kept while driving between startPos and endPos" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5614 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5760 msgid "" "Whether the stop may be skipped if no passengers wants to embark or disembark" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5621 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5767 msgid "" "transfer time if there shall be a jump from this stop to the next route edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5789 msgid "Data set ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5659 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5805 msgid "Interval ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5665 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5811 msgid "Data interval begin time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5671 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5817 msgid "Data interval end time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5687 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5833 msgid "edge ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5701 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5847 msgid "The ID of the edge the edgeRel starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5706 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5852 msgid "The ID of the edge the edgeRel ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5720 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5866 msgid "The name of the TAZ the TAZRel starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5725 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5871 msgid "The name of the TAZ the TAZRel ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5760 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5906 msgid "The id of this set of measurements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5765 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5911 msgid "The path to the output file. The path may be relative" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5775 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5921 msgid "" "The time to start writing. If not given, the simulation's begin is used." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5780 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5926 msgid "The time to end writing. If not given the simulation's end is used." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5785 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5931 msgid "" "If set to true, edges/lanes which were not use by a vehicle during this " "period will not be written" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5792 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5938 msgid "If set, junction internal edges/lanes will be written as well" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5798 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5944 msgid "" "The maximum travel time in seconds to write if only very small movements " "occur" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5804 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5950 msgid "" "Consider an edge/lane unused if it has at most this many sampled seconds" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5810 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5956 msgid "The maximum speed to consider a vehicle halting;" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5816 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5962 msgid "space separated list of vehicle type ids to consider" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5821 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5967 msgid "" "whether aggregation should be performed over all vehicles that entered the " "edge/lane in the aggregation interval" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5827 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5973 msgid "" "Whether pedestrians shall be recorded instead of vehicles. Allowed value is " "walk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5832 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5978 msgid "List of attribute names that shall be written" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5837 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5983 msgid "Restrict output to the given list of edge ids" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5842 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5988 msgid "Restrict output to the given the list of edges given in file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5847 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5993 msgid "" "Whether the traffic statistic of all edges shall be aggregated into a single " "value" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEHierarchicalElement.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\GNEHierarchicalElement.cpp:421 msgid "Some child meanData were lost during sorting" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:96 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:96 msgid "" "element must be at least networkElement, additional, TAZ, demandElement, " "dataElement or meanData" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:100 msgid "" "element can be only a networkElement, additional, demandElement, dataElement " "or meanData at the same time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:104 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:104 msgid "element can be only a shape, TAZ or wire element at the same time" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:108 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:108 msgid "" "If attributes mask the start and end position, both attributes have to be " "defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:134 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:134 msgid "Attributes aren't combinables" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:136 msgid "allow need a disallow attribute in the same tag" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:138 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:138 msgid "disallow need an allow attribute in the same tag" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:152 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:152 #, c-format msgid "attribute '%' doesn't have a default value" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:158 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:158 #, c-format msgid "Attribute '%' not defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:165 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:165 #, c-format msgid "Maximum number of attributes for tag % exceeded" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:170 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:170 #, c-format msgid "Attribute '%' already inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:207 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:207 #, c-format msgid "Attribute '%' doesn't exist" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAccess.cpp:173 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEEntryExitDetector.cpp:97 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEInductionLoopDetector.cpp:115 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEInstantInductionLoopDetector.cpp:111 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:174 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:190 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:197 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:136 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:143 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:201 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:132 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:137 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAccess.cpp:173 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEEntryExitDetector.cpp:97 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEInductionLoopDetector.cpp:115 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEInstantInductionLoopDetector.cpp:111 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:174 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:190 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:197 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:143 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:201 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:132 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:137 msgid " > lanes's length" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:148 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:149 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:146 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:128 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:129 -msgid "Copy " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:148 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:146 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:128 -msgid " name to clipboard" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZSourceSink.cpp:146 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:128 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:129 +#, c-format +msgid "Copy % name to clipboard" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:149 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:129 -msgid " typed name to clipboard" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:148 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZSourceSink.cpp:147 +msgid "Copy % typed name to clipboard" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:156 msgid "Open " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:156 msgid " Dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:164 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:174 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:164 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:174 msgid "Cursor position over additional shape: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:168 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:168 msgid "Cursor position over lane: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:178 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:178 msgid "Mouse position over edge: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:181 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:139 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:181 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:139 msgid "Cursor position in view: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:398 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:398 msgid "Invalid number of edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:104 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:104 msgid "add bus stop '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:148 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:148 msgid "add train stop '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:186 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:186 msgid "" "Could not build access in netedit; busStop parent already owns an access in " "the edge '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:188 -msgid "Could not build access in netedit; The lane '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:188 -msgid "' doesn't support pedestrians" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:188 +#, c-format +msgid "" +"Could not build access in netedit; The lane '%' doesn't support pedestrians" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:194 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:194 msgid "add access in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:235 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:235 msgid "add container stop '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:279 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:279 msgid "add charging station '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:322 -msgid "Could not build parking area with ID '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:322 -msgid "' in netedit; Invalid departPos over lane." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:323 +#, c-format +msgid "" +"Could not build parking area with ID '%' in netedit; Invalid departPos over " +"lane." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:330 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:331 msgid "add parking area '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:352 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:353 msgid "" "Could not build parking space in netedit; attribute width cannot be parse to " "float." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:354 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:355 msgid "" "Could not build parking space in netedit; attribute length cannot be parse " "to float." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:356 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:357 msgid "" "Could not build parking space in netedit; attribute angle cannot be parse to " "float." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:377 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:378 msgid "add parking space in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:422 msgid "add induction loop '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:461 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:519 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:528 -msgid "Could not build lane area detector with ID '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:461 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:528 -msgid "' in netedit; invalid traffic light ID." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:462 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:529 +#, c-format +msgid "" +"Could not build lane area detector with ID '%' in netedit; invalid traffic " +"light ID." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:486 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:547 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:487 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:548 msgid "add lane area detector '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:519 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1543 -msgid "' in netedit; Lanes aren't consecutives." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:520 +#, c-format +msgid "" +"Could not build lane area detector with ID '%' in netedit; Lanes aren't " +"consecutives." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:592 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:593 msgid "add entry-exit detector '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:627 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:628 msgid "add entry detector in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:662 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:663 msgid "add exit detector in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:699 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:700 msgid "add instant induction loop '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:749 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:750 msgid "add lane calibrator '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:803 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:804 msgid "add calibrator '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:844 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:845 msgid "add calibrator flow in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:900 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:901 msgid "add rerouter '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:939 -msgid "Could not build interval with ID '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:939 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1244 -msgid "' in netedit; begin is greather than end." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:940 +#, c-format +msgid "" +"Could not build interval with ID '%' in netedit; begin is greather than end." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:947 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:948 msgid "add rerouter interval in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "Could not build interval with begin '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "' in '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "' due overlapping." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:957 +#, c-format +msgid "" +"Could not build interval with begin '%' and end '%' in '%' due overlapping." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:978 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:979 msgid "add closing lane reroute in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1006 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1007 msgid "add closing reroute in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1033 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1034 msgid "add dest prob reroute in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1061 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1062 msgid "add parking area reroute in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1089 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1090 msgid "add route prob reroute in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1126 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1127 msgid "add route probe '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1172 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1173 msgid "add Variable Speed Sign '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1213 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1214 msgid "add VSS Step in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1244 -msgid "Could not build Vaporizer with ID '" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1245 +#, c-format +msgid "" +"Could not build Vaporizer with ID '%' in netedit; begin is greather than end." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1250 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1251 msgid "add vaporizer in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1305 -msgid "Could not build TAZ with ID '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1305 -msgid "' in netedit; Invalid Shape." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1306 +#, c-format +msgid "Could not build TAZ with ID '%' in netedit; Invalid Shape." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1316 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1317 msgid "add TAZ '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1377 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1471 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1378 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1472 msgid "add TAZ Sink in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1400 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1449 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1401 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1450 msgid "add TAZ Source in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1411 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1412 msgid "update TAZ Source in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1482 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1483 msgid "update TAZ Sink in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1511 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1512 msgid "add taction substation '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1543 -msgid "Could not build overhead wire with ID '" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1544 +#, c-format +msgid "" +"Could not build overhead wire with ID '%' in netedit; Lanes aren't " +"consecutives." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1555 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1556 msgid "add overhead wire '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1604 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1605 msgid "add polygon '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1637 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1680 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1719 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1638 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1681 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1720 msgid "add POI '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1711 -msgid "Could not build POI with ID '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1711 -msgid "' in netedit; Network requires a geo projection." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1925 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:116 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -msgid "Could not build " +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1712 +#, c-format +msgid "Could not build POI with ID '%' in netedit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -msgid " with ID '" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1712 +msgid "Network requires a geo projection." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -msgid "' in netedit; ID contains invalid characters." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1908 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1914 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1920 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1932 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1938 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1944 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1950 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:245 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:257 +msgid "Could not build % with ID '%' in netedit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -msgid "' in netedit; Invalid position over lane." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1908 +msgid "ID contains invalid characters." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -msgid "' in netedit; declared twice." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1914 +msgid "Invalid position over lane." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1925 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -msgid " doesn't exist." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1920 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:245 +msgid "Declared twice." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -msgid "' in netedit; attribute " +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1926 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2005 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2023 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:251 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:116 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:132 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2198 +#, c-format +msgid "Could not build % in netedit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -msgid " cannot be negative." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1926 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2005 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2023 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:251 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:257 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2198 +#, c-format +msgid "% doesn't exist." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -msgid "' in netedit; list of VTypes isn't valid." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1932 +#, c-format +msgid "Attribute % cannot be negative." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -msgid "' in netedit; filename is invalid." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1938 +msgid "List of VTypes isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -msgid "' in netedit; list of lanes isn't valid." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1944 +msgid "Filename is invalid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -msgid " in netedit; " +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1950 +msgid "List of lanes isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:194 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:194 msgid "Both edges and lanes aren't defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:238 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:480 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:238 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:480 msgid "Both myEdge and myLane aren't defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibratorFlow.cpp:94 -msgid "calibratorFlow of calibrator '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibratorFlow.cpp:95 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibratorFlow.cpp:94 +#, c-format msgid "" -"' cannot be written. Either type or vehsPerHour or speed must be enabled" +"calibratorFlow of calibrator '%' cannot be written. Either type or " +"vehsPerHour or speed must be enabled" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:179 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:125 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:179 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:125 msgid "lanes aren't consecutives" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:183 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:129 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:183 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:129 msgid "lanes aren't connected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:202 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:141 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:202 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:141 msgid " and " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:115 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:115 msgid "' needs at least one entry and one exit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:317 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:317 msgid "An entry-exit detector needs at least one entry detector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:320 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:320 msgid "An entry-exit detector needs at least one exit detector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:319 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:319 msgid "Release from lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:323 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:323 msgid "Attach to nearest lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:214 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:214 msgid "Simplify Shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:214 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:214 msgid "Replace current shape with a rectangle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:220 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:220 msgid "Open shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:220 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:220 msgid "Open polygon's shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:222 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:65 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:222 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:66 msgid "Close shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:222 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:222 msgid "Close polygon's shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:224 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:224 msgid "Select elements within polygon" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:224 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:224 msgid "Select elements within polygon boundary" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:234 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:234 msgid "Remove geometry point" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:234 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:234 msgid "Remove geometry point under mouse" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:235 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:235 msgid "Set first geometry point" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:447 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:447 msgid "Number of remaining points insufficient" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:474 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:474 msgid "Polygon already opened" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:495 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:495 msgid "Polygon already closed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:506 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:506 msgid "Selected point must be different of the first point" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:571 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:571 msgid "Polygon already simplified" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZ.cpp:282 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZ.cpp:282 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:715 msgid "Set custom Geometry Point" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:62 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:62 msgid "add data set" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:87 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:87 msgid "add data set and data interval" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:102 msgid "add data interval" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:128 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:165 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:130 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:167 msgid "add edge rel" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:205 -msgid "There is already a TAZ rel defined between '" +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:207 +msgid "There is already a TAZ rel defined between '%' and '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:207 -msgid "There is already a TAZ rel defined in '" +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:209 +msgid "There is already a TAZ rel defined in '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:211 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:222 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:213 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:224 msgid "add TAZ rel" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1511 -msgid "' doesn't exist." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataInterval.cpp:173 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataInterval.cpp:173 msgid "GenericData was already inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataInterval.cpp:199 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataInterval.cpp:199 msgid "GenericData wasn't previously inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:214 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:214 msgid "DataInterval was already inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:231 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:255 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:231 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:255 msgid "DataInterval wasn't previously inserted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:316 -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdgeType.cpp:155 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:136 +msgid "Open % Dialog" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:316 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdgeType.cpp:155 msgid "Invalid index" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:64 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:64 msgid "Could not build meanDataEdge; " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:64 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:93 -msgid " already exists" +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:64 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:93 +#, c-format +msgid "% already exists" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:70 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:70 msgid "add meanDataEdge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:93 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:93 msgid "Could not build meanDataLane; " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:99 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:99 msgid "add meanDataLane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:116 -msgid " in netedit; edge doesn't exist." +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:116 +msgid "Edge doesn't exist." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -msgid " in netedit; attribute '" +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:132 +#, c-format +msgid "Attribute '%' doesn't exist." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEPersonTrip.cpp:306 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEPersonTrip.cpp:317 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEPersonTrip.cpp:312 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEPersonTrip.cpp:323 msgid "This personTrip use junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:71 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:100 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1499 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1523 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1535 -msgid "There is another " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:71 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:100 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1499 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1523 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1535 -msgid " with the same ID='" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:76 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:126 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:161 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:206 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:258 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:299 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:345 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:389 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:436 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:480 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:516 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:547 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:593 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:609 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:625 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:677 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:694 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:709 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:725 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:741 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:778 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:794 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:827 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:858 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:893 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:909 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:949 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:966 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:982 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1107 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1122 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1142 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:71 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1608 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1632 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1644 +msgid "There is another % with the same ID='%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:76 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:126 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:152 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:197 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:250 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:291 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:337 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:381 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:428 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:472 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:508 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:539 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:591 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:607 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:623 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:639 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:697 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:714 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:729 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:745 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:761 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:777 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:820 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:836 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:852 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:885 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:916 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:951 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:967 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1007 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1024 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1040 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1189 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1209 msgid "add " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:102 -msgid " need at least one " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:108 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:118 -msgid " with id '" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:102 +msgid "% needs at least one %" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:108 -msgid "' doesn't exist in " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:108 +msgid "% with id '%' doesn't exist in % '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:115 -msgid "Invalid definition for " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:115 +msgid "Invalid definition for % in % '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:115 -msgid " in " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:118 +msgid "% with id '%' cannot be created in % '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:118 -msgid "' cannot be created in " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:192 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:244 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:285 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:333 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:377 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:424 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:468 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:508 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:539 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:819 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:850 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:183 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:236 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:277 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:325 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:369 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:416 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:460 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:500 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:531 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:877 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:908 msgid "VType distributions currently unsupported in netedit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:194 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:246 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:335 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:379 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:426 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:470 -msgid "Invalid vehicle type '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:194 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:246 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:290 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:335 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:379 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:426 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:470 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:510 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:541 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:821 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:852 -msgid "' used in " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:197 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:199 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:251 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:253 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:338 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:340 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:382 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:384 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:429 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:431 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:473 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:475 -msgid " used in " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:238 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:279 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:327 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:371 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:418 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:462 +msgid "Invalid vehicle type '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:188 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:243 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:284 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:330 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:374 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:465 +msgid "Invalid % used in % '%'. % is greater than number of lanes" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:190 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:245 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:286 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:332 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:376 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:423 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:467 +msgid "Invalid % used in % '%'. % is greater than vType %" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:231 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:223 msgid "netedit doesn't support route distributions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:290 -msgid "Invalid route '" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:241 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:282 +msgid "Invalid route '%' used in % '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:251 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:253 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:338 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:340 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:382 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:384 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:429 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:431 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:473 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:475 -msgid "Invalid " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:502 +msgid "Invalid person type '%' used in % '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -msgid " is greater than number of lanes" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:533 +msgid "Invalid personFlow type '%' used in % '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -msgid " is greater than vType" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:879 +msgid "Invalid container type '%' used in % '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:510 -msgid "Invalid person type '" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:910 +msgid "Invalid containerFlow type '%' used in % '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:541 -msgid "Invalid personFlow type '" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1102 +msgid "Containers don't support stops at busStops or trainStops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1039 -msgid "Containers don't support stops at busStops" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1047 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1110 msgid "Persons don't support stops at containerStops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1055 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1118 msgid "Persons don't support stops at chargingStations" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1058 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1121 msgid "Containers don't support stops at chargingStations" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1066 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1129 msgid "Persons don't support stops at parkingAreas" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1069 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1132 msgid "Containers don't support stops at parkingAreas" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1079 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1142 msgid "vehicles don't support stops at edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1092 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1155 msgid "A stop must be defined either over a stoppingPlace, a edge or a lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1094 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1157 msgid "A stop requires only a stoppingPlace, edge or lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1214 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1282 msgid "A person trip from edge to edge needs two edges edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1224 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1292 msgid "A person trip from edge to busStop needs one edge and one busStop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1234 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1302 +msgid "A person trip from edge to trainStop needs one edge and one trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1312 msgid "A person trip from junction to junction needs two junctions junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1245 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1404 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1425 -msgid "A ride from busStop to edge needs a busStop and an edge" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1323 +msgid "A walk to edge needs a busStop and an edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1255 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1414 -msgid "A transport from busStop to busStop needs two busStops" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1333 +msgid "A walk to busStop needs two busStops" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1343 +msgid "A walk to trainStop needs two trainStops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1265 -msgid "A transport with edges attribute needs a list of edges" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1353 +msgid "A walk with edges needs a list of edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1275 -msgid "A route transport needs a route" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1363 +msgid "A route walk needs a route" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1285 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1373 msgid "A ride from busStop to junction needs a busStop and an junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1296 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1384 msgid "A ride from edge to edge needs two edges edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1306 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1394 msgid "A ride from edge to busStop needs one edge and one busStop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1320 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1459 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1404 +msgid "A ride from edge to trainStop needs one edge and one trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1418 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1568 msgid "A stop has to be placed over an edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1331 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1470 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1429 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1579 msgid "A stop has to be placed over a busStop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1435 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1440 +msgid "A stop has to be placed over a trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1513 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1534 +msgid "A ride from busStop to edge needs a busStop and an edge" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1523 +msgid "A transport from busStop to busStop needs two busStops" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1544 msgid "A tranship from busStop to busStop needs two busStops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1445 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1554 msgid "A tranship with edges attribute needs a list of edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1511 -msgid "Via edge '" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1620 +#, c-format +msgid "Via edge '%' doesn't exist." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEStop.cpp:443 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEStop.cpp:446 msgid "Invalid Stop parent" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEStop.cpp:458 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEStop.cpp:461 msgid "Invalid parent" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEVehicle.cpp:645 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEVehicle.cpp:645 msgid "Invalid vehicle tag" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEWalk.cpp:331 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEWalk.cpp:346 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEWalk.cpp:336 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEWalk.cpp:351 msgid "This walk use junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEConnection.cpp:679 +#: D:\Repos\sumo/src\netedit\elements\network\GNEConnection.cpp:679 msgid "Could not set attribute '%' (tls is broken)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdge.cpp:2180 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdge.cpp:2180 msgid "Could not compute smooth shape for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdge.cpp:2198 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdge.cpp:2198 msgid "Could not compute smooth elevation for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEInternalLane.cpp:241 +#: D:\Repos\sumo/src\netedit\elements\network\GNEInternalLane.cpp:241 msgid "invalid link state='%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEJunction.cpp:335 +#: D:\Repos\sumo/src\netedit\elements\network\GNEJunction.cpp:335 msgid "Reset junction shapes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:470 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:471 msgid "Unexpected LinkState '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:810 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:672 +msgid "Copy parent edge name to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:681 +msgid "Remove Lane From Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:683 +msgid "Add Lane To Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:687 +msgid "Remove Edge From Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:689 +msgid "Add Edge To Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:706 +msgid "Reset edge end points" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:733 +msgid "Select state for all links from this edge:" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:743 +msgid "Additional options available in 'Inspect Mode'" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:758 +msgid "Shape pos: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:759 +msgid "Length pos: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:761 +msgid "Distance: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:763 +msgid "Height: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:764 +msgid "Angle: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:811 msgid "Lane Parametric Length cannot be never 0" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:972 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:973 msgid "Opposite lane '%' does not connect the same nodes as edge '%'!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:49 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:738 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1846 +#, c-format +msgid "Edge operations (% selected)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1848 +msgid "Edge operations" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1851 +msgid "Split edge here" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1852 +msgid "Split edge in both directions here (no simmetric opposite edge)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1857 +msgid "Split edge in both directions here (no opposite edge)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1864 +msgid "Split edge in both directions here" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1868 +msgid "Set geometry endpoint here (shift-click)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1872 +msgid "Restore both geometry endpoints" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1874 +msgid "Restore geometry endpoints of all selected edges" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1877 +msgid "Restore geometry endpoint (shift-click)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1879 +msgid "Reverse %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1880 +msgid "Add reverse direction for %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1884 +msgid "Add reverse disconnected direction for %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1885 +msgid "Reset lengths for %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1886 +msgid "Straighten %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1887 +msgid "Smooth %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1888 +msgid "Straighten elevation of %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1889 +msgid "Smooth elevation of %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1936 +#, c-format +msgid "Lane operations (% selected)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1938 +msgid "Lane operations" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1940 +msgid "Duplicate lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1941 +msgid "Set custom lane shape" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1942 +msgid "Reset custom shape" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1946 +msgid "Reset opposite lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1958 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1969 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1978 +msgid "Sidewalk" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1959 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1971 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1979 +msgid "Bike lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1960 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1973 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1980 +msgid "Bus lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1963 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1975 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1981 +msgid "Green verge" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1965 +msgid "Green verge (front)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1966 +msgid "Green verge (back)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1983 +msgid "Add restricted %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1984 +msgid "Remove restricted %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1985 +msgid "Transform to restricted %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2026 +#, c-format +msgid "Template operations (% selected)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2028 +msgid "Template operations" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2031 +msgid "Use edge as template" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2032 +msgid "Apply template" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2047 +msgid "Select reachable" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2052 +msgid "Select reachable (compute junctions)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:746 msgid "Internal attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:175 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:177 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:176 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:178 msgid "Invalid input parameter of " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:60 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:61 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:63 msgid "name" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:64 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:65 msgid "button" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:70 msgid "Disabled" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:476 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:477 msgid "Unsupported additional ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:55 msgid "Consecutive lane selector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:59 -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:411 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:59 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:411 msgid "No lanes selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:61 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:61 msgid "Finish path creation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:64 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:64 msgid "Abort path creation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:67 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:67 msgid "Remove last lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:70 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:70 msgid "Show candidate lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:73 msgid "-BACKSPACE: undo click" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:73 msgid "-ESC: Abort path creation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:134 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:134 msgid "Invalid lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:151 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:151 msgid "Lane path needs at least two lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:171 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:393 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:469 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:482 msgid "route creation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:406 msgid "- Selected lanes: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:407 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:943 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:407 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:959 msgid "- Length: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:48 msgid "Parent " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:65 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:65 msgid "Parent element" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:108 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:108 msgid "select item..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:110 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:110 msgid "-Select an item in the list or" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:110 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:110 msgid "click over an element in view" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:133 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:133 msgid "select sub-item..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:136 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:136 msgid "-Clicked over multiple" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:137 msgid "elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:138 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:138 msgid " - Select an item in the" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:139 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:139 msgid " list or click over an" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:140 msgid " element in view" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:333 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:337 msgid "Selected item '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:333 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:337 msgid "' in DemandElementSelector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:346 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:350 msgid "Selected invalid item in DemandElementSelector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:49 msgid "Drawing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:52 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:53 msgid "Start drawing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:53 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:54 msgid "Stop drawing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:54 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:55 msgid "Abort drawing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:58 -msgid "- 'Start drawing' or ENTER" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:59 -msgid " to create shape." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:60 -msgid "- 'Stop drawing' or ENTER to" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:61 -msgid " finish shape creation." +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:59 +msgid "'Start drawing' or ENTER to create a shape." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:62 -msgid "- 'Abort drawing' or ESC to" +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:60 +msgid "'Stop drawing' or ENTER to finish shape creation." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:63 -msgid " abort shape creation." +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:61 +msgid "'Abort drawing' or ESC to abort shape creation." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:64 -msgid "- 'Shift + Click' to remove" +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:62 +msgid "'Shift + Click' to remove the last inserted point." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:65 -msgid " last inserted point." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:134 msgid "A new point cannot be added if drawing wasn't started" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:34 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:34 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:614 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1402 -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:101 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:339 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:619 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:535 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:85 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:34 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:34 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:614 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1406 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:101 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:323 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:621 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:536 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:85 msgid "Information" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:38 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:38 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:38 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:38 msgid " edge candidate" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:42 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:42 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:42 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:42 msgid " last edge selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:45 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:45 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:45 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:45 msgid " edge selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:48 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:51 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:51 msgid " edge disconnected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:62 msgid "Hierarchy" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:211 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:211 #, c-format msgid "Default Vehicle Type '%' cannot be removed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:316 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:84 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:316 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:276 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:84 msgid "Center" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:323 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:1252 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:323 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:1089 msgid "Inspect" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:324 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:259 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:96 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:440 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1356 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:324 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:98 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:442 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1384 msgid "Delete" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:397 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:416 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:477 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:397 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:477 msgid " origin" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:398 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:417 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:478 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:398 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:417 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:478 msgid " destination" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:506 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:632 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:706 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:506 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:632 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:706 msgid " additionals..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:520 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:583 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:646 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:720 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:520 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:583 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:646 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:720 msgid " demand elements..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:534 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:597 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:660 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:738 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:597 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:660 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:738 msgid " edges..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:548 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:611 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:674 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:756 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:548 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:611 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:674 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:756 msgid " lanes..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:569 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:569 msgid " TAZElements..." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:815 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:815 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:911 msgid "Data elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:841 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:841 msgid "Incomings" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:851 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:851 msgid "Outgoing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:890 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:65 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1325 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:890 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:65 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1322 msgid "Edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:890 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:890 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:71 msgid "Lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:51 msgid "Flow attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:170 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:469 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:596 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:470 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:597 msgid "rate" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:343 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:344 msgid "change multiple flow attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:369 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:370 msgid "enable multiple flow attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:385 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:386 msgid "disable multiple flow attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:540 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:568 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:541 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:569 msgid "different: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:185 msgid "Parameters of " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:195 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:195 msgid "Attribute" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:196 msgid "Description" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:197 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:197 msgid "Definition" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 msgid "Opening HelpAttributes dialog for tag '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 msgid "' showing " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 msgid " attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:247 msgid "Closing HelpAttributes dialog for tag '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:319 -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:417 -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:494 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:319 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:418 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:495 msgid "Scale: Min -> Max" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:159 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:160 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:168 msgid "Inspect vehicle " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:171 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:172 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:180 msgid "Open dialog for editing color" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:176 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:177 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:248 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:249 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:184 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:256 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:257 msgid "Open dialog for editing allowed vClasses" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:472 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:491 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:607 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:480 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:499 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:615 msgid "change multiple attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:610 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:618 msgid "change " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:610 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:618 msgid " attribute" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid "Value '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid "' for attribute " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid " of " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid " isn't valid" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:681 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:689 msgid "enable attribute '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:689 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:697 msgid "disable attribute '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:963 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:971 msgid "Extended attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:966 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:974 msgid "Open attributes editor" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:997 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1005 msgid "Attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:1001 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1009 msgid "Edit attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:49 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:97 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1155 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1164 +msgid "Parameters" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:93 msgid "Netedit attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:55 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:195 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:196 msgid "reference left" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:56 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:201 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:57 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:201 msgid "reference right" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:57 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:206 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:206 msgid "reference center" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:70 msgid "Center view" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:138 msgid "Current selected reference point isn't valid" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:231 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:231 msgid "- Reference point: Mark the initial position of the additional element." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:232 msgid "" " Example: If you want to create a busStop with a length of 30 in the point " "100 of the lane:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:233 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:233 msgid " - Reference Left will create it with startPos = 70 and endPos = 100." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:234 msgid "" " - Reference Right will create it with startPos = 100 and endPos = 130." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:235 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:235 msgid "" " - Reference Center will create it with startPos = 85 and endPos = 115." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:236 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:236 msgid "" "- Block movement: if is enabled, the created additional element will be " "blocked. i.e. cannot be moved with" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:237 msgid " the mouse. This option can be modified inspecting element." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:238 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:238 msgid "- Center view: if is enabled, view will be center over created element." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:49 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:49 msgid "NetworkElements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:56 msgid "Use selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:63 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:63 msgid "-Click over an edge to select" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:69 msgid "-Click over an lane to select" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:74 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:183 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:183 msgid "Invalid NetworkElementType" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:52 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:52 msgid "Overlapped elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:62 msgid "Overlapped " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:275 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:275 msgid "GEO attributes Help" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:278 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:278 msgid " - Click in the same position" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:279 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:279 msgid " for inspect next element" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:280 msgid " - Shift + Click in the same" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:281 msgid " position for inspect" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:282 msgid " previous element" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:145 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:145 msgid "Route creator" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:152 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:948 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1156 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:964 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1153 msgid "No edges selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:154 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:154 msgid "Use last route" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:157 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:157 msgid "Finish route creation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:160 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:160 msgid "Abort route creation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:163 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:163 msgid "Remove last edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:166 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:166 msgid "Show candidate edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:374 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:387 msgid "Double junctions aren't allowed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:382 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:395 msgid "Only two junctions are allowed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:421 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:434 msgid "Double edges aren't allowed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:431 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:444 msgid "Only consecutives edges are allowed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:440 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:453 msgid "Only two edges are allowed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:449 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:462 msgid "Invalid edge (SHIFT + click to add an invalid vClass edge)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:456 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:469 msgid "Invalid edge (CONTROL + click to add a disconnected edge)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:531 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:547 msgid "first select an edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:941 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:957 msgid "- Selected edges: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:942 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:958 msgid "- Path edges: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:944 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:960 msgid "- Average speed: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:48 msgid " edge conflict (vClass)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:36 +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:36 msgid "Parent selector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:39 +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:39 msgid "No element selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:82 +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:82 msgid "Parent type: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:219 -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:230 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:219 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:230 msgid "Invalid row or column" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:254 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:254 msgid "Invalid row" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:264 -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:264 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:274 msgid "Invalid column" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:609 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:609 msgid "Accumulated: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:679 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:679 msgid "Add phase" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:679 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:679 msgid "Add new phase." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:684 msgid "Default phase" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:684 msgid "Add default phase." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:689 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:689 msgid "Duplicate phase" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:689 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:689 msgid "Duplicate this phase." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:694 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:694 msgid "Red phase" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:694 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:694 msgid "Add red phase." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:699 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:699 msgid "Yellow phase" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:699 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:699 msgid "Add yellow phase." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:704 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:704 msgid "Green phase" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:704 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:704 msgid "Add green phase." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:709 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:709 msgid "Green priority phase" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:709 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:709 msgid "Add green priority phase." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:910 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:910 msgid "Cannot be parsed to double" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:922 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:922 msgid "Tooltips only for TextFields" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1252 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1252 msgid "Delete phase" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1252 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1252 msgid "Delete this phase." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1261 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1261 msgid "Move phase up" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1261 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1261 msgid "Move this phase up." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1270 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1270 msgid "Move phase down" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1270 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1270 msgid "Move this phase down." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:89 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:89 msgid "Element" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:152 msgid "network elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:155 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:155 msgid "Additional elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:158 msgid "Shape elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:161 msgid "TAZ elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:164 msgid "Wire elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:167 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1833 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:167 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1835 msgid "Vehicles" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:170 msgid "Stops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:173 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1916 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:173 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1918 msgid "Persons" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:176 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:176 msgid "Person plans" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:182 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:182 msgid "Container plans" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:185 msgid "Person trips" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:188 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:188 msgid "Walks" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:191 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:191 msgid "Rides" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:194 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:194 msgid "Person stops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:64 msgid "Delete geometry points" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:230 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:238 msgid "Protect Elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:240 +msgid "Protect all" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:240 +msgid "Protect all elements" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:242 +msgid "Unprotect all" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:242 +msgid "Unprotect all elements" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:244 msgid "Protect additional elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:235 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:247 msgid "Protect TAZ elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:238 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:250 msgid "Protect demand elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:241 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:253 msgid "Protect data elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEElementSet.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\common\GNEElementSet.cpp:48 msgid "Element Set" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEElementSet.cpp:75 +#: D:\Repos\sumo/src\netedit\frames\common\GNEElementSet.cpp:75 msgid "Invalid supermode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:100 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:96 msgid "Mark as front element" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:181 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:310 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:177 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:306 msgid "Set new parent" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:372 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:368 msgid "" "- Mark as front element: Mark element as front element (Will be drawn over " "all other elements)\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:373 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:369 msgid "- Block movement: disable movement in move mode\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:374 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:370 msgid "" "- Block shape: Disable moving of shape's vertices and edges. Entire shape " "can be moved'.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:375 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:371 msgid "" "- Close shape: Add or remove the last vertex with the same position of first " "edge'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:402 msgid "GEO Attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:470 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:90 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:466 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:91 msgid "No geo-conversion defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:551 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:547 msgid " SUMO uses the World Geodetic System 84 (WGS84/UTM).\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:552 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:548 msgid "" " For a GEO-referenced network, geo coordinates are represented as pairs of " "Longitude and Latitude\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:553 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:549 msgid " in decimal degrees without extra symbols. (N,W..)\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:554 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:550 msgid " - Longitude: East-west position of a point on the Earth's surface.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:551 msgid " - Latitude: North-south position of a point on the Earth's surface.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:556 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:552 msgid "" " - CheckBox 'geo' enables or disables saving position in GEO coordinates\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:570 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:566 msgid "Templates" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:574 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:570 msgid "Set as Template" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:578 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:574 msgid "clear Edge Template" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:673 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:669 msgid "Only one edge must be inspected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:737 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:733 msgid "No edge Template Set" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:749 -msgid "Parameters" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:908 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:745 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:748 msgid "Additional dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:927 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:764 msgid "Open rerouter dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:933 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:770 msgid "Open calibrator dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:939 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:776 msgid "Open calibrator lane dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:945 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:782 msgid "Open VSS dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:58 msgid "Apply selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:112 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:112 msgid "Unknown set" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:270 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:270 msgid "" "- The 'Match Attribute' controls allow to specify a set of objects which are " "then applied to the current selection\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:271 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:460 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:271 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:460 msgid " according to the current 'Modification Mode'.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:272 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:461 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:272 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:461 msgid " 1. Select an object type from the first input box\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:273 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:462 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:273 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:462 msgid " 2. Select an attribute from the second input box\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:274 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:463 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:463 msgid "" " 3. Enter a 'match expression' in the third input box and press " "\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:276 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:465 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:276 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:465 msgid "- The empty expression matches all objects\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:277 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:466 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:277 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:466 msgid "" "- For numerical attributes the match expression must consist of a comparison " "operator ('<', '>', '=') and a number.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:278 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:467 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:278 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:467 msgid "" "- An object matches if the comparison between its attribute and the given " "number by the given operator evaluates to 'true'\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:280 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:469 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:469 msgid "" "- For string attributes the match expression must consist of a comparison " "operator ('', '=', '!', '^') and a string.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:281 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:470 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:470 msgid "" " '' (no operator) matches if string is a substring of that object'ts " "attribute.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:282 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:471 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:471 msgid " '=' matches if string is an exact match.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:283 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:472 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:283 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:472 msgid " '!' matches if string is not a substring.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:284 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:473 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:284 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:473 msgid " '^' matches if string is not an exact match.\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:286 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:475 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:286 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:475 msgid "- Examples:\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:287 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:476 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:287 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:476 msgid "" " junction; id; 'foo' -> match all junctions that have 'foo' in their id\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:288 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:477 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:288 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:477 msgid "" " junction; type; '=priority' -> match all junctions of type 'priority', " "but not of type 'priority_stop'\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:289 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:478 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:289 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:478 msgid " edge; speed; '>10' -> match all edges with a speed above 10\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:87 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:87 msgid "speed" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:459 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:459 msgid "" "- The 'MatchGenericData Attribute' controls allow to specify a set of " "objects which are then applied to the current selection\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:64 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:65 msgid "Common move options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:66 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:67 msgid "Allow change lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:70 msgid "Merge geometry points" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:93 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:94 msgid "Network move options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:96 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:97 msgid "Move whole polygons" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:132 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:133 msgid "Demand move options" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:135 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:136 msgid "Leave stopPersons connected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:172 msgid "Shift selected edges geometry" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:180 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:181 msgid "Apply shift value" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:180 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:181 msgid "" "Shift edge geometry orthogonally to driving direction for all selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:251 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:252 msgid "Change Z in selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:261 msgid "Absolute value" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:261 msgid "Set Z value as absolute" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:262 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:263 msgid "Relative value" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:262 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:263 msgid "Set Z value as relative" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:265 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:266 msgid "Apply Z value" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:265 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:266 msgid "Apply Z value to all selected junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:518 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:518 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:534 msgid "Shift shape geometry" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:534 msgid "" "Shift shape geometry orthogonally to driving direction for all selected " "shapes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:619 -msgid "-Click over edge to" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:620 -msgid " create or edit" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:621 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:624 -msgid " geometry point." +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:616 +msgid "Click over edge to create or edit geometry point." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:622 -msgid "-Shift+click over edge" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:616 +msgid "Shift+click over edge to edit start or end geometry point." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:623 -msgid " to edit start or end" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:628 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:618 msgid "-Move geometry point" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:631 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:621 msgid "-Merge geometry point" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:78 msgid "Selection information" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:149 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:150 msgid "Modification Mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:153 msgid "add" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:153 msgid "Selected objects are added to the previous selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:154 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:155 msgid "remove" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:154 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:155 msgid "Selected objects are removed from the previous selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:156 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:662 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:157 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:661 msgid "keep" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:156 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:157 msgid "Restrict previous selection by the current selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:159 msgid "replace" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:159 msgid "Replace previous selection by the current selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:213 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:214 msgid "Visual Scaling" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:243 msgid "Selection operations" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:251 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:252 msgid "Deselect all objects (hotkey: ESC)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:253 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:254 msgid "Invert" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:253 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:254 msgid "Invert selection status of all objects" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:255 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:256 msgid "Save ids of currently selected objects to a file." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:257 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:258 msgid "Load ids from a file according to the current modification mode." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:259 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:260 msgid "Delete all selected objects (hotkey: DEL)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:261 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:262 msgid "Reduce" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:261 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:262 msgid "Reduce network to current selection." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:275 msgid "Could not open '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:320 -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:125 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:324 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:125 msgid "Open List of Selected Items" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:338 -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:148 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:342 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:148 msgid "Save List of selected Items" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1120 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1124 msgid "Hierarchy operations" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1131 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1141 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1135 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1145 msgid "Select" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1133 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1143 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1137 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1147 msgid "Unselect" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEEdgeDataFrame.cpp:51 +#: D:\Repos\sumo/src\netedit\frames\data\GNEEdgeDataFrame.cpp:51 msgid "There is already a % in edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:69 msgid "DataSet" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:72 msgid "Create new dataSet" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:83 msgid "Create dataSet" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:140 msgid "Invalid dataSet ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:142 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:142 msgid "Invalid empty dataSet ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:144 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:144 msgid "Invalid duplicated dataSet ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:198 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:198 msgid "Interval" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:201 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:201 msgid "Create new interval" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:219 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:219 msgid "create interval" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:392 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:393 msgid "Data attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:68 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:68 msgid "MeanData Type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:161 msgid "MeanData Editor" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:164 msgid "Create MeanData" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:167 msgid "Delete MeanData" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:170 msgid "Copy MeanData" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:276 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:276 msgid "Current MeanData" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:54 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:54 msgid "Confirm TAZRelation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:56 msgid "Create TAZRelation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:56 msgid "Click fromTaz and toTaz (confirm hotkey )" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:58 msgid "Clear selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:58 msgid "Clear selected TAZs (hotkey )" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:122 msgid "From TAZ" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:128 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:128 msgid "To TAZ" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:177 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:177 #, c-format msgid "A % must be defined within an interval." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:179 msgid "There is already a % defined in TAZ'%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:181 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:181 msgid "There is already a % defined between TAZ'%' and '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:117 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerPlanFrame.cpp:114 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerPlanFrame.cpp:114 msgid "Current selected container isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:122 msgid "Current selected container type isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:127 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerPlanFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:127 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerPlanFrame.cpp:119 msgid "Current selected container plan isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:242 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:275 msgid "VType with vClass == 'pedestrian' is oriented to pedestrians" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:244 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:244 msgid "VType with vClass != 'ignoring' is not oriented to containers" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:267 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:267 msgid "Invalid container parameters." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:117 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonPlanFrame.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonPlanFrame.cpp:140 msgid "Current selected person isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:122 msgid "Current selected person type isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:127 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonPlanFrame.cpp:146 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:127 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonPlanFrame.cpp:146 msgid "Current selected person plan isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:250 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:287 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:250 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:277 msgid "VType with vClass == 'ignoring' is oriented to containers" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:252 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:252 msgid "VType with vClass != 'pedestrian' is not oriented to persons" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:275 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:275 msgid "Invalid person parameters." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNERouteFrame.cpp:52 +#: D:\Repos\sumo/src\netedit\frames\demand\GNERouteFrame.cpp:52 msgid "Route mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:78 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:85 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:92 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:99 -msgid "- Shift+Click to select parent\n" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:72 -msgid "- Click over a bus stop to\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:89 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:101 +msgid "Shift+Click to select parent" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:73 -msgid " create a stop." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:72 +msgid "Click over a bus stop to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:79 -msgid "- Click over a container stop\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:78 +msgid "Click over a train stop to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:80 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:87 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:94 -msgid " to create a stop." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:84 +msgid "Click over a container stop to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:86 -msgid "- Click over a charging station\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:90 +msgid "Click over a charging station to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:93 -msgid "- Click over a parking area\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:96 +msgid "Click over a parking area to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:100 -msgid "- Click over a lane to create\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:102 +msgid "Click over a lane to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:101 -msgid " a stop." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:106 +msgid "No stop parents in current network." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:105 -msgid "- No stop parents in current\n" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:106 -msgid " network." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:189 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:189 msgid "Selected Stop type isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:197 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:197 msgid "Selected % '%' as stop parent." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:200 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:200 msgid "Selected Stop parent isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:206 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:206 msgid "Current selected Stop parent isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:237 msgid "Current selected Stop type isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:336 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:352 msgid "Stop must be placed over a route's edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:349 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:365 msgid "Stop must be placed over an embedded route's edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:68 -msgid "Current Type" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:225 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:63 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:218 msgid "Type Editor" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:228 -msgid "Create Type" +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:66 +msgid "Create type distribution" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:230 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:275 -msgid "Delete Type" +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:68 +msgid "Delete type distribution" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:232 -msgid "Copy Type" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:263 -msgid "Reset Type" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:420 -msgid "VType Distributions" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:423 -msgid "Show VType Distributions" +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:62 +msgid "Current Type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:93 -msgid "- Click over a route to\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:221 +msgid "Create Type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:72 -msgid " create a vehicle." +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:223 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:268 +msgid "Delete Type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:76 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:81 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:98 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:103 -msgid "- Select two edges to\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:225 +msgid "Copy Type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:77 -msgid " create a Trip." +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:256 +msgid "Reset Type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:82 -msgid " create a vehicle with\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:71 +msgid "Click over a route to create a vehicle." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:83 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:105 -msgid " embedded route." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:75 +msgid "Select two edges to create a trip." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:87 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:109 -msgid "- Select two junctions\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:79 +msgid "Select two edges to create a vehicle with embedded route." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:88 -msgid " to create a Trip." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:83 +msgid "Select two junctions to create a trip." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:94 -msgid " create a routeFlow." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:88 +msgid "Click over a route to create a routeFlow." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:99 -msgid " create a flow." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:92 +msgid "Select two edges to create a flow." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:104 -msgid " create a flow with\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:96 +msgid "Select two edges to create a flow with embedded route." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:110 -msgid " to create a flow." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:100 +msgid "Select two junctions to create a flow." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:191 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:181 msgid "Current selected vehicle isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:186 msgid "Current selected vehicle type isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:87 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:87 msgid "Current selected additional isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:156 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:156 msgid "E2 multilane detectors need at least two consecutive lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:282 msgid " must be selected before insertion of " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:312 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:312 msgid "Attribute '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:312 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:312 msgid "' cannot be greater than attribute '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:329 -msgid "List ofe dges cannot be empty" +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:329 +msgid "List of edges cannot be empty" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:339 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:339 msgid "List of lanes cannot be empty" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:439 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:439 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:232 msgid "Currently unsupported. Create rerouter elements using rerouter dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:444 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:444 msgid "Currently unsupported. Create VSS steps using VSS dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:449 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:449 msgid "Currently unsupported. Create calibratorFlows using calibrator dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:66 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:67 msgid "Lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:68 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:78 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:79 msgid "No lane selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:80 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:81 msgid "Current Lane: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:89 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:395 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:90 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:396 msgid "Modifications" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:93 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:94 msgid "Discard connection modifications (Esc)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:96 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:97 msgid "Save connection modifications (Enter)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:100 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:101 msgid "Protect routes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:112 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:113 msgid "Changes reverted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:129 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:130 msgid "Error saving connection operations" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:130 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:131 msgid "Connection edition cannot be saved because route '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:130 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:131 msgid "' is broken." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:138 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:139 msgid "Changes accepted" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:151 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:152 msgid "Operations" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:155 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:156 msgid "Select Dead Ends" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:155 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:156 msgid "" "Selects all lanes that have no outgoing connection (clears previous " "selection)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:159 msgid "Select Dead Starts" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:159 msgid "" "Selects all lanes that have no incoming connection (clears previous " "selection)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:162 msgid "Select Conflicts" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:162 msgid "" "Selects all lanes with more than one incoming connection from the same edge " "(clears previous selection)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:165 msgid "Select Passing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:165 msgid "" "Selects all lanes with a connection that has has the 'pass' attribute set" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:168 msgid "Clear Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:168 msgid "Clears all connections of all selected objects" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:171 msgid "Reset Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:171 msgid "Recomputes connections at all selected junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:262 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:263 msgid "clear connections from selected lanes, edges and junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:289 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:290 msgid "reset connections from selected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:308 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:168 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2174 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:309 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:168 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2176 msgid "Selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:313 -msgid "-Hold while" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:314 -msgid " clicking to create" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:315 -msgid " unyielding connections" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:316 -msgid " (pass=true)." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:321 -msgid "-Hold while" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:322 -msgid " clicking to create " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:323 -msgid " conflicting connections" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:324 -msgid " (i.e. at zipper nodes" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:325 -msgid " or with incompatible" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:311 +msgid "" +"Hold while clicking to create unyielding connections (pass=true)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:326 -msgid " permissions" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:312 +msgid "" +"Hold while clicking to create conflicting connections (i.e. at zipper " +"nodes or with incompatible permissions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:342 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:326 msgid "Possible Target" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:347 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:331 msgid "Source lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:351 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:335 msgid "Target lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:355 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:339 msgid "Target (pass)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:359 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:343 msgid "Conflict" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:371 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:355 msgid "Edit Connections" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:437 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:421 msgid "modify connections" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:488 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:472 msgid "Pedestrian connections are generated automatically" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:490 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:474 msgid "Incompatible vehicle class permissions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:492 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:476 msgid "Another lane from the same edge already connects to that lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:500 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:484 msgid "Invalid target for connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:74 msgid "Template selector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:79 msgid "Create default edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:80 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:82 msgid "Disallow for pedestrians" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:82 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:84 msgid "Add sidewalk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:85 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:87 msgid "Use edgeType/template" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:93 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:437 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1245 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1310 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:439 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1247 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1312 msgid "Add" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:93 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:95 msgid "Add edge type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:96 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:98 msgid "Delete edge type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:99 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:101 msgid "Create from template" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:99 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:101 msgid "Create edgeType from template" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:318 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:367 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:320 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:369 msgid "create new edge type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:340 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:342 msgid "delete edge type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:405 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:407 msgid "template: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:429 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:431 msgid "LaneType selector" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:437 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:439 msgid "Add lane type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:440 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:442 msgid "Delete lane type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:537 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:539 msgid "add laneType" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:574 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:576 msgid "remove laneType" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:623 -msgid "- ESC:" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:625 +msgid "ESC:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:624 -msgid " Deselect origin" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:626 +msgid "Deselect origin" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:625 -msgid "- Control+Click:" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:627 +msgid "Control+Click:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:626 -msgid " Move view" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:628 +msgid "Move view" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:627 -msgid "- Shift+Click:" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:629 +msgid "Shift+Click:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:628 -msgid " Splits edge in both directions" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:630 +msgid "Splits edge in both directions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:629 -msgid "- Alt+Shift+Click:" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:631 +msgid "Alt+Shift+Click:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:630 -msgid " Splits edge in one direction" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:632 +msgid "Splits edge in one direction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:643 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:645 msgid "Create Edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:667 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:669 msgid "Select either default edgeType or a custom edgeType or template" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:669 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:671 msgid "Invalid edge attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:671 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:673 msgid "Invalid lane attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:682 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:747 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:749 msgid "create new edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:752 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:754 msgid "An edge with the same geometry already exists!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:755 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:757 msgid "Start- and endpoint for an edge must be distinct!" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:70 msgid "Junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:97 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:98 msgid "selection of edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:102 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:505 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:560 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:566 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:654 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:658 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:103 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:506 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:560 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:566 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:653 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:657 msgid "Use selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:105 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:106 msgid "Clear edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:108 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:109 msgid "Invert edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:197 msgid "Crossing parameters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:484 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1580 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1584 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:485 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1608 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1612 msgid "Create" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:487 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:488 msgid "Create crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:514 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:515 msgid "" "There is already another crossing with the same edges in the junction; " "Duplicated crossing aren't allowed." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:540 -msgid "-Click over junction to" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:541 -msgid " mark candidate edges." +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:539 +msgid "Click over junction to mark candidate edges." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:542 -msgid "-Click over candidate" +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:539 +msgid "Click over candidate edges for selecting." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:543 -msgid " edges for selecting." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:547 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:541 msgid " Candidate" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:551 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:545 msgid " Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:554 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:548 msgid " Invalid" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:567 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:561 msgid "Crossings" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:55 msgid "Selected connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:71 msgid "No Connection selected\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:74 msgid "- Junction: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:75 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:75 msgid "- From lane: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:76 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:76 msgid "- To lane: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:94 msgid "Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:95 msgid "Current selected connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:101 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:101 msgid "No conflict" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:102 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:102 msgid "No conflict with the selected connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:107 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:107 msgid "Yields" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:108 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:108 msgid "Connection yields the selected connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:113 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:113 msgid "Has right of way" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:114 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:114 msgid "Connection has right of way with the selected connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:119 msgid "Unregulated conflict" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:120 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:120 msgid "Connection has a unregulated conflict with the selected connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:125 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:125 msgid "Mutual conflict" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:126 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:126 msgid "Connection has a mutual conflict with the selected connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:175 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:175 msgid "Save prohibition modifications (Enter)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:179 msgid "Unselect connection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:181 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:181 msgid "Unselect connection (Esc)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:229 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:229 msgid "Prohibitions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:57 msgid "GEO POI Creator" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:59 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:60 msgid "Format: Lon-Lat" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:61 msgid "Format: Lat-Lon" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:66 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:67 msgid "Center View after creation" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:68 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:121 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:178 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:179 msgid "Create GEO POI (clipboard)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:136 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:141 msgid "Cartesian equivalence:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:72 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:141 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:142 msgid "- X = give valid longitude" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:73 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:142 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:143 msgid "- Y = give valid latitude" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:120 msgid "Create GEO POI" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:172 msgid "Using clipboard" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:330 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:228 +msgid "Shapes" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:331 msgid "POILane can be only placed over lanes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:374 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:375 msgid "Current selected shape isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:422 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:423 msgid "Polygon shape cannot be empty" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:153 msgid "TAZ" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:160 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:204 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:205 msgid "No TAZ selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:173 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:174 msgid "Current TAZ: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:336 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:337 msgid "Invalid TAZ Child" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:345 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:346 msgid "TAZ Statistics" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:348 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:891 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:349 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:888 msgid "Statistics" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:375 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1132 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:376 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1129 msgid "- Number of edges: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:376 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1137 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:377 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1134 msgid "- Min source: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:377 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1138 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:378 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1135 msgid "- Max source: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:378 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1139 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:379 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1136 msgid "- Average source: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:380 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1141 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:381 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1138 msgid "- Min sink: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:381 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1142 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:382 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1139 msgid "- Max sink: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:382 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1143 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:383 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1140 msgid "- Average sink: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:386 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:387 msgid "No TAZ Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:398 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:399 msgid "Confirm changes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:401 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:402 msgid "Cancel changes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:431 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:432 msgid "TAZ changes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:484 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:485 msgid "TAZ Sources/Sinks" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:490 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:491 msgid "Membership" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:491 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:492 msgid "Toggle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:496 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:497 msgid "New source" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:501 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:502 msgid "New sink" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:507 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:508 msgid "Set zero fringe prob." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:511 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:646 -msgid "- Toggle Membership:" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:512 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:647 -msgid " Create new Sources/Sinks" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:512 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:646 +msgid "Toggle Membership:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:513 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:648 -msgid " with given weights." +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:513 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:647 +msgid "Create new Sources/Sinks with given weights." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:563 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:656 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:655 msgid "Remove all edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:582 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:582 msgid "Remove all edges from selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:584 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:584 msgid "Add all edges to selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:588 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:588 msgid "Remove edge from selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:590 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:590 msgid "Add edge to selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:601 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:601 msgid "Remove " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:601 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:601 msgid " edges from to selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:603 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:603 msgid "Add " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:603 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:603 msgid " edges to selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:639 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:639 msgid "toggle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:669 -msgid "- Keep Membership:" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:668 +msgid "Keep Membership:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:670 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:668 msgid " Select Sources/Sinks." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:671 -msgid "- Press ESC to clear" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:672 -msgid " current selection." +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:669 +msgid "Press ESC to clear the current selection." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:849 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:846 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:849 msgid "Set weight 0 in " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:849 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:846 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:849 msgid " sources and " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:850 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:847 msgid " sinks from TAZ '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:853 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:850 msgid " sinks from " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:853 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:850 msgid " TAZs?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:855 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:868 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:865 msgid "Set zero fringe probabilities" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:857 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:854 msgid "set zero fringe probabilities" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:868 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:865 msgid "No source/sinks to update." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:878 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:875 msgid "Selection Statistics" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:882 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:879 msgid "Source" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:887 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:884 msgid "Sink" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:919 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:916 msgid "TAZEdgeColor already selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:951 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:948 msgid "edge wasn't found" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:953 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:950 msgid "Invalid edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1130 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1127 msgid "- Edge ID: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1165 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1162 msgid "TAZ parameters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1190 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1187 msgid "Edges within" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1191 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1298 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1188 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1295 msgid "use" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1300 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1297 msgid "not use" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1330 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1327 msgid "Non TAZ Edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1334 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1331 msgid "Selected TAZ Edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1339 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1336 msgid "Color by Source" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1341 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1338 msgid "Color by Sink" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1343 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1340 msgid "Color by Source + Sink" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1345 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1342 msgid "Color by Source - Sink" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1448 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1445 msgid "TAZs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1614 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1611 msgid "TAZ shape needs at least three points" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:121 msgid "Edit Traffic Light" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:183 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:185 msgid "Click over a junction to edit a TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:195 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:197 msgid "Save TLS Changes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:198 msgid "" "There is unsaved changes in current edited traffic light.\n" "Do you want to save it before changing mode?" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:244 msgid "tlLogic '%', program '%' could not be built" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:255 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2935 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:257 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2963 msgid "Loaded " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:255 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:257 msgid " programs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:418 msgid "Invalid phase index" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:512 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:514 msgid "modifying TLS definition" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:526 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:528 msgid "Unsaved modifications. Abort or Save" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:546 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:548 msgid "Traffic light Attributes" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:557 msgid "parameters" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 msgid "Assign E1 detectors" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 msgid "Enable assign E1 mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 msgid "Assign E1 detectors to the current TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 msgid "Disable assign E1 mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:879 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:881 msgid "Traffic Light" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:884 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:945 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:886 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:955 msgid "Junction ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:891 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:893 msgid "TLS ID" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 msgid "Join" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 msgid "Enable join mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 msgid "Join TLS and junctions in the current junction." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 msgid "Disable join mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 msgid "Disjoin" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 msgid "Disjoin current TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 msgid "Disjoin current TLS." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:952 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:923 +msgid "Finish join." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:925 +msgid "Cancel Join." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:962 msgid "no junction selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:974 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:984 msgid "Junction IDs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1061 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1064 msgid "rename TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1140 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1143 msgid "change TLS type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1216 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1227 msgid "join TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1278 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1289 msgid "disjoin TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1340 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1368 msgid "Traffic Light Programs" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1353 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1381 msgid "Create TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1353 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1381 msgid "Create a new traffic light program." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1356 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1384 msgid "" "Delete a traffic light program. If all programs are deleted the junction " "turns into a priority junction." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1359 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1387 msgid "Reset single" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1359 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1387 msgid "Reset current TLS program." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1362 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1390 msgid "Reset all" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1362 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1390 msgid "Reset all TLS programs." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1365 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1393 msgid "Save program modifications. (Enter)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1368 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1396 msgid "Discard program modifications. (Esc)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1463 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1491 msgid "TLSDefinition cannot be found" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1505 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1518 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1537 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1533 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1546 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1565 msgid "TLS cannot be created" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1506 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1534 msgid "Traffic Light cannot be created because junction must have" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1507 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1535 msgid "at least one incoming edge and one outgoing edge." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1519 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1538 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1547 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1566 msgid "Traffic Light cannot be created because junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1520 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1548 msgid "must have at least one connection." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1539 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1567 msgid "must have at least one controlled connection." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1582 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1610 msgid "Duplicate" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1622 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1650 msgid "reset current program" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1661 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1689 msgid "reset TLS" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1822 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1850 msgid "duplicate program '%' of traffic light '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1868 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1896 msgid "Traffic light does not control any links" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1880 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1908 msgid "Phases" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1891 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1919 msgid "Clean States" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1892 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1920 msgid "Clean unused states from all phase" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1893 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1921 msgid "Clean unused states from all phase. (Not allowed for multiple programs)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1897 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1925 msgid "Add States" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1898 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1926 msgid "Extend the state vector for all phases by one entry" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1899 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1927 msgid "" "Extend the state vector for all phases by one entry. (Unused until a " "connection or crossing is assigned to the new index)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1903 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1931 msgid "Group Sig." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1904 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1932 msgid "" "Shorten state definition by letting connections with the same signal states " "use the same index" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1905 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1933 msgid "" "Shorten state definition by letting connections with the same signal states " "use the same index. (Not allowed for multiple programs)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1909 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1937 msgid "Ungroup Sig." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1910 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1938 msgid "Let every connection use a distinct index (reverse state grouping)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1939 msgid "" "Let every connection use a distinct index (reverse state grouping). (Not " "allowed for multiple programs)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2039 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2067 msgid "invalid column" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2598 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2626 msgid "Error deleting phase '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2870 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2898 msgid "TLS Program File" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2874 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2902 msgid "Load TLS program from additional file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2876 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2904 msgid "Save TLS program to additional file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2935 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2963 msgid " new programs for tlLogic '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2940 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2968 msgid "Updated program '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2940 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2968 msgid "' for tlLogic '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2944 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2972 msgid "No programs found for traffic light '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2963 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2991 msgid "Save TLS Program as" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:75 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:75 msgid "Current selected wire isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:117 #, c-format msgid "A % needs at least two lane positions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:237 msgid "Currently unsupported. Create VSS steps elements using VSS dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/netedit_main.cpp:49 +#: D:\Repos\sumo/src\netedit\netedit_main.cpp:49 msgid "" "Graphical editor for SUMO networks, demand and additional infrastructure." msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:126 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:127 msgid "Original network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:129 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:130 msgid "Modified network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:132 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:133 msgid "Output prefix network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:136 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:137 msgid "Select modified elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:139 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:140 msgid "Select added elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:142 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:143 msgid "Select deleted elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:146 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:147 msgid "Load shapes for elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:149 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:150 msgid "Load shapes for added" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:152 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:153 msgid "Load shapes for deleted elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:165 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:166 msgid "load shapes from '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:169 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:170 msgid "Loading of shape file failed: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:172 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:173 msgid "Loading of shape file sucessfully: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:42 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:43 msgid "Execute python tool '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:153 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:177 #, c-format msgid "Loaded % configuration." msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:182 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:206 #, c-format msgid "Saved % configuration." msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:71 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:55 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:76 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:60 msgid "cancelled by user\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:102 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:86 -msgid "popen() failed!" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:114 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:98 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:119 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:103 msgid "starting process...\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:124 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:108 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:137 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:121 msgid "error processing command\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:136 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:120 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:152 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:136 msgid "process finished\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:142 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:125 -msgid "starting process silently...\n" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:75 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:75 msgid "&Load selection" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:77 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:77 msgid "&Save selection" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:81 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:81 msgid "&Deselect chosen" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:83 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:83 msgid "&Clear selection" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:87 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:87 msgid "Cl&ose" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:137 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:137 msgid "Errors while loading Selection" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:116 +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:116 msgid "Unknown object in GUISelectedStorage::select (id=%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:133 +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:133 msgid "Unknown object in GUISelectedStorage::deselect (id=%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:150 +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:150 msgid "Unknown object in GUISelectedStorage::toggleSelection (id=%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:74 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:74 msgid "Unknown format!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:91 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:91 msgid "Unknown codec, falling back to HEVC!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:95 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:95 msgid "Unknown codec!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:100 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:100 msgid "Could not allocate video codec context!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:136 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:136 msgid "Could not open codec!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:142 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:142 msgid "Could not allocate video frame!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:148 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:148 msgid "Could not allocate the video frame data!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:155 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:155 msgid "Failed to open output file!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:160 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:160 msgid "Failed to write file header!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:165 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:165 msgid "Could not allocate video packet!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:175 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:175 msgid "Error sending final frame!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:183 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:183 msgid "Error during final encoding step!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:214 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:214 msgid "Error sending frame for encoding!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:222 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:222 msgid "Error during encoding!" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUIGLObjectPopupMenu.cpp:170 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGLObjectPopupMenu.cpp:170 msgid "Object must be a lane" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:87 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:285 +msgid "Copy name to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:286 +msgid "Copy typed name to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:296 +msgid "Remove From Selected" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:298 +msgid "Add To Selected" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:308 +msgid "Show Parameter" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:317 +msgid "Show Type Parameter" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:326 +msgid "Copy cursor position to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:328 +msgid "Copy cursor geo-position to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:332 +msgid "Show cursor geo-position in " +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:350 +msgid "Open Manipulator..." +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:389 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:412 +msgid "type: %" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:87 msgid "&Save changes" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:88 +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:88 msgid "&Don't save" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:89 +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:89 msgid "&Abort" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUIShapeContainer.cpp:56 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIShapeContainer.cpp:56 msgid "Replacing POI '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUIShapeContainer.cpp:81 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIShapeContainer.cpp:81 msgid "Replacing polygon '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/images/GUIIconSubSys.cpp:981 +#: D:\Repos\sumo/src\utils\gui\images\GUIIconSubSys.cpp:989 msgid "Instance was previously created" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/images/GUITextureSubSys.cpp:223 +#: D:\Repos\sumo/src\utils\gui\images\GUITextureSubSys.cpp:223 msgid "Undefined texture" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/images/VClassIcons.cpp:91 +#: D:\Repos\sumo/src\utils\gui\images\VClassIcons.cpp:91 msgid "Invalid vClass" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:77 +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:77 msgid "The 'value' attribute is deprecated for breakpoints. Please use 'time'." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:383 +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:383 msgid "The 'filename' attribute is deprecated for decals. Please use 'file'." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:559 +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:559 msgid " Could not decode breakpoint '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUIVisualizationSettings.cpp:2348 +#: D:\Repos\sumo/src\utils\gui\settings\GUIVisualizationSettings.cpp:2348 msgid "No color defined for LinkState '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:116 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:116 msgid "Save the data..." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:131 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:131 msgid "Multiplot" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:219 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:219 msgid "Save Data" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:85 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:85 msgid "Track" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:92 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:92 msgid "&Hide Unselected" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:93 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:93 msgid "By &Name" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:93 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:93 msgid "Locate item by name" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:94 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:94 msgid "&Select/deselect" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:94 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:94 msgid "Select/deselect current object" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:95 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:95 msgid "&Filter substring" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:96 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:96 msgid "Select &all" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:96 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:96 msgid "Select all items in list" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:97 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:97 msgid "&Deselect all" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:97 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:97 msgid "Deselect all items in list" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:98 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:98 msgid "&Update" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:98 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:98 msgid "Reload all ids" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:102 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:102 msgid "case-sensitive search" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:104 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:104 msgid "auto-center" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:329 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:329 #, c-format msgid "% objects" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:65 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:65 msgid "Load viewport from file" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:67 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:67 msgid "Save viewport to file" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:210 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:210 msgid "Load Viewport" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:229 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:229 msgid "Save Viewport" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:277 -msgid "Run tool" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:278 -msgid "Cancel tool" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:280 -msgid "Accept settings" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:87 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:87 msgid "View Settings" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:989 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:989 msgid "Enter a name" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:991 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:991 msgid "Please enter an alphanumeric name: " msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1070 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1070 msgid "Export view settings" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1121 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1121 msgid "Import view settings" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1138 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1155 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1138 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1155 msgid "Load Decals" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1172 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1172 msgid "Save Decals" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1242 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1307 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1244 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1309 msgid "No Data" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1246 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1311 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1248 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1313 msgid "Remove" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1569 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1614 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1571 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1616 msgid "Only for selected" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1571 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1573 msgid "constant text size" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1574 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1576 msgid "Size" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1579 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1692 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1730 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1851 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1933 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1973 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1999 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2119 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2154 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2217 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1581 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1694 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1732 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1853 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1935 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1975 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2001 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2121 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2156 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2219 msgid "Color" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1581 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1687 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1583 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1689 msgid "Background" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1612 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1614 msgid "Draw with constant size when zoomed out" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1617 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1619 msgid "Minimum Size" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1621 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1623 msgid "Exaggerate by" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1667 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1669 msgid "Save the setting to registry" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1668 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1670 msgid "Remove the setting from registry" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1669 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1671 msgid "Export setting to file" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1670 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1672 msgid "Load setting from file" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1673 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1675 msgid "Export includes:" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1674 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1676 msgid "Viewport" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1675 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1677 msgid "Delay" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1676 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1678 msgid "Decals" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1677 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1679 msgid "Breakpoints" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1696 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1698 msgid "Decals:" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1699 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1701 msgid "&Load XML Decals" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1700 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1702 msgid "&Save XML Decals" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1701 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1703 msgid "&Clear Decals" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1706 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1708 msgid "Toggle grid" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1710 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1712 msgid "x-spacing" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1715 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1717 msgid "y-spacing" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1724 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1726 msgid "Streets" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1732 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1761 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1855 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1868 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1937 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1977 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2003 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2123 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2158 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2219 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1734 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1763 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1857 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1870 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1939 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1979 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2005 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2125 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2160 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2221 msgid "Interpolate" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1744 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2006 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2229 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1746 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2008 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2231 msgid "Recalibrate Rainbow" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1746 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1748 msgid "hide below" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1750 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1752 msgid "hide above" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1759 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1761 msgid "Scale width" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1782 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1784 msgid "Show bike markings" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1784 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1786 msgid "Show turning arrows" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1787 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1789 msgid "Show right-of-way rules" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1789 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1791 msgid "Realistic stop line colors" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1792 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1794 msgid "Show lane borders" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1794 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1796 msgid "Show lane direction" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1797 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1799 msgid "Hide macro connectors" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1799 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1801 msgid "Show sublanes" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1802 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1804 msgid "Show rails" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1804 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1806 msgid "Spread bidirectional railways/roads" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1804 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1806 msgid "" "Make both directional edges for a bidirectional railways or roads visible" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1807 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1809 msgid "Secondary shape" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1812 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1814 msgid "Exaggerate width by" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1818 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1820 msgid "Minimum size" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1824 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1826 msgid "Show edge id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1825 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1827 msgid "Show street name" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1826 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1828 msgid "Show edge color value" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1827 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1829 msgid "Show edge scale value" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1838 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1921 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1961 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1840 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1923 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1963 msgid "Show As" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1840 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1923 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1963 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1842 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1925 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1965 msgid "'triangles'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1841 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1964 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1843 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1966 msgid "'boxes'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1842 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1925 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1965 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1844 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1927 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1967 msgid "'simple shapes'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1843 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1926 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1966 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1845 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1928 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1968 msgid "'raster images'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1844 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1924 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1846 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1926 msgid "'circles'" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1866 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1868 msgid "Scale size" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1875 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1877 msgid "Show vehicle id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1876 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1878 msgid "Show vehicle color value" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1877 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1879 msgid "Show vehicle scale value" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1878 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1880 msgid "Show vehicle text param" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1885 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1887 msgid "Show blinker / brake lights" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1887 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1889 msgid "Show minimum gap" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1889 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1891 msgid "Show brake gap" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1891 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1893 msgid "Show Bluetooth range" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1893 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1895 msgid "Show route index" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1895 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1897 msgid "Scale length with geometry" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1897 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1899 msgid "Show parking info" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1899 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1901 msgid "Draw reversed vehicles in reverse" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1944 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1946 msgid "Show person id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1945 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1947 msgid "Show person color value" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1956 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1958 msgid "Containers" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1984 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1986 msgid "Show container id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1995 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1997 msgid "Junctions" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2012 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2014 msgid "Draw junction shape" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2014 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2016 msgid "Draw crossings/walkingareas" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2016 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2018 msgid "Show lane to lane connections" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2020 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2022 msgid "Show link tls index" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2021 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2023 msgid "Show link junction index" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2022 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2024 msgid "Show junction id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2023 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2025 msgid "Show internal junction id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2024 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2026 msgid "Show internal edge id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2025 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2027 msgid "Show crossing and walkingarea id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2026 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2028 msgid "Show traffic light phase index" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2027 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2029 msgid "Show traffic light phase name" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2028 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2030 msgid "Show junction name" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2034 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2036 msgid "Additional" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2039 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2041 msgid "Show object id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2040 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2042 msgid "Show full name" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2047 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2049 msgid "StoppingPlace" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2048 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2050 msgid "body" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2049 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2051 msgid "sign" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2072 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2074 msgid "element" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2073 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2075 msgid "color" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2074 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2076 msgid "width" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2114 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2116 msgid "POIs" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2130 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2132 msgid "POI detail" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2135 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2137 msgid "Show poi id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2136 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2138 msgid "Show poi type" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2137 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2139 msgid "Show poi text param" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2149 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2151 msgid "Polygons" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2164 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2166 msgid "Show polygon id" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2165 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2167 msgid "Show polygon types" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2179 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2181 msgid "Default Selection Color" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2182 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2184 msgid "Miscellaneous" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2231 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2233 msgid "hide below threshold" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2238 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2240 msgid "Exaggerate edgeRelation width by" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2243 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2245 msgid "Exaggerate tazRelation width by" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2249 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2251 msgid "Show data color value" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2255 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2257 msgid "Legend" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2260 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2262 msgid "Show Size Legend" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2263 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2265 msgid "Show Edge Color Legend" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2266 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2268 msgid "Show Vehicle Color Legend" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2279 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2281 msgid "Dither" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2285 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2287 msgid "Draw boundaries" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2288 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2290 msgid "Force draw for position selection" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2291 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2293 msgid "Force draw for rectangle selection" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2294 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2296 msgid "Disable dotted contours during selection/deletion" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2297 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2299 msgid "Recalculate boundaries" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2300 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2302 msgid "Show geometry point indices" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2306 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2308 msgid "3D view" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2311 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2313 msgid "Show TLS link markers" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2314 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2316 msgid "Show domes around TLS models from decals" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2317 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2319 msgid "Show auto-generated TLS models" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2319 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2321 msgid "Show head-up display" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2325 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2327 msgid "Sun brightness" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2337 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2339 msgid "Sky color" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:120 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:120 msgid "Recenter View" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:120 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:120 msgid "Recenter view to the simulated area." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:124 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:124 msgid "Opens a menu which lets you edit the viewport. (Ctrl+I)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:128 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:128 msgid "Toggle Zooming Style" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:128 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:128 msgid "" "Toggles whether zooming is based at cursor position or at the center of the " "view." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:135 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:135 msgid "Locate Structures" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:135 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:135 msgid "Locate structures within the network." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:139 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:139 msgid "Toggle View Tooltips" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:139 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:139 msgid "Toggles whether tooltips in the view shall be shown." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:145 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:145 msgid "Toggle Menu Tooltips" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:145 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:145 msgid "Toggles whether tooltips in the menu shall be shown." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:161 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:161 msgid "Edit Coloring Schemes" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:161 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:161 msgid "Opens a menu which lets you edit the coloring schemes. (F9)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:172 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:172 msgid "Make Snapshot" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:172 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:172 msgid "Makes a snapshot of the view." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:294 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:294 msgid "option window-size requires INT,INT" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:311 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:311 msgid "option window-pos requires INT,INT" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:340 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:340 msgid "Langua&ge" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:342 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:342 msgid "Change language to english. (en)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:344 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:344 msgid "Change language to german. (de)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:346 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:346 msgid "Change language to spanish. (es)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:348 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:348 msgid "Change language to french. (fr)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:350 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:350 msgid "Change language to italian. (it)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:352 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:352 msgid "简体中文 (zh)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:354 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:354 msgid "繁體中文 (zh-Hant)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:356 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:356 msgid "Change language to turkish. (tr)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:358 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:358 msgid "Change language to hungarian. (hu)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:372 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:372 msgid "german" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:376 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:376 msgid "spanish" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:380 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:380 msgid "french" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:384 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:384 msgid "italian" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:388 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:388 msgid "chinese" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:392 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:392 msgid "chinese simplified" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:396 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:396 msgid "turkish" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:400 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:400 msgid "hungarian" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:404 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:404 msgid "english" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:412 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:412 msgid "Language changed to " msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:414 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:414 msgid "Restart needed" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:415 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:415 msgid "Changing display language needs restart to take effect." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:418 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:418 msgid "" "For the Debug build you might also need to set the LANG environment variable." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:421 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:421 msgid "Under development. You can help to improve the translation at:" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:254 +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:254 msgid " (No projection defined)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:1738 +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:1747 msgid "Could not convert coordinates in %." msgstr "" diff -Nru sumo-1.17.0/data/po/hu_py.po sumo-1.18.0/data/po/hu_py.po --- sumo-1.17.0/data/po/hu_py.po 1970-01-01 00:00:00.000000000 +0000 +++ sumo-1.18.0/data/po/hu_py.po 2023-06-28 20:02:17.000000000 +0000 @@ -0,0 +1,134 @@ +# Hungarian translations for sumo package. +# Copyright (C) 2023 THE sumo'S COPYRIGHT HOLDER +# This file is distributed under the same license as the sumo package. +# Automatically generated, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: sumo\n" +"Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" +"POT-Creation-Date: 2023-05-26 14:09+0200\n" +"PO-Revision-Date: 2023-05-11 18:10+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: D:\Repos\sumo/tools/game\runner.py:63 +msgid "Interactive Traffic Light" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:64 +msgid "Research intersection Ingolstadt" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:65 +msgid "Simple Junction" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:66 +msgid "Simple Junction (Demo)" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:67 +msgid "Four Junctions" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:68 +msgid "Six Junctions" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:69 +msgid "Prof. Kühne" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:70 +msgid "3D Junction Virtual World" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:71 +msgid "3D Junction OpenStreetMap" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:72 +msgid "Highway Ramp" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:73 +msgid "Combined Highway On and Off Ramp" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:74 +msgid "Corridor" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:75 +msgid "Highway Ramp A10" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:76 +msgid "Demand Responsive Transport (new)" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:77 +msgid "DRT - Advanced (new)" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:78 +msgid "DRT - Demo" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:79 D:\Repos\sumo/tools/game\runner.py:89 +msgid "Highscore" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:80 +msgid "Reset Highscore" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:81 +msgid "German" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:82 +msgid "English" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:83 +msgid "Italian" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:84 +msgid "Spanish" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:85 +msgid "French" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:86 +msgid "Chinese (simplified)" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:87 +msgid "Chinese (traditional)" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:88 +msgid "Quit" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:90 +msgid "Congratulations!" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:91 +msgid "Your Score" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:92 +msgid "Continue" +msgstr "" diff -Nru sumo-1.17.0/data/po/hu_sumo.po sumo-1.18.0/data/po/hu_sumo.po --- sumo-1.17.0/data/po/hu_sumo.po 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/po/hu_sumo.po 2023-06-28 20:02:17.000000000 +0000 @@ -7,1954 +7,1999 @@ msgstr "" "Project-Id-Version: sumo\n" "Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" -"POT-Creation-Date: 2023-04-15 12:21+0200\n" -"PO-Revision-Date: 2022-10-12 11:05+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"POT-Creation-Date: 2023-06-15 09:59+0200\n" +"PO-Revision-Date: 2023-06-10 19:38+0000\n" +"Last-Translator: ovari \n" +"Language-Team: Hungarian \n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18-dev\n" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:46 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:46 msgid "Reading input" -msgstr "" +msgstr "Bemenet olvasása" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:54 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:54 msgid "Consolidating statistics" -msgstr "" +msgstr "Statisztikák összevonása" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:58 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:58 msgid "Building street representation" -msgstr "" +msgstr "Utcaábrázolás építése" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:62 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:62 msgid "Generating work positions" -msgstr "" +msgstr "Munkahelyi pozíciók létrehozása" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:66 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:66 msgid "Building bus lines" -msgstr "" +msgstr "Buszvonalak építése" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:71 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:71 msgid "Generating population" -msgstr "" +msgstr "Népesség létrehozása" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:75 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:75 msgid "Allocating schools" -msgstr "" +msgstr "Iskolák kiosztása" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:79 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:79 msgid "Allocating work places" -msgstr "" +msgstr "Munkahelyek kiosztása" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:83 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:83 msgid "Allocating car places" +msgstr "Autóhelyek kiosztása" + +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:174 +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:181 +msgid "Invalid % value of edge % is treated as zero." msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGenHandler.cpp:178 +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:186 #, c-format msgid "Edge '%' is not known." -msgstr "" +msgstr "A(z) „%” éle ismeretlen." -#: /home/micha/programming/sumo/src/activitygen/AGActivityGenHandler.cpp:329 +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:337 msgid "Unknown bus station '%'." -msgstr "" +msgstr "A(z) „%” buszállomás ismeretlen." -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:61 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:61 msgid "Use FILE as SUMO-network to create trips for" msgstr "" +"Használja a FILE parancsot SUMO-hálózatként az alábbi utak létrehozásához:" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:64 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:64 msgid "Loads the SUMO-statistics FILE" -msgstr "" +msgstr "Betölti a SUMO-statistics FILE-fájlt" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:72 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:72 msgid "Write generated trips to FILE" -msgstr "" +msgstr "Létrehozott utazások írása a FILE-fájlba" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:81 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:81 msgid "" "Sets the time of beginning of the simulation during the first day (in " "seconds)" msgstr "" +"Beállítja a szimuláció kezdetének időpontját az első napon (másodpercben)" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:84 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:84 msgid "" "Sets the time of ending of the simulation during the last day (in seconds)" msgstr "" +"Beállítja a szimuláció befejezésének időpontját az utolsó napon " +"(másodpercben)" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:87 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:87 msgid "Sets the duration of the simulation in days" -msgstr "" +msgstr "Beállítja a szimuláció időtartamát (napokban)" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:64 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:111 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:64 +#: D:\Repos\sumo/src\router\ROLoader.cpp:111 msgid "Missing definition of network to load!" -msgstr "" +msgstr "Hiányzik a betöltendő hálózat meghatározása!" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:67 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:67 #, c-format msgid "The network file '%' could not be accessed." -msgstr "" +msgstr "A(z) „%” hálózati fájl nem érhető el." -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:69 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:116 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:69 +#: D:\Repos\sumo/src\router\ROLoader.cpp:116 msgid "Loading net" -msgstr "" +msgstr "Hálózat betöltése" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:79 -#: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:227 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:133 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:79 +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:227 +#: D:\Repos\sumo/src\router\ROLoader.cpp:133 #, c-format msgid "Deprecated vehicle classes '%' in input network." -msgstr "" +msgstr "A(z) „%” elavult járműosztályokat a bemeneti hálózatban." -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:89 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:89 msgid "" "Generates trips of persons throughout a day for the microscopic, multi-modal " "traffic simulation SUMO." msgstr "" +"Napi utazások létrehozása a mikroszkopikus, multimodális SUMO közlekedési " +"szimulációhoz." -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:113 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:113 #, c-format msgid "Loaded % edges." -msgstr "" +msgstr "% él betöltve." -#: /home/micha/programming/sumo/src/activitygen/city/AGCity.cpp:427 +#: D:\Repos\sumo/src\activitygen\city\AGCity.cpp:425 msgid "No street that allows passenger vehicles found in this city." msgstr "" +"Ebben a városban nem található olyan utca, ahol személygépjárművek " +"közlekedhetnek." -#: /home/micha/programming/sumo/src/activitygen/city/AGWorkPosition.cpp:126 +#: D:\Repos\sumo/src\activitygen\city\AGWorkPosition.cpp:126 msgid "Work position already occupied. Cannot give it to another adult." -msgstr "" +msgstr "A munkahely már foglalt. Nem adhatja át másik felnőttnek." -#: /home/micha/programming/sumo/src/dfrouter/RODFDetFlowLoader.cpp:76 +#: D:\Repos\sumo/src\dfrouter\RODFDetFlowLoader.cpp:76 msgid "At least one value lies beyond given time boundaries." -msgstr "" +msgstr "Legalább egy érték túl van a megadott időhatárokon." -#: /home/micha/programming/sumo/src/dfrouter/RODFDetFlowLoader.cpp:104 +#: D:\Repos\sumo/src\dfrouter\RODFDetFlowLoader.cpp:104 msgid "At least one line does not contain the correct number of columns." -msgstr "" +msgstr "Legalább egy sor nem a megfelelő számú oszlopot tartalmazza." -#: /home/micha/programming/sumo/src/dfrouter/RODFDetector.cpp:171 +#: D:\Repos\sumo/src\dfrouter\RODFDetector.cpp:171 msgid "Missing routes for detector '%'." -msgstr "" +msgstr "Hiányzó útvonalak a(z) „%” érzékelőhöz." -#: /home/micha/programming/sumo/src/dfrouter/RODFDetector.cpp:305 +#: D:\Repos\sumo/src\dfrouter\RODFDetector.cpp:305 #, c-format msgid "Detector '%' has no routes!?" -msgstr "" +msgstr "A(z) „%” érzékelőnek nincsenek útvonalai‽" -#: /home/micha/programming/sumo/src/dfrouter/RODFDetectorHandler.cpp:86 +#: D:\Repos\sumo/src\dfrouter\RODFDetectorHandler.cpp:86 msgid "Could not add detector '%' (probably the id is already used)." msgstr "" +"Nem sikerült hozzáadni a(z) „%” érzékelőt (valószínűleg az azonosító már " +"használatban van)." -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:61 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:61 msgid "Loads the SUMO-network FILE" -msgstr "" +msgstr "SUMO-hálózat betöltése a FILE-fájlból" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:70 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:70 msgid "Loads detector descriptions from FILE" -msgstr "" +msgstr "Érzékelőleírások betöltése a FILE-fájlból" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:75 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:75 msgid "Loads detector flows from FILE(s)" -msgstr "" +msgstr "Érzékelőfolyamokat betöltése a FILE-fájl(ok)ból" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:82 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:82 msgid "Saves computed routes to FILE" -msgstr "" +msgstr "Számított útvonalak mentése FILE-fájlba" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:85 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:85 msgid "Forces dfrouter to compute routes for in-between detectors" msgstr "" +"A dfrouter funkció kényszerítése a érzékelők közötti útvonalak kiszámításához" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:89 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:89 msgid "Saves typed detectors to FILE" -msgstr "" +msgstr "Beírt érzékelők mentése FILE-fájlba" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:92 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:92 msgid "Saves detector positions as pois to FILE" -msgstr "" +msgstr "Érzékelőhelyek mentése fontos helyekként a FILE-fájlban" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:95 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:95 msgid "Saves emitter definitions for source detectors to FILE" -msgstr "" +msgstr "Vezérlődefiníció mentése a forrásérzékelőhöz a FILE-fájlba" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:98 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:98 msgid "Add vehicle types to the emitters file (PKW, LKW)" -msgstr "" +msgstr "Járműtípusok hozzáadása a kibocsátó fájlhoz (PKW, LKW)" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:101 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:101 msgid "" "Write generated vehicle types into separate FILE instead of including them " "into the emitters-output" msgstr "" +"Létrehozott járműtípusok mentése külön FILE-fájlokba, ahelyett, hogy azokat " +"a kibocsátó-kimenetbe foglalná" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:104 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:104 msgid "Saves emitter positions as pois to FILE" -msgstr "" +msgstr "Kibocsátóhelyeket mentése fontos helyekként a FILE-fájlba" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:108 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:108 msgid "Saves variable seed sign definitions for sink detectors to FILE" -msgstr "" +msgstr "Menti a változó magjel-definíciókat a fogadóérzékelőkhöz a FILE-fájlba" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:111 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:111 msgid "Saves rerouter definitions for sink detectors to FILE" -msgstr "" +msgstr "Újraútválasztó-definíciós mentése fogadóvezérlőkhöz a FILE-fájlba" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:114 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:114 msgid "" "Write induction loop definitions for the given detector positions to FILE" msgstr "" +"Írja be az indukciós ismétlés definíciókat az adott vezérlőhelyekhez a FILE-" +"fájlba" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:117 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:117 msgid "Add source detectors to the validation output" -msgstr "" +msgstr "Forrásészlelők hozzáadása az érvényesítési kimenethez" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:123 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:123 msgid "Derive missing flow values from upstream or downstream (not working!)" msgstr "" +"Hiányzó folyamatértékek származtatása felfelé irányuló vagy lefelé irányuló " +"értékekből (nem működik!)" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:127 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:127 msgid "Switches to highway-mode" -msgstr "" +msgstr "Átvált autópálya módba" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:131 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:131 msgid "Only warn about unparseable detectors" -msgstr "" +msgstr "Csak értelmezhetetlen észlelők figyelmeztetése" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:135 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:135 msgid "Recomputes detector types even if given" -msgstr "" +msgstr "Újraszámítja az észlelőtípusokat, még ha adott is" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:139 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:139 msgid "Recomputes routes even if given" -msgstr "" +msgstr "Újraszámítja az útvonalakat, még ha adott is" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:143 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:143 msgid "Keeps routes even if they have exhausted max-search-depth" msgstr "" +"Útvonalak megtartása akkor is, ha kimerítette a max-search-depth (legfeljebb " +"keresési mélységet)" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:146 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:146 msgid "Keeps routes even if a shorter one exists" -msgstr "" +msgstr "Útvonalak megtartása akkor is, ha van egy rövidebb útvonal" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:150 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:150 msgid "Number of edges to follow a route without passing a detector" msgstr "" +"Azok az élek száma, amelyeken egy útvonalat kell követni anélkül, hogy egy " +"érzékelőt elhaladnának" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:153 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:153 msgid "Writes only emission times" -msgstr "" +msgstr "Csak a kibocsátási idők írása" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:156 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:156 msgid "Do not route on these edges" -msgstr "" +msgstr "Ne közlekedjen ezeken az éleken" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:159 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:159 msgid "Only route on edges allowing the given vclass" -msgstr "" +msgstr "Csak az adott vclass-járműosztályt megengedő éleken közlekedjen" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:162 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:162 msgid "Allow turnarounds as route continuations" -msgstr "" +msgstr "Megfordulások engedélyezése az útvonal folytatásaként" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:167 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:167 msgid "Minimum distance in meters between start and end node of every route" msgstr "" +"A legkisebb távolság minden útvonal kezdő és végpontja között (méterben)" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:170 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:170 msgid "generate random departure times for emitted vehicles" msgstr "" +"Véletlenszerű indulási időpontok létrehozása a kibocsátott járművek számára" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:174 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:174 msgid "Multiply flow times with TIME to get seconds" msgstr "" +"Szorozza meg a folyamatot a TIME értékkel, hogy megkapja az értéket " +"(másodpercben)" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:177 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:177 msgid "Subtracts TIME seconds from (scaled) flow times" -msgstr "" +msgstr "Kivonja a TIME másodpercet a (méretezett) folyamati időkből" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:180 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:180 msgid "Expected distance between two successive data sets" -msgstr "" +msgstr "Várható távolság két egymást követő adatkészlet között" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:185 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:185 msgid "Write calibrators to FILE" -msgstr "" +msgstr "Kalibrátorok írjása a FILE-fájlba" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:188 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:188 msgid "Include routes in the output which have no vehicles" -msgstr "" +msgstr "Olyan útvonalakat adjon meg a kimenetben, amelyeken nincsenek járművek" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:192 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:192 msgid "" "Checks whether detectors with calculated flow 0 can attract additional " "traffic" msgstr "" +"Ellenőrzi, hogy a 0 számított áramlással rendelkező észlelők vonzhatnak-e " +"további forgalmat" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:195 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:195 msgid "Removes empty detectors from the list" -msgstr "" +msgstr "Eltávolítja az üres észlelőket a listáról" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:198 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:198 msgid "" "Whether edges with unknown status can prevent an edge from becoming a source" msgstr "" +"Az ismeretlen állapotú élek megakadályozhatják-e, hogy egy él forrássá váljon" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:201 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:201 msgid "" "Try to determine further inflows to an inbetween detector when computing " "split probabilities" msgstr "" +"Próbálja meg meghatározni a további beáramlásokat egy köztes észlelőhöz a " +"felosztási valószínűségek kiszámításakor" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:205 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:205 msgid "Scale factor for flows" -msgstr "" +msgstr "Az áramlások léptéktényezője" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:209 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:123 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:167 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:199 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:209 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:123 +#: D:\Repos\sumo/src\od2trips_main.cpp:167 +#: D:\Repos\sumo/src\router\ROFrame.cpp:199 msgid "Assigns a default depart lane" -msgstr "" +msgstr "Alapértelmezett indulási sáv hozzárendelése" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:212 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:127 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:170 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:202 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:212 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:127 +#: D:\Repos\sumo/src\od2trips_main.cpp:170 +#: D:\Repos\sumo/src\router\ROFrame.cpp:202 msgid "Assigns a default depart position" -msgstr "" +msgstr "Alapértelmezett indulási hely hozzárendelése" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:215 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:131 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:173 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:205 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:215 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:131 +#: D:\Repos\sumo/src\od2trips_main.cpp:173 +#: D:\Repos\sumo/src\router\ROFrame.cpp:205 msgid "Assigns a default depart speed" -msgstr "" +msgstr "Alapértelmezett indulási sebesség hozzárendelése" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:218 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:135 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:176 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:208 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:218 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:135 +#: D:\Repos\sumo/src\od2trips_main.cpp:176 +#: D:\Repos\sumo/src\router\ROFrame.cpp:208 msgid "Assigns a default arrival lane" -msgstr "" +msgstr "Alapértelmezett érkezési sáv hozzárendelése" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:221 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:139 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:179 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:211 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:221 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:139 +#: D:\Repos\sumo/src\od2trips_main.cpp:179 +#: D:\Repos\sumo/src\router\ROFrame.cpp:211 msgid "Assigns a default arrival position" -msgstr "" +msgstr "Alapértelmezett érkezési hely hozzárendelése" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:224 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:143 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:182 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:214 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:224 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:143 +#: D:\Repos\sumo/src\od2trips_main.cpp:182 +#: D:\Repos\sumo/src\router\ROFrame.cpp:214 msgid "Assigns a default arrival speed" -msgstr "" +msgstr "Alapértelmezett érkezési sebesség hozzárendelése" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:227 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:227 msgid "The default speed deviation of vehicles" -msgstr "" +msgstr "Járművek alapértelmezett sebességeltérése" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:231 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:231 msgid "Defines the begin time; Previous defs will be discarded" -msgstr "" +msgstr "Meghatározza a kezdési időpontot; A korábbi meghatározásokat elveti" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:234 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:234 msgid "Defines the end time; Later defs will be discarded; Defaults to one day" msgstr "" +"Meghatározza a befejezési időt; A későbbi meghatározásokat elveti; " +"Alapértelmezés szerint egy nap" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:239 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:239 msgid "Lists detectors with no flow (enable -v)" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:242 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:242 msgid "Prints aggregated detector flows" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:246 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:225 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:246 +#: D:\Repos\sumo/src\router\ROFrame.cpp:225 msgid "Disable console output of route parsing step" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:113 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:113 msgid "Computing detector types" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:142 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:142 msgid "Computed detector types:" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:143 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:143 #, c-format msgid " % source detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:144 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:144 #, c-format msgid " % sink detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:145 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:145 #, c-format msgid " % in-between detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:146 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:146 #, c-format msgid " % invalid detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:281 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:281 msgid "Could not close route for '%'" -msgstr "" +msgstr "Nem sikerült lezárni az útvonalat a következőhöz: %" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:439 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:439 #, c-format msgid "" "Detector '%' has no flows.\n" " Trying to rebuild." msgstr "" +"A(z) „%” észlelőnek nincs folyamata.\n" +" Újraépítési kísérlet." -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:467 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:467 msgid " Could not build list of previous flows." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:504 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:504 msgid " Could not build list of latter flows." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:591 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:591 msgid "Removed detector '%' because no flows for him exist." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:614 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:614 #, c-format msgid "Detector '%' has no flow." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:693 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:693 #, c-format msgid "" "Quitting checking for being a source for detector '%' due to seen edge limit." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:793 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:793 #, c-format msgid "" "Quitting checking for being a destination for detector '%' due to seen edge " "limit." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:869 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:869 #, c-format msgid "" "Quitting checking for being a false source for detector '%' due to seen edge " "limit." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:1002 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:1002 msgid "Average speedFactor for PKW is % maximum speedFactor is %." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:1006 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:1006 msgid "Average speedFactor for LKW is % maximum speedFactor is %." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:70 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:70 msgid "No detector file given (use --detector-files )." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:76 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:76 msgid "Could not open detector file '%'" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:88 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:88 msgid "No detectors found." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:103 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:103 #, c-format msgid "The measure-file '%' can not be opened." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:124 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:124 msgid "Removing empty detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:128 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:128 msgid "Scanning for empty detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:143 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:143 msgid "No source detectors found." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:147 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:147 msgid "Computing routes" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:158 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:158 msgid "The detector types are not defined; use in combination with a network" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:162 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:162 msgid "The emitters have no routes; use in combination with a network" -msgstr "" +msgstr "Kibocsátók nincsenek útvonalak; hálózattal kombinálva használható" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:193 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:193 msgid "Rechecking loaded flows" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:198 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:198 msgid "Writing emitters" -msgstr "" +msgstr "Kibocsátók mentése folyamatban van" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:210 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:210 msgid "Writing emitter pois" -msgstr "" +msgstr "Kibocsátói fontos helyek mentése folyamatban van" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:217 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:217 msgid "Writing speed triggers" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:224 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:224 msgid "Writing validation detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:231 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:231 msgid "Writing highway end rerouter" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:251 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:251 msgid "Builds vehicle routes for SUMO using detector values." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:69 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:69 msgid "Write generated route alternatives to FILE" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:72 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:72 msgid "Write edge splits and connectivity to FILE" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:75 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:75 msgid "Write intermodal edges with lengths and travel times to FILE" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:78 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:78 msgid "Write trips instead of vehicles (for validating trip input)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:81 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:81 msgid "Write trips with geo-coordinates" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:84 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:84 msgid "Write trips with fromJunction and toJunction" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:87 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:87 msgid "Include the cost attribute in route output" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:92 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:559 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:92 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:565 msgid "" "Edge weights for routing are dynamically disturbed by a random factor drawn " "uniformly from [1,FLOAT)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:95 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:118 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:95 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:118 msgid "" "Aggregation period for the given weight files; triggers rebuilding of " "Contraction Hierarchy" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:98 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:112 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:568 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:98 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:112 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:574 msgid "" "Consider edge priorities in addition to travel times, weighted by factor" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:101 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:574 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:101 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:580 msgid "" "Initialize lookup table for astar from the given file (generated by marouter " "--all-pairs-output)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:104 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:577 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:104 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:583 msgid "Initialize lookup table for astar ALT-variant from the given file" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:107 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:107 msgid "Save lookup table for astar ALT-variant to the given file" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:117 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:206 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:117 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:206 msgid "Use FLOAT as Gawron's beta" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:121 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:210 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:121 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:210 msgid "Use FLOAT as Gawron's a" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:124 -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:62 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:213 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:124 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:62 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:213 msgid "Write exit times (weights) for each edge" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:127 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:251 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:127 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:251 msgid "Include total route length in the output" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:130 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:216 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:130 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:216 msgid "Save routes with near zero probability" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:133 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:219 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:133 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:219 msgid "Only reuse routes from input, do not calculate new ones" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:136 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:136 msgid "The probability of keeping the old route" -msgstr "" +msgstr "Régi útvonal megtartásának valószínűsége" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:139 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:139 msgid "Route all public transport input" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:142 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:202 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:142 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:202 msgid "Choose a route choice method: gawron, logit, or lohse" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:145 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:145 msgid "Use c-logit model (deprecated in favor of --route-choice-method logit)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:149 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:149 msgid "Use FLOAT as logit's beta" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:153 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:153 msgid "Use FLOAT as logit's gamma" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:157 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:157 msgid "Use FLOAT as logit's theta (negative values mean auto-estimation)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:160 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:580 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:160 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:586 msgid "" "Use FLOAT as a factor on pedestrian maximum speed during intermodal routing" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:163 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:583 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:163 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:589 msgid "" "Use FLOAT as a factor on walking speed against vehicle traffic direction" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:170 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:590 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:170 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:596 msgid "Where taxis can drop off customers ('allJunctions, 'ptStops')" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:173 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:593 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:173 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:599 msgid "Where taxis can pick up customers ('allJunctions, 'ptStops')" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:176 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:599 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:176 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:605 msgid "Estimated time for taxi pickup" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:179 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:602 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:179 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:608 msgid "" "Use FLOAT as a maximum train length when initializing the railway router" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:216 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:216 msgid "Routing algorithm '%' does not support weight-attribute '%'." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:220 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:220 #, c-format msgid "Routing algorithm '%' does not support bulk routing." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:228 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:243 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:228 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:243 msgid "Invalid route choice method '%'." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:232 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:232 msgid "" "The --logit option is deprecated, please use --route-choice-method logit." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:244 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:244 msgid "Cannot derive file name for alternatives output, skipping it." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:251 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:251 msgid "" "Option --write-trips.junctions takes no affect when --write-trips is " "disabled." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:107 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:107 #, c-format msgid "Routing algorithm '%' does not support restriction-params" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:151 -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:180 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:151 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:180 msgid "Unknown routing Algorithm '%'!" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:178 -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:210 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:178 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:210 msgid "No weight data was loaded for attribute '%'." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:238 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:238 msgid "" "Shortest path router and DUE computer for the microscopic, multi-modal " "traffic simulation SUMO." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTREdge.cpp:64 +#: D:\Repos\sumo/src\jtrrouter\ROJTREdge.cpp:64 #, c-format msgid "The edges '%' and '%' are not connected." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:59 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:59 msgid "Read turning ratios from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:69 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:69 msgid "Use STR[] as default turn definition" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:73 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:73 msgid "Use STR[] as list of sink edges" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:76 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:76 msgid "Whether all edges are allowed as sink edges" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:79 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:79 msgid "Ignore road restrictions based on vehicle class" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:82 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:82 msgid "Allow to re-use a road" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:85 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:85 msgid "Use all source edges as sink edges." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:88 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:88 msgid "" "Subtract upstream flow when inserting a new flow. When option --sources-are-" "sinks is set, the upstream flow is limited to the value of the source flow " "and the remaining part terminates." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:68 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:68 msgid "" "The turn-file format with elements %, % is deprecated, please use % instead." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:87 -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:143 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:87 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:143 #, c-format msgid "The edge '%' declared as a sink is not known." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:116 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:116 msgid "Ignoring flow '%' without 'from'" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:128 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:128 #, c-format msgid "The edge '%' declared as a source is not known." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:152 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:152 #, c-format msgid "" "The edge '%' is not known within the network (within a 'from-edge' tag)." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:172 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:172 #, c-format msgid "The edge '%' is not known within the network (within a 'to-edge' tag)." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:178 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:178 msgid "'probability' must be positive (in definition of to-edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:201 -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:206 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1302 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1400 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:201 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:206 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1302 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1400 #, c-format msgid "The edge '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:210 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:210 msgid "'probability' must be positive (in edgeRelation from '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:94 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:94 msgid "" "The defaults for turnings must be a tuple of at least two numbers divided by " "','." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:101 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:101 msgid "A turn default is not numeric." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:182 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:182 msgid "" "Router for the microscopic, multi-modal traffic simulation SUMO based on " "junction turning ratios." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/GUI.cpp:330 +#: D:\Repos\sumo/src\libsumo\GUI.cpp:332 msgid "This system has no OpenGL support. Exiting." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:904 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:904 #, c-format msgid "" "Ignoring veh '%' no-opposite subscription filter for geographic range object " "collection. Consider using the 'lanes' filter." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1067 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1067 msgid "" "Lanes filter is only feasible for context domain 'vehicle' (current is '%'), " "ignoring filter..." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1164 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1164 msgid "" "Turn filter is only feasible for context domain 'vehicle' (current is '%'), " "ignoring filter..." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1229 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1229 msgid "" "Field of vision opening angle ('%') should be within interval (0, 360), " "ignoring filter..." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1341 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1341 msgid "" "addSubscriptionFilterLateralDistance could not determine shape of lane '%' " "with a lateral shift of %." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1399 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1399 msgid "Vehicle '%' was removed though being controlled by TraCI" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1408 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1408 msgid "Person '%' was removed though being controlled by TraCI" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/MeanData.cpp:83 +#: D:\Repos\sumo/src\libsumo\MeanData.cpp:83 msgid "Found % meanData definitions with id '%'." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Person.cpp:530 +#: D:\Repos\sumo/src\libsumo\Person.cpp:535 #, c-format msgid "" "Departure time=% for person '%' is in the past; using current time=% instead." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Person.cpp:929 -msgid "Could not determine position on lane '% at lateral position %." +#: D:\Repos\sumo/src\libsumo\Person.cpp:934 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1741 +msgid "Could not determine position on lane '%' at lateral position %." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Simulation.cpp:105 +#: D:\Repos\sumo/src\libsumo\Simulation.cpp:105 msgid "Simulation version % started via libsumo with time: %." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Simulation.cpp:699 +#: D:\Repos\sumo/src\libsumo\Simulation.cpp:699 msgid "" "Ignoring vehicle type '%' when performing intermodal routing because it is " "not allowed on the start edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/TrafficLight.cpp:697 +#: D:\Repos\sumo/src\libsumo\TrafficLight.cpp:697 #, c-format msgid "" "Cannot check for all deadlocks on swapConstraints because the route for " "vehicle '%' is not computed yet" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1122 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1133 msgid "" "Stop replacement parameter 'teleport=%' ignored for vehicle '%' when only " "removing stop." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1231 -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1354 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1246 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1374 msgid "Unsupported parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1306 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1326 msgid "Waypoint (speed = %) at index % does not support triggers" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1340 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1360 msgid "" "Triggered stop at index % cannot be changed into a waypoint by setting speed " "to %" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1457 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1477 #, c-format msgid "Ignoring changeLaneRelative for vehicle '%' that isn't on the road" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1459 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1479 msgid "Ignoring indexOffset % for vehicle '%' on laneIndex %." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1551 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1575 #, c-format msgid "" "Departure time for vehicle '%' is in the past; using current time instead." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1717 -msgid "Could not determine position on lane '%' at lateral position %." -msgstr "" - -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1914 -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:422 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1938 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:422 msgid "Invalid route replacement for vehicle '%'. %" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:2597 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:2634 msgid "" "Ignoring lane change subscription filter with non-neighboring lane offset " "direction=%." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/VehicleType.cpp:289 +#: D:\Repos\sumo/src\libsumo\VehicleType.cpp:322 #, c-format msgid "Automatically setting emergencyDecel to % for vType '%' to match decel." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/VehicleType.cpp:301 +#: D:\Repos\sumo/src\libsumo\VehicleType.cpp:334 msgid "New value of emergencyDecel (%) is lower than decel (%)" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAAssignments.cpp:190 +#: D:\Repos\sumo/src\marouter\ROMAAssignments.cpp:190 msgid "Unknown origin '%'." msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAAssignments.cpp:194 +#: D:\Repos\sumo/src\marouter\ROMAAssignments.cpp:194 msgid "Unknown destination '%'." msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:71 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:121 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:71 +#: D:\Repos\sumo/src\od2trips_main.cpp:121 msgid "Does not save vtype information" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:74 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:74 msgid "Writes edge loads and final costs into FILE" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:77 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:77 msgid "Writes complete distance matrix into FILE" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:81 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:85 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:81 +#: D:\Repos\sumo/src\od2trips_main.cpp:85 msgid "Loads O/D-files from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:86 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:90 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:86 +#: D:\Repos\sumo/src\od2trips_main.cpp:90 msgid "Loads O/D-matrix in Amitran format from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:89 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:93 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:89 +#: D:\Repos\sumo/src\od2trips_main.cpp:93 msgid "Loads O/D-matrix in tazRelation format from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:93 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:97 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:93 +#: D:\Repos\sumo/src\od2trips_main.cpp:97 msgid "Define data attribute for loading counts (default 'count')" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:96 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:96 msgid "The travel time influence of prior intervals" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:99 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:99 msgid "Parameter key(s) defining source (and sink) taz" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:102 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:102 msgid "Ignore attributes 'fromTaz' and 'toTaz'" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:106 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:106 msgid "" "Defines the time interval when aggregating single vehicle input; Defaults to " "one hour" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:109 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:109 msgid "Ignore edge priorities when calculating capacities and restraints" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:115 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:115 msgid "" "Aggregate routing queries with the same origin for different vehicle types" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:153 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:137 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:153 +#: D:\Repos\sumo/src\od2trips_main.cpp:137 msgid "Scales the loaded flows by FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:156 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:146 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:156 +#: D:\Repos\sumo/src\od2trips_main.cpp:146 msgid "Defines the name of the vehicle type to use" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:159 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:159 msgid "Defines the prefix for vehicle flow names" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:162 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:152 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:162 +#: D:\Repos\sumo/src\od2trips_main.cpp:152 msgid "Uses STR[] as a timeline definition" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:165 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:155 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:165 +#: D:\Repos\sumo/src\od2trips_main.cpp:155 msgid "Uses STR as a 24h-timeline definition" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:168 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:168 msgid "Keep traffic flows of all time slots in the net" -msgstr "" +msgstr "Forgalom megtartása az összes időrés a hálózaton" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:172 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:172 msgid "Choose a assignment method: incremental, UE or SUE" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:175 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:175 msgid "Use FLOAT as tolerance when checking for SUE stability" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:178 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:178 msgid "" "Use left-turn penalty FLOAT to calculate link travel time when searching " "routes" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:181 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:181 msgid "" "Use INTEGER as the number of paths needed to be searched for each OD pair at " "each iteration" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:184 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:184 msgid "Penalize existing routes with FLOAT to find secondary routes" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:188 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:188 msgid "Use FLOAT as the upper bound to determine auxiliary link cost" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:192 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:192 msgid "Use FLOAT as the lower bound to determine auxiliary link cost" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:195 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:195 msgid "" "maximal number of iterations for new route searching in incremental and " "stochastic user assignment" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:198 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:198 msgid "" "maximal number of inner iterations for user equilibrium calculation in the " "stochastic user assignment" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:223 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:223 msgid "Use FLOAT as (c-)logit's beta for the commonality factor" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:227 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:227 msgid "Use FLOAT as (c-)logit's gamma for the commonality factor" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:231 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:231 msgid "Use FLOAT as (c-)logit's theta" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:239 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:239 msgid "Invalid assignment method '%'." msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:247 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:247 msgid "" "Contraction hierarchies do not work with k shortest path search (please use " "a different routing algorithm)!" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMARouteHandler.cpp:87 +#: D:\Repos\sumo/src\marouter\ROMARouteHandler.cpp:87 msgid "No origin or no destination given, ignoring '%'!" msgstr "" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:239 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:239 msgid "" "Deterministic user equilibrium ('UE') is not implemented yet, using " "stochastic method ('SUE')." msgstr "" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:323 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:315 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:323 +#: D:\Repos\sumo/src\od2trips_main.cpp:315 msgid "No output file given." msgstr "" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:340 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:340 msgid "" "Import O/D-matrices for macroscopic traffic assignment to generate SUMO " "routes." msgstr "" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:376 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:376 msgid "No districts loaded, will use edge ids!" msgstr "" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:387 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:387 msgid "No valid vehicles loaded." msgstr "" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:390 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:285 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:390 +#: D:\Repos\sumo/src\od2trips_main.cpp:285 msgid "Loading failed." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:89 -#: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:66 -#: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:184 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:89 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:66 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:185 msgid "Vehicle '%' teleports beyond arrival edge '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:109 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:109 msgid "Vehicle '%' ends teleporting on edge '%':%, time=%." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:167 -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:197 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:167 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:197 msgid "Teleporting vehicle '%'; waited too long, from edge '%':%, time=%." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:187 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:187 msgid "" "Teleporting vehicle '%'; waited too long, from edge '%':% to edge '%':%, " "time=%." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:137 -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:603 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:137 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:603 msgid "Clearing jam at calibrator '%' at time=%." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:145 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:145 msgid "Could not clear jam at calibrator '%' at time=%." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:177 -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:414 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:177 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:414 msgid "No valid routes in calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:181 -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:418 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:181 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:418 msgid "Route '%' in calibrator '%' does not contain edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:220 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:220 msgid "Join stops are not available in meso yet (vehicle '%', segment '%')." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:247 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:247 msgid "" "Vehicle '%' has multiple stops on segment '%', time=% (stop-output will be " "merged)." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:370 -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1669 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:370 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1656 #, c-format msgid "" "Vehicle '%' ignores triggered stop on lane '%' due to capacity constraints." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:387 -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1684 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:387 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1671 #, c-format msgid "" "Vehicle '%' ignores container triggered stop on lane '%' due to capacity " "constraints." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:554 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:554 msgid "Error: Invalid vehicles in state (may be a micro state)!" msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.h:188 -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.h:194 -msgid "parkingZoneReroute not implemented for meso" -msgstr "" - -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:172 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:172 msgid "Changing a vehicle ID is not permitted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:289 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:289 msgid "Vehicle '%' is not allowed on any lane of via edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:317 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:317 msgid "Vehicle '%' has no valid route from edge '%' to stop edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:361 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:361 #, c-format msgid "Vehicle '%' has no valid route." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:363 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:363 msgid "Removing vehicle '%' which has no valid route." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:377 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:377 #, c-format msgid "No route for vehicle '%' found." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:447 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:447 #, c-format msgid "current edge '%' not found in new route" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:460 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:460 msgid "Vehicle is on junction-internal edge leading elsewhere" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:473 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:473 msgid "" "Vehicle is moving past junction and committed to move to another successor " "edge" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:543 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:543 msgid "Vehicle '%' could not assign stop '%' after rerouting (%) at time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:683 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:683 msgid "No connection between edge '%' and edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:692 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:692 #, c-format msgid "Edge '%' prohibits." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:706 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:706 #, c-format msgid "Vehicle '%' is not allowed to depart on its first edge." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:736 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:736 msgid "Vehicle '%' has no valid route. %" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:799 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:799 msgid "" "Vehicle '%' ignores attribute arrivalEdge=% after rerouting at time=% " "(routeLength=%)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:813 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:813 msgid "Vehicle '%' will not be able to arrive at the given position!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:833 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:833 msgid "Vehicle '%' will not be able to arrive at the given lane '%_%'!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:845 -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:857 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:845 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:857 msgid "Vehicle '%' has no usable arrivalLane on edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:869 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:869 msgid "Vehicle '%' will not be able to arrive with the given speed!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:885 -msgid "Ignoring departEdge % for vehicle '% with % route edges" +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:885 +msgid "Ignoring departEdge % for vehicle '%' with % route edges" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.h:879 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.h:909 msgid "getLeader not yet implemented for meso" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.h:893 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.h:923 msgid "getFollower not yet implemented for meso" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:660 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:660 msgid "" "Choosing new speed factor % for vehicle '%' to match departure speed % (max " "%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1264 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1264 #, c-format msgid "Bidi-edge '%' does not exist" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1277 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1277 msgid "Ambiguous superposable edges between junction '%' and '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1308 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1308 #, c-format msgid "Edge '%s' and bidi edge '%s' have no matching bidi lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:78 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:78 msgid "Load road network description from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:83 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:83 msgid "Load routes descriptions from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:87 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:87 msgid "Load further descriptions from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:91 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:91 msgid "Load edge/lane weights for online rerouting from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:94 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:108 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:94 +#: D:\Repos\sumo/src\router\ROFrame.cpp:108 msgid "Name of the xml attribute which gives the edge weight" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:97 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:97 msgid "Loads a network state from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:99 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:99 msgid "Shifts all times loaded from a saved state by the given offset" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:101 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:101 msgid "Removes vehicles with the given IDs from the loaded state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:104 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:134 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:104 +#: D:\Repos\sumo/src\router\ROFrame.cpp:134 msgid "" "Initialize a TAZ for every junction to use attributes toJunction and " "fromJunction" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:114 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:114 msgid "Save complete network states into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:119 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:119 msgid "Write also empty edges completely when dumping" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:124 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:124 msgid "Write positions and speeds with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:128 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:128 msgid "Save the emission values of each vehicle" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:130 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:130 msgid "Write emission values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:132 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:132 msgid "Save the positions in emission output using geo-coordinates (lon/lat)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:135 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:135 msgid "" "Write emission values scaled to the step length rather than as per-second " "values" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:138 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:138 msgid "Save the battery values of each vehicle" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:140 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:140 msgid "Write battery values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:143 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:143 msgid "Save the elecHybrid values of each vehicle" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:145 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:145 msgid "Write elecHybrid values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:147 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:147 msgid "Write elecHybrid values into one aggregated file" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:150 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:150 msgid "Write data of charging stations" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:153 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:153 msgid "Write data of overhead wire segments" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:156 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:156 msgid "Write data of electrical substation stations" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:158 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:158 msgid "Write substation values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:161 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:161 msgid "Save the Floating Car Data" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:163 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:163 msgid "Save the Floating Car Data using geo-coordinates (lon/lat)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:165 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:165 msgid "Add the vehicle signal state to the FCD output (brake lights etc.)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:167 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:167 msgid "Add kilometrage to the FCD output (linear referencing)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:169 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:169 msgid "Add acceleration to the FCD output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:171 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:171 msgid "" "Add leader vehicle information to the FCD output (within the given distance)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:173 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:173 msgid "Add generic parameter values to the FCD output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:175 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:175 msgid "Restrict fcd output to the edge selection from the given input file" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:177 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:177 msgid "List attributes that should be included in the FCD output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:179 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:179 msgid "List shape names that should be used to filter the FCD output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:182 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:182 msgid "" "Restrict SSM device output to the edge selection from the given input file" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:185 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:185 msgid "Save a lot of information for each timestep (very redundant)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:188 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:188 msgid "Save the vehicle queues at the junctions (experimental)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:190 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:190 msgid "Save vehicle queues with the given period" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:193 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:193 msgid "" "Save complete vehicle positions inclusive speed values in the VTK Format " "(usage: /path/out will produce /path/out_$TIMESTEP$.vtp files)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:195 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:195 msgid "Save the vehicle trajectories in the Amitran format" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:200 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:200 msgid "Save aggregated vehicle departure info into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:203 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:203 msgid "Save summary-output with the given period" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:206 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:206 msgid "Save aggregated person counts into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:210 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:210 msgid "Save single vehicle trip info into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:213 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:213 msgid "" "Write tripinfo output for vehicles which have not arrived at simulation end" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:216 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:216 msgid "" "Write tripinfo output for vehicles which have not departed at simulation end " "because of depart delay" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:220 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:220 msgid "Save personinfo and containerinfo to separate FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:224 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:224 msgid "Save single vehicle route info into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:228 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:228 msgid "Write the exit times for all edges" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:232 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:232 msgid "Write the last route only" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:236 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:236 msgid "Sorts the output by departure time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:240 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:240 msgid "Write the output in the duarouter alternatives style" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:243 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:243 msgid "Write costs for all routes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:247 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:247 msgid "Write the output with the intended instead of the real departure time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:254 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:254 msgid "" "Write vehroute output for vehicles which have not arrived at simulation end" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:257 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:257 msgid "Skip vehroute output for public transport vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:260 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:260 msgid "Include invalid routes and route stubs in vehroute output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:263 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:263 msgid "Include information about edges between stops" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:266 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:266 msgid "" "Write the vehicle speedFactor (defaults to 'true' if departSpeed is written)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:269 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:269 msgid "Include internal edges in the output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:273 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:273 msgid "Save person and container routes to separate FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:276 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:276 msgid "Save links states into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:279 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:279 msgid "Save railsignal-blocks into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:282 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:282 msgid "" "Save bluetooth visibilities into FILE (in conjunction with device.btreceiver " "and device.btsender)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:285 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:285 msgid "Record lane changes and their motivations for all vehicles into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:288 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:288 msgid "Record start of lane change manoeuvres" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:291 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:291 msgid "Record end of lane change manoeuvres" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:294 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:294 msgid "Record coordinates of lane change manoeuvres" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:297 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:297 msgid "" "Record stops and loading/unloading of passenger and containers for all " "vehicles into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:299 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:299 msgid "Write stop output for stops which have not ended at simulation end" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:302 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:302 msgid "Write collision information into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:305 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:305 msgid "Write aggregated traffic statistics for all edges into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:307 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:307 msgid "Write aggregated traffic statistics for all lanes into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:311 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:311 msgid "Write overall statistics into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:315 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:315 msgid "Save movereminder states of selected vehicles into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:317 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:317 msgid "List of vehicle ids which shall save their movereminder states" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:321 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:321 msgid "Use TIME[] as times at which a network state written" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:323 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:323 msgid "save state repeatedly after TIME period" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:325 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:325 msgid "Keep only the last INT periodic state files" -msgstr "" +msgstr "Csak az utolsó INT időszakos állapotfájl megtartása" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:327 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:327 msgid "Prefix for network states" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:329 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:329 msgid "Suffix for network states (.xml.gz or .xml)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:331 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:331 msgid "Files for network states" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:333 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:333 msgid "Save random number generator states" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:335 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:335 msgid "Save person and container states (experimental)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:337 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:337 msgid "Save rail signal constraints" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:339 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:339 msgid "Write internal state values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:343 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:343 msgid "Defines the begin time in seconds; The simulation starts at this time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:346 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:346 msgid "Defines the end time in seconds; The simulation ends at this time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:349 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:349 msgid "Defines the step duration in seconds" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:352 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:352 msgid "" "Whether to use ballistic method for the positional update of vehicles " "(default is a semi-implicit Euler method)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:355 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:355 msgid "" "Whether vehicles that depart between simulation steps should extrapolate the " "depart position" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:358 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:358 msgid "Defines the number of threads for parallel simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:361 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:361 msgid "" "Defines the resolution in m when handling lateral positioning within a lane " "(with -1 all vehicles drive at the center of their lane" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:365 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:142 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:365 +#: D:\Repos\sumo/src\router\ROFrame.cpp:142 msgid "Load routes for the next number of seconds ahead" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:368 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:145 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:368 +#: D:\Repos\sumo/src\router\ROFrame.cpp:145 msgid "Disable (junction) internal links" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:371 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:371 msgid "" "Ignore vehicles which block the junction after they have been standing for " "SECONDS (-1 means never ignore)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:374 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:374 msgid "Do not check whether routes are connected" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:377 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:377 msgid "Do not check whether accidents occur" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:380 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:380 msgid "How to deal with collisions: [none,warn,teleport,remove]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:383 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:383 +msgid "" +"How to deal with collisions between vehicle and pedestrian: [none,warn," +"teleport,remove]" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:386 msgid "" "Let vehicle stop for TIME before performing collision.action (except for " "action 'none')" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:386 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:389 +msgid "" +"Let vehicle stop for TIME before performing intermodal-collision.action " +"(except for action 'none')" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:392 msgid "Enables collisions checks on junctions" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:389 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:395 msgid "Increase or decrease sensitivity for junction collision check" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:392 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:398 msgid "" "Sets the fraction of minGap that must be maintained to avoid collision " "detection. If a negative value is given, the carFollowModel parameter is used" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:395 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:401 msgid "Delay vehicle insertion to stay within the given maximum number" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:398 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:404 msgid "" "Abort the simulation if the given maximum number of teleports is exceeded" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:401 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:407 msgid "" "Scale demand by the given factor (by discarding or duplicating vehicles)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:404 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:410 msgid "Suffix to be added when creating ids for cloned vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:407 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:413 msgid "" "Specify how long a vehicle may wait until being teleported, defaults to 300, " "non-positive values disable teleporting" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:410 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:416 msgid "" "The waiting time after which vehicles on a fast road (speed > 69km/h) are " "teleported if they are on a non-continuing lane" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:413 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:419 msgid "" "The waiting time after which vehicles on a fast road (default: speed > 69km/" "h) are teleported if they are on a non-continuing lane" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:416 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:422 msgid "" "The waiting time after which vehicles with a disconnected route are " "teleported. Negative values disable teleporting" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:419 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:425 msgid "" "Whether vehicles shall be removed after waiting too long instead of being " "teleported" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:422 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:428 msgid "" "The waiting time after which persons / containers waiting for a pickup are " "teleported. Negative values disable teleporting" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:425 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:431 msgid "" "The waiting time after which vehicles on bidirectional edges are teleported" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:428 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:434 msgid "" "Length of time interval, over which accumulated waiting time is taken into " "account (default is 100s.)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:431 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:437 msgid "Minimum consecutive waiting time before applying startupDelay" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:434 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:440 msgid "" "How long vehicles wait for departure before being skipped, defaults to -1 " "which means vehicles are never skipped" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:437 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:443 msgid "" "Whether insertion on an edge shall not be repeated in same step once failed" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:440 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:446 msgid "Whether each vehicle is checked separately for insertion on an edge" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:443 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:449 msgid "" "Allow inserting a vehicle in a situation which requires emergency braking" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:446 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:452 msgid "" "Each vehicle receives a random offset to its depart value drawn uniformly " "from [0, TIME]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:449 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:455 msgid "Duration of a lane change maneuver (default 0)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:452 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:458 msgid "Whether overtaking on the right on motorways is permitted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:455 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:461 msgid "Switches off all traffic lights." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:458 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:464 msgid "Sets default visibility for actuation detectors" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:461 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:467 msgid "Sets default jam-threshold parameter for all actuation detectors" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:464 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:470 msgid "Sets default detector length parameter for all actuation detectors" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:467 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:473 msgid "Sets default range for detecting delayed vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:470 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:476 msgid "Minimum deceleration when braking at yellow" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:473 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:479 msgid "Let railsignals operate in moving-block mode by default" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:476 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:482 msgid "" "Specify how long a vehicle may wait until impatience grows from 0 to 1, " "defaults to 300, non-positive values disable impatience growth" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:479 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:485 msgid "" "Length of the default interval length between action points for the car-" "following and lane-change models (in seconds). If not specified, the " @@ -1963,918 +2008,940 @@ "length." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:482 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:488 msgid "Select default car following model (Krauss, IDM, ...)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:486 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:492 msgid "" "Select default speed deviation. A negative value implies vClass specific " "defaults (0.1 for the default passenger class" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:489 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:495 msgid "" "Select default emergencyDecel value among ('decel', 'default', FLOAT) which " "sets the value either to the same as the deceleration value, a vClass-class " "specific default or the given FLOAT in m/s^2" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:492 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:498 msgid "Use Kirchhoff's laws for solving overhead wire circuit" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:495 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:501 msgid "" "Enable recuperation from the vehicle equipped with elecHybrid device into " "the overhead wire." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:498 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:504 msgid "" "Enable current limits of traction substation during solving the overhead " "wire electrical circuit." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:501 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:507 msgid "" "Sets the fraction of emergency decel capability that must be used to trigger " "a warning." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:504 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:510 msgid "" "Whether parking simulation includes maneuvering time and associated lane " "blocking" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:507 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:513 msgid "Override stop until times with stop ended times when given" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:510 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:516 msgid "Override stop arrival times with stop started times when given" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:514 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:520 msgid "Select among pedestrian models ['nonInteracting', 'striping', 'remote']" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:517 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:523 msgid "" "Width of parallel stripes for segmenting a sidewalk (meters) for use with " "model 'striping'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:520 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:526 msgid "Factor for random slow-downs [0,1] for use with model 'striping'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:523 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:529 msgid "" "Minimal gap / safety buffer (in meters) from a pedestrian to another vehicle " "for use with model 'striping'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:526 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:532 msgid "" "Time in seconds after which pedestrians start squeezing through a jam when " "using model 'striping' (non-positive values disable squeezing)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:528 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:534 msgid "" "Time in seconds after which pedestrians start squeezing through a jam while " "on a pedestrian crossing when using model 'striping' (non-positive values " "disable squeezing)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:530 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:536 msgid "" "Time in seconds after which pedestrians start squeezing through a jam while " "on a narrow lane when using model 'striping'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:533 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:539 msgid "Fraction of stripes to reserve for oncoming pedestrians" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:536 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:542 msgid "" "Fraction of stripes to reserve for oncoming pedestrians on crossings and " "walkingareas" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:539 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:545 msgid "Maximum width in m to reserve for oncoming pedestrians" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:542 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:548 msgid "Interpret departPosLat for walks in legacy style" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:545 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:551 msgid "" "Generate INT intermediate points to smooth out lanes within the walkingarea" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:548 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:554 msgid "The address (host:port) of the external simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:551 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:557 msgid "" "Tolerance to apply when matching pedestrian and vehicle positions on " "boarding at individual stops" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:562 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:568 msgid "" "Apply the given time penalty when computing minimum routing costs for minor-" "link internal lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:565 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:571 msgid "" "Apply scaled travel time penalties based on green split when computing " "minimum routing costs for internal lanes at traffic lights" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:571 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:577 msgid "" "Distinguish travel time by turn direction and shift a fraction of the " "estimated time loss ahead of the intersection onto the internal edges" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:596 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:602 msgid "" "When set, trips between the same origin and destination will share a taxi by " "default" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:605 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:611 msgid "Replay exact rerouting sequence from vehroute-output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:610 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:59 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:133 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:123 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:616 +#: D:\Repos\sumo/src\router\ROFrame.cpp:59 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:133 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:123 msgid "Return fuel consumption values in (legacy) unit l instead of mg" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:613 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:90 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:136 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:126 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:619 +#: D:\Repos\sumo/src\router\ROFrame.cpp:90 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:136 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:126 msgid "Determines where to load PHEMlight definitions from" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:616 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:93 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:139 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:129 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:622 +#: D:\Repos\sumo/src\router\ROFrame.cpp:93 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:139 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:129 msgid "Enable fleet age modelling with the given reference year in PHEMlight5" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:619 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:96 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:142 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:132 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:625 +#: D:\Repos\sumo/src\router\ROFrame.cpp:96 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:142 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:132 msgid "Set ambient temperature to correct NOx emissions in PHEMlight5" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:628 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:634 msgid "Disable performance reports for individual simulation steps" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:631 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:637 msgid "Enable statistics on vehicle trips" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:634 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:640 msgid "Disable console output of current simulation step" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:637 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:643 msgid "Number of simulation steps between step-log outputs" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:642 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:648 msgid "Enables TraCI Server if set" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:644 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:650 msgid "Expected number of connecting clients" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:648 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:654 msgid "Enables mesoscopic simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:650 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:656 msgid "Length of an edge segment in mesoscopic simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:652 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:658 msgid "Factor for calculating the net free-free headway time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:654 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:660 msgid "Factor for calculating the net free-jam headway time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:656 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:662 msgid "Factor for calculating the jam-free headway time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:658 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:664 msgid "Factor for calculating the jam-jam headway time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:663 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:669 msgid "Enable multiple queues at edge ends" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:665 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:671 msgid "Enable separate queues for every lane" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:667 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:673 msgid "" "Do not build queues (or reduce capacity) for lanes allowing only the given " "vclasses" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:670 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:676 msgid "Enable mesoscopic traffic light and priority junction handling" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:684 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:690 msgid "Enable mesoscopic overtaking" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:686 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:692 msgid "" "Time interval for rechecking insertion into the next segment after failure" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:698 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:704 msgid "Load visualisation settings from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:701 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:707 msgid "Quits the GUI when the simulation stops" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:704 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:710 msgid "Start the GUI in gaming mode" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:707 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:713 msgid "Select the game type ('tls', 'drt')" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:710 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:716 msgid "Start the simulation after loading" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:713 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:719 msgid "Use FLOAT in ms as delay between simulation steps" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:716 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:722 msgid "Use TIME[] as times when the simulation should halt" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:720 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:726 msgid "Load edge/lane weights for visualization from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:723 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:729 msgid "Load a secondary road network for abstract visualization from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:726 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:732 msgid "Restart the simulation after ending (demo mode)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:729 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:735 msgid "Do not load background pictures" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:732 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:738 msgid "Load current viewport from registry" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:735 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:741 msgid "Create initial window with the given x,y size" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:738 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:744 msgid "Create initial window at the given x,y position" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:741 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:747 msgid "The aggregation period for value tracker windows" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:745 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:751 msgid "Start with an OpenSceneGraph view instead of the regular 2D view" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:750 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:756 msgid "Enable overlay for screen recognition" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:754 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:760 msgid "Enable output messages during GUI-Testing" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:758 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:764 msgid "Save gui settings in the given settings output file" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:809 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:815 msgid "No network file (-n) specified." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:813 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:819 msgid "Invalid scaling factor." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:817 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:823 msgid "A vehroute-output file is needed for exit times." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:829 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:835 msgid "You can either restart or quit on end." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:834 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:840 msgid "" "The option 'meso-junction-control.limited' implies 'meso-junction-control'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:852 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:858 msgid "The begin time should not be negative." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:862 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:868 msgid "The end time should be after the begin time." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:867 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:873 msgid "the minimum step-length is 0.001" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:882 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:888 msgid "The save-state time=% will not be used before simulation end at %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:894 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:900 msgid "" "option movereminder-output.vehicles requires option movereminder-output to " "be set" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:899 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:905 msgid "" "The option 'sloppy-insert' is deprecated, because it is now activated by " "default, see the new option 'eager-insert'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:902 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:908 msgid "" "Only one of the options 'lanechange.duration' or 'lateral-resolution' may be " "given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:906 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:912 msgid "Sublane dynamics are not supported by mesoscopic simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:910 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:916 msgid "" "The option 'ignore-accidents' is deprecated. Use 'collision.action none' " "instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:923 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:929 msgid "" "The option tripinfo-output.write-undeparted implies tripinfo-output.write-" "unfinished." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:945 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:951 #, c-format msgid "Unknown model '%' for option 'carfollow.model'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:954 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:960 #, c-format msgid "" "Invalid value '%' for option 'default.emergencydecel'. Must be a FLOAT or " "'default' or 'decel'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:960 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:966 msgid "You need a non-negative delay." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:973 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:979 msgid "Parallel simulation is only possible when compiled with Fox." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:978 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:984 msgid "You need at least one thread." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:982 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:988 msgid "" "Number of threads exceeds number of thread-rngs. Simulation runs with the " "same seed may produce different results" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:985 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:991 msgid "game.mode must be one of ['tls', 'drt']" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:992 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:998 msgid "" "Invalid transfer option '%'. Must be one of 'parkingAreas', 'ptStops' and " "'allJunctions'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:1051 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:1057 msgid "" "Integration method was set to 'ballistic', since a default action step " "length was specified." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSInsertionControl.cpp:276 -#: /home/micha/programming/sumo/src/router/RONet.cpp:481 +#: D:\Repos\sumo/src\microsim\MSInsertionControl.cpp:276 +#: D:\Repos\sumo/src\router\RONet.cpp:481 #, c-format msgid "Another vehicle with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSInternalJunction.cpp:55 +#: D:\Repos\sumo/src\microsim\MSInternalJunction.cpp:55 #, c-format msgid "Internal junction % has no incoming lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:312 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:314 msgid "Unequal lengths of neigh lane '%' and lane '%' (% != %)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:321 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:323 msgid "Unequal lengths of bidi lane '%' and lane '%' (% != %)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:758 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:760 #, c-format msgid "Vehicle '%' is inserted in emergency situation." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:764 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:766 msgid "Vehicle '%' will not be able to depart using the given velocity (%)!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:780 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:782 msgid "" "Invalid departPos % given for vehicle '%'. Inserting at lane end instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1025 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:1027 msgid "" "Vehicle '%' is inserted too fast and will violate the speed limit on a lane " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1029 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:1031 msgid "" "Vehicle '%' will not be able to depart using the given velocity (slow lane " "ahead)!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1658 -msgid "" -"Vehicle '%' collision with person '%', lane='%', gap=%, time=%, stage=%." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2059 +msgid "Vehicle '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1800 -msgid "Vehicle '%' collision with person '%', lane='%', time=%, stage=%." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2088 +#, c-format +msgid "Teleporting vehicle '%' after" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2093 +#, c-format +msgid "Removing vehicle '%' after" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2097 +#, c-format +msgid "Keeping remote-controlled vehicle '%' after" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2110 +msgid " collision with person '%', lane='%', gap=%, time=%, stage=%." +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2113 +msgid " collision with person '%', lane='%', time=%, stage=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2101 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2179 msgid "Teleporting vehicle '%'; beyond end of lane, target lane='%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2108 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2186 msgid "Removing vehicle '%' after earlier collision, lane='%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2113 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2191 msgid "Teleporting vehicle '%' after earlier collision, lane='%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2585 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2663 msgid "" "Lane '%' is approached multiple times from edge '%'. This may cause " "collisions." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:4184 -msgid "Invalid collision.action '%'." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:4268 +msgid "Invalid % '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:4314 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:4405 msgid "" "State was saved with more than % threads. Change the number of threads or do " "not load RNG state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:169 -#: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:232 -#: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:239 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:169 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:232 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:239 msgid "Method not supported" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:187 -#: /home/micha/programming/sumo/src/router/RONet.cpp:60 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:187 +#: D:\Repos\sumo/src\router\RONet.cpp:60 msgid "A network was not yet constructed." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:221 -#: /home/micha/programming/sumo/src/router/RONet.cpp:83 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:221 +#: D:\Repos\sumo/src\router\RONet.cpp:83 msgid "A network was already constructed." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:286 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:286 msgid "" "Option weights.separate-turns is only supported when simulating with " "internal lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:388 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:388 msgid "Simulation version % started with time: %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1459 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1463 msgid "" "TraCI and Triggers cannot use routing algorithm '%'. using 'astar' instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1629 -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:427 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:235 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:221 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1633 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:427 +#: D:\Repos\sumo/src\router\ROLoader.cpp:235 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:221 #, c-format msgid "Loading of % failed." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1649 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1653 #, c-format msgid "Loading state from '%' failed." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:103 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:108 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:103 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:108 msgid "Taz usage was requested but no taz present in % '%'!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:262 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:262 #, c-format msgid "Vehicle type distribution '%' is empty." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:266 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:910 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:266 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:910 #, c-format msgid "Another vehicle type (or distribution) with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:316 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:287 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:316 msgid "Ids of internal routes are ignored (vehicle '%')." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:306 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:306 msgid "Invalid reference to route '%' in route %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:317 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:317 msgid "Attribute 'period' is deprecated for route. Use 'cycleTime' instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:330 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:330 msgid "Disconnected route % when repeating." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:336 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:336 msgid "Invalid cost for route '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:393 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:393 #, c-format msgid "Route '%' has no edges." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:411 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:446 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:411 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:446 msgid "" "Cannot repeat stops with 'until' in route % because no cycleTime is defined." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:420 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:420 msgid "" "Cannot repeat stops with 'arrival' in route % because no cycleTime is " "defined." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:443 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:443 #, c-format msgid "A vehicle with id '%' already exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:446 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:520 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:446 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:520 #, c-format msgid "Another route (or distribution) with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:524 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:524 #, c-format msgid "Route distribution '%' is empty." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:564 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:559 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:564 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:559 msgid "" "Vehicle type '%' with vClass=pedestrian should only be used for persons and " "not for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:573 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:573 msgid "" "Ignoring child element 'route' for vehicle '%' because attribute 'route' is " "set." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:582 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:582 #, c-format msgid "Vehicle '%' has no route." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:724 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:724 msgid "" "Could not merge vehicle stops for vehicle '%' into implicitly defined route " "'%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:755 -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:327 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:755 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:327 msgid "" "Person '%' receives type '%' which implicitly uses unsuitable vClass '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:891 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:891 msgid "" "There exists a person and a container with the same id '%'. Starting with " "SUMO 1.9.0 this is an error." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:986 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:986 #, c-format msgid "Another flow with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1127 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1127 msgid "The busStop '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1133 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1133 msgid "The containerStop '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1139 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1139 msgid "The parkingArea '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1146 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1146 msgid "The chargingStation '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1153 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1153 msgid "The overhead wire segment '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1157 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1157 msgid "Invalid stop definition%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1305 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1309 msgid "Stop edge '%' missing in attribute 'via' for % '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1324 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1198 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1316 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1329 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1203 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1321 msgid "" "The attribute departPos is no longer supported for walks, please use the " "person attribute, the arrivalPos of the previous step or explicit stops." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1350 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1355 msgid "Ignoring arrivalPos for % because it is outside the given stop '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1356 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1219 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1361 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1224 msgid "No destination edge for %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1385 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1239 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1390 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1244 msgid "Start edge not defined for person '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1395 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1460 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1250 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1307 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1400 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1465 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1255 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1312 msgid "Non-positive walking duration for '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1422 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1466 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1311 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1427 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1471 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1316 msgid "Non-positive walking speed for '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1491 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1496 msgid "No edges to walk for person '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1528 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1533 msgid "" "Could not find departure lane for walk of person '%' when interpreting " "departPosLat" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1600 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1605 msgid "Could not read tranship speed for container '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1608 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1613 msgid "Non-positive tranship speed for container '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1634 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1639 #, c-format msgid "The start edge for container '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1653 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1658 msgid "" "Inconsistent tranship for container '%', only one option is allowed: " "'edges', 'to', 'containerStop'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1659 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1664 msgid "No edges to tranship container '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:76 -#: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:64 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:164 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteLoader.cpp:36 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:76 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:64 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:164 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteLoader.cpp:36 msgid "Can not read XML-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:87 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:87 msgid "Could not parse time from state file '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:184 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:184 msgid "State was written with sumo version % (present: %)!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:229 -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:285 -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignalConstraint.cpp:144 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:229 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:285 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignalConstraint.cpp:144 #, c-format msgid "Unknown lane '%' in loaded state." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:389 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:389 #, c-format msgid "Ignoring program '%' for traffic light '%' in loaded state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:424 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:424 msgid "Could not load vehicle control state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:433 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:433 msgid "Removed % vehicles while loading state." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:459 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:459 #, c-format msgid "Could not load vehicle '%' from state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:319 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:319 msgid "No gap control available for meso." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:714 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:714 msgid "" "Lane change model did not provide a reason for changing (state=%, time=%\n" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:755 -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:171 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:755 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:171 msgid "should not happen" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:944 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:944 msgid "" "Vehicle '%' moved by TraCI from % to % (dist %) with implied speed of % " "(exceeding maximum speed %). time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1701 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1688 msgid "Vehicle '%' aborts joining after extension of %s at time %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1846 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1833 msgid "Vehicle '%' to split from vehicle '%' is not known. time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:2741 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:2769 msgid "Suspicious right_before_left junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4375 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4487 msgid " for unknown reasons" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4383 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4495 msgid "" -"Vehicle '%' performs emergency stop at the end of lane '%'% (decel=%, " -"offset=%), time=%." +"Vehicle '%' performs emergency stop at the end of lane '%'% (decel=%, offset=" +"%), time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4458 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4570 msgid "Unexpected end of opposite lane for vehicle '%' at lane '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4576 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4688 msgid "" "Vehicle '%' performs emergency braking on lane '%' with decel=%, wished=%, " "severity=%, time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:5427 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:5571 #, c-format msgid "Vehicle '%' aborts stop." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:7213 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:7408 msgid "Error: Invalid vehicles in state (may be a meso state)!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleControl.cpp:449 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:7439 +msgid "Action steps are out of sync for loaded vehicle '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSVehicleControl.cpp:469 #, c-format msgid "Vehicle '%' aborted waiting for a % that will never come." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:169 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:170 msgid "Vehicle '%' ends teleporting on edge '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:308 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:318 msgid "" "Value of 'emergencyDecel' (%) should be higher than 'decel' (%) for vType " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:311 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:321 msgid "" "Value of 'emergencyDecel' (%) is lower than 'apparentDecel' (%) for vType " "'%' may cause collisions." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:433 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:443 #, c-format msgid "" "Value of tau=% in vehicle type '%' lower than simulation step size may cause " "collisions." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:439 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:449 #, c-format msgid "" "Vehicle class '%' of vType '%' is set as ignored by option --meso-ignore-" @@ -2882,1068 +2949,1165 @@ "queue for multi-modal meso simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_CC.cpp:66 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_CC.cpp:66 msgid "" "The number of lanes needs to be specified in the attributes of carFollowing-" "CC with the \"lanesCount\" attribute" msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Daniel1.cpp:61 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Daniel1.cpp:61 msgid "" "Maximum speed of vehicle '%' is lower than the minimum speed (min: %, max: " "%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Krauss.cpp:58 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Krauss.cpp:58 msgid "Rounding 'sigmaStep' to % for vType '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Rail.cpp:50 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Rail.cpp:50 msgid "Unknown train type: %. Exiting!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Rail.cpp:252 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Rail.cpp:252 msgid "" "Anything else than semi implicit euler update is not yet implemented. " "Exiting!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:161 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:165 #, c-format msgid "Device '%' cannot save state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:201 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:205 msgid "Invalid float value '%'for parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:214 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:218 msgid "Invalid bool value '%'for parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:227 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:231 msgid "Invalid time value '%'for parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:65 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:65 msgid "The range of the bt receiver" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:68 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:68 msgid "Whether all recognition point shall be written" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:71 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:71 msgid "The offtime used for calculating detection probability (in seconds)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:295 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:295 msgid "" "The vehicle '%' cannot be in the range of vehicle '%', leave, and enter it " "in one step." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:421 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:436 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:421 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:436 msgid "" "btreceiver: Can not update position of vehicle '%' which is not on the road." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTsender.cpp:120 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTsender.cpp:134 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTsender.cpp:120 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTsender.cpp:134 msgid "" "btsender: Can not update position of vehicle '%' which is not on the road." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:52 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:52 msgid "Track fuel consumption for non-electric vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:109 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:122 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:128 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:113 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:126 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:132 msgid "" "Battery builder: Vehicle '%' doesn't have a valid value for parameter % (%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:199 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:203 #, c-format msgid "Battery of vehicle '%' is depleted." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:309 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:319 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:329 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:313 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:323 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:333 msgid "Trying to set into the battery device of vehicle '%' an invalid % (%)." msgstr "" +"Érvénytelen % (%) megpróbál beállítani a(z) „%” jármű akkumulátor-eszközébe." -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Bluelight.cpp:59 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Bluelight.cpp:59 msgid "" "Set the distance at which other drivers react to the blue light and siren " "sound" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Bluelight.cpp:68 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Bluelight.cpp:68 msgid "" "bluelight device is not compatible with mesosim (ignored for vehicle '%')" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:66 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:66 msgid "Initial value assigned to the driver's awareness." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:68 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:68 msgid "Time scale for the error process." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:70 msgid "Noise intensity driving the error process." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:72 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:72 msgid "" "General scaling coefficient for applying the error to the perceived speed " "difference (error also scales with distance)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:74 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:74 msgid "" "General scaling coefficient for applying the error to the perceived distance " "(error also scales with distance)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:76 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:76 msgid "" "General scaling coefficient for applying the error to the vehicle's own " "speed when driving without a leader (error also scales with own speed)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:78 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:78 msgid "" "Base threshold for recognizing changes in the speed difference (threshold " "also scales with distance)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:80 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:80 msgid "" "Base threshold for recognizing changes in the headway (threshold also scales " "with distance)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:82 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:82 msgid "Minimal admissible value for the driver's awareness." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:84 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:84 msgid "" "Maximal reaction time (~action step length) induced by decreased awareness " "level (reached for awareness=minAwareness)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:102 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:116 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:116 msgid "Invalid value '%'for vType parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:166 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:179 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:166 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:179 msgid "" "ElecHybrid builder: Vehicle '%' doesn't have a valid value for parameter % " "(%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:374 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:374 #, c-format msgid "" "The resistivity of overhead wire segment connected to vehicle % is < 0. Set " "to 1e-6." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:432 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:528 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:711 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:848 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:432 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:528 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:711 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:848 msgid "" "Overhead wire solver is on, but the Eigen library has not been compiled in!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:648 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:883 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:648 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:883 msgid "The element or node with the last Id was not found in the circuit!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Emissions.cpp:47 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Emissions.cpp:47 msgid "Recording begin time for emission-data" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Emissions.cpp:50 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Emissions.cpp:50 msgid "Recording period for emission-output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:48 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:48 msgid "" "An exemplary parameter which can be used by all instances of the example " "device" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:63 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:63 #, c-format msgid "Invalid value '%'for vehicle parameter 'example'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:75 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:75 #, c-format msgid "Invalid value '%'for vType parameter 'example'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:67 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:67 msgid "Recording begin time for FCD-data" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:70 -#: /home/micha/programming/sumo/src/microsim/devices/MSTransportableDevice_FCD.cpp:49 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSTransportableDevice_FCD.cpp:49 msgid "Recording period for FCD-data" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:73 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:73 msgid "Record objects in a radius around equipped vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:123 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:123 #, c-format msgid "Specified shape '%' for filtering fcd-output could not be found." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:148 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:148 msgid "Could not load names of edges for filtering fcd-output from '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:167 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:167 #, c-format msgid "Unknown attribute '%' to write in fcd output." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Friction.cpp:48 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Friction.cpp:48 msgid "" "The measurement noise parameter which can be applied to the friction device" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Friction.cpp:50 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Friction.cpp:50 msgid "" "The measurement offset parameter which can be applied to the friction device " "-> e.g. to force false measurements" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:49 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:49 msgid "The communication range to the traffic light" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:52 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:52 msgid "The maximum speed factor when approaching a green light" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:55 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:55 msgid "Minimum speed when coasting towards a red light" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:171 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:171 msgid "" "Invalid value '%' for parameter 'device.glosa.range' of traffic light '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:54 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:54 msgid "The period with which the vehicle shall be rerouted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:58 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:58 msgid "The rerouting period before depart" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:62 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:62 msgid "The weight of prior edge weights for exponential moving average" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:66 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:66 msgid "The number of steps for moving average weight of prior edge weights" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:70 msgid "The interval for updating the edge weights" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:75 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:75 msgid "Use zones (districts) as routing start- and endpoints" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:78 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:78 msgid "" "Use weight files given with option --weight-files for initializing edge " "weights" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:82 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:82 msgid "The number of parallel execution threads used for rerouting" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:85 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:85 msgid "Let rerouting happen at the same time for all vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:88 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:88 msgid "Allow rerouting triggered by rail signals." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:91 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:91 msgid "Compute separate average speeds for bicycles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:94 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:94 msgid "Save adapting weights to FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:102 msgid "" "Only one of the options 'device.rerouting.adaptation-steps' or 'device." "rerouting.adaptation-weight' may be given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:106 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:106 msgid "weights.random-factor cannot be less than 1" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:110 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:110 msgid "Negative value for device.rerouting.adaptation-interval!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:115 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:115 msgid "" "The value for device.rerouting.adaptation-weight must be between 0 and 1!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:120 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:243 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:120 +#: D:\Repos\sumo/src\router\ROFrame.cpp:243 msgid "Parallel routing is only possible when compiled with Fox." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:125 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:125 msgid "Adapting number of routing threads to number of simulation threads." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:220 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:234 msgid "" "Specifies which measures will be logged (as a space or comma-separated " -"sequence of IDs in ('TTC', 'DRAC', 'PET'))" +"sequence of IDs in ('TTC', 'DRAC', 'PET', 'PPET','MDRAC'))" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:222 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:236 msgid "" "Specifies space or comma-separated thresholds corresponding to the specified " "measures (see documentation and watch the order!). Only events exceeding the " "thresholds will be logged." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:224 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:238 msgid "" "Specifies whether trajectories will be logged (if false, only the extremal " "values and times are reported)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:226 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:240 msgid "" "Specifies the detection range in meters. For vehicles below this distance " "from the equipped vehicle, SSM values are traced." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:228 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:242 msgid "" "Specifies the time in seconds to be logged after a conflict is over. " "Required >0 if PET is to be calculated for crossing conflicts." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:230 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:244 +msgid "Specifies the perception reaction time for MDRAC computation." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:246 msgid "Give a global default filename for the SSM output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:232 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:248 msgid "Whether to use coordinates of the original reference system in output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:234 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:250 msgid "Whether to write positions (coordinates) for each timestep" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:236 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:252 msgid "Whether to write lanes and their positions for each timestep" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:247 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:254 +msgid "" +"Which conflicts will be excluded from the log according to the conflict type " +"they have been classified (combination of values in 'ego', 'foe' , '', any " +"numerical valid conflict type code). An empty value will log all and " +"'ego'/'foe' refer to a certain conflict type subset." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:265 msgid "Could not load names of edges for filtering SSM device output from '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:1057 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:1119 msgid "" "SSM device of vehicle '%' detected collision with vehicle '%' at time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2188 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2331 msgid "" "Cannot classify SSM encounter between ego vehicle % and foe vehicle % at " "time=%\n" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2366 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2390 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2509 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2533 msgid "" "Cannot compute SSM due to bad internal lane geometry at junction '%'. " "Crossing point between traffic from links % and % not found." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3497 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3699 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3703 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3984 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.measures'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3503 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3705 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3709 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3990 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.measures'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3508 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3714 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.file'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3531 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3737 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.geo'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3537 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3743 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.geo'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3542 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3748 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.geo'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3558 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3764 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.write-positions'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3564 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3770 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.write-positions'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3569 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3596 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3775 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3802 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.write-positions'. " "Using default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3585 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3791 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.write-lane-positions'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3591 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3797 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.write-lane-positions'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3612 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3819 +#, c-format +msgid "Invalid value '%' for vehicle parameter 'ssm.conflict-order'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3827 +#, c-format +msgid "Invalid value '%' for vType parameter 'ssm.conflict-order'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3833 +msgid "" +"Vehicle '%' does not supply vehicle parameter 'device.ssm.exclude-conflict-" +"types'. Using default of '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3851 +msgid "" +"SSM order filter '%' is not supported. Aborting construction of SSM device " +"'%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3868 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.range'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3618 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3874 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.range'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3623 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3879 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.range'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3639 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3895 +#, c-format +msgid "Invalid value '%'for vehicle parameter 'ssm.mdrac.prt'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3901 +#, c-format +msgid "Invalid value '%'for vType parameter 'ssm.mdrac.prt'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3906 +msgid "" +"Vehicle '%' does not supply vehicle parameter 'device.ssm.mdrac.prt'. Using " +"default of '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3924 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.extratime'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3645 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3930 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.extratime'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3650 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3935 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.extratime'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3656 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3941 #, c-format msgid "" "Negative (or no) value encountered for vehicle parameter 'device.ssm." "extratime' in vehicle '%' using default value % instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3670 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3955 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.trajectories'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3676 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3961 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.trajectories'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3681 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3966 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.trajectories'. " "Using default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3710 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3995 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.measures'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3727 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4012 msgid "" "SSM identifier '%' is not supported. Aborting construction of SSM device '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3738 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4023 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.thresholds'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3744 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4029 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.thresholds'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3749 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4034 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.thresholds'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3764 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4049 msgid "" "Given list of thresholds ('%') is not of the same size as the list of " "measures ('%').\n" "Please specify exactly one threshold for each measure." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:82 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:46 +msgid "" +"Time to wait for a rescue vehicle on the road side when the battery is empty" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:48 +msgid "" +"Additional battery buffer for unexpected traffic situation when estimating " +"the battery need" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:50 +msgid "Battery percentage to go into rescue mode" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:52 +msgid "Search radius in travel time seconds" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:54 +msgid "When to trigger a new search if no station has been found" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:56 +msgid "The maximum charging speed of the vehicle battery" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:58 +msgid "Type of energy transfer" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:60 +msgid "" +"After this waiting time vehicle searches for a new station when the initial " +"one is blocked" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:124 +msgid "" +"Rerouting using station finder removes all upcoming stops for vehicle '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:84 msgid "" "The dispatch algorithm [greedy|greedyClosest|greedyShared|routeExtension|" "traci]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:85 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:87 msgid "Write information from the dispatch algorithm to FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:88 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:90 msgid "Load dispatch algorithm parameters in format KEY1:VALUE1[,KEY2:VALUE]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:91 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:93 msgid "The period between successive calls to the dispatcher" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:94 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:96 msgid "The behavior of idle taxis [stop|randomCircling]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:97 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:99 msgid "Write information from the idling algorithm to FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:115 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:117 msgid "Vehicle '%' with device.taxi should have vClass taxi instead of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:122 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:124 msgid "" "Vehicle '%' with personCapacity % and containerCapacity % is not usable as " "taxi." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:147 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:149 #, c-format msgid "Dispatch algorithm '%' is not known" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:313 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:328 msgid "Invalid Re-dispatch for existing customer '%' with a new reservation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:346 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:361 msgid "Re-dispatch did not mention pickup for existing customer '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:453 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:468 msgid "Could not add taxi stop for vehicle '%' to %. time=% error=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:569 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:584 msgid "Taxi '%' reaches scheduled end of service at time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:645 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:660 msgid "" "All customers left vehicle '%' at time=% but there are % remaining stops" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:116 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:116 msgid "Vehicle type for manual driving regime." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:118 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:118 msgid "Vehicle type for automated driving regime." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:120 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:120 msgid "Average response time needed by a driver to take back control." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:122 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:122 msgid "Recovery rate for the driver's awareness after a ToC." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:124 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:124 msgid "" "Attention level below which a driver restrains from performing lane changes " "(value in [0,1])." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:126 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:126 msgid "Average awareness a driver has initially after a ToC (value in [0,1])." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:128 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:128 msgid "Deceleration rate applied during a 'minimum risk maneuver'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:130 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:130 msgid "" "Time, which the vehicle requires to have ahead to continue in automated " "mode. The default value of 0 indicates no dynamic triggering of ToCs." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:132 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:132 msgid "Probability that a dynamically triggered TOR is not answered in time." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:134 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:134 msgid "If true, the vehicle tries to change to the right during an MRM." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:136 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:136 msgid "" "If set, the vehicle tries to reach the given named stopping place during an " "MRM." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:138 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:138 msgid "Duration the vehicle stays at the safe spot after an MRM." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:140 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:140 msgid "" "Maximal acceleration that may be applied during the ToC preparation phase." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:142 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:142 msgid "Timegap for ToC preparation phase." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:144 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:144 msgid "Additional spacing for ToC preparation phase." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:146 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:146 msgid "" "Maximal deceleration applied for establishing increased gap in ToC " "preparation phase." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:148 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:148 msgid "" "Rate of adaptation towards the increased headway during ToC preparation." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:150 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:150 msgid "" "Whether a coloring scheme shall by applied to indicate the different ToC " "stages." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:152 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:152 msgid "Switches on output by specifying an output filename." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:161 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:161 msgid "ToC device is not supported by the mesoscopic simulation." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:200 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:200 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.measures'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:206 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:206 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.measures'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:220 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:220 msgid "" "Given value for ToC device parameter 'dynamicMRMProbability' (=%) is not in " "the admissible range [0,0.5]. Truncated to %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:246 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:246 msgid "" "If any openGap parameters for the ToC model are specified, then at least one " "of toc.ogNewTimeHeadway and toc.ogNewSpaceHeadway must be defined." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:578 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:578 msgid "Ignoring unknown safe spot '%' for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:731 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:731 #, c-format msgid "vType '%' for vehicle '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:933 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:933 msgid "" "Setting device.toc.currentAwareness during automated mode has no effect." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:950 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:950 #, c-format msgid "" "Value of dynamicToCThreshold must be non-negative. (Given value % for " "vehicle % is ignored)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:961 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:961 #, c-format msgid "" "Value of dynamicMRMProbability must be non-negative. (Given value % for " "vehicle % is ignored)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:975 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:975 #, c-format msgid "" "Value of maxPreparationAccel must be non-negative. (Given value % for " "vehicle % is ignored)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:1000 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:1021 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:1000 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:1021 msgid "Unknown ToCState '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:97 +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:97 msgid "" "Mixing reservations of persons and containers with the same group is not " "supported for % and %" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:200 +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:200 msgid "Inconsistent group reservations." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:204 +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:204 msgid "Inconsistent group reservations (2)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:63 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:65 msgid "Idle taxi '%' has no next segment to stop. time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:104 #, c-format msgid "Idle taxi '%' could not stop within %m" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:155 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:157 #, c-format msgid "Vehicle '%' ends idling in a cul-de-sac" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:96 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:183 +msgid "Could not determine taxi stand for vehicle '%' at time=%" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:96 msgid "Rerouting is useless if the edge weights do not get updated!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:148 +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:148 msgid "weights.priority-factor cannot be negative." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:152 +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:152 msgid "" "Option weights.priority-factor does not take effect because all edges have " "the same priority" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:411 +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:411 msgid "Unknown routing algorithm '%'!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSTransportableDevice_Routing.cpp:46 +#: D:\Repos\sumo/src\microsim\devices\MSTransportableDevice_Routing.cpp:46 msgid "The period with which the person shall be rerouted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/engine/VehicleEngineHandler.cpp:157 +#: D:\Repos\sumo/src\microsim\engine\VehicleEngineHandler.cpp:157 msgid "Invalid engine map type. Only \"poly\" is supported for now" msgstr "" -#: /home/micha/programming/sumo/src/microsim/engine/VehicleEngineHandler.cpp:197 +#: D:\Repos\sumo/src\microsim\engine\VehicleEngineHandler.cpp:197 msgid "Unknown tag '%' while parsing." msgstr "" -#: /home/micha/programming/sumo/src/microsim/lcmodels/MSAbstractLaneChangeModel.cpp:82 +#: D:\Repos\sumo/src\microsim\lcmodels\MSAbstractLaneChangeModel.cpp:82 #, c-format msgid "Lane change model '%' is not compatible with sublane simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/lcmodels/MSAbstractLaneChangeModel.cpp:98 +#: D:\Repos\sumo/src\microsim\lcmodels\MSAbstractLaneChangeModel.cpp:98 #, c-format msgid "Lane change model '%' not implemented" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:124 +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:124 msgid "" "No valid detector length and start position given. Assuming startPos = 0 and " "length = end position" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:128 +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:128 msgid "" "No valid detector length and end position given. Assuming endPos = lane " "length and length = endPos-startPos" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:908 +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:908 msgid "Multi-lane e2Detector does not support detecting persons yet" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:161 +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:160 msgid "Negative vehicle step fraction for '%' on lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:556 +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:554 msgid "aggregated meanData output not yet implemented for trackVehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:755 +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:766 msgid "Unknown attribute '%' to write in meanData '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSStopOut.cpp:69 +#: D:\Repos\sumo/src\microsim\output\MSStopOut.cpp:69 msgid "Vehicle '%' stops on edge '%', time=% without ending the previous stop." msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSStopOut.cpp:105 +#: D:\Repos\sumo/src\microsim\output\MSStopOut.cpp:105 msgid "Vehicle '%' ends stop on edge '%', time=% without entering the stop." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:139 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:140 #, c-format msgid "Traffic light '%' does not control any links" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:227 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:229 msgid "" "Unknown inductionLoop '%' given as custom detector for actuated tlLogic '%', " "program '%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:241 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:242 msgid "" "At actuated tlLogic '%', minDur % is too short for a detector gap of %m." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:406 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:407 msgid "At actuated tlLogic '%', actuated phase % has no controlling detector." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:443 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:444 msgid "At actuated tlLogic '%', linkIndex % has no controlling detector." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:452 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:453 msgid "" "Invalid link '%' given as linkMaxDur parameter for actuated tlLogic '%', " "program '%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:462 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:463 msgid "" "Invalid link '%' given as linkMinDur parameter for actuated tlLogic '%', " "program '%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:903 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:905 msgid "" "At actuated tlLogic '%', transition phase % should not have multiple next " "phases" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1061 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1063 msgid "Unmatched parentheses in condition %'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1076 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1078 msgid "Invalid empty condition '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1091 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1093 msgid "Unsupported condition '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1154 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1156 msgid "Division by 0 in condition '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1205 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1207 #, c-format msgid "Modifying global condition '%' is forbidden" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1217 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1219 msgid "Invalid empty expression" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1313 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1315 msgid "Error when retrieving conditions '%' for tlLogic '%' (%)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSDelayBasedTrafficLightLogic.cpp:96 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSDelayBasedTrafficLightLogic.cpp:96 msgid "" "Unknown laneAreaDetector '%' given as custom detector for delay_based " "tlLogic '%', program '%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSOffTrafficLightLogic.cpp:80 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSOffTrafficLightLogic.cpp:80 msgid "Invalid 'off'-state for link % at junction '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSOffTrafficLightLogic.cpp:84 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSOffTrafficLightLogic.cpp:84 msgid "Inconsistent 'off'-states for linkIndex % at tlLogic '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:109 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:109 #, c-format msgid "Rail signal at junction '%' does not control any links" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:1210 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:1210 msgid "Found circular block after railSignal % (% edges, length %)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:1321 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:1321 msgid "Found circular block at railSignal % (% edges, length %)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignalConstraint.cpp:147 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignalConstraint.cpp:147 #, c-format msgid "Unknown tracker lane '%' in loaded state." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:169 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:169 msgid "Listing output lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:243 -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:277 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:243 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:277 msgid "Unrecognized traffic threshold calculation mode" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:57 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:57 msgid "NO VALID POLICY LIST READ" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:81 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:81 msgid "VEHICLE TYPES WEIGHT only works with phase policy, which is missing" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:160 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:160 #, c-format msgid "" "MSSwarmTrafficLightLogic::init Intersection % pheromoneInputLanes: lane " "% not allowed" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:182 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:182 #, c-format msgid "" "MSSwarmTrafficLightLogic::init Intersection % pheromoneOutputLanes lane " "% not allowed" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:194 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:194 msgid "*** Intersection % will run using MSSwarmTrafficLightLogic ***" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:202 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:202 msgid "TL % time 0 Policy: % (pheroIn= 0 ,pheroOut= 0 ) OldPolicy: % ." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:81 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:81 msgid "Mismatching phase size in tls '%', program '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:116 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:116 msgid "No initial signal plan loaded for tls '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:163 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:163 msgid "Could not build an off-state for tls '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:487 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:487 #, c-format msgid "" "The computed factor sum in WAUT '%' at time '%' equals zero;\n" " assuming an error in WAUT definition." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:159 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:163 msgid "Unused states in tlLogic '%', program '%' in phase % after tl-index %" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:178 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:182 msgid "" "Missing yellow phase in tlLogic '%', program '%' for tl-index % when " "switching% to phase %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:200 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:204 msgid "Missing green phase in tlLogic '%', program '%' for tl-index %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:263 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:267 msgid "" "Program '%' at tlLogic '%' is incompatible with logic at junction " "'%' (mutual conflict between link indices %,% tl indices %,% phase %).\n" @@ -3951,6715 +4115,6788 @@ "include the program when building." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:460 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:464 msgid "Green fraction is only 1% for link % in tlLogic '%', program '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:164 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:164 msgid "" "At NEMA tlLogic '%', different sizes of NEMA phase states. Please check the " "NEMA XML" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:566 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:566 msgid "At NEMA tlLogic '%', actuated phase % has no controlling detector" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:584 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:584 msgid "At NEMA tlLogic '%, linkIndex % has no controlling detector" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:630 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:630 #, c-format msgid "NEMA tlLogic '%' is not coordinated but an offset was set." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:959 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:959 msgid "I am starting in the coordinated phases" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel.h:180 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel.h:182 msgid "moveTo is ignored by the current movement model" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel.h:196 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel.h:198 msgid "moveToXY is ignored by the current movement model" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Remote.cpp:209 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Remote.cpp:209 #, c-format msgid "Edge: % does not allow pedestrians." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Remote.cpp:299 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Remote.cpp:299 msgid "Pedestrian model 'remote' does not support simulation.loadState state\n" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:124 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:871 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:124 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:870 msgid "" "Pedestrian vType '%' width % is larger than pedestrian.striping.stripe-width " "and this may cause collisions with vehicles." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:179 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:179 msgid "Person '%' could not find sidewalk on edge '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:463 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:466 #, c-format msgid "Invalid walkingarea '%' does not allow continuation." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:1923 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:1926 msgid "Disconnected walk for person '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:2124 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:2127 msgid "Person '%' is jammed on edge '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:90 +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:90 msgid "Adjusting departPos for cloned walk with routeDistribution '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:94 +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:94 msgid "Adjusting arrivalPos for cloned walk with routeDistribution '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:98 +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:98 msgid "Adjusting departLane for cloned walk with routeDistribution '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSStageTrip.cpp:174 +#: D:\Repos\sumo/src\microsim\transportables\MSStageTrip.cpp:174 msgid "" "Ignoring vehicle type '%' when routing person '%' because it is not allowed " "on the start edge." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:134 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:134 msgid "Changing a transportable ID is not permitted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:256 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:256 msgid "Teleporting % '%'; waited too long, from edge '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:391 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:391 msgid "parkingAreaReroute not support for containers" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportableControl.cpp:69 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportableControl.cpp:69 msgid "Unknown pedestrian model '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:142 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:142 msgid "No flow intervals in calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:161 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:161 #, c-format msgid "Calibrator '%' has no active or upcoming interval" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:209 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:209 msgid "Insertion lane may differ from calibrator lane for calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:213 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:213 msgid "Unknown vehicle type '%' in calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:216 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:216 msgid "Mandatory attribute missing in definition of calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:218 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:218 msgid "" "Non-numeric value for numeric attribute in definition of calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:221 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:221 msgid "" "Either 'vehsPerHour', 'speed' or 'type' has to be set in flow definition of " "calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:224 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:224 msgid "Type calibration is not supported in meso for calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:318 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:318 msgid "Calibrator '%' could not remove vehicle '%' time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:699 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:699 msgid "Cannot set flow for calibrator '%' with overlapping interval." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:701 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:701 msgid "Cannot set flow for calibrator '%' with negative interval." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSLaneSpeedTrigger.cpp:176 +#: D:\Repos\sumo/src\microsim\trigger\MSLaneSpeedTrigger.cpp:176 msgid "Invalid or unsorted time entry in vss '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSLaneSpeedTrigger.cpp:192 +#: D:\Repos\sumo/src\microsim\trigger\MSLaneSpeedTrigger.cpp:192 msgid "Time % was set twice for vss '%'; replacing first entry." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:354 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:409 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:454 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:471 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:492 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:518 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:544 -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:386 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:354 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:409 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:454 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:471 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:492 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:518 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:544 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:386 msgid "" "Overhead circuit solver requested, but solver support (Eigen) not compiled " "in." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:579 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:579 msgid "Overhead circuit solver requested, but solver support not compiled in." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:690 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:690 #, c-format msgid "" "The requested total power could not be delivered by the overhead wire. Only " "% of originally requested power was provided." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:127 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:127 msgid "MSTriggeredRerouter %: No destination edge id given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:192 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:192 msgid "MSTriggeredRerouter %: No route id given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:217 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:217 msgid "MSTriggeredRerouter %: No parking area id given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:505 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:505 #, c-format msgid "" "Cannot keep destination edge '%' for vehicle '%' due to closed edges. " "Terminating route." msgstr "" +"A(z) „%” jármű „%” céléle nem tartható meg a zárt élek miatt. Útvonal " +"befejezése." -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:604 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:604 msgid "Invalid value '%' for vehicle parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:612 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:612 msgid "Invalid value '%' for vType parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:784 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:782 #, c-format msgid "" "Parkingarea '%' along the way cannot be used by vehicle '%' for unknown " "reason" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1105 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1103 msgid "" "Invalid distance computation for vehicle '%' to parkingArea '%' at time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1160 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1158 msgid "" "Invalid distance computation for vehicle '%' from parkingArea '%' at time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1236 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1234 msgid "" "ParkingArea '%' is targeted by rerouter '%' but doesn't have it's own " "rerouter. This may cause parking search to abort." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:119 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:153 msgid "Ambiguity in turnarounds computation at junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:269 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:358 msgid "Converting invalid rail_crossing to priority junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:273 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:362 msgid "Converting invalid rail_crossing to traffic_light at junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:282 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1739 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:423 -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:358 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:371 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1744 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:423 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:358 msgid "Could not allocate tls '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:173 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:176 msgid "" "Added % bidi-edges to ensure that all tracks are usable in both directions." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:175 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:178 #, c-format msgid "Ignore % edges because they have the wrong spreadType" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:197 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:200 #, c-format msgid "Bidi-edge '%' prevented by filtering rules." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:211 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:214 msgid "Could not add bidi-edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:272 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:275 msgid "Railway nodes by number of incoming,outgoing edges:" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:370 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:373 msgid "Found % railway nodes marked as buffer_stop" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:380 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:383 msgid "Found % bidirectional rail edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:406 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:409 msgid "Found % railway edges and % railway nodes (% signals)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:523 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:526 msgid "Added % bidi-edges as extension of existing bidi edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:534 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:537 msgid "Could not find bidi-edge for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:639 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:642 msgid "Found % reversible edge sequences between broken rail nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:668 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:671 msgid "Reversed % sequences (count by length: %)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:689 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:692 msgid "Ignoring buffer stop junction '%' with % edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:746 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:749 msgid "Added % edges to connect % buffer stops in both directions." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:827 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:830 msgid "" "Added % bidi-edges between % pairs of railway switches (count by length: %)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:974 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:977 msgid "" "Edge sequence is not consistent with stop sequence in line '%', not adding " "bidi edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1016 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1019 #, c-format msgid "" "Stop on edge '%' can only be reached in reverse but edge has the wrong " "spreadType." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1037 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1044 msgid "No connection found between stops on edge '%' and edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1147 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1154 msgid "" "Added % bidi-edges to ensure connectivity of straight tracks at geometry-" "like nodes." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1149 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1156 msgid "" "Added % bidi-edges to ensure connectivity of straight tracks at switches." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1209 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1216 msgid "" "Cannot extend track direction priority because there are no track edges with " "positive priority" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1265 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1272 msgid "" "Edge '%' was loaded with undefined priority (%) but has unambiguous main " "direction (no bidi edge)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:116 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1359 +msgid "Added % rail signals at % stops." +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:116 #, c-format msgid "Can not build ramp on edge '%' - the edge is unsuitable." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:120 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:120 #, c-format msgid "Can not build on ramp on edge '%' - the edge is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:131 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:131 #, c-format msgid "Can not build off ramp on edge '%' - the edge is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:249 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:249 msgid "Ups - could not build on-ramp for edge '%' (node could not be build)!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:254 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:254 msgid "Ups - could not build on-ramp for edge '%'!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:284 -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:289 -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:400 -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:403 -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:710 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:284 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:289 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:400 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:403 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:710 msgid "Could not set connection!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:356 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:356 msgid "Ups - could not build off-ramp for edge '%' (node could not be build)!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:361 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:361 msgid "Ups - could not build off-ramp for edge '%'!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:423 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:423 msgid "For edge '%': could not compute shape." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:431 -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:459 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:432 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:460 #, c-format msgid "At least one of edge's '%' nodes is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:456 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:457 #, c-format msgid "Edge '%' needs at least one lane." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:462 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:463 msgid "Invalid edge id '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:492 -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:626 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:493 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:627 #, c-format msgid "Edge's '%' from- and to-node are at the same position." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:999 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1000 msgid "Found angle of % degrees at edge '%', segment %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1155 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1156 msgid "Could not set connection from '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1667 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1668 msgid "Connection '%_%->%_%' is only %m short." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1768 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1770 msgid "" "Intersecting left turns at junction '%' from lane '%' and lane '%' (increase " "junction radius to avoid this)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1868 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1870 msgid "" "Speed of % connection '%' reduced by % due to turning radius of % (length=%, " "angle=%)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2208 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2210 msgid "In lane '%': lane shape could not be determined (%)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2221 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2223 msgid "In lane '%': Could not build shape (%)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2629 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2637 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " "directions but only % targets" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2670 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2678 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " "directions and % targets (after target pruning)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2689 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2697 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " "connections with directions '%' but target edge '%' has only % suitable lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2716 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2724 msgid "" "Cannot apply turn sign information for edge '%' because not enough target " "lanes could be determined for direction '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2955 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2985 msgid "Edge '%' is not connected to outgoing edges at junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2969 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2999 msgid "Lane '%' is not connected from any incoming edge at junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2986 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3016 #, c-format msgid "Ignoring changeLeft prohibition for '%' to avoid dead-end" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2989 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3019 #, c-format msgid "Ignoring changeRight prohibition for '%' to avoid dead-end" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:3590 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3620 #, c-format msgid "The lane '%' on edge '%' already had a traffic light signal." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:3596 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3626 msgid "Could not set any signal of the tlLogic '%' (unknown group)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4079 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4117 msgid "Ignoring invalid stopOffset for edge '%' (negative offset)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4088 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4126 msgid "Ignoring invalid stopOffset for lane '%' (negative offset)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4094 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4132 msgid "Ignoring invalid stopOffset for lane '%' (invalid lane index)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4357 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4395 #, c-format msgid "Edge % allows pedestrians on all lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4415 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4453 #, c-format msgid "Edge '%' already has a dedicated lane for %s. Not adding another one." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4452 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4490 #, c-format msgid "Edge '%' doesn't have a dedicated lane for %s. Cannot be restored." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4500 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4538 msgid "Could not avoid overlapping shape at node '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:121 -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:140 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:121 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:140 msgid "Invalid boundary: need at least 2 coordinates" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:142 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:142 msgid "Invalid boundary: malformed coordinate" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:259 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:259 msgid "" "Cannot prune edges using a geo-boundary because no projection has been loaded" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:438 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:438 msgid "Attempt to rename edge using existing id '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:498 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:499 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:501 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:498 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:499 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:501 msgid "Error on parsing a split (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:556 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:556 msgid "Split at '%' lies beyond the edge's length (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:639 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:639 msgid "Could not insert edge '%' before split of edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:643 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:643 msgid "Could not insert edge '%' after split of edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:880 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:880 msgid "Moving opposite lane '%' from invalid lane '%' to lane index %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:882 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:882 msgid "Removing opposite lane '%' for invalid lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:891 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:891 msgid "Removing unknown opposite lane '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:896 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:896 msgid "Adapting invalid opposite lane '%' for edge '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:902 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:902 msgid "Adapting missing opposite lane '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:908 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:908 msgid "Averaging edge lengths for lane '%' (length %) and edge '%' (length %)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:921 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:921 msgid "Opposite lane '%' does not connect the same nodes as edge '%'!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1421 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1421 msgid "Replacing loaded roundabout '%' with '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1739 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1739 msgid "Edge '%' overlaps with edge '%' by %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1755 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1755 #, c-format msgid "Edge '%' has a vertical jump of %m." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1757 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1757 #, c-format msgid "Edge '%' has a grade of %%." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1767 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1767 #, c-format msgid "Connection '%' has a vertical jump of %m." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1769 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1769 #, c-format msgid "Connection '%' has a grade of %%." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1809 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1809 msgid "Not joining tram edge '%' with % lanes." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1883 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1883 msgid "Ambiguous tram edges '%' and '%' for lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:2037 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:138 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:554 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:2037 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:138 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:554 #, c-format msgid "Edge's '%' from-node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:2041 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:142 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:566 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:2041 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:142 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:566 #, c-format msgid "Edge's '%' to-node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:52 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:52 msgid "The default number of lanes in an edge" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:56 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:56 msgid "The default width of lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:59 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:59 msgid "The default method for computing lane shapes from edge shapes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:63 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:63 msgid "The default speed on an edge (in m/s)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:67 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:67 msgid "The default friction on an edge" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:71 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:71 msgid "The default priority of an edge" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:74 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:74 msgid "The default edge type" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:77 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:77 msgid "The default width of added sidewalks" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:80 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:80 msgid "The default width of added bike lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:83 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:83 msgid "The default width of a pedestrian crossing" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:86 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:86 msgid "The default speed 'limit' on a pedestrian crossing (in m/s)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:89 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:89 msgid "The default speed 'limit' on a pedestrian walkingarea (in m/s)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:92 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:92 msgid "The default for allowed vehicle classes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:95 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:95 msgid "The default for disallowed vehicle classes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:98 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:98 msgid "Whether junctions should be kept clear by default" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:101 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:101 msgid "The default turning radius of intersections" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:104 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:104 msgid "The default length when overriding connection lengths" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:107 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:107 msgid "" "The default algorithm for computing right of way rules ('default', " "'edgePriority')" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:110 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:110 msgid "" "Allow building right-before-left junctions when the incoming edge speeds are " "below FLOAT (m/s)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:113 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:113 msgid "" "Build left-before-right junctions instead of right-before-left junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:117 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:117 msgid "Omits internal links" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:120 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:120 msgid "" "Remaps alphanumerical IDs of nodes and edges to ensure that all IDs are " "integers" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:123 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:123 msgid "Remaps IDs of nodes to integers starting at INT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:126 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:126 msgid "Remaps IDs of edges to integers starting at INT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:130 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:130 msgid "" "Ensures that generated ids do not included any of the typed IDs from FILE " "(sumo-gui selection file format)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:134 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:134 msgid "Removes vehicle class restrictions from imported edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:138 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:138 msgid "Disables building turnarounds" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:142 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:142 msgid "Disables building turnarounds at tls-controlled junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:145 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:145 msgid "Disables building turnarounds at geometry-like junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:148 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:148 msgid "Disables building turnarounds except at dead end junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:151 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:151 msgid "" "Disables building turnarounds except at at junctions with a dedicated " "turning lane" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:154 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:154 msgid "Disables building turnarounds at fringe junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:157 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:157 msgid "Disables building connections to left" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:161 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:161 msgid "Splits edges across geometry nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:165 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:165 msgid "" "Replace nodes which only define edge geometry by geometry points (joins " "edges)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:168 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:168 msgid "Ensure that the given list of edges is not modified" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:176 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:176 msgid "Ensure that edges with public transport stops are not modified" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:188 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:192 msgid "splits geometry to restrict segment length" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:192 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:196 msgid "reduces too similar geometry points" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:195 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:199 msgid "" "Warn about edge geometries with an angle above DEGREES in successive segments" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:198 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:202 msgid "" "Warn about edge geometries with a turning radius less than METERS at the " "start or end" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:201 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:205 msgid "" "Straighten edge geometries to avoid turning radii less than geometry.min-" "radius" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:204 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:208 msgid "" "Straighten edge geometries to avoid turning radii less than geometry.min-" "radius (only railways)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:207 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:211 msgid "" "Warn if the junction shape is to far away from the original node position" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:210 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:214 msgid "Warn if edges overlap by more than the given threshold value" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:213 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:217 msgid "" "Ignore overlapping edges if they are separated vertically by the given " "threshold." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:216 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:220 msgid "Modify edge geometries to avoid overlap at junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:219 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:223 msgid "" "join adjacent lanes that have the same permissions and which do not admit " "lane-changing (sidewalks and disallowed lanes)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:222 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:226 msgid "" "Matches stops outside the road network to the referencing pt line when below " "the given distance" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:226 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:230 msgid "Repair topology of the railway network" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:229 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:233 msgid "" "Repair topology of the railway network just enough to let loaded public " "transport lines to work" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:232 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:236 msgid "" "Allow bidirectional rail use wherever rails with opposite directions meet at " "a straight angle" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:235 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:239 msgid "Add turn-around connections at all loaded stops." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:238 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:242 +msgid "" +"Penalty factor for adding new bidi edges to connect public transport stops" +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:245 msgid "Make all rails usable in both direction" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:241 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:248 msgid "Make all rails edge ids from FILE usable in both direction" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:244 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:251 msgid "Set edge priority values based on estimated main direction" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:247 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:254 msgid "Extend loaded edge priority values based on estimated main direction" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:250 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:257 +msgid "Guess signals that guard public transport stops" +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:260 msgid "The search radius for finding suitable road accesses for rail stops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:254 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:264 msgid "The maximum road accesses registered per rail stops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:258 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:268 msgid "" "The walking length of the access is computed as air-line distance multiplied " "by FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:262 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:272 msgid "Skips automatic generation of stops on the bidi-edge of a loaded stop" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:266 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:276 #, c-format msgid "Warn about edge geometries with a grade in % above FLOAT." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:269 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:279 msgid "Smooth edge geometries with a grade above the warning threshold." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:273 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:283 msgid "Turn off normalizing node positions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:277 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:186 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:287 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:186 msgid "Adds FLOAT to net x-positions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:281 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:190 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:291 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:190 msgid "Adds FLOAT to net y-positions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:284 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:193 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:294 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:193 msgid "Adds FLOAT to net z-positions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:288 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:298 msgid "Flips the y-coordinate along zero" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:292 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:302 msgid "Enable roundabout-guessing" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:295 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:305 msgid "Default visibility when approaching a roundabout" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:298 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:308 msgid "Enable guessing of opposite direction lanes usable for overtaking" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:301 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:311 msgid "Ensure that opposite edges have the same length" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:304 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:314 msgid "Enable guessing of network fringe nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:307 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:317 msgid "Guess disconnected edges above the given speed as outer fringe" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:310 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:320 msgid "Assumes left-hand traffic on the network" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:326 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:336 msgid "Interprets STR[] as list of junctions to exclude from joining" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:338 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:348 msgid "Modifies all edge speeds by adding FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:341 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:351 msgid "Modifies all edge speeds by multiplying by FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:344 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:354 msgid "Modifies all edge speeds to at least FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:352 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:362 msgid "Generate INT intermediate points to smooth out intersection corners" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:355 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:365 msgid "" "Generate INT intermediate points to smooth out lanes within the intersection" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:358 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:368 msgid "" "Generate longer intersections to allow for smooth s-curves when the number " "of lanes changes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:398 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:411 msgid "Forces rectangular cuts between lanes and intersections" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:457 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:470 msgid "Always build walking areas even if there are no crossings" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:460 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:473 msgid "" "Do not create a walkingarea between sidewalks that are connected by a " "pedestrian junction within FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:605 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:618 msgid "Only keep edges with speed in meters/second > FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:609 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:622 msgid "Remove edges in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:613 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:626 msgid "" "Only keep edges in STR[] or those which are kept due to other keep-edges or " "remove-edges options" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:616 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:629 msgid "" "Only keep edges in FILE (Each id on a single line. Selection files from sumo-" "gui are also supported) or those which are kept due to other keep-edges or " "remove-edges options" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:619 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:632 msgid "" "Remove edges in FILE. (Each id on a single line. Selection files from sumo-" "gui are also supported)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:623 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:636 msgid "Remove edges after joining" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:627 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:640 msgid "" "Only keep edges which are located within the given boundary (given either as " "CARTESIAN corner coordinates or as polygon )" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:630 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:643 msgid "" "Only keep edges which are located within the given boundary (given either as " "GEODETIC corner coordinates or as polygon " ")" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:634 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:647 msgid "Only keep edges which allow one of the vclasses in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:637 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:650 msgid "Remove edges which allow only vclasses from STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:640 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:653 msgid "Only keep edges where type is in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:643 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:656 msgid "Only keep the INT largest weakly connected components" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:646 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:659 msgid "Remove edges where type is in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:650 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:663 msgid "Removes isolated edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:657 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:670 msgid "All nodes will be unregulated" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:662 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:675 msgid "Do not regulate nodes in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:666 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:679 msgid "Do not regulate district nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:672 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:685 msgid "Enable ramp-guessing" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:675 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:688 msgid "" "Guess on-ramps and mark acceleration lanes if they exist but do not add new " "lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:679 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:692 msgid "Treat edges with speed > FLOAT as no ramps" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:683 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:696 msgid "Treat edges with speed < FLOAT as no highways" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:687 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:700 msgid "Use FLOAT as ramp-length" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:691 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:704 msgid "Use FLOAT as minimum ramp-length" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:695 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:708 msgid "Tries to handle the given edges as ramps" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:698 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:711 msgid "Do not consider the given edges as ramps" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:702 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:715 msgid "Avoids edge splitting" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:713 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:725 #, c-format msgid "unsupported value '%' for option '--tls.default-type'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:717 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:729 msgid "" "only one of the options 'keep-edges.in-boundary' or 'keep-edges.in-geo-" "boundary' may be given" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:721 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:733 msgid "" "only one of the options 'no-internal-links' or 'crossings.guess' may be given" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:725 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:737 msgid "only one of the options 'no-internal-links' or 'walkareas' may be given" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:729 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:741 msgid "" "only one of the options 'tls.green.time' or 'tls.cycle.time' may be given" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:733 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:745 msgid "default.lanenumber must be at least 1" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:741 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:753 msgid "" "only one of the options 'default.disallow' or 'default.allow' may be given" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:745 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:757 msgid "junctions.internal-link-detail must >= 2" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:750 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:762 msgid "" "Option 'junctions.scurve-stretch' requires internal lanes to work. Option '--" "no-internal-links' will be disabled." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:757 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:769 msgid "" "option 'default.junctions.radius' is smaller than option 'junctions.small-" "radius'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:765 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:777 msgid "tls.layout must be 'opposites', 'incoming' or 'alternateOneWay'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:770 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:782 msgid "default.right-of-way must be one of '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:774 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:786 msgid "roundabouts.visibility-distance must be positive or -1" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:790 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:802 msgid "Unknown value for default.spreadtype '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:88 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:88 msgid "Cannot supply height since no height data was loaded" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:136 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:136 msgid "Could not get height data for coordinate %" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:190 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:190 msgid "Could not open shape file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:204 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:204 msgid "" "Could not create geocoordinates converter; check whether proj.4 is installed." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:231 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:231 msgid "Ignored heightmap feature type %" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:276 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:276 msgid "Cannot load shape file since SUMO was compiled without GDAL support." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:288 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:288 msgid "Cannot load GeoTIFF file." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:303 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:303 msgid "Could not parse geo information from %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:312 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:312 msgid "Unknown color band in %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:319 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:319 msgid "Failure in reading %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:348 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:348 msgid "Cannot load GeoTIFF file since SUMO was compiled without GDAL support." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:89 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:89 msgid "Could not load names of edges too keep from '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:107 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:107 msgid "Could not load IDs from '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:123 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:123 msgid "Invalid lane id '%' (missing '_')." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:130 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:130 msgid "Invalid lane index '%' for lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedSUMOTLDef.cpp:359 +#: D:\Repos\sumo/src\netbuild\NBLoadedSUMOTLDef.cpp:359 #, c-format msgid "Could not patch tlLogic '%' for changed crossings" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedSUMOTLDef.cpp:889 +#: D:\Repos\sumo/src\netbuild\NBLoadedSUMOTLDef.cpp:889 msgid "Unused state in tlLogic '%', program '%' at tl-index %" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:83 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:83 msgid "" "TYellow of signal group '%' was less than the computed one; patched (was:%, " "is:%)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:300 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:300 msgid "During computation of traffic light '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:514 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:514 msgid "Could not set signal on connection (signal: %, group: %)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:612 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:612 msgid "myNeedsContRelation was not propperly initialized\n" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:94 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:94 msgid "Removing self-loops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:98 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:98 msgid "Finding isolated roads" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:103 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:103 msgid "Finding largest components" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:110 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:110 msgid "Removing unwished edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:117 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:117 msgid "Processing public transport stops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:132 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:132 msgid "Revising public transport stops based on pt lines" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:138 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:138 msgid "Cleaning up public transport stops that are not served by any line" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:144 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:144 #, c-format msgid "Removed % pt stops because they could not be assigned to the network" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:149 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:149 msgid "Align pt stop id signs with corresponding edge id signs" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:186 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:186 msgid "Joining tram edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:190 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:190 msgid " Joined % tram edges into roads." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:228 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:228 msgid "Joining junction clusters" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:233 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:233 #, c-format msgid " Joined % junction cluster(s)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:236 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:236 msgid "Joining junctions with identical coordinates" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:240 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:240 #, c-format msgid " Joined % junctions." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:245 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:245 msgid "Joining lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:248 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:248 #, c-format msgid " Joined lanes on % edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:258 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:258 #, c-format msgid " % nodes removed." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:278 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:278 msgid "Reducing geometries" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:285 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:285 msgid "Joining similar edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:295 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:295 msgid "guessing opposite direction edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:301 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:301 msgid "Splitting geometry edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:308 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:308 #, c-format msgid " Joined % junctions after splitting geometry." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:313 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:313 msgid "Computing turning directions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:322 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:322 msgid "Assigning nodes to traffic lights" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:345 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:345 msgid "Guessing and setting on-/off-ramps" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:361 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:361 msgid "Guessed % bike lanes." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:372 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:372 #, c-format msgid "Guessed % sidewalks." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:382 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:382 #, c-format msgid "Remapped % edge IDs and % node IDs." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:397 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:397 msgid "Sorting nodes' edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:402 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:402 msgid "Computing node shapes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:410 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:410 msgid "Computing edge shapes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:423 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:423 msgid "Applying speed modifications" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:436 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:436 msgid "Computing node types" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:447 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:447 #, c-format msgid "Guessed % pedestrian crossings." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:475 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:475 msgid "Computing priorities" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:479 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:479 msgid "Computing approached edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:484 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:484 msgid "Guessing and setting roundabouts" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:487 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:487 msgid " Guessed % roundabout(s)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:493 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:493 msgid "Computing approaching lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:497 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:497 msgid "Dividing of lanes on approached lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:503 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:503 msgid "Guessing Network fringe" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:506 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:506 #, c-format msgid " Guessed % fringe nodes." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:511 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:511 msgid "Processing turnarounds" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:529 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:529 msgid "Rechecking of lane endings" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:551 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:551 msgid "Joining traffic light nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:558 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:558 msgid "Computing traffic light control information" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:565 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:565 msgid "Computing node logics" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:570 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:570 msgid "Computing traffic light logics" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:577 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:577 msgid " % traffic light(s) %computed." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:585 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:588 msgid "Building inner edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:598 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:601 msgid "stretching junctions to smooth geometries" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:627 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:630 msgid "Generating street signs" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:638 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:641 msgid "Checking overlapping edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:643 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:646 msgid "Checking edge grade" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:658 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:661 msgid "Find accesses for pt rail stops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:681 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:684 msgid "" "Network contains very large coordinates and will probably flicker in the " "GUI. Check for outlying nodes and make sure the network is shifted to the " "coordinate origin" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:688 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:691 msgid "Moving network to origin" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:299 -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:321 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:299 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:321 msgid "Invalid node id '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:465 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:465 msgid " Removing self-looping edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:744 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:744 msgid "Could not compute indirect left turn shape at node '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:760 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:760 #, c-format msgid "Connection '%' starts at a non-existant lane." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:763 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:763 #, c-format msgid "Connection '%' targets a non-existant lane." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:777 -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:795 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:777 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:795 msgid "Could not use custom shape for connection %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:786 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:786 msgid "Custom shape has distance % to incoming lane for connection %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:803 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:803 msgid "Custom shape has distance % to outgoing lane for connection %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1003 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1003 msgid "" "Junction '%' is too complicated (% connections, max %); will be set to %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1144 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1144 #, c-format msgid "Shape for junction '%' has distance % to its given position." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1148 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1148 msgid "For junction '%': could not compute shape." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1852 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1850 msgid "Something went wrong during the building of a connection..." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:2871 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:2878 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (no " "walkingarea found)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3047 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3054 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (no vehicle " "lanes to cross)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3066 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3073 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (invalid " "shape)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3217 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3224 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' targets '%' and " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3240 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3247 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' is targeted by '%' " "and '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3245 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3252 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' starts and ends at " "walkingarea '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3465 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3472 msgid "Invalid pedestrian topology: crossing '%' across [%] has no target." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3685 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3692 msgid "Request for unknown crossing '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3701 -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3712 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3708 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3719 msgid "Request for unknown crossing for the given Edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:319 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:319 msgid "Removed a road without junctions: %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:406 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:406 msgid "Found % components and removed % (% edges)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:447 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:447 msgid "Removed % railway components (% edges)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:658 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:663 #, c-format msgid "" "Ignoring join exclusion for junction '%' since it already occurred in a list " "of nodes to be joined." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:691 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:696 msgid "" "Ignoring join-cluster because junction '%' was already excluded from joining." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:694 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:699 #, c-format msgid "" "Ignoring join-cluster because junction '%' already occurred in another join-" "cluster." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:700 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:705 #, c-format msgid "Unknown junction '%' in join-cluster." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:708 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:713 msgid "Ignoring join-cluster '%' because it has size '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:722 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:727 msgid "unknown junction '%' while joining." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:780 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:821 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:828 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:833 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:840 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:785 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:826 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:833 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:838 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:845 msgid "Not joining junctions % (%)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:800 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:814 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:805 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:819 msgid "Reducing junction cluster % (%)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1709 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1714 msgid "Could not join junctions %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1909 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1956 msgid "Ambiguous traffic light type for node cluster '%', setting to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2005 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2052 #, c-format msgid " The junction '%' to set as not-controlled is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2174 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2221 msgid "Could not build joined tls '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2219 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2266 msgid "Could not build guessed, joined tls." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2335 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2382 msgid "Could not build a joined tls." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2352 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2399 msgid "Building a tl-logic for junction '%' twice is not possible." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2434 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2526 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2481 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2573 msgid "-----------------------------------------------------" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2435 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2482 msgid "Summary:" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2493 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2540 msgid " Node type statistics:" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2522 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2569 msgid " Network boundaries:" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2555 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2602 msgid "Attempt to rename node using existing id '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeShapeComputer.cpp:441 +#: D:\Repos\sumo/src\netbuild\NBNodeShapeComputer.cpp:444 msgid "Fixing offset for edge '%' at node '%." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:561 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:561 #, c-format msgid "" "Minor green from edge '%' to edge '%' exceeds %m/s. Maybe a left-turn lane " "is missing." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:773 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:773 msgid "" "Generating NEMA phases is not support for traffic light '%' with % incoming " "edges. Using tlType 'actuated' as fallback" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:799 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:799 msgid "The traffic light '%' cannot be adapted to a cycle time of %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:818 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:818 msgid "The traffic light '%' has a high cycle time of %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:197 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:197 msgid "Could not retrieve edge '%' for first stop of line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:203 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:203 msgid "First stop edge '%' is not part of the route of line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:227 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:227 msgid "Could not retrieve edge '%' for last stop of line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:233 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:233 msgid "Last stop edge '%' is not part of the route of line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:294 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:302 msgid "Removed invalid stop '%' from line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:312 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:320 msgid "Removed duplicate stop '%' at area '%' from line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:315 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:323 msgid "Removed duplicate stop '%' named '%' from line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:99 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:99 msgid "" "Cannot revise pt stop localization for pt line '%', which consist of one way " "only. Ignoring!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:103 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:103 msgid "" "Cannot revise pt stop localization for pt line '%', which has no route " "edges. Ignoring!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:122 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:122 msgid "" "Cannot assign stop '%' on edge '%' to pt line '%' (wayNodes not found). " "Ignoring!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:137 -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:151 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:137 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:151 msgid "" "Cannot revise pt stop localization for incomplete pt line '%'. Ignoring!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:162 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:162 msgid "Could not re-assign PT stop '%', probably broken osm file." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:171 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:171 msgid "PT stop '%' has been moved to edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:243 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:243 msgid "" "Could not assign stop '%' to pt line '%' (closest edge '%', distance %). " "Ignoring!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:275 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:275 msgid "Cannot assign stop % on edge '%' to pt line '%'. Ignoring!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:458 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:475 msgid "" "Could not determine vehicle class for public transport line of type '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:523 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:540 msgid "Could not determine direction for line '%' at stop '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:110 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:110 msgid "" "Could not find corresponding edge or compatible lane for pt stop '%' (%). " "Thus, it will be removed!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:136 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:136 msgid "" "Could not create reverse-direction stop for superposed edge '%' (origStop " "'%'). Stop id '%' already in use by stop on edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:170 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:170 #, c-format msgid "Added % stops for superposed rail edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:272 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:272 msgid "Could not determine cross product for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:326 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:326 msgid "Removing pt stop '%' on non existing edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:357 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:357 msgid "Could not re-assign pt stop '%' after replacing edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:446 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:446 msgid "" "Could not find corresponding edge or compatible lane for free-floating pt " "stop '%' (%). Thus, it will be removed!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:44 +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:44 #, c-format msgid "Ignoring parking area on edge '%' due to invalid permissions." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:51 +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:51 #, c-format msgid "Ignoring parking area on edge '%' due to insufficient space." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:71 +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:71 msgid "Could not find edge for parkingArea '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:115 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:115 #, c-format msgid "The traffic light '%' does not control any links; it will not be build." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:229 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:229 msgid "Unreachable edge '%' within tlLogic '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:509 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:509 #, c-format msgid "The rail crossing '%' does not have any roads." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogic.cpp:100 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogic.cpp:100 #, c-format msgid "When adding phase: illegal character '%' in state" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogic.cpp:233 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogic.cpp:233 #, c-format msgid "Non-static traffic light '%' does not define variable phase length." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogicCont.cpp:235 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:243 msgid "Could not build program '%' for traffic light '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogicCont.cpp:376 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:384 msgid "Guessing signalID for link index % at traffic light '%'." msgstr "" -#: /home/micha/programming/sumo/src/netconvert_main.cpp:97 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:491 +#, c-format +msgid "" +"Was not able to apply the OpenDRIVE signal group information onto the signal " +"program of traffic light % generated by SUMO." +msgstr "" + +#: D:\Repos\sumo/src\netconvert_main.cpp:98 msgid "" "Network importer / builder for the microscopic, multi-modal traffic " "simulation SUMO." msgstr "" -#: /home/micha/programming/sumo/src/netconvert_main.cpp:120 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:273 -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:93 +#: D:\Repos\sumo/src\netconvert_main.cpp:121 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:273 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:93 msgid "Could not build projection!" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:41 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:41 msgid "Read edge-type defs from FILE" -msgstr "" +msgstr "Éltípus definíciók olvasása a(z) FILE-fájlból" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:44 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:44 msgid "" "The Ids of generated nodes use an alphanumerical code for easier readability " "when possible" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:48 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:48 msgid "Generate INT left-turn lanes" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:50 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:50 msgid "Set the length of generated turning lanes to FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:53 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:53 msgid "" "Apply random spatial perturbation in x direction according the the given " "distribution" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:55 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:55 msgid "" "Apply random spatial perturbation in y direction according the the given " "distribution" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:57 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:57 msgid "" "Apply random spatial perturbation in z direction according the the given " "distribution" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:63 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:63 msgid "Defines the probability to build a reverse edge" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:67 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:67 msgid "Draw lane numbers randomly from [1,default.lanenumber]" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:71 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:71 msgid "Draw edge priority randomly from [1,default.priority]" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:74 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:74 msgid "Draw edge type randomly from all loaded types" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:80 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:80 msgid "Forces NETGEN to build a grid-like network" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:85 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:85 msgid "The number of junctions in both dirs" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:90 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:90 msgid "The length of streets in both dirs" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:95 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:95 msgid "The number of junctions in x-dir; Overrides --grid-number" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:100 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:100 msgid "The number of junctions in y-dir; Overrides --grid-number" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:105 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:105 msgid "The length of horizontal streets; Overrides --grid-length" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:110 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:110 msgid "The length of vertical streets; Overrides --grid-length" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:114 -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:147 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:114 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:147 msgid "" "The length of streets attached at the boundary; 0 means no streets are " "attached" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:117 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:117 msgid "" "The length of streets attached at the boundary in x direction; 0 means no " "streets are attached" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:119 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:119 msgid "" "The length of streets attached at the boundary in y direction; 0 means no " "streets are attached" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:124 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:124 msgid "Forces NETGEN to build a spider-net-like network" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:129 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:129 msgid "The number of axes within the net" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:134 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:134 msgid "The number of circles of the net" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:139 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:139 msgid "The distances between the circles" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:144 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:144 msgid "Omit the central node of the network" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:152 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:152 msgid "Forces NETGEN to build a random network" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:157 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:157 msgid "Describes how many times an edge shall be added to the net" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:162 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:162 msgid "The maximum distance for each edge" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:167 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:167 msgid "The minimum distance for each edge" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:172 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:172 msgid "The minimum angle for each pair of (bidirectional) roads in DEGREES" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:177 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:177 msgid "The number of tries for creating each node" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:182 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:182 msgid "Probability for roads to continue at each node" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:187 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:187 msgid "Probability for a node having exactly 1 neighbor" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:192 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:192 msgid "Probability for a node having exactly 2 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:197 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:197 msgid "Probability for a node having exactly 3 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:202 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:202 msgid "Probability for a node having exactly 4 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:207 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:207 msgid "Probability for a node having exactly 5 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:212 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:212 msgid "Probability for a node having exactly 6 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:215 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:215 msgid "Place nodes on a regular grid with spacing rand.min-distance" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:235 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:235 msgid "You have to specify the type of network to generate." msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:239 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:239 msgid "You may specify only one type of network to generate at once." msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:274 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:274 msgid "Option 'random-type' takes no effect unless 'type-files' are loaded" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:90 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:90 msgid "" "[traffic_light|priority|right_before_left|left_before_right|" "traffic_light_right_on_red|priority_stop|allway_stop|...] Determines " "junction type (see wiki/Networks/PlainXML#Node_types)" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:119 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:120 msgid "Spider networks need at least 3 arms." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:123 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:124 msgid "Spider networks with many arms should use option spider.omit-center" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:126 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:127 msgid "Spider networks need at least one circle." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:134 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:135 #, c-format msgid "" "The radius of spider networks should be at least % for the given lanenumber, " "lanewidth and junction radius" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:176 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:177 msgid "" "The number of nodes must be positive and at least 2 in one direction if " "there are no attachments." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:184 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:185 #, c-format msgid "" "The distance between nodes should be at least % for the given lanenumber, " "lanewidth and junction radius" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:190 -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:195 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:191 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:196 #, c-format msgid "" "The length of attached streets should be at least % for the given " "lanenumber, lanewidth and junction radius" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:230 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:231 msgid "" "Synthetic network generator for the microscopic, multi-modal traffic " "simulation SUMO." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:266 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:267 msgid " Generation done;" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:267 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:268 #, c-format msgid " % nodes generated." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:268 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:269 #, c-format msgid " % edges generated." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:273 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:274 msgid " Removed % traffic lights at geometry-like nodes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:53 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:53 msgid "Read SUMO-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:60 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:60 msgid "Read XML-node defs from FILE" -msgstr "" +msgstr "XML-csomópont definíciók olvasása a(z) FILE-fájlból" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:66 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:66 msgid "Read XML-edge defs from FILE" -msgstr "" +msgstr "XML-éldefiníciók olvasása a(z) FILE-fájlból" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:72 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:72 msgid "Read XML-connection defs from FILE" -msgstr "" +msgstr "XML-kapcsolat definíciók olvasása a(z) FILE-fájlból" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:75 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:75 msgid "Read XML-traffic light defs from FILE" -msgstr "" +msgstr "XML-közlekedési lámpa definíciók olvasása a(z) FILE-fájlból" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:81 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:81 msgid "Read XML-type defs from FILE" -msgstr "" +msgstr "XML-típusdefiníciók olvasása a(z) FILE-fájlból" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:86 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:86 msgid "Reads public transport stops from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:88 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:88 msgid "Reads public transport lines from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:90 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:90 msgid "Reads polygons from FILE for embedding in network where applicable" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:97 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:97 msgid "Read shapefiles (ArcView, Tiger, ...) from files starting with 'FILE'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:102 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:102 msgid "" "Read converted Navteq GDF data (unsplitted Elmar-network) from path 'FILE'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:106 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:106 msgid "Read OSM-network from path 'FILE(s)'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:110 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:110 msgid "Read OpenDRIVE-network from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:114 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:114 msgid "Read VISUM-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:118 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:118 msgid "Read VISSIM-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:123 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:123 msgid "Read RoboCup-net from DIR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:127 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:127 msgid "Read MATsim-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:131 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:131 msgid "Read ITSUMO-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:134 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:134 msgid "Read heightmap from ArcGIS shapefile" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:137 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:137 msgid "Read heightmap from GeoTIFF" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:145 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:159 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:199 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:145 +#: D:\Repos\sumo/src\od2trips_main.cpp:159 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:199 msgid "Continue on broken input" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:148 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:148 msgid "Continue on invalid connections" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:151 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:151 msgid "Show errors in connections at parsing" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:154 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:154 msgid "Continue on unknown edge types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:157 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:157 msgid "vmax is parsed as given in km/h" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:160 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:160 msgid "" "Use YYYY-MM-DD date to determine the readiness of features under construction" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:163 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:163 msgid "Remove all z-data" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:166 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:166 msgid "Remove the list of keys from all params" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:169 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:169 msgid "" "List vehicle classes that may ignore lane changing restrictions ('all' " "discards all restrictions)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:174 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:174 msgid "If edge shapes do not end at the node positions, extend them" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:178 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:178 msgid "Skips the check for duplicate nodes and edges" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:181 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:181 msgid "Imports elevation data" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:184 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:184 msgid "" "Reconstruct (relative) elevation based on layer data. Each layer is raised " "by FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:187 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:187 #, c-format msgid "" "Maximum grade threshold in % at 50km/h when reconstrucing elevation based on " "layer data. The value is scaled according to road speed." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:190 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:190 msgid "Whether one-way roads should be spread to the side instead of centered" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:193 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:193 msgid "Import lane-specific access restrictions" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:197 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:197 msgid "Import bike lanes and fix directions and permissions on bike paths" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:200 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:200 msgid "Import sidewalks" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:203 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:203 msgid "Import crossings" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:206 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:206 msgid "Import turning arrows from OSM to help with connection building" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:209 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:209 msgid "The default length of a public transport stop in FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:211 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:211 msgid "The default length of a bus stop in FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:213 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:213 msgid "The default length of a tram stop in FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:215 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:215 msgid "The default length of a train stop in FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:218 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:219 msgid "Whether additional attributes shall be imported" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:221 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:223 msgid "" "List of additional attributes that shall be imported from OSM via osm.all-" "attributes (set 'all' to import all)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:224 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:226 msgid "" "The speed limit to be set when there is no actual speed limit in reality" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:228 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:230 msgid "The edge lengths given in the MATSIM-file will be kept" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:231 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:233 msgid "The lane number will be computed from the capacity" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:237 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:239 msgid "Read edge ids from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:241 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:243 msgid "Read from-node ids from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:245 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:247 msgid "Read to-node ids from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:249 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:251 msgid "Read type ids from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:252 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:254 msgid "Read lane number from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:255 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:257 msgid "Read speed from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:258 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:260 msgid "Read custom edge length from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:261 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:263 msgid "Read total edge width from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:264 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:266 msgid "Read (non-unique) name from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:267 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:269 msgid "" "Distance threshold for determining whether distinct shapes are connected " "(used when from-id and to-id are not available)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:270 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:272 msgid "Add the list of field names as edge params" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:274 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:276 msgid "Uses edge type defaults on problems" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:279 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:281 msgid "Insert edges in both directions" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:283 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:285 msgid "Guess the proper projection" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:286 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:125 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:288 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:125 msgid "Use traditional axis order (lon, lat)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:291 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:293 msgid "Allow more vehicle classes by default" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:294 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:296 msgid "The edge lengths given in the DLR Navteq-file will be kept" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:300 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:302 msgid "Structure join offset" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:303 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:305 msgid "Use FLOAT as default speed" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:306 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:308 msgid "Factor for edge velocity" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:309 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:311 msgid "Writes lanes without an explicit speed set" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:314 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:95 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:316 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:95 msgid "Load language mappings from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:317 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:319 msgid "Uses priorities from types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:320 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:322 msgid "Uses lane numbers from types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:323 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:325 msgid "Uses speeds from types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:326 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:328 msgid "Sets connector speed" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:330 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:332 msgid "Sets connector lane number" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:333 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:335 msgid "Excludes connectors" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:337 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:339 msgid "Computes the number of lanes from the edges' capacities" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:340 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:342 msgid "Prints all warnings, some of which are due to VISUM misbehaviour" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:345 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:347 msgid "The factor for flow to no. lanes conversion" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:350 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:352 msgid "Imports all lane types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:352 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:354 msgid "Whether lane widths shall be ignored." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:354 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:356 msgid "" "The geometry resolution in m when importing curved geometries as line " "segments." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:356 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:358 msgid "" "Allow stop lines to be built beyond the start of the junction if the " "geometries allow so" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:358 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:360 msgid "" "The minimum lane width for determining start or end of variable-width lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:360 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:362 msgid "Import internal lane shapes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:362 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:364 msgid "Sets edge-id based on road-id and offset in m (legacy)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:364 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:366 msgid "Use custom lane shapes to compensate discarded lane types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:375 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:368 +msgid "" +"Use the OpenDRIVE controller information for the generated signal program" +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:379 msgid "" "Discard all railway signal information loaded from other formats than plain-" "xml" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:397 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:400 msgid "" "Cannot import network data without PROJ-Library. Please install package proj " "before building sumo" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:422 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:314 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:425 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:314 msgid "Environment variable SUMO_HOME is not set, using built in type maps." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:455 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:458 msgid "It is recommend to use option osm.crossings with osm.sidewalks" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:138 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:139 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:138 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:139 msgid "Could not open shape description '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:187 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:187 msgid "Needed field '%' (street-id) is missing." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:198 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:198 msgid "Needed field '%' (from node id) is missing." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:202 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:202 msgid "Needed field '%' (to node id) is missing." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:218 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:218 msgid "Unknown type '%' for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:233 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:233 #, c-format msgid "" "Required field '%' or '%' is missing (add fields or set option --shapefile." "use-defaults-on-failure)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:249 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:249 msgid "" "Road geometry must be of type 'linestring' or 'linestring25D' (found '%')" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:261 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:90 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:261 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:90 msgid "No coordinate system found and coordinates look already projected." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:264 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:93 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:264 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:93 msgid "Could not find geo coordinate system, assuming WGS84." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:277 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1488 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:600 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimAbstractEdge.cpp:44 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:171 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:277 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1562 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:600 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimAbstractEdge.cpp:44 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:171 msgid "Unable to project coordinates for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:290 -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:304 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:304 #, c-format msgid "Node '%' could not be added" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:312 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:312 #, c-format msgid "Edge '%' connects identical nodes, skipping." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:329 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:329 #, c-format -msgid "Edge '% is not unique." +msgid "Edge '%' is not unique." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:338 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:338 msgid "Edge '%' is not unique. Renaming subsequent edge to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:354 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:354 msgid "Could not create edge '%'. An edge with the same id already exists." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:368 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:368 msgid "Could not create edge '-%'. An edge with the same id already exists." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:382 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:331 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:382 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:331 msgid "SUMO was compiled without GDAL support." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:76 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:76 msgid "Loading nodes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:80 -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:105 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:80 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:105 #, c-format msgid "The file '%' could not be opened." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:90 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:90 msgid "Loading street names" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:95 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:95 msgid "Output will not contain street names because the file '%' was not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:100 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:100 msgid "Loading edges" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:114 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:114 msgid "Loading traffic lights" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:123 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:123 msgid "Loading prohibited manoeuvres" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:132 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:132 msgid "Loading connected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:141 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:141 msgid "Loading time restrictions" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:210 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:210 msgid "Non-numerical value for intermediate status in node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:215 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:215 msgid "Non-numerical value for number of geometries in node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:222 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:222 msgid "Non-numerical value for x-position in node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:226 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:226 msgid "Non-numerical value for y-position in node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:230 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:321 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:230 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:321 msgid "Unable to project coordinates for node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:240 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:240 msgid "Could not add add node '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:242 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:260 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:379 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:474 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1350 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:242 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:267 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:386 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:481 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1424 msgid "Could not add node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:299 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:299 msgid "Missing version string in file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:309 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:309 msgid "Non-numerical value for form_of_way of link '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:316 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:316 msgid "Non-numerical value for brunnel_type of link '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:329 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:329 msgid "Non-numerical value for street_type of link '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:351 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:351 msgid "Non-numerical value for the SPEED_RESTRICTION of link '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:366 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:366 msgid "Non-numerical value for the number of lanes of link '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:420 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:538 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:596 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:759 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:420 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:545 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:603 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:760 msgid "Could not add edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:431 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:431 msgid "Missing column %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:442 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:442 msgid "Missing optional column % without default value." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:499 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:499 #, c-format msgid "The traffic light edge '%' could not be found." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:511 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:511 msgid "Could not allocate tls for '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:702 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:702 msgid "Could not parse YYYY-MM-DD date '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:747 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:747 msgid "Ignoring temporary prohibited manoeuvre (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:756 -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:801 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:756 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:801 msgid "Ignoring prohibition from unknown start edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:761 -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:806 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:761 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:806 msgid "Ignoring prohibition from unknown end edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:811 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:811 msgid "" "Ignoring invalid lane index '%' in connection from edge '%' with % lanes." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:816 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:816 msgid "Ignoring invalid lane index '%' in connection to edge '%' with % lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:821 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:821 msgid "Could not set loaded connection from '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:117 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:117 msgid "Could not open itsumo-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:217 -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:180 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:217 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:180 msgid "Could not add edge '%'. Probably declared twice." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:232 -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:142 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:703 -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:148 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:232 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:142 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:703 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:148 msgid "Unable to project coordinates for node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:237 -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:147 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:237 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:147 msgid "Could not add node '%'. Probably declared twice." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:240 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:240 msgid "Not numeric position information for node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:242 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:242 msgid "Missing data in node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:260 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:260 msgid "Missing node in laneset '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:263 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:263 msgid "Fond laneset-id '%' twice." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:277 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:277 msgid "Not numeric value in laneset '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:279 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:279 msgid "Missing data in laneset '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:290 msgid "Not numeric value in lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:292 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:292 msgid "Missing data in lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:202 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:202 msgid "Bogus capacity period format; requires 'hh:mm:ss'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:234 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:234 msgid "Could not find from-node for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:237 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:237 msgid "Could not find to-node for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:253 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:253 msgid "Could not add intermediate node to split loop edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:211 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:217 msgid "Could not find signal reference '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:274 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:312 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:281 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:319 msgid "Could not build node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:411 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:418 msgid "Ignoring road '%' without geometry." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:435 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:442 msgid "Could not apply laneOffsets for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:668 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:633 #, c-format msgid "Edge '%' has no lanes." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:704 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:674 #, c-format msgid "While setting connections: from-edge '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:714 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:684 #, c-format msgid "While setting connections: to-edge '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:740 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:743 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:710 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:713 msgid "Could not find fromEdge representation of '%' in connection '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:792 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:766 +#, c-format +msgid "" +"Controlling multiple junctions by the same controller '%' is currently not " +"implemented." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:787 #, c-format msgid "Edge '%' has signals but no lane sections." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:814 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:809 msgid "Ambiguous start of connection." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:831 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:826 msgid "Ambiguous end of connection." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:844 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:859 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:892 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:839 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:854 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:901 msgid "Could not find edge '%' for signal '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:881 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:875 +msgid "" +"The signaling of the connection from '%' to '%' (controller '%') is " +"ambiguous because it is overwritten signal '%' and with controller '%'." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:890 msgid "Found a traffic light signal on an unknown edge (original edge id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1287 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1319 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:921 +msgid "" +"The signaling of the connection from '%' to '%' (controller '%') is " +"ambiguous because it is overwritten with signal '%' and controller '%'." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1361 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1393 #, c-format msgid "While setting connections: incoming road '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1362 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1436 msgid "Could not find node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1455 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1529 msgid "Mismatched geometry for edge '%' between geometry segments % and %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1636 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1710 #, c-format msgid "The sections of edge '%' are not sorted properly." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1648 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1722 msgid "" "Almost duplicate s-value '%' for lane sections occurred at edge '%'; second " "entry was removed." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1691 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1765 msgid "Could not compute spiral geometry for edge '%' (cDot=% length=%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1740 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1814 msgid "Could not compute spiral geometry for edge '%' (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2012 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2086 msgid "" "Will discard access settings as both denied and allowed classes have been " "specified." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2320 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2392 msgid "Ignoring invalid pRange value '%' for road '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2420 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2617 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2470 +msgid "Ignoring missing signal '%' in controller '%'." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2508 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2704 #, c-format msgid "In laneLink-element: incoming road '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2516 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2603 msgid "Ignoring object without id at edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2534 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2621 msgid "Repeat without object at edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2588 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2675 msgid "Could not set projection (%). This can be ignored with --ignore-errors." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2592 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2679 #, c-format msgid "geoReference format '%' currently not supported" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2661 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2752 msgid "Mismatching parenthesis in geometry definition for road '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2665 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2756 msgid "Double geometry information for road '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:156 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:104 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:156 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:104 msgid "Could not open osm-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:168 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:168 #, c-format msgid "Found and substituted % osm nodes." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:192 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:192 msgid "Removing duplicate edges" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:207 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:207 #, c-format msgid "Removed % duplicate osm edges." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:241 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:241 msgid "Discarding way '%' because it has only % node(s)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:404 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:404 msgid "Could not insert junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:462 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:462 msgid "" "Discarding edge '%' which connects two identical nodes without geometry." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:574 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:574 msgid "New value for oneway found: %" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:606 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:607 msgid "Skipping edge '%' because it has zero lanes." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:626 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:627 msgid "Skipping edge '%' because it has speed %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:746 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:747 msgid "" "Forward lanes count for edge '%' ('%') is not matching the number of lanes " "defined in width:lanes:forward key ('%'). Using default width values." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:792 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:793 msgid "" "Backward lanes count for edge '%' ('%') is not matching the number of lanes " "defined in width:lanes:backward key ('%'). Using default width values." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:805 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:806 msgid "Could not add edge '-%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:893 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:894 msgid "" "Attribute 'id' in the definition of a node is not of type long long int." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:899 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:900 msgid "Tag element on wrong XML hierarchy level." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:941 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:942 msgid "Value of key '%' is invalid ('%') in node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:946 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:947 msgid "Value of key '%' is not numeric ('%') in node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1091 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:592 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1092 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:592 msgid "The referenced geometry information (ref='%') is not known" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1329 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1331 #, c-format msgid "Using default lane width for edge '%' as key '%' could not be parsed." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1332 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1334 #, c-format msgid "Using default lane width for edge '%' as value '%' could not be parsed." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1375 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1377 msgid "Using minimum lane number from list (%) for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1377 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1381 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1392 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1404 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1427 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1437 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1379 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1383 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1394 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1406 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1429 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1439 msgid "Value of key '%' is not numeric ('%') in edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1434 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1436 msgid "Ignoring track count % for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1605 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1607 msgid "Unknown lane use specifier '%' ignored for way '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1714 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1716 msgid "No node found for reference '%' in relation '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1776 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1778 msgid "Found unknown restriction type '%' in relation '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1814 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1816 msgid "Invalid color value '%' in relation %" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1832 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1834 msgid "No way found for reference '%' in relation '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1844 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1846 msgid "Ignoring restriction relation '%' with unknown type." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1848 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1850 msgid "Ignoring restriction relation '%' with unknown from-way." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1852 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1854 msgid "Ignoring restriction relation '%' with unknown to-way." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1856 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1858 msgid "Ignoring restriction relation '%' with unknown via." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1860 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1862 msgid "Ignoring restriction relation '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1885 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1887 #, c-format msgid "" "Platform '%' in relation: '%' is given as polygon, which currently is not " "supported." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1906 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1908 #, c-format msgid "" "Referenced platform: '%' in relation: '%' is corrupt. Probably OSM file is " "incomplete." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1945 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1947 #, c-format msgid "PT line '%' in relation % seems to be split, only keeping first part." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1978 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1980 msgid "" "PT line in relation % with no stops ignored. Probably OSM file is incomplete." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1984 -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:222 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1986 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:222 msgid "Ignoring duplicate PT line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1999 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2001 msgid "Via-node '%' was not instantiated" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2005 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2007 #, c-format msgid "from-edge '%' of restriction relation could not be determined" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2009 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2011 #, c-format msgid "to-edge '%' of restriction relation could not be determined" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2039 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2041 msgid "direction of restriction relation could not be determined%" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2060 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2062 #, c-format msgid "Ambiguous way reference '%' in restriction relation" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2311 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2314 msgid "" "Discarding unknown compound '%' in type '%' (first occurrence for edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2315 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2320 msgid "Discarding unusable type '%' (first occurrence for edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2364 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2365 msgid "Discarding compound type '%' (first occurrence for edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2369 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2380 msgid "Adding new type '%' (first occurrence for edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2404 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2415 msgid "Ambiguous railway kilometrage direction for way '%' (assuming forward)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2411 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2422 msgid "Inconsistent railway kilometrage direction for way '%': % (skipping)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2456 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2467 msgid "Value of railway:position is not numeric ('%') in node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2548 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2559 msgid "" "Ignoring turn sign information for % lanes on edge % with % driving lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:118 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:118 msgid "Could not open sumo-net-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:146 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:146 #, c-format msgid "Edge's '%' from-node and to-node '%' are identical." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:165 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:165 msgid "Could not insert edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:191 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:787 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:318 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:191 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:787 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:318 #, c-format msgid "Unknown edge '%' given in connection." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:230 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:272 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:230 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:272 #, c-format msgid "The traffic light '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:288 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:290 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:292 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:294 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:288 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:292 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:294 #, c-format msgid "Edge '%' in prohibition was not built." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:345 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:345 #, c-format msgid "Deprecated vehicle class(es) '%' in input network." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:403 -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1683 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:403 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1688 #, c-format msgid "Unknown edge '%' in roundabout" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:520 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:520 #, c-format msgid "Edge '%' occurred at least twice in the input." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:542 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:542 msgid "Unmatched closing tag for tl-logic." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:545 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:545 msgid "Could not add program '%' for traffic light '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:615 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:615 msgid "Unknown spreadType '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:628 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:628 #, c-format msgid "Found lane '%' not within edge element." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:633 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:633 msgid "Renaming lane '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:699 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:699 msgid "" "Duplicate definition of stopOffset for edge %.\n" "Ignoring duplicate specification." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:705 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:705 msgid "" "Duplicate definition of lane's stopOffset on edge %.\n" "Ignoring duplicate specifications." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:742 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:742 #, c-format msgid "Junction '%' occurred at least twice in the input." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:839 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:839 msgid "Invalid lane index '%' for connection from '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:929 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:929 msgid "Definition of tl-logic '%' was not finished." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:941 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:127 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:941 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:127 msgid "Unknown traffic light type '%' for tlLogic '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:955 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:955 msgid "found phase without tl-logic" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:963 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:963 msgid "Phase duration for tl-logic '%/%' must be positive." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1019 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1019 msgid "Missing connection divider in prohibition attribute '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1026 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1030 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1026 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1030 msgid "Unknown edge prohibition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:205 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:205 msgid "Can not open visum-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:247 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:247 #, c-format msgid "Too short value line in % occurred." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:249 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:249 msgid "A value in % should be numeric but is not (id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:251 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:251 msgid "One of the needed values ('%') is missing in %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:326 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:326 msgid "Duplicate node occurred ('%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:344 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:344 msgid "Unable to project coordinates for district %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:350 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:350 msgid "Duplicate district occurred ('%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:368 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:368 msgid "Unable to project coordinates for point %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:458 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:475 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:458 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:475 msgid "Duplicate edge occurred ('%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:580 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:580 msgid "" "Incoming connector '%' will not be build - would be not connected to network." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:584 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:618 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:584 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:618 #, c-format msgid "The district '%' could not be built." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:594 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:629 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:594 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:629 msgid "A duplicate edge id occurred (ID='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:614 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:614 msgid "" "Outgoing connector '%' will not be build - would be not connected to network." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:665 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:671 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:720 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:665 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:671 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:720 msgid "There is no edge from node '%' to node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:698 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:698 msgid "Error in geometry description from node '%' to node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:757 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:757 msgid "A lane number for edge '%' is not numeric (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:762 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:762 msgid "A lane number for edge '%' is not positive (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:781 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:781 msgid "A lane length for edge '%' is not numeric (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:785 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:785 msgid "A lane length for edge '%' is not positive (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:846 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:846 msgid "Could not find split position for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:856 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:856 msgid "Ups - could not insert node!" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:917 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:917 #, c-format msgid "Could not find TLS '%' for setting the signal group." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:930 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:930 msgid "Ignoring SIGNALGRUPPEZUFSABBIEGER because LsaNr is not known" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:987 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:987 msgid "Unknown edge in TEILFLAECHENELEMENT" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1007 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1007 msgid "Unknown are for area part '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1069 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1069 msgid "" "Ignoring lane-to-lane connection (not yet implemented for this format " "version)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1107 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1107 msgid "A from-lane number for edge '%' is not numeric (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1112 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1112 msgid "A from-lane number for edge '%' is not positive (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1121 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1121 msgid "A to-lane number for edge '%' is not numeric (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1126 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1126 msgid "A to-lane number for edge '%' is not positive (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1142 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1142 msgid "" "A from-lane number for edge '%' is larger than the edge's lane number (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1146 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1146 msgid "" "A to-lane number for edge '%' is larger than the edge's lane number (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1162 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1162 msgid "Ignoring stopping place '%' without edge id" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1164 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1164 msgid "Ignoring stopping place '%' without node informatio" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1171 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1171 msgid "" "Could not find edge with from-node '%' and base id '%' for stopping place '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1176 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1176 msgid "Unexpected from-node '%' for edge '%' of stopping place '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1182 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1182 msgid "" "Could not find edge with to-node '%' and base id '%' for stopping place '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1187 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1187 msgid "Unexpected to-node '%' for edge '%' of stopping place '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1271 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1271 #, c-format msgid "The node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1508 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1508 msgid "Could not build connector node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1518 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1518 msgid " The from-node was not found within the net" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1521 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1521 msgid " The to-node was not found within the net" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1524 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1524 msgid " Both nodes are the same" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1539 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:431 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1539 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:431 msgid "Could not load VISUM language map from '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1551 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1551 #, c-format msgid "Unknown entry '%' in VISUM language map" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:103 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:103 msgid " Removed % traffic lights before loading plain-XML" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:112 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:112 msgid "No nodes loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:115 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:115 msgid "No edges loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:126 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:126 msgid " Import done:" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:128 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:128 #, c-format msgid " % districts loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:130 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:130 #, c-format msgid " % nodes loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:132 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:132 msgid " % types loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:134 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:134 #, c-format msgid " % edges loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:136 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:136 #, c-format msgid "The split of edges was performed % times." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:144 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:144 msgid "Proj projection parameters used: '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:165 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:165 #, c-format msgid "Deprecated vehicle class(es) '%' in input edge files." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:61 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:61 msgid "Invalid speed code (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:64 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:64 msgid "Non-numerical value for an edge's speed type occurred (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:90 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:90 msgid "Invalid lane number (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:94 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:94 msgid "Non-numerical value for an edge's lane number occurred (edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NITypeLoader.cpp:62 +#: D:\Repos\sumo/src\netimport\NITypeLoader.cpp:62 msgid "Could not open %-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIVisumTL.cpp:76 +#: D:\Repos\sumo/src\netimport\NIVisumTL.cpp:76 msgid "invalid node for traffic light '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:85 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:85 msgid "" "Target edge '%' is not connected with '%'; the connection cannot be reset." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:99 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:99 msgid "Edge '%' has no connection to lane '%'; the connection cannot be reset." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:267 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:267 msgid "Unable to project shape for connection from edge '%' to edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:275 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:275 msgid "Could not set loaded connection from lane '%' to lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:347 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:347 #, c-format msgid "Node '%' in crossing is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:356 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:356 msgid "No edges specified for crossing at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:364 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:364 #, c-format msgid "Edge '%' for crossing at node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:372 -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:450 -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:455 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:372 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:450 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:455 msgid "Edge '%' does not touch node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:385 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:385 #, c-format msgid "Crossing at controlled node '%' must be prioritized" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:390 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:390 msgid "Unable to project shape for crossing at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:403 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:403 msgid "Crossing with edges '%' already exists at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:435 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:435 msgid "No edges specified for walkingArea at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:441 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:441 #, c-format msgid "Edge '%' for walkingArea at node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:467 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:467 msgid "Unable to project shape for walkingArea at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:222 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:222 msgid "Duplicate edge id occurred ('%'); assuming overwriting is wished." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:227 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:227 #, c-format msgid "Edge '%' changed it's type; assuming type override is wished." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:315 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:315 msgid "Ignoring self-looped edge '%' at junction '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:393 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:393 #, c-format msgid "'%' is deprecated, please use '%' instead." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:403 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:403 msgid "Lane index is larger than number of lanes (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:447 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:447 msgid "Unable to project coordinates for lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:472 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:472 msgid "Ignoring 'split' because it cannot be assigned to an edge" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:481 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:481 msgid "Edge '%' has a split at invalid position %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:486 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:486 msgid "Edge '%' has already a split at position %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:520 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:520 msgid "Invalid split node id for edge '%' (from- and to-node are forbidden)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:558 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:558 msgid "The from-node is not given for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:570 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:570 msgid "The to-node is not given for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:616 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:616 msgid "Ignoring unknown spreadType '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:674 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:674 #, c-format msgid "Duplicate edge '%' occurred." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:683 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:683 msgid "An important information is missing in edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:705 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:705 #, c-format msgid "Unknown edge '%' in roundabout." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:151 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:151 msgid "Missing position (at node ID='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:184 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:184 msgid "Could not insert node though checked this before (id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:213 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:213 msgid "Unable to project node shape at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:321 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:321 msgid "Unknown traffic light type '%' for node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:330 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:330 msgid "Unknown traffic light layout '%' for node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:341 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:341 msgid "Changing traffic light type '%' to '%' for tl '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:153 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:153 #, c-format msgid "Edge '%' for stop '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:161 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:161 #, c-format msgid "Lane '%' for stop '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:173 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:173 msgid "Could not add public transport stop '%' (already exists)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:192 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:192 #, c-format msgid "Edge '%' for access to stop '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:253 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:253 msgid "Found route outside line definition" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:263 -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:283 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:263 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:283 #, c-format msgid "Edge '%' in route of line '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:302 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:302 msgid "Stop '%' within line '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:318 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:318 msgid "Stop '%' within route '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLShapeHandler.cpp:46 -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1744 +#: D:\Repos\sumo/src\netimport\NIXMLShapeHandler.cpp:46 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1749 #, c-format msgid "Lane '%' to place poi '%' on is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLShapeHandler.cpp:59 -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1757 +#: D:\Repos\sumo/src\netimport\NIXMLShapeHandler.cpp:59 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1762 #, c-format msgid "lane position % for poi '%' is not valid." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:114 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:114 msgid "Definition of tlLogic '%' was not finished." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:140 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:158 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:140 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:158 msgid "Cannot load traffic light program for unknown id '%', programID '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:331 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:331 msgid "Invalid lane index '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTypesHandler.cpp:85 +#: D:\Repos\sumo/src\netimport\NIXMLTypesHandler.cpp:85 msgid "Invalid lane spread type '%'. Using default 'right'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTypesHandler.cpp:114 +#: D:\Repos\sumo/src\netimport\NIXMLTypesHandler.cpp:114 msgid "Invalid lane index % for edge type '%' with % lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/NIImporter_Vissim.cpp:887 +#: D:\Repos\sumo/src\netimport\vissim\NIImporter_Vissim.cpp:887 msgid "Could not open vissim-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnection.cpp:241 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnection.cpp:241 msgid "Could not build connection between '%' and '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnection.cpp:248 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnection.cpp:248 msgid "Lane sizes differ for connection '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnectionCluster.cpp:496 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnectionCluster.cpp:496 msgid "NIVissimConnectionCluster:More than a single node" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnectionCluster.cpp:662 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnectionCluster.cpp:662 msgid "NIVissimConnectionCluster: how to get an edge's position?" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:205 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:205 #, c-format msgid "Could not build district '%' - edge '%' is missing." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:360 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:360 msgid "" "No streams assigned at district'%'.\n" " Using default speed 200km/h" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:377 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:526 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:377 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:526 #, c-format msgid "The referenced speed distribution '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:378 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:385 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:378 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:385 msgid ". Using default." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:143 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:143 msgid "Ugly split to prohibit '%' by '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:186 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:186 msgid "Could not prohibit '%' by '%'. Have not found disturbance." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:191 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:191 msgid "Could not prohibit '%' by '%'. Disturbance connects same node." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:210 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:262 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:210 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:262 #, c-format msgid "Would have to split edge '%' to build a prohibition" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:237 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:237 #, c-format msgid "Could not prohibit '%' - it was not built." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:243 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:243 msgid "Could not prohibit '%' by '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:307 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:307 msgid "NIVissimDisturbance: no connection" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:340 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:340 #, c-format msgid "Could not build % of % disturbances." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:439 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:439 msgid "Will not build edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:464 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:472 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:464 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:472 #, c-format msgid "Could not insert node '%' to nodes container." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:490 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:490 msgid "Could not build edge '%'; would connect same node." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:532 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:532 msgid "What about distribution '%' " msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:138 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:138 #, c-format msgid "Could not set tls signal at edge '%' - the edge was not built." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:152 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:152 msgid "Edge '%': Lanes were not assigned." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:375 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:375 msgid "" "Error on adding a traffic light\n" " Must be a multiple id ('%')" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:383 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:383 msgid "The signal group '%' could not be assigned to tl '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:392 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:392 msgid "The signal '%' could not be assigned to tl '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:399 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:399 msgid "Could not set % of % traffic lights." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:402 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:402 #, c-format msgid "Could not set % of % groups." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:405 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:405 #, c-format msgid "Could not set % of % signals." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Lichtsignalanlagendefinition.cpp:84 -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:93 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Lichtsignalanlagendefinition.cpp:84 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:93 #, c-format msgid "Unsupported LSA-Type '%' occurred." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgeberdefinition.cpp:73 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgeberdefinition.cpp:73 msgid "Omitting unknown traffic light." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:142 -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:170 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:142 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:170 msgid "VAS traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:154 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:154 msgid "VSPLUS traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:162 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:162 msgid "TRENDS traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:178 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:178 msgid "TL traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:186 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:186 msgid "POS traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:194 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:194 msgid "externally defined traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Simdauer.cpp:49 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Simdauer.cpp:49 msgid "Simulation duration could not be parsed" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:85 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:85 msgid "Trying to set the effort for the unknown edge '%'." -msgstr "" +msgstr "Megpróbálja beállítani az erőfeszítést az ismeretlen „%” élhez." -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:100 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:100 msgid "Trying to set the travel time for the unknown edge '%'." -msgstr "" +msgstr "Megpróbálja beállítani az utazási időt az ismeretlen „%” élhez." -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:129 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:129 msgid "Invalid network, no network version declared." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:133 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:133 msgid "" "Network contains internal links which are ignored. Vehicles will 'jump' " "across junctions and thus underestimate route lengths and travel times." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:163 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:163 msgid "State was written at a different time=% than the begin time %!" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:197 -#: /home/micha/programming/sumo/src/router/RONet.cpp:223 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:197 +#: D:\Repos\sumo/src\router\RONet.cpp:223 #, c-format msgid "A TAZ with id '%' already exists. Not building junction TAZ." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:228 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:228 msgid "" "Loading vehicles ahead of a state file is not supported. Correct --begin " "option or load vehicles with option --route-files" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:256 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:256 msgid "Loading weights from '%'..." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:285 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:285 msgid "Loading done." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:390 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:390 msgid "Wrong number of state file names!" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:425 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:425 msgid "Loading % from '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:445 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:445 #, c-format msgid "The route file '%' is not accessible." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLDetectorBuilder.cpp:526 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:461 +msgid "" +"LaneData requested for mesoscopic simulation but --meso-lane-queue is not " +"active. Falling back to edgeData." +msgstr "" + +#: D:\Repos\sumo/src\netload\NLDetectorBuilder.cpp:526 msgid "" "The netstate type 'hbefa' is deprecated. Please use the type 'emissions' " "instead." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:198 +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:198 msgid "Asymmetrical neigh lane '%' for lane '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:218 +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:218 #, c-format msgid "" "Internal edge '%' is not properly connected (probably a manually modified " "net.xml)." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:391 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:391 msgid "Unknown from-node '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:395 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:395 msgid "Unknown to-node '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:535 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:535 #, c-format msgid "" "Shape of lane '%' is broken.\n" " Can not build according edge." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:557 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:557 #, c-format msgid "Another lane with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:627 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:627 msgid "An unknown lane ('%') was tried to be set as incoming to junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:781 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:781 msgid "Traffic light '%' has unknown type '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:785 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:785 #, c-format msgid "" "Traffic light type '%' cannot be used in mesoscopic simulation. Using '%' as " "fallback." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:874 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:874 msgid "maxDur % should not be smaller than minDir % in phase of tlLogic %" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:889 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:889 msgid "Duplicate condition '%' in tlLogic '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:942 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:942 msgid "Invalid person mode '%' in E1 detector definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1001 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1001 msgid "" "VTypeProbes are deprecated. Use fcd-output devices (assigned to the vType) " "instead." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1061 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1061 msgid "Ignoring deprecated argument 'cont' for E2 detector '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1077 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1077 msgid "Invalid person mode '%' in E2 detector definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1091 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1091 msgid "" "Trying to specify detector's lane by the given id since the argument 'lane' " "is missing." msgstr "" +"Megpróbálja megadni az érzékelő sávját a megadott azonosítóval, mivel az " +"argumentum „sáv” hiányzik." -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1131 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1131 msgid "" "Missing argument 'pos' for E2Detector '%'. Assuming detector start == lane " "start of lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1136 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1136 msgid "" "Missing argument 'endPos' for E2Detector '%'. Assuming detector end == lane " "end of lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1205 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1205 #, c-format msgid "" "Ignoring argument 'period' for E2Detector '%' since argument 'tl' was given." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1262 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1262 msgid "Invalid person mode '%' in E3 detector definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1341 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1341 msgid "Invalid person mode '%' in edgeData definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1365 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1365 msgid "Unknown edge '%' in edgeData definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1414 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1372 +msgid "" +"LaneData '%' requested for mesoscopic simulation but --meso-lane-queue is " +"not active. Falling back to edgeData." +msgstr "" + +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1419 #, c-format msgid "Unknown from-edge '%' in connection." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1420 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1425 #, c-format msgid "Unknown to-edge '%' in connection." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1425 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1430 msgid "Invalid lane index in connection from '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1506 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1511 #, c-format msgid "Unknown from-edge '%' in conflict." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1511 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1516 #, c-format msgid "Unknown to-edge '%' in connflict." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1516 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1521 msgid "Invalid lane index in conflict with '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1568 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1573 msgid "" "no valid geo projection loaded from network. fcd-output.geo will not work" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1596 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1601 msgid "Replacing junction-taz '%' with loaded TAZ." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1639 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1644 msgid "Skipping visualization of taz '%', polygon already exists." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1670 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1675 msgid "At district '%': succeeding edge '%' does not exist." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:116 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:116 msgid "Information about the number of nodes was missing." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:126 -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:143 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:126 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:143 msgid "Ignoring junction logic for junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:333 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:333 msgid "Invalid traffic light type '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:344 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:344 #, c-format msgid "Another logic with id '%' and programID '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:471 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:471 msgid "Traffic lights could not be built." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:75 +#: D:\Repos\sumo/src\netload\NLNetShapeHandler.cpp:163 +#, c-format +msgid "" +"% edges of the primary network did not occur in the alternative-net-file" +msgstr "" + +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:75 msgid "Vaporizers are deprecated. Use rerouters instead." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:84 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:84 msgid "Unknown edge ('%') referenced in a vaporizer." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:93 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:93 msgid "A vaporization begin time is negative (edge id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:97 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:97 msgid "A vaporization ends before it starts (edge id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:191 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:191 msgid "" "The overheadWireSegment '%' was not created as it is attached to internal " "lane. It will be build automatically." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:196 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:196 #, c-format msgid "" "The overheadWireSegment '%' not built as it is attached to internal lane. It " "will be build automatically." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:208 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:208 #, c-format msgid "" "The overheadWireSegment '%' has wrong position. Automatically set from 0 to " "the length of the lane." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:216 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:216 msgid "" "Overhead wire solver (Eigen) not compiled in, expect errors in overhead wire " "simulation" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:376 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:376 msgid "" "A connecting overhead wire start segment '%' defined for overhead wire clamp " "'%' is not assigned to the traction substation '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:378 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:378 msgid "" "A connecting overhead wire end segment '%' defined for overhead wire clamp " "'%' is not assigned to the traction substation '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:382 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:382 msgid "" "The overhead wire clamp '%' defined in an overhead wire section was not " "assigned to the substation '%'. Please define proper in additional files before defining overhead wire section." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:397 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:397 msgid "" "Cannot check circuit, overhead circuit solver support (Eigen) not compiled " "in." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:469 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:469 msgid "" "Not building overhead wire clamps, overhead wire solver support (Eigen) not " "compiled in." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:472 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:472 msgid "" "Ignoring overhead wire clamps, they make no sense when overhead wire circuit " "solver is off." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:526 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:526 msgid "Ignoring invalid access from non-pedestrian lane '%' in busStop '%'." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:54 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:54 msgid "The generated net will be written to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:59 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:59 msgid "Prefix of files to write plain xml nodes, edges and connections to" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:62 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:62 msgid "Write all lanes and their attributes even when they are not customized" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:69 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:69 msgid "Defines a prefix for edge and junction names" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:74 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:74 msgid "Write geo coordinates in plain-xml" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:79 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:79 msgid "The generated net will be written to FILE using Amitran format" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:82 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:82 msgid "The generated net will be written to FILE using MATsim format" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:85 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:85 msgid "The generated net will be written to FILE using OpenDRIVE format" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:88 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:88 msgid "" "The generated net will be written to dlr-navteq files with the given PREFIX" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:91 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:91 msgid "" "The network coordinates are written with the specified level of output " "precision" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:94 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:94 msgid "Street names will be included in the output (if available)" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:97 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:97 msgid "Writes original names, if given, as parameter" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:100 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:100 msgid "Writes street signs as POIs to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:104 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:104 msgid "Writes public transport stops to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:106 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:106 msgid "Writes public transport lines to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:108 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:108 msgid "Clean-up pt stops that are not served by any line" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:111 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:111 msgid "Writes parking areas to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:114 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:114 msgid "Analyze topology of the railway network" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:118 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:118 msgid "" "Write shapes that are embedded in the network input and that are not " "supported by polyconvert (OpenDRIVE)" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:123 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:123 msgid "" "Builds parameterized curves whenever the angular change between straight " "segments exceeds FLOAT degrees" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:127 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:127 msgid "Write lanes in lefthand networks on the left side (positive indices)" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:130 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:130 msgid "" "Match loaded shapes to the closest edge within FLOAT and export as road " "objects" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:154 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:153 msgid "OpenDRIVE export needs internal links computation." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:164 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:163 msgid "" "OpenDRIVE cannot represent oblique lane cuts and should use option " "'rectangular-lane-cut'." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:173 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:173 msgid "public transport lines output requires 'ptstop-output' to be set" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:177 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:177 msgid "" "'ptline-clean-up' only works in conjunction with 'ptline-output'. Ignoring " "invalid option." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:186 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:186 msgid "Writing network" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:91 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:91 msgid "" "DlrNavteq node data will be written in (floating point) cartesian coordinates" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:155 -#: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:162 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:155 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:162 msgid "Could not reconstruct shape for edge:'%' (%)." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:307 +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:313 msgid "Could not compute smooth shape for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:450 +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:456 msgid "" "Could not compute smooth shape from lane '%' to lane '%'. Use option " "'junctions.scurve-stretch' or increase radius of junction '%' to fix this." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:957 +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:963 msgid "" "Uneven stop line at lane '%' (dist=%) cannot be represented in OpenDRIVE." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:231 +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:235 msgid "" "Embedding TAZ-data inside the network is deprecated. Use option --taz-output " "instead" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:351 +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:458 msgid "Could not find bidi-connection for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:517 +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:545 #, c-format msgid "Lane '%' has a maximum allowed speed of 0." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_XML.cpp:88 -#: /home/micha/programming/sumo/src/polyconvert/PCPolyContainer.cpp:105 +#: D:\Repos\sumo/src\netwrite\NWWriter_XML.cpp:88 +#: D:\Repos\sumo/src\polyconvert\PCPolyContainer.cpp:105 msgid "" "Ignoring option \"proj.plain-geo\" because no geo-conversion has been defined" msgstr "" -#: /home/micha/programming/sumo/src/od/ODAmitranHandler.cpp:48 -msgid "Invalid duration for timeSlice starting %." +#: D:\Repos\sumo/src\od2trips_main.cpp:80 +msgid "Loads TAZ (districts; also from networks) from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/od/ODDistrictCont.cpp:72 -#, c-format -msgid "Could not access network file '%' to load." +#: D:\Repos\sumo/src\od2trips_main.cpp:102 +msgid "Writes trip definitions into FILE" msgstr "" -#: /home/micha/programming/sumo/src/od/ODDistrictHandler.cpp:130 -msgid "'probability' must be positive (in definition of % '%')." +#: D:\Repos\sumo/src\od2trips_main.cpp:105 +msgid "Writes flow definitions into FILE" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:80 -msgid "Missing origin '%' and destination '%' (% vehicles)." +#: D:\Repos\sumo/src\od2trips_main.cpp:108 +msgid "Writes probabilistic flow instead of evenly spaced flow" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:86 -msgid "Missing origin '%' (% vehicles)." +#: D:\Repos\sumo/src\od2trips_main.cpp:111 +msgid "Writes pedestrians instead of vehicles" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:91 -msgid "Missing destination '%' (% vehicles)." +#: D:\Repos\sumo/src\od2trips_main.cpp:114 +msgid "Writes persontrips instead of vehicles" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:97 -#, c-format -msgid "District '%' has no source." +#: D:\Repos\sumo/src\od2trips_main.cpp:117 +msgid "Add modes attribute to personTrips" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:101 -#, c-format -msgid "District '%' has no sink." +#: D:\Repos\sumo/src\od2trips_main.cpp:124 +msgid "Writes trips between junctions" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:193 -msgid "" -"Cannot find different source and sink edge for origin '%' and destination " -"'%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:129 +#: D:\Repos\sumo/src\router\ROFrame.cpp:116 +msgid "Defines the begin time; Previous trips will be discarded" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:364 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:384 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:410 +#: D:\Repos\sumo/src\od2trips_main.cpp:132 +#: D:\Repos\sumo/src\router\ROFrame.cpp:119 msgid "" -"Flow density of % vehicles per second, cannot be represented with a simple " -"probability. Falling back to even spacing." +"Defines the end time; Later trips will be discarded; Defaults to the maximum " +"time that SUMO can represent" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:434 -msgid "End of file while reading %." +#: D:\Repos\sumo/src\od2trips_main.cpp:140 +msgid "Spreads trips uniformly over each time period" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:461 -msgid "Broken period definition '%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:143 +msgid "Always choose source and sink edge which are not identical" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:475 -msgid "Broken factor: '%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:149 +msgid "Defines the prefix for vehicle names" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:509 -#, c-format -msgid "Missing line with % district names." +#: D:\Repos\sumo/src\od2trips_main.cpp:162 +msgid "Disable console output of current time step" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:519 -msgid "Missing line for district %." +#: D:\Repos\sumo/src\od2trips_main.cpp:193 +msgid "No TAZ input file (-n) specified." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:533 -msgid "More entries than districts found." +#: D:\Repos\sumo/src\od2trips_main.cpp:197 +msgid "No input specified." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:538 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:586 -msgid "Not numeric vehicle number in line '%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:201 +msgid "No trip table output file (-o) or flow-output is specified." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:584 -msgid "Missing at least one information in line '%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:205 +msgid "Only one of the the options 'pedestrians' and 'persontrips' may be set." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:647 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:154 -msgid "Could not open '%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:248 +msgid "" +"Importer of O/D-matrices for the microscopic, multi-modal traffic simulation " +"SUMO." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:658 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:664 -#, c-format -msgid "'%' does not contain the needed information about the time described." +#: D:\Repos\sumo/src\od2trips_main.cpp:270 +msgid "You must supply a TAZ, network or districts file ('-n')." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:674 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:687 -#, c-format -msgid "Could not access matrix file '%' to load." +#: D:\Repos\sumo/src\od2trips_main.cpp:276 +msgid "No districts loaded." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:714 -#, c-format -msgid "Could not access route file '%' to load." +#: D:\Repos\sumo/src\od2trips_main.cpp:282 +msgid "No vehicles loaded." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:731 -msgid "Assuming 24 entries for a day timeline, but got %." +#: D:\Repos\sumo/src\od\ODAmitranHandler.cpp:48 +msgid "Invalid duration for timeSlice starting %." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:741 -msgid "Broken time line definition: missing a value in '%'." +#: D:\Repos\sumo/src\od\ODDistrictCont.cpp:72 +#, c-format +msgid "Could not access network file '%' to load." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:80 -msgid "Loads TAZ (districts; also from networks) from FILE(s)" +#: D:\Repos\sumo/src\od\ODDistrictHandler.cpp:130 +msgid "'probability' must be positive (in definition of % '%')." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:102 -msgid "Writes trip definitions into FILE" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:80 +msgid "Missing origin '%' and destination '%' (% vehicles)." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:105 -msgid "Writes flow definitions into FILE" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:86 +msgid "Missing origin '%' (% vehicles)." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:108 -msgid "Writes probabilistic flow instead of evenly spaced flow" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:91 +msgid "Missing destination '%' (% vehicles)." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:111 -msgid "Writes pedestrians instead of vehicles" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:97 +#, c-format +msgid "District '%' has no source." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:114 -msgid "Writes persontrips instead of vehicles" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:101 +#, c-format +msgid "District '%' has no sink." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:117 -msgid "Add modes attribute to personTrips" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:193 +msgid "" +"Cannot find different source and sink edge for origin '%' and destination " +"'%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:124 -msgid "Writes trips between junctions" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:364 D:\Repos\sumo/src\od\ODMatrix.cpp:384 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:410 +msgid "" +"Flow density of % vehicles per second, cannot be represented with a simple " +"probability. Falling back to even spacing." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:129 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:116 -msgid "Defines the begin time; Previous trips will be discarded" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:434 +msgid "End of file while reading %." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:132 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:119 -msgid "" -"Defines the end time; Later trips will be discarded; Defaults to the maximum " -"time that SUMO can represent" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:461 +msgid "Broken period definition '%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:140 -msgid "Spreads trips uniformly over each time period" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:475 +msgid "Broken factor: '%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:143 -msgid "Always choose source and sink edge which are not identical" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:509 +#, c-format +msgid "Missing line with % district names." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:149 -msgid "Defines the prefix for vehicle names" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:519 +msgid "Missing line for district %." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:162 -msgid "Disable console output of current time step" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:533 +msgid "More entries than districts found." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:193 -msgid "No TAZ input file (-n) specified." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:538 D:\Repos\sumo/src\od\ODMatrix.cpp:586 +msgid "Not numeric vehicle number in line '%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:197 -msgid "No input specified." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:584 +msgid "Missing at least one information in line '%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:201 -msgid "No trip table output file (-o) or flow-output is specified." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:647 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:154 +msgid "Could not open '%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:205 -msgid "Only one of the the options 'pedestrians' and 'persontrips' may be set." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:658 D:\Repos\sumo/src\od\ODMatrix.cpp:664 +#, c-format +msgid "'%' does not contain the needed information about the time described." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:248 -msgid "" -"Importer of O/D-matrices for the microscopic, multi-modal traffic simulation " -"SUMO." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:674 D:\Repos\sumo/src\od\ODMatrix.cpp:687 +#, c-format +msgid "Could not access matrix file '%' to load." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:270 -msgid "You must supply a TAZ, network or districts file ('-n')." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:714 +#, c-format +msgid "Could not access route file '%' to load." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:276 -msgid "No districts loaded." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:731 +msgid "Assuming 24 entries for a day timeline, but got %." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:282 -msgid "No vehicles loaded." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:741 +msgid "Broken time line definition: missing a value in '%'." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:471 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:168 +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:471 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:168 msgid "Could not load '%'." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:491 +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:491 msgid "Loaded decal '%' with bounding box % %." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:597 +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:597 msgid "Could not load '%'. The model is replaced by a cone shape." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGManipulator.cpp:257 +#: D:\Repos\sumo/src\osgview\GUIOSGManipulator.cpp:257 #, c-format msgid "Currently in % camera mode. Press [F] to switch." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:166 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:166 msgid "Could not load traffic light files." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:454 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:454 msgid "Invalid link index in '%'." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:456 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:456 msgid "Unknown traffic light in '%'." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:992 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:992 msgid " (No projection defined)" msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:996 -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:997 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:996 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:997 msgid "N/A" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:107 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:208 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:263 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:341 -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:240 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:107 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:208 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:263 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:341 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:240 msgid "Unable to project coordinates for polygon '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:184 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:184 msgid "Missing id under '%'" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:232 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:265 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:140 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:299 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:271 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:385 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:232 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:265 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:140 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:299 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:271 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:385 msgid "Unable to project coordinates for POI '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:300 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:300 msgid "Unsupported shape type occurred (id='%')." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:71 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:71 msgid "Could not open dlr-navteq-poi-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:86 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:86 msgid "Could not open dlr-navteq-poly-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:128 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:128 msgid "Invalid x coordinate for POI '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:132 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:132 msgid "Invalid y coordinate for POI '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:137 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:137 msgid "The name of a POI is missing." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:191 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:191 msgid "Invalid dlr-navteq-polygon - line: '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:220 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:220 #, c-format msgid "The polygon '%' is empty." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:224 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:224 msgid "The name of a polygon is missing; it will be discarded." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:157 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:157 msgid "Could not import polygon from relation '%' (missing ways)" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:212 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:212 msgid "" "Could not import polygon from relation '%' (name:% reason: found gap of %m " "to way '%')\n" " Total length of remaining ways: %m." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:230 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:230 msgid "Assembled polygon from relation '%' (name:%)" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:254 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:254 #, c-format msgid "Polygon '%' has no shape." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:114 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:114 msgid "Could not open visum-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:149 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:149 msgid "Unable to project coordinates for point '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderXML.cpp:63 +#: D:\Repos\sumo/src\polyconvert\PCLoaderXML.cpp:63 msgid "Could not open xml-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:55 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:55 msgid "Could not open net-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:71 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:71 msgid "Could not find projection parameter in net." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCTypeDefHandler.cpp:71 +#: D:\Repos\sumo/src\polyconvert\PCTypeDefHandler.cpp:71 msgid "Could not add polygon type '%' (probably the id is already used)." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:81 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:81 msgid "Loads SUMO-network FILE as reference to offset and projection" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:85 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:85 msgid "" "Reads polygons from FILE assuming they're coded in DLR-Navteq (Elmar)-format" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:87 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:87 msgid "" "Reads pois from FILE+ assuming they're coded in DLR-Navteq (Elmar)-format" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:92 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:92 msgid "Reads polygons from FILE assuming it's a Visum-net" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:100 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:100 msgid "Reads pois and shapes from FILE assuming they're coded in XML" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:105 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:105 msgid "Reads pois from FILE+ assuming they're coded in OSM" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:107 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:107 msgid "The type will be made of the key-value - pair" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:109 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:109 msgid "The id will be set from the given 'name' attribute" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:111 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:111 msgid "" "If FLOAT >= 0, assemble one polygon from all ways of a relation if they all " "connect with gaps below FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:118 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:118 msgid "Reads shapes from shapefiles FILE+" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:122 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:122 msgid "Guesses the shapefile's projection" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:130 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:130 msgid "Defines in which column the id can be found" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:134 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:134 msgid "Defines which columns form the type id (comma separated list)" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:137 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:137 msgid "A running number will be used as id" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:140 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:140 msgid "Extract all additional columns as params" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:143 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:143 msgid "" "[auto|true|false]. Forces the 'fill' status to the given value. Default " "'auto' tries to determine it from the data type" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:148 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:148 msgid "Reads types from FILE" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:156 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:156 msgid "Write generated polygons/pois to FILE" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:159 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:159 msgid "Write generated polygons/pois to a dlr-tdp file with the given prefix" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:165 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:169 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:172 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:177 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:181 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:165 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:169 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:172 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:177 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:181 msgid "Pruning" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:165 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:165 msgid "Enables pruning on net boundaries" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:169 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:169 msgid "" "Uses FLOAT,FLOAT,FLOAT,FLOAT as offset definition added to the net boundary. " "Positive values grow the boundary on all sides while negative values shrink " "it." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:172 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:172 msgid "Uses STR as pruning boundary" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:177 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:177 msgid "Items in STR will be kept though out of boundary" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:181 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:181 msgid "Items with names in STR[] will be removed" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:196 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:196 msgid "Imports all attributes as key/value pairs" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:202 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:202 msgid "" "Adds FLOAT to the layer value for each poi (i.e. to raise it above polygons)" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:206 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:206 msgid "Sets STR as default color" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:209 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:209 msgid "Sets STR as default prefix" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:212 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:212 msgid "Sets STR as default type" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:215 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:215 msgid "Fills polygons by default" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:218 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:218 msgid "Sets FLOAT as default layer" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:221 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:221 msgid "Sets default action to discard" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:225 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:225 msgid "Write geo coordinates in output" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:232 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:232 msgid "" "Importer of polygons and POIs for the microscopic, multi-modal traffic " "simulation SUMO." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:285 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:285 msgid "In order to prune the input on the net, you have to supply a network." msgstr "" -#: /home/micha/programming/sumo/src/router/ROEdge.cpp:204 +#: D:\Repos\sumo/src\router\ROEdge.cpp:204 msgid "" "No interval matches passed time=% in edge '%'.\n" " Using edge's length / max speed." msgstr "" -#: /home/micha/programming/sumo/src/router/ROEdge.cpp:230 +#: D:\Repos\sumo/src\router\ROEdge.cpp:230 msgid "" "No interval matches passed time=% in edge '%'.\n" " Using edge's length / edge's speed." msgstr "" -#: /home/micha/programming/sumo/src/router/ROEdge.cpp:453 +#: D:\Repos\sumo/src\router\ROEdge.cpp:453 msgid "" "Option weights.priority-factor does not take effect because all edges have " "the same priority." msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:47 +#: D:\Repos\sumo/src\router\ROFrame.cpp:47 msgid "Write generated routes to FILE" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:53 +#: D:\Repos\sumo/src\router\ROFrame.cpp:53 msgid "Write used vehicle types into separate FILE" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:56 +#: D:\Repos\sumo/src\router\ROFrame.cpp:56 msgid "Keep vTypeDistribution ids when writing vehicles and their types" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:63 +#: D:\Repos\sumo/src\router\ROFrame.cpp:63 msgid "Use FILE as SUMO-network to route on" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:66 +#: D:\Repos\sumo/src\router\ROFrame.cpp:66 msgid "Write vehicles that reference routes by their id" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:73 +#: D:\Repos\sumo/src\router\ROFrame.cpp:73 msgid "Read additional network data (districts, bus stops) from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:87 +#: D:\Repos\sumo/src\router\ROFrame.cpp:87 msgid "Read sumo routes, alternatives, flows, and trips from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:101 +#: D:\Repos\sumo/src\router\ROFrame.cpp:101 msgid "Read network weights from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:104 +#: D:\Repos\sumo/src\router\ROFrame.cpp:104 msgid "Read lane-based network weights from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:125 +#: D:\Repos\sumo/src\router\ROFrame.cpp:125 msgid "Continue if a route could not be build" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:128 +#: D:\Repos\sumo/src\router\ROFrame.cpp:128 msgid "Prune the number of alternatives to INT" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:131 +#: D:\Repos\sumo/src\router\ROFrame.cpp:131 msgid "Use origin and destination zones (districts) for in- and output" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:139 +#: D:\Repos\sumo/src\router\ROFrame.cpp:139 msgid "Assume input is unsorted" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:148 +#: D:\Repos\sumo/src\router\ROFrame.cpp:148 msgid "generate random departure times for flow input" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:151 +#: D:\Repos\sumo/src\router\ROFrame.cpp:151 msgid "" "Remove loops within the route; Remove turnarounds at start and end of the " "route" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:154 +#: D:\Repos\sumo/src\router\ROFrame.cpp:154 msgid "Tries to correct a false route" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:157 +#: D:\Repos\sumo/src\router\ROFrame.cpp:157 msgid "" "Tries to correct an invalid starting edge by using the first usable edge " "instead" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:160 +#: D:\Repos\sumo/src\router\ROFrame.cpp:160 msgid "" "Tries to correct an invalid destination edge by using the last usable edge " "instead" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:163 +#: D:\Repos\sumo/src\router\ROFrame.cpp:163 msgid "" "Maximum distance when mapping input coordinates (fromXY etc.) to the road " "network" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:166 +#: D:\Repos\sumo/src\router\ROFrame.cpp:166 msgid "Match positions to junctions instead of edges" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:169 +#: D:\Repos\sumo/src\router\ROFrame.cpp:169 msgid "Aggregate routing queries with the same origin" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:173 +#: D:\Repos\sumo/src\router\ROFrame.cpp:173 msgid "The number of parallel execution threads used for routing" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:177 +#: D:\Repos\sumo/src\router\ROFrame.cpp:177 msgid "" "Select among routing algorithms ['dijkstra', 'astar', 'CH', 'CHWrapper']" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:181 +#: D:\Repos\sumo/src\router\ROFrame.cpp:181 msgid "" "Comma separated list of param keys to compare for additional restrictions" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:186 +#: D:\Repos\sumo/src\router\ROFrame.cpp:186 msgid "Interpolate edge weights at interval boundaries" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:190 +#: D:\Repos\sumo/src\router\ROFrame.cpp:190 msgid "Expand the end of the last loaded weight interval to infinity" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:194 +#: D:\Repos\sumo/src\router\ROFrame.cpp:194 msgid "" "Apply the given time penalty when computing routing costs for minor-link " "internal lanes" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:217 +#: D:\Repos\sumo/src\router\ROFrame.cpp:217 msgid "Defaults will override given values" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:222 +#: D:\Repos\sumo/src\router\ROFrame.cpp:222 msgid "Defines how often statistics shall be printed" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:233 +#: D:\Repos\sumo/src\router\ROFrame.cpp:233 msgid "No output specified." msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:238 +#: D:\Repos\sumo/src\router\ROFrame.cpp:238 msgid "A positive number of alternatives must be enabled." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:62 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:64 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:83 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:85 +#: D:\Repos\sumo/src\router\ROLoader.cpp:62 +#: D:\Repos\sumo/src\router\ROLoader.cpp:64 +#: D:\Repos\sumo/src\router\ROLoader.cpp:83 +#: D:\Repos\sumo/src\router\ROLoader.cpp:85 msgid "Trying to set a weight for the unknown edge '%'." -msgstr "" +msgstr "Súlyt próbál beállítani az ismeretlen „%” élhez." -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:114 +#: D:\Repos\sumo/src\router\ROLoader.cpp:114 #, c-format msgid "The network file '%' is not accessible." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:140 +#: D:\Repos\sumo/src\router\ROLoader.cpp:140 #, c-format msgid "The additional file '%' is not accessible." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:217 +#: D:\Repos\sumo/src\router\ROLoader.cpp:217 msgid "Routes found between time steps % and %." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:243 +#: D:\Repos\sumo/src\router\ROLoader.cpp:243 msgid "The loader for % from file '%' could not be initialised (%)." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:281 -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:158 +#: D:\Repos\sumo/src\router\ROLoader.cpp:281 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:183 msgid "failed." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:162 +#: D:\Repos\sumo/src\router\RONet.cpp:162 #, c-format msgid "The edge '%' occurs at least twice." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:176 +#: D:\Repos\sumo/src\router\RONet.cpp:176 #, c-format msgid "The TAZ '%' occurs at least twice." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:199 +#: D:\Repos\sumo/src\router\RONet.cpp:199 #, c-format msgid "The TAZ '%' is unknown." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:204 +#: D:\Repos\sumo/src\router\RONet.cpp:204 #, c-format msgid "The edge '%' for TAZ '%' is unknown." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:259 +#: D:\Repos\sumo/src\router\RONet.cpp:259 #, c-format msgid "The bidi edge '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:270 +#: D:\Repos\sumo/src\router\RONet.cpp:270 #, c-format msgid "The node '%' occurs at least twice." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:279 +#: D:\Repos\sumo/src\router\RONet.cpp:279 msgid "The % '%' occurs at least twice." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:446 +#: D:\Repos\sumo/src\router\RONet.cpp:446 #, c-format msgid "The vehicle type '%' occurs at least twice." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:498 +#: D:\Repos\sumo/src\router\RONet.cpp:498 msgid "Requesting departure time for unknown vehicle '%'" msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:528 +#: D:\Repos\sumo/src\router\RONet.cpp:528 #, c-format msgid "Another person with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:637 +#: D:\Repos\sumo/src\router\RONet.cpp:637 msgid "" "Bulking different maximum speeds ('%' and '%') may lead to suboptimal routes." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:640 +#: D:\Repos\sumo/src\router\RONet.cpp:640 msgid "" "Bulking different vehicle classes ('%' and '%') may lead to invalid routes." msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:137 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:137 msgid "Unknown node '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:243 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:243 msgid "Ignoring lane '%' with broken shape." msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:280 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:280 msgid "Skipping isolated junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:299 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:299 #, c-format msgid "unknown from-edge '%' in connection" msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:302 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:302 #, c-format msgid "unknown to-edge '%' in connection" msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:316 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:316 #, c-format msgid "unknown via-edge '%' in connection" msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:368 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:368 msgid "Ignoring invalid access from non-pedestrian edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteDef.cpp:123 +#: D:\Repos\sumo/src\router\RORouteDef.cpp:123 msgid "Repaired route of vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteDef.cpp:222 +#: D:\Repos\sumo/src\router\RORouteDef.cpp:222 msgid "" "There are stop edges which were not part of the original route for vehicle " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteDef.cpp:237 +#: D:\Repos\sumo/src\router\RORouteDef.cpp:237 msgid "Edge '%' not connected to edge '%' for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:200 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:200 msgid "Triggered departure for person '%' requires starting with a ride." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:202 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:202 msgid "" "Triggered departure for container '%' requires starting with a transport." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:224 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:224 #, c-format msgid "Found % outside container element" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:338 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:338 msgid "No probability for route %, using default." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:493 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:493 msgid "Ids of internal route distributions are ignored (vehicle '%')." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:609 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:609 msgid "Discarding person '%' because her plan is empty" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:635 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:635 msgid "Discarding personFlow '%' because their plan is empty" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:643 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:643 #, c-format msgid "probabilistic personFlow '%' must specify end time" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:716 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:716 msgid "Discarding container '%' because it's plan is empty" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:733 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:733 msgid "Discarding containerFlow '%' because it's plan is empty" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1036 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1041 msgid "Triggered departure for container '%' requires a unique lines value." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1076 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1081 msgid "Cannot convert geo-positions because the network has no geo-reference" msgstr "" -#: /home/micha/programming/sumo/src/sumo_main.cpp:49 +#: D:\Repos\sumo/src\sumo_main.cpp:49 msgid "Another interrupt signal received, hard exit." msgstr "" -#: /home/micha/programming/sumo/src/sumo_main.cpp:52 +#: D:\Repos\sumo/src\sumo_main.cpp:52 msgid "Interrupt signal received, trying to exit gracefully." -msgstr "" +msgstr "Megszakítási jel érkezett, kecsesen próbál kilépni." -#: /home/micha/programming/sumo/src/sumo_main.cpp:86 +#: D:\Repos\sumo/src\sumo_main.cpp:86 msgid "A microscopic, multi-modal traffic simulation." msgstr "" -#: /home/micha/programming/sumo/src/sumo_main.cpp:114 -#: /home/micha/programming/sumo/src/sumo_main.cpp:123 +#: D:\Repos\sumo/src\sumo_main.cpp:114 D:\Repos\sumo/src\sumo_main.cpp:123 msgid "Quitting (on error)." msgstr "" -#: /home/micha/programming/sumo/src/sumo_main.cpp:126 +#: D:\Repos\sumo/src\sumo_main.cpp:126 msgid "Quitting (on unknown error)." msgstr "" -#: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:76 +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:76 msgid "Unknown actor configuration '%' for vehicle '%'!" msgstr "" -#: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:94 +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:94 msgid "Motion state for unknown vehicle '%'!" msgstr "" -#: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:136 +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:136 msgid "Acceleration information is missing; try running with --compute-a." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:62 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:62 msgid "Computes emissions by driving a time line using SUMO's emission models." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:70 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:70 msgid "Defines the file to read the driving cycle from." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:74 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:74 msgid "Skips the first NUM lines." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:78 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:78 msgid "Defines the entry separator." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:83 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:83 msgid "" "Defines the netstate, route and trajectory files to read the driving cycles " "from." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:86 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:86 msgid "Load emission parameters (vTypes) from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:89 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:89 msgid "Defines for which emission class the emissions shall be generated. " msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:92 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:92 msgid "Defines the vehicle type to use for emission parameters." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:96 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:96 msgid "" "If set, the acceleration is computed instead of being read from the file. " msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:99 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:99 msgid "" "If set, the acceleration for time t is computed from v(t+1) - v(t) instead " "of v(t) - v(t-1). " msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:102 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:102 msgid "If set, the acceleration for time t is set to 0 if the speed is 0. " msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:105 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:105 msgid "If set, the first line of the read file is skipped." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:108 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:108 msgid "If set, the given speed is interpreted as being given in km/h." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:111 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:111 msgid "If set, the fourth column is read and used as slope (in deg)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:114 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:114 msgid "" "Sets a global slope (in deg) that is used if the file does not contain slope " "information." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:119 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:119 msgid "Defines the file to write the emission cycle results into." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:122 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:122 msgid "Defines the attributes to write." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:125 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:125 msgid "Save the emission values of each vehicle in XML" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:129 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:129 msgid "Save the aggregated and normed emission values of each vehicle in CSV" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:145 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:145 msgid "Defines the begin time in seconds;" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:148 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:148 msgid "Defines the end time in seconds;" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:152 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:152 msgid "Not writing anything." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:169 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:169 msgid "Either a timeline or a netstate / amitran file must be given." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:172 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:172 msgid "The output file must be given." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:185 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:185 #, c-format msgid "Unknown attribute '%' to write in output." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:213 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:213 msgid "" "Option --vtype requires option --additional-files for loading vehicle types" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:225 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:225 #, c-format msgid "Vehicle type '%' is not defined" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:245 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:245 msgid "Unreadable file '%'." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:276 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:276 msgid "Missing an entry in line '%'." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:278 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:278 msgid "Not numeric entry in line '%'." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:58 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:58 msgid "Writing map of '%' into '%'." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:62 -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:291 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:62 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:291 #, c-format msgid "Could not open file '%' for writing." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:86 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:86 msgid "Builds and writes an emissions map for SUMO's emission models." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:92 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:92 msgid "If set, maps for all available emissions are written." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:95 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:95 msgid "Defines the name of the emission class to generate the map for." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:98 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:98 msgid "Defines the minimum velocity boundary of the map to generate (in m/s)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:100 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:100 msgid "Defines the maximum velocity boundary of the map to generate (in m/s)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:102 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:102 msgid "Defines the velocity step size (in m/s)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:104 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:104 msgid "" "Defines the minimum acceleration boundary of the map to generate (in m/s^2)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:106 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:106 msgid "" "Defines the maximum acceleration boundary of the map to generate (in m/s^2)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:108 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:108 msgid "Defines the acceleration step size (in m/s^2)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:110 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:110 msgid "Defines the minimum slope boundary of the map to generate (in deg)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:112 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:112 msgid "Defines the maximum slope boundary of the map to generate (in deg)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:114 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:114 msgid "Defines the slope step size (in deg)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:119 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:119 msgid "" "Defines the file (or the path if --iterate was set) to write the map(s) into." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:159 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:159 msgid "The emission class (-e) must be given." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:162 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:162 msgid "The output file (-o) must be given." msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:314 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:314 msgid "Starting TraCI without using internal lanes!" msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:320 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:320 msgid "***Starting server on port % ***" msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:323 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:323 #, c-format msgid " waiting for % clients..." msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:347 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:347 msgid " client connected" msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:480 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:480 msgid "" "Execution order (libsumo::CMD_SETORDER) was not set for all TraCI clients in " "pre-execution phase." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/FileHelpers.cpp:73 +#: D:\Repos\sumo/src\utils\common\FileHelpers.cpp:73 msgid "Cannot get file attributes for file '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/FileHelpers.h:318 +#: D:\Repos\sumo/src\utils\common\FileHelpers.h:318 msgid "Invalid follower index in route '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/FileHelpers.h:328 +#: D:\Repos\sumo/src\utils\common\FileHelpers.h:328 #, c-format msgid "An edge within the route '%' is not known!" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:153 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:178 #, c-format msgid "done (%ms)." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:155 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:180 msgid "done." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:253 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:278 msgid "Could not set locale to '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:258 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:283 msgid "" "Environment variable SUMO_HOME is not set, could not find localized messages." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:264 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:289 msgid "Could not find localized messages." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:87 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:87 msgid "Invalid conversion from string to double (%)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:90 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:90 msgid "Invalid conversion from string to double (empty value)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:109 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:109 msgid "Invalid conversion from string to doubles (%)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:112 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:112 msgid "Invalid conversion from string to doubles (empty value)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:205 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:205 msgid "Invalid format of parameter (%)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:230 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:230 msgid "Invalid format of attribute '%'. Attribute must start with a letter" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:237 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:237 msgid "Invalid format of attribute (%)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/RandHelper.cpp:65 +#: D:\Repos\sumo/src\utils\common\RandHelper.cpp:65 msgid "Initialises the random number generator with the current system time" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/RandHelper.cpp:69 +#: D:\Repos\sumo/src\utils\common\RandHelper.cpp:69 msgid "Initialises the random number generator with the given value" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:187 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:187 msgid "Simultaneous specification of vClasses and exceptions is not allowed" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:191 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:191 msgid "StopOffset requires an offset value" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:341 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:341 #, c-format msgid "Unknown vehicle class '%' encountered." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:382 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:382 msgid "" "SVCPermissions must be specified either via 'allow' or 'disallow'. Ignoring " "'disallow'" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:408 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:408 #, c-format msgid "The vehicle class '%' is deprecated, use '%' instead." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:43 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:43 msgid "Loads the named config on startup" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:48 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:48 msgid "Saves current configuration into FILE" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:52 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:52 msgid "Enforce relative paths when saving the configuration" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:55 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:55 msgid "Saves a configuration template (empty) into FILE" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:58 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:58 msgid "Saves the configuration schema into FILE" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:62 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:62 msgid "Adds comments to saved template, configuration, or schema" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:71 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:71 msgid "Switches to verbose output" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:74 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:74 msgid "Prints option values before processing" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:77 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:77 msgid "Prints this screen or selected topics" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:80 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:80 msgid "Prints the current version" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:97 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:97 msgid "Disables output of warnings" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:100 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:100 msgid "Aggregate warnings of the same type whenever more than INT occur" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:104 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:104 msgid "Writes all messages to FILE (implies verbose)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:107 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:107 msgid "Writes all non-error messages to FILE (implies verbose)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:110 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:110 msgid "Writes all warnings and errors to FILE" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:113 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:113 msgid "Language to use in messages" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:116 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:116 msgid "Include license info into every output file" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:119 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:119 msgid "" "Prefix which is applied to all output files. The special string 'TIME' is " "replaced by the current time." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:122 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:122 msgid "Defines the number of digits after the comma for floating point output" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:125 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:125 msgid "Defines the number of digits after the comma for lon,lat output" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:128 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:128 msgid "" "Write time values as hour:minute:second or day:hour:minute:second rather " "than seconds" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:43 -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:184 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:43 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:184 msgid "Process Error" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:72 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:72 msgid "Empty Data" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:99 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:99 msgid "Invalid Number Format %" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:112 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:112 msgid "Invalid Time Format %" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:125 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:125 msgid "Invalid Bool Format %" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:137 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:137 msgid "Out Of Bounds" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:151 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:151 msgid "Unknown Element" msgstr "" -#: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:74 -#: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:76 -#: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:93 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:74 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:76 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:93 msgid "Invalid format of distribution parameterized" msgstr "" -#: /home/micha/programming/sumo/src/utils/emissions/EnergyParams.cpp:153 +#: D:\Repos\sumo/src\utils\emissions\EnergyParams.cpp:153 msgid "Vehicle device '%' doesn't have a valid value for parameter % (%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/emissions/HelpersEnergy.cpp:225 +#: D:\Repos\sumo/src\utils\emissions\HelpersEnergy.cpp:225 msgid "An acceleration given by the power was not found." msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:71 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:74 msgid "Add decal" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:71 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:74 msgid "Add decal." msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:151 -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:162 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:160 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:171 msgid "Invalid row or column" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:186 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:195 msgid "Invalid row" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:196 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:205 msgid "Invalid column" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:332 -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:790 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:341 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:798 msgid "Open decal" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:337 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:346 msgid "All files (*)" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:790 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:798 msgid "Open decal." msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:798 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:806 msgid "Remove decal" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:798 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:806 msgid "Remove decal." msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:87 +#: D:\Repos\sumo/src\utils\foxtools\MFXTextFieldSearch.cpp:66 +msgid "Type to search..." +msgstr "" + +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:87 msgid "Ignoring geoidgrids and vgridshift in projection" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:232 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:232 msgid "Inverse projection works only with explicit proj parameters." msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:237 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:237 msgid "The projection method needs to be uniquely defined." msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:288 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:288 msgid "Uses a simple method for projection" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:291 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:291 msgid "Scaling factor for input coordinates" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:294 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:294 msgid "Rotation (clockwise degrees) for input coordinates" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:298 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:298 msgid "" "Determine the UTM zone (for a universal transversal mercator projection " "based on the WGS84 ellipsoid)" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:304 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:304 msgid "Uses STR as proj.4 definition for projection" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:307 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:307 msgid "Inverses projection" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:310 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:310 msgid "Convert from Gauss-Krueger to UTM" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:434 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:434 msgid "Could not transform (%,%)" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:578 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:578 #, c-format msgid "" "Ignoring loaded location attribute nr. % for tracking of original location" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeomHelper.cpp:238 +#: D:\Repos\sumo/src\utils\geom\GeomHelper.cpp:238 msgid "GeomHelper::makeCircle() requires nPoints>=3" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:607 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:607 msgid "Splitting vector close to end (pos: %, length: %)" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:1503 -#: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:1517 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:1503 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:1517 msgid "Trying to subtract PositionVectors of different lengths." -msgstr "" +msgstr "Megpróbálja kivonni a különböző hosszúságú helyvektorokat." -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:960 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:963 msgid "'lane' and 'length' must be defined together in a lane area detector." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:965 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:968 msgid "'lanes' and 'endPos' must be defined together in a lane area detector." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1242 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1245 msgid "Calibrators need either an edge or a lane" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1289 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1292 msgid "" "CalibratorFlows need either the attribute vehsPerHour or speed or type (or " "any combination of these)" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1428 -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1454 -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1479 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1431 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1457 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1482 #, c-format msgid "Probability of % must be equal or greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1665 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1668 msgid "X and Y must be be defined together in POIs" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1671 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1674 msgid "lane and position must be be defined together in POIs" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1677 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1680 msgid "lon and lat must be be defined together in POIs" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1743 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1746 msgid "Parameters must be defined within an object." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1745 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:848 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1748 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:857 msgid "Parameters cannot be defined in the additional file's root." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1747 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:850 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1750 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:859 msgid "Parameters cannot be defined within another parameter." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1755 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1758 #, c-format msgid "Error parsing key from % generic parameter. Key cannot be empty." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1757 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1760 #, c-format msgid "" "Error parsing key from % generic parameter. Key contains invalid characters." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/DataHandler.cpp:111 +#: D:\Repos\sumo/src\utils\handlers\DataHandler.cpp:111 msgid "Data elements cannot load attributes as params" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/MeanDataHandler.cpp:54 +#: D:\Repos\sumo/src\utils\handlers\MeanDataHandler.cpp:54 msgid "MeanData elements cannot load attributes as params" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:370 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:373 msgid "" "Could not build % with ID '%' in netedit; ID contains invalid characters." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:420 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:423 msgid "" "a route must be defined either within a vehicle/flow or with an ID attribute" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:437 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:440 #, c-format msgid "cycleTime of % must be equal or greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:482 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:549 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:485 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:552 msgid "Attributes 'from' and 'fromJunction' cannot be defined together" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:484 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:551 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:487 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:554 msgid "Attributes 'to' and 'toJunction' cannot be defined together" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:515 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:518 msgid "trip definition needs either 'from/to' or 'fromJunction/toJunction'" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:846 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:855 msgid "Parameters must be defined within an object" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:858 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:867 #, c-format msgid "Error parsing key from % generic parameter. Key cannot be empty" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:860 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:869 #, c-format msgid "" "Error parsing key from % generic parameter. Key contains invalid characters" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:876 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:224 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:885 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:225 msgid "" "Defining car-following parameters in a nested element is deprecated in vType " "'%', use attributes instead!" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:884 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:886 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:227 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:229 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:893 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:895 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:228 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:230 msgid "Invalid parsing embedded VType" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:970 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:979 msgid "A stop must be defined either with an edge or with an lane, not both" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:984 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:995 msgid "A stop must be defined only in a StoppingPlace" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:987 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:998 msgid "A stop must be defined in an edge, a lane, or in a StoppingPlace" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/TemplateHandler.cpp:67 +#: D:\Repos\sumo/src\utils\handlers\TemplateHandler.cpp:67 msgid "Could not load template '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice.cpp:86 +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice.cpp:86 msgid "No port number given." msgstr "" -#: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice.cpp:161 +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice.cpp:161 msgid "Error on closing output devices." msgstr "" -#: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice_File.cpp:46 +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice_File.cpp:46 msgid "Could not redirect to NUL device (%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:315 +#: D:\Repos\sumo/src\utils\options\Option.cpp:352 #, c-format msgid "'%' is not a valid float." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:349 +#: D:\Repos\sumo/src\utils\options\Option.cpp:386 #, c-format msgid "'%' is not a valid bool." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:409 +#: D:\Repos\sumo/src\utils\options\Option.cpp:446 msgid "" "Please note that using ';' as list separator is deprecated and not accepted " "anymore." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:419 +#: D:\Repos\sumo/src\utils\options\Option.cpp:456 #, c-format msgid "'%' is not a valid integer vector." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:65 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:66 msgid "" "Copyright (C) 2001-2023 German Aerospace Center (DLR) and others; https://" "sumo.dlr.de" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:151 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:152 msgid "Internal request for unknown option '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:174 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:175 #, c-format msgid "No option with the name '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:191 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:192 #, c-format msgid "" "Please note that '%' is deprecated.\n" " Use '%' instead." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:387 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:388 #, c-format msgid "The file list for '%' is empty." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:393 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:394 msgid "File '%' is not accessible (%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:396 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:397 msgid "Empty file name given; ignoring." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:417 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:418 msgid "Option '%' needs option '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:616 -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:638 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:621 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:643 msgid " Build features: " msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:620 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:625 msgid "" " License EPL-2.0: Eclipse Public License Version 2 " msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:621 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:626 msgid " Use --help to get the list of options." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:669 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:674 msgid "Could not save configuration to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:673 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:678 msgid "Written configuration to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:686 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:691 msgid "Could not save template to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:690 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:695 msgid "Written template to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:702 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:707 msgid "Could not save schema to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:706 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:711 msgid "Written schema to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:88 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:135 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:88 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:135 msgid "Could not parse commandline options." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:103 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:103 msgid "Could not access configuration '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:107 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:107 msgid "Loading configuration" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:121 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:121 msgid "Could not load configuration '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsLoader.cpp:77 +#: D:\Repos\sumo/src\utils\options\OptionsLoader.cpp:77 msgid "Could not set option '%' (probably defined twice)." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:127 -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:134 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:127 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:134 msgid "Missing value for parameter '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:146 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:146 #, c-format msgid "" "The parameter '%' is not allowed in this context.\n" " Switch or parameter name expected." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:150 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:150 msgid "Mixed parameter syntax in '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:124 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:124 msgid "Could not load landmark-lookup-table from '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:138 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:138 #, c-format msgid "Duplicate edge '%' in landmark file." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:143 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:143 #, c-format msgid "Landmark edge '%' does not exist in the network." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:154 -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:167 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:154 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:167 #, c-format msgid "Unknown or unordered edge '%' in landmark file." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:164 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:164 msgid "Broken landmark file, unexpected number of entries (%) for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:187 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:187 msgid "Calculating new lookup table." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:194 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:194 msgid "No lookup table for landmark edge '%', recalculating." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:196 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:196 msgid "" "Not all network edges were found in the lookup table '%' for landmark edge " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:293 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:293 msgid "Saving new matrix to '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:295 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:295 #, c-format msgid "Edge '%' not found in intermodal network.'" msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:304 -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:338 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:304 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:338 #, c-format msgid "Depart edge '%' not found in intermodal network." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:350 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:350 #, c-format msgid "Arrival edge '%' not found in intermodal network." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:620 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:620 msgid "Ignoring unordered stop at '%' until % for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:632 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:632 msgid "Ignoring stop at '%' until % for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:637 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:637 #, c-format msgid "" "Not using public transport line '%' for routing persons. It has less than " "two usable stops." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalRouter.h:214 -#: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:125 +#: D:\Repos\sumo/src\utils\router\IntermodalRouter.h:220 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:125 msgid "Do not use this method" msgstr "" -#: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:87 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:87 #, c-format msgid "Departure edge '%' does not allow pedestrians." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:91 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:91 #, c-format msgid "Destination edge '%' does not allow pedestrians." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:84 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:84 msgid "Error parsing key from shape generic parameter. Key cannot be empty" msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:86 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:86 msgid "" "Error parsing key from shape generic parameter. Key contains invalid " "characters" msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:139 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:139 msgid "Invalid characters for PoI ID" msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:170 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:170 msgid "Either (x, y), (lon, lat) or (lane, pos) must be specified for PoI '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:173 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:173 msgid "" "(lon, lat) is specified for PoI '%' but no geo-conversion is specified for " "the network." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:185 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:185 msgid "Unable to project coordinates for PoI '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:191 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:191 #, c-format msgid "PoI '%' already exists." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:209 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:209 msgid "Invalid characters for Poly ID" msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:252 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:252 msgid "Polygon's shape cannot be empty." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:257 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:257 msgid "Polygon's lineWidth must be greater than 0." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:262 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:262 #, c-format msgid "Polygon '%' already exists." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:279 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:279 #, c-format msgid "Loading of shapes from % failed." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:44 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:44 #, c-format msgid "The node: '%' already exists." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:239 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:239 msgid "Index of renumbered node exceeded the reduced number of equations." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:250 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:250 msgid "Index of renumbered element exceeded the reduced number of equations." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:257 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:257 msgid "Structural error in reduced circuit matrix." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:288 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:288 msgid "Initial solution x used during solving DC circuit is out of bounds.\n" msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:312 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:456 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:312 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:456 msgid "wrongly assigned row of matrix A during solving the circuit" msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:354 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:479 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:354 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:479 msgid "The negative node of current source is not the groud." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:508 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:518 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:526 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:508 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:518 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:526 msgid "Results deployment during circuit evaluation was unsuccessful." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:576 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:576 msgid "" "Cannot assign unambigous electric current value to two voltage sources " "connected in parallel at the same node." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:798 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:798 msgid "" "Trying to add resistor element into the overhead wire circuit with " "resistance < 1e-6. " msgstr "" +"Ellenállás elemet próbálnak hozzáadni a felsővezeték áramköréhez < 1e-6 " +"ellenállással. " -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:800 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:800 msgid "" "Trying to add resistor element into the overhead wire circuit with " "resistance < 0. " msgstr "" +"Ellenálláselem hozzáadása a felsővezeték áramköréhez < 0 ellenállással. " -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:919 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:919 msgid "" "Circuit Voltage Source '%' is connected to less than two nodes, please " "adjust the definition of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:927 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:927 msgid "" "Circuit Element '%' is connected to less than two nodes, please adjust the " "definition of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:942 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:942 msgid "" "Circuit Node with id '-1' is not the grounded, please adjust the definition " "of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:966 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:966 msgid "" "A Circuit Resistor Element connects the ground, please adjust the definition " "of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:975 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:975 msgid "" "Circuit Node or Voltage Source with internal id '%' has been not visited " "during checking of the circuit. The circuit is disconnected, please adjust " "the definition of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Element.cpp:53 +#: D:\Repos\sumo/src\utils\traction_wire\Element.cpp:53 msgid "Undefined element type for '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:63 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:64 msgid "Route file should be sorted by departure time, ignoring '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParameter.cpp:653 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParameter.cpp:658 msgid "Invalid % % given for %. Using edge end instead." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParameter.cpp:703 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParameter.cpp:708 msgid "" "Value of stop attribute 'trigger' must be 'person', 'container', 'join' or a " "boolean" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:268 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:267 msgid "Undefined end for % '%', defaulting to 24hour duration." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:402 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:401 msgid "Invalid % id '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:404 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:403 msgid "Invalid % id '%'. Contains invalid characters." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:947 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:946 msgid "Lane change model 'JE2013' is deprecated. Using default model instead." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1139 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1138 msgid "maneuverAngleTimes format for vType '%' % contains an invalid triplet." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1148 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1147 #, c-format msgid "" "Triplet '%' for vType '%' maneuverAngleTimes cannot be parsed as 'int double " "double'" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1174 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1173 msgid "Unknown car-following model % when parsing vType '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1176 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1175 msgid "Unknown car-following model when parsing vType '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1209 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1225 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1208 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1224 msgid "Invalid Car-Following-Model Attribute %. Cannot be parsed to float" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1213 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1236 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1212 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1235 msgid "Invalid Car-Following-Model Attribute %. Must be greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1247 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1246 msgid "" "Invalid Car-Following-Model Attribute %. Only values between [0-1] are " "allowed" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1506 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1505 msgid "Invalid Lane-Change-Model Attribute %. Cannot be parsed to float" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1523 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1522 msgid "Invalid Lane-Change-Model Attribute %. Must be equal or greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1534 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1533 msgid "Invalid Lane-Change-Model Attribute %. Must be greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1545 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1544 msgid "Invalid Lane-Change-Model Attribute %. Must be between -1 and 1" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1591 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1576 msgid "Invalid Junction-Model Attribute %. Cannot be parsed to float" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1600 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1585 msgid "" "Invalid Junction-Model Attribute %. Only values between [0-1] are allowed" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1606 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1591 msgid "Invalid Junction-Model Attribute %. Must be equal or greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1636 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1621 msgid "The vehicle class '%' for % '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1654 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1639 msgid "The shape '%' for % '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:271 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:271 msgid "Undefined vehicleType parameter" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:281 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:281 msgid "Undefined vehicle parameter" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:291 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:291 msgid "Undefined stop parameter" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:513 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:513 msgid "Trying to get undefined % attribute '%' in SUMOBaseObject '%'" msgstr "" +"Nem definiált % attribútum „%” beszerzése a(z) „%” SUMOBaseObject-objektumban" -#: /home/micha/programming/sumo/src/utils/xml/GenericHandler.cpp:83 -#: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:105 +#: D:\Repos\sumo/src\utils\xml\GenericHandler.cpp:83 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:105 msgid "Found root element '%' in file '%' (expected '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:209 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:209 msgid " In file '" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:210 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:210 msgid " At line/column " msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SAXWeightsHandler.cpp:145 +#: D:\Repos\sumo/src\utils\xml\SAXWeightsHandler.cpp:145 msgid "Missing value '%' in edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:110 -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:136 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:110 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:136 msgid "Cannot read file '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:113 -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:139 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:113 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:139 #, c-format msgid "File '%' is a directory!" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:156 -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:165 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:156 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:165 msgid "The XML-parser was not initialized." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:191 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:191 msgid "The XML-parser could not be build." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:92 -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:98 -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:105 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:92 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:98 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:105 msgid "" "Environment variable SUMO_HOME is not set properly, disabling XML " "validation. Set 'auto' or 'always' for web lookups." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:111 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:111 msgid "" "Environment variable SUMO_HOME is not set properly, XML validation will fail " "or use slow website lookups." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:120 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:120 msgid "Cannot read local schema '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:167 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:167 msgid "" "Disabling XML validation for external file '%'. Use 'auto' or 'always' to " "enable." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:189 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:189 msgid "Runtime error: % while parsing '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:191 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:191 msgid "Error occurred: % while parsing '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:193 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:193 msgid "" "SAX error occured while parsing '%':\n" " %" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:195 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:195 msgid "Unspecified error occurred wile parsing '%'" msgstr "" diff -Nru sumo-1.17.0/data/po/it_gui.po sumo-1.18.0/data/po/it_gui.po --- sumo-1.17.0/data/po/it_gui.po 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/po/it_gui.po 2023-06-28 20:02:17.000000000 +0000 @@ -7,16 +7,29 @@ msgstr "" "Project-Id-Version: sumo\n" "Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" -"POT-Creation-Date: 2023-04-15 12:21+0200\n" -"PO-Revision-Date: 2023-02-19 15:02+0100\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"POT-Creation-Date: 2023-06-15 09:59+0200\n" +"PO-Revision-Date: 2023-06-16 10:08+0000\n" +"Last-Translator: Mirko Barthauer \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18.1-dev\n" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:292 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:295 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2218 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2219 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2221 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:513 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:516 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:519 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1567 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1568 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1569 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:292 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:295 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2208 @@ -31,93 +44,126 @@ msgid "N/A" msgstr "non disponibile" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:292 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:513 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:292 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:507 msgid "Original coordinate (before coordinate transformation in netconvert)" msgstr "" +"Coordinata originale (prima della trasformazione di coordinate in netconvert)" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:295 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:516 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:295 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:510 msgid "Network coordinate" -msgstr "" +msgstr "Coordinata di rete" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:323 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:534 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:323 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:528 msgid "Ready." msgstr "Terminato." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:444 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1329 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:444 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1322 msgid "&File" msgstr "&File" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:446 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:200 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:446 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:200 msgid "New Window" msgstr "Nuova finestra" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:446 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:446 msgid "Open a new sumo-gui window." msgstr "Apre una nuova finestra di sumo-gui." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:450 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:450 msgid "&Open Simulation..." msgstr "Apri simulazione" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:450 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:450 msgid "Open a simulation (Configuration file)." msgstr "Apre una simulazione (configurazione)" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:453 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:453 msgid "Open &Network..." msgstr "Apri rete" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:453 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:453 msgid "Open a network." msgstr "Apre una rete." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:456 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:456 msgid "Open Shapes " msgstr "Apri Forme " +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:456 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:456 msgid "Load POIs and Polygons for visualization." -msgstr "" +msgstr "Carica punti di interesse e poligoni per la visualizazzione." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:459 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:459 msgid "Open EdgeData " msgstr "Apri EdgeData " +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:459 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:459 msgid "Load edge related data for visualization." msgstr "Carica dati relativi agli archi utilizzati nella visualizzazione." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:462 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1015 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:256 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:462 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1009 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:256 msgid "&Reload" msgstr "&Ricarica" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:462 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:462 msgid "Reloads the simulation / the network." msgstr "Ricarica la simulazione / la rete." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:465 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:465 msgid "Quick-Reload" msgstr "Ricarica rapida" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:465 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:465 msgid "Reloads the simulation (but not network)." msgstr "Ricarica soltanto la simulazione ma non la rete." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:469 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:469 msgid "Save Configuration" msgstr "Salvaguardi configurazione" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:469 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:469 msgid "Save current options as a configuration file." msgstr "Salvaguarda le opzioni attuali come file di configurazione." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:472 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:300 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:95 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:95 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:472 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:300 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:91 @@ -126,59 +172,80 @@ msgid "Close" msgstr "Chiudi" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:472 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:472 msgid "Close the simulation." msgstr "Chiude la simulazione." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:480 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1350 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:480 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1343 msgid "&Quit" msgstr "Chiudi" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:480 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1350 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:480 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1343 msgid "Quit the Application." msgstr "Chiude l'applicazione." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:489 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1364 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:489 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1357 msgid "&Edit" msgstr "Modificare" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:491 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:491 msgid "Edit Selected..." msgstr "Modifichi selezione..." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:491 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:491 msgid "Opens a dialog for editing the list of selected items." msgstr "Apre un dialogo per cambiare la lista degli oggetti selezionati." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:494 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:494 msgid "Select lanes which allow..." msgstr "Scegli corsie che permettono..." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:494 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:494 msgid "Opens a menu for selecting a vehicle class by which to selected lanes." msgstr "Apre un menu per scegliere una classe di veicoli " +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:498 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:498 msgid "Edit Breakpoints" msgstr "Modifichi punti di interruzione" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:498 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:498 msgid "Opens a dialog for editing breakpoints." msgstr "Apre un dialogo per modificare i punti di interruzione." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:501 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1302 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:501 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1268 msgid "Edit Visualisation" msgstr "Modifica visualizzazione" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:501 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1302 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:501 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1268 msgid "Opens a dialog for editing visualization settings." msgstr "Apre un dialogo per " +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1305 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:124 +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:1596 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:504 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1271 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:124 @@ -186,156 +253,206 @@ msgid "Edit Viewport" msgstr "Modifica veduta" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1305 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:504 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1271 msgid "Opens a dialog for editing viewing area, zoom and rotation." msgstr "Apre un dialogo per modificare la veduta, zoom e rotazione inclusi." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:508 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:508 msgid "Open network in netedit" msgstr "Apri rete in netedit" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:508 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:508 msgid "Opens current network in NETEDIT." msgstr "Apre la rete attuale in netedit." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:515 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:515 msgid "&Settings" msgstr "&Configurazione" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:517 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:53 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:517 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:53 msgid "Application Settings" msgstr "Configurazione dell'applicazione" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:517 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:517 msgid "Open a Dialog for Application Settings editing." msgstr "" "Apre un dialogo per modificare la configurazione al riguardo " "dell'applicazione." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:520 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:520 msgid "Gaming Mode\tCtrl+G\tToggle gaming mode on/off." msgstr "Modo ludico\tCtrl+G\t(Dis)attiva il modo ludico." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:523 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:523 msgid "Full Screen Mode" msgstr "Modo schermo intero" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:523 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:523 msgid "Toggle full screen mode on/off." msgstr "(Dis)attiva il modo schermo intero." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:527 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1400 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:527 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1393 msgid "&Locate" msgstr "&localizza" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1348 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1979 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:529 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1314 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1945 msgid "&Junctions" msgstr "&Nodi" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:529 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:529 msgid "Open a Dialog for Locating a Junction." msgstr "Apre un dialogo per localizzare un nodo." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1353 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1982 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:532 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1319 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1948 msgid "&Edges" msgstr "&Archi" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:532 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:532 msgid "Open a Dialog for Locating an Edge." msgstr "Apre un dialogo per localizzare un arco." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:535 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1408 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1988 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:535 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1374 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1954 msgid "&Vehicles" msgstr "&Veicoli" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:535 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:535 msgid "Open a Dialog for Locating a Vehicle." msgstr "Apre un dialogo per localizzare un veicolo." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:538 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1413 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1991 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:538 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1379 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1957 msgid "&Persons" msgstr "&Persone" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:538 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:538 msgid "Open a Dialog for Locating a Person." msgstr "Apre un dialogo per localizzare una persona." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:541 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:541 msgid "&Container" msgstr "&Contenitore" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:541 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:541 msgid "Open a Dialog for Locating a Container." msgstr "Apre un dialogo per localizzare un contenitore." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:544 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2000 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:544 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1966 msgid "&TLS" msgstr "&Semafori" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:544 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:544 msgid "Open a Dialog for Locating a Traffic Light." msgstr "Apre un dialogo per localizzare un semaforo." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:547 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:630 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2003 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:547 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:604 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1969 msgid "&Additional" msgstr "&Addizionali" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:547 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:547 msgid "Open a Dialog for Locating an Additional Structure." msgstr "Apre un dialogo per localizzare una struttura addizionale." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:550 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2006 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:550 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1972 msgid "P&oI" msgstr "Punto di interesse" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:550 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:550 msgid "Open a Dialog for Locating a Point of Interest." msgstr "Apre un dialogo per localizzare un punto di interesse." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:553 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2009 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:553 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1975 msgid "Po&lygon" msgstr "PO&ligono" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:553 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:553 msgid "Open a Dialog for Locating a Polygon." msgstr "Apre un dialogo per localizzare un poligono." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:557 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:557 msgid "Show Internal Structures" msgstr "Mostra struttura interna" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:557 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:557 msgid "Show internal junctions and streets in locator dialog." msgstr "Mostra nodi ed archi interni nel dialogo di localizzazione." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:560 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:560 msgid "Show Parking Vehicles" msgstr "Mostra veicoli parcheggiati" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:560 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:560 msgid "Show parking vehicles in locator dialog." msgstr "Mostra veicoli parcheggiati nel dialogo di localizzazione." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:564 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:564 msgid "Show vehicles outside the road network" msgstr "Mostra veicoli fuori strada" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:564 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:564 msgid "" "Show vehicles that are teleporting or driving remote-controlled outside the " @@ -344,10 +461,15 @@ "Mostra veicoli fuori strada nel dialogo di localizzazione che vengono " "teleportati oppure controllati esternamente." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:570 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:570 msgid "Simulation" msgstr "Simulazione" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:572 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:373 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:90 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:93 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:572 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:90 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:89 @@ -355,43 +477,60 @@ msgid "Run" msgstr "Esegui" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:572 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:572 msgid "Start/ Resume the simulation." msgstr "Esegue / ferma la simulazione." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:575 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:575 msgctxt "Simulation" msgid "Stop" -msgstr "" +msgstr "Ferma" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:575 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:575 msgid "Halt the simulation." msgstr "Ferma la simulazione." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:578 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:578 msgid "Step" msgstr "Passo" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:578 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:578 msgid "Perform one simulation step." msgstr "Esegue un passo di simulazione." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:581 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:581 msgid "Delay+" msgstr "Rallentamento+" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:581 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:581 msgid "Increase simulation step delay." msgstr "Aumenta il rallentamento per ogni passo di simulazione." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:583 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:583 msgid "Delay-" msgstr "Rallentamento-" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:583 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:583 msgid "Decrease simulation step delay." msgstr "Abbassa il rallentamento per ogni passo di simulazione." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:585 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:289 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:286 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:256 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1393 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2904 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:67 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:585 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:288 #: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:284 @@ -404,10 +543,18 @@ msgid "Save" msgstr "Salva" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:585 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:585 msgid "Save the current simulation state to a file." msgstr "Salva lo stato di simulazione attuale in un documento." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:588 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:288 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:285 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:258 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2902 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:65 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:588 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:287 #: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:283 @@ -419,178 +566,237 @@ msgid "Load" msgstr "Carica" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:588 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:588 msgid "Load simulation state for the current network from file." -msgstr "" +msgstr "Carica lo stato di simulazione per la rete attuale da file." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1465 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:592 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1458 msgid "&Window" msgstr "&Finestra" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:593 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:747 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:593 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:747 msgid "Open new view" msgstr "Apri nuova veduta" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:595 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:750 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:595 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:750 msgid "Open new 3D view" msgstr "Apri nuova veduta 3D" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:598 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:598 msgid "Tile &Horizontally" msgstr "Dividi orizzontalmente" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:601 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:601 msgid "Tile &Vertically" msgstr "Dividi verticalmente" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:604 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:604 msgid "Cascade" msgstr "Cascate" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:608 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:98 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:100 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:608 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:97 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:100 msgid "&Close" msgstr "&Chiudi" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:618 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:618 msgid "&Others..." msgstr "&Altri..." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:622 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2126 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:622 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2092 msgid "Show Status Line" msgstr "Mostra barra di stato" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:622 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:622 msgid "Toggle the Status Bar on/off." msgstr "Mostra / nasconde la barra di stato." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:625 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2129 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:625 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2095 msgid "Show Message Window" msgstr "Mostra finestra di messaggi" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:625 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2129 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:625 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2095 msgid "Toggle the Message Window on/off." msgstr "Mostra / nasconde la finestra di messaggi." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:628 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:628 msgid "Show Simulation Time" msgstr "Mostra tempo di simulazione" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:628 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:628 msgid "Toggle the Simulation Time on/off." msgstr "Mostra / nasconde il tempo di simulazione." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:631 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:631 msgid "Show Simulation Delay" msgstr "Mostra rallentamento della simulazione" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:631 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:631 msgid "Toggle the Simulation Delay Entry on/off." msgstr "Mostra / nasconde il rallentamento della simulazione." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:637 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2133 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:637 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2099 msgid "Clear Message Window" msgstr "Svuota finestra di messaggi" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:637 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:637 msgid "Clear the message window." msgstr "Svuota la finestra di messaggi." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:644 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1470 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:644 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1463 msgid "&Help" msgstr "&Aiuto" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:646 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2149 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:646 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2115 msgid "&Online Documentation" msgstr "&Documentazione in linea" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:646 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2149 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:646 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2115 msgid "Open Online documentation." msgstr "Va alla documentazione in linea." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:649 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2152 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:649 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2118 msgid "&Changelog" msgstr "&Changelog" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:649 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2152 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:649 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2118 msgid "Open Changelog." msgstr "Va al Changelog." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:651 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2154 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:651 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2120 msgid "&Hotkeys" -msgstr "" +msgstr "&Scorciatoie" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:651 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2154 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:651 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2120 msgid "Open Hotkeys." msgstr "Va alla lista dei tasti scorciatoia." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:653 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2156 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:653 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2122 msgid "&Tutorial" msgstr "&Tutorial" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:653 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2156 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:653 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2122 msgid "Open Tutorial." msgstr "Va alla lista dei tutorial." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:655 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2158 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:655 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2124 msgid "&Feedback" msgstr "&Feedback" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:655 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:655 msgid "Open feedback dialog." msgstr "Va al dialogo feedback." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:658 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2161 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:658 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2127 msgid "&About" msgstr "&Informazioni" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:658 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:658 msgid "About sumo-gui." msgstr "Informazioni su sumo-gui." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:673 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:673 msgid "\tOpen simulation\tOpen a simulation (Configuration file)." msgstr "\tApri simulazione\tApre un file di configurazione della simulazione." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:675 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:675 msgid "\tOpen network\tOpen a network." msgstr "\tApri rete\tApre una rete." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:677 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:677 msgid "\tReload\tReloads the simulation / the network." msgstr "\tRicarica\tRicarica la simulazione / la rete." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:686 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:686 msgid "\tRun\tStart/Resume the loaded simulation." msgstr "\tEsegui\tEsegue / prosegue la simulazione." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:688 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:688 msgid "\tStop\tHalt the running simulation." msgstr "\tFerma\tFerma la simulazione in corso." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:690 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:690 msgid "\tStep\tPerform a single simulation step." msgstr "\tPasso\tEsegue soltanto un passo di simulazione." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:698 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:698 msgid "" "Time:\tToggle between time formats\tToggle between seconds and hour:minute:" @@ -599,6 +805,7 @@ "Formato dell'ora:\tScegli il formato dell'ora tra secondi e ore:minuti:" "secondi.\t" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:712 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:712 msgid "" "Delay (ms):\tDelay per simulated second\tDelay per simulated second. Click " @@ -608,10 +815,12 @@ "per ogni secondo simulato. Clicca per scegliere tra i due ultimi valori di " "rallentamento." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:735 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:735 msgid "Scale Traffic:" -msgstr "Moltiplica domanda di traffico" +msgstr "Moltiplica domanda di traffico:" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:735 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:735 msgid "" "Scale traffic from flows and vehicles that are loaded incrementally from " @@ -620,26 +829,32 @@ "Moltiplica la domanda di traffico fatta di flussi e veicoli singoli che " "vengono caricati gradualmente dei file di itinerari." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:747 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:747 msgid "Open a new microscopic view." msgstr "Apri una nuova veduta microscopica." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:750 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:750 msgid "Open a new 3D view." msgstr "Apri una nuova veduta 3D." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:760 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:760 msgid "Waiting Time:" msgstr "Tempo d'attesa:" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:760 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:760 msgid "Time spent waiting accumulated for all vehicles" msgstr "Tempo d'attesa accumulato di tutti i veicoli" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:771 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:771 msgid "Time Loss:" msgstr "Tempo morto:" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:771 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:771 msgid "" "Time lost due to being unable to drive with maximum speed for all vehicles" @@ -647,70 +862,98 @@ "Tempo morto accumulato di tutti i veicoli (di quando non sono potuti " "circolare alla loro velocità massima)" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:782 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:782 msgid "Distance (km):" msgstr "Distanza (km):" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:782 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:782 msgid "Total distance driven by DRT vehicles" msgstr "Distanza totale percorsa da veicoli DRT" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:793 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:793 msgid "Emergency Vehicle waiting time:" -msgstr "Tempo d'attesa dei veicoli di emergenza." +msgstr "Tempo d'attesa dei veicoli di emergenza:" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:793 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:793 msgid "Time spent waiting accumulated for emergency vehicles" msgstr "Tempo d'attesa accumulato dei veicoli di emergenza" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:818 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:150 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:818 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:150 msgid "Cl&ear Recent Networks" msgstr "Svuota la cronica delle reti recenti" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:819 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:151 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:819 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:151 msgid "No Recent Networks" msgstr "Nessuna rete recente" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:823 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:155 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:823 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:155 msgid "Recent Networks" msgstr "Reti recenti" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:841 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:173 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:841 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:173 msgid "Cl&ear Recent Configs" msgstr "Svuota cronica di configurazioni recenti" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:842 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:174 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:842 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:174 msgid "No Recent Configs" msgstr "Nessuna configurazione recente" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:846 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:178 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:846 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:178 msgid "Recent Configs" msgstr "Configurazioni recenti" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:986 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1021 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1058 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:986 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1021 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1058 msgid "Running %." msgstr "Sta eseguendo %." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1068 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1068 msgid "Open Simulation Configuration" msgstr "Apri configurazione di simulazione" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1088 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1088 msgid "Open Network" msgstr "Apri rete" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1108 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1108 msgid "Open Shapes" msgstr "Apri forme" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1122 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1150 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4650 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4685 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4720 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4752 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1122 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1150 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4634 @@ -721,255 +964,369 @@ msgid "Loading of % failed." msgstr "Caricamento fallito di %." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1139 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1139 msgid "Open EdgeData" msgstr "Apri EdgeData" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1174 +msgid "Auto-Reloading." +msgstr "Sta ricaricando automaticamente." + +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1174 +msgid "TraCI-Loading." +msgstr "Sta ricaricando in seguito a TraCI." + +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1176 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1173 msgid "Reloading." msgstr "Sta ricaricando." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1187 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1183 msgid "Quick-Reloading." msgstr "Sta ricaricando (modo veloce)." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1197 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1087 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1193 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1081 msgid "Already loading!" msgstr "Sta già caricando!" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1209 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1205 msgid "Save SUMO Configuration" msgstr "Salva configurazione sumo" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1224 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1220 msgid "Configuration saved to %." msgstr "Configurazione salvata in %." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1226 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1222 msgid "Could not save configuration to %." msgstr "Non ho potuto salvare öa configurazione in %." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1282 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1308 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2144 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1278 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1304 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2134 msgid "No simulation loaded!" msgstr "Nessuna simulazione caricata!" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1324 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1320 msgid "Save Simulation State" msgstr "Salva stato di simulazione" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1338 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1334 msgid "Simulation state saved to '%'." msgstr "Salvato il stato di simulazione in '%'." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1346 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1342 msgid "Load Simulation State" msgstr "Carica stato di simulazione" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1358 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1354 msgid "State loaded from '%'." msgstr "Caricato stato di simulazione da '%'." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1360 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1356 msgid "Failed to load state from '%' (%)." msgstr "Il caricamento del stato di simulazione da '%' (%) è fallito." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1817 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1813 #, c-format msgid "Loading of '%' failed!" msgstr "Caricamento fallito di '%'!" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1831 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1827 #, c-format msgid "'%' loaded." msgstr "Caricato '%'." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2031 +msgid "Simulation ended at time: %. (%)" +msgstr "Simulazione finita alle ore %. (%)" + +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2037 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2027 msgid "Simulation ended" msgstr "Simulazione finita" +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2135 #: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2125 msgid "Loading '%'." msgstr "Sta caricando '%'." +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2288 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2290 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2291 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2292 +msgid "seconds" +msgstr "secondi" + +#: D:\Repos\sumo/src\gui\GUILoadThread.cpp:206 #: /home/micha/programming/sumo/src/gui/GUILoadThread.cpp:206 msgid "Could not load edgedata-files '%'" msgstr "Non ho potuto caricare i file edgeData '%'" +#: D:\Repos\sumo/src\gui\GUIRunThread.cpp:100 +#: D:\Repos\sumo/src\gui\GUIRunThread.cpp:106 #: /home/micha/programming/sumo/src/gui/GUIRunThread.cpp:100 #: /home/micha/programming/sumo/src/gui/GUIRunThread.cpp:106 msgid "Quitting (on error)." -msgstr "Uscendo (dopo un errore)" +msgstr "Uscendo (dopo un errore)." +#: D:\Repos\sumo/src\gui\GUIRunThread.cpp:265 #: /home/micha/programming/sumo/src/gui/GUIRunThread.cpp:265 msgid "Simulation started with time: %." msgstr "Iniziata Simulazione al tempo: %." +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:142 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:455 #: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:142 #: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:448 msgid "Save Snapshot" msgstr "Salva cattura" +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:167 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:475 #: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:167 #: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:468 msgid "No file extension was specified - saving Snapshot as PNG." msgstr "Salvo il file come PNG perché nessuna estensione è stata specificata." +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:173 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:482 #: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:173 #: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:475 msgid "Saving failed." msgstr "Salvataggio fallito." +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:175 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:486 #: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:175 #: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:479 msgid "Snapshot successfully saved!" msgstr "La cattura è stata salvata con successo!" +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:219 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:268 #: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:219 #: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:268 msgid "Unknown Message ID in onCmdLocate" msgstr "" +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:233 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:512 #: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:233 #: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:505 msgid "Junction Chooser" -msgstr "" +msgstr "Selezione di incroci" +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:237 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:520 #: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:237 #: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:513 msgid "Edge Chooser" -msgstr "" +msgstr "Selezione di archi" +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:241 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:536 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:87 #: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:241 #: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:529 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:87 msgid "Vehicle Chooser" -msgstr "" +msgstr "Selezione di veicoli" +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:245 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:583 #: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:245 #: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:576 msgid "Person Chooser" -msgstr "" +msgstr "Selezione di persone" +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:249 #: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:249 msgid "Container Chooser" -msgstr "" +msgstr "Selezione di contenitori" +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:253 #: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:253 msgid "Traffic Lights Chooser" -msgstr "" +msgstr "Selezione di semafori" +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:257 #: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:257 msgid "Additional Objects Chooser" -msgstr "" +msgstr "Selezione di oggetto addizionali" +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:261 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:667 #: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:261 #: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:655 msgid "POI Chooser" -msgstr "" +msgstr "Selezione di punti di interesse" +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:265 #: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:265 msgid "Polygon Chooser" -msgstr "" +msgstr "Selezione di poligoni" +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:269 #: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:269 msgid "phase names" msgstr "nomi delle fasi" +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:272 #: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:272 msgid "detectors" msgstr "detettori" +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:273 #: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:273 msgid "conditions" msgstr "condizioni" +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:336 #: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:336 msgid "Overflow in time computation occurred." msgstr "" +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:114 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:334 #: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:114 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:332 msgid "Locate Junctions" msgstr "Localizza incroci" +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:114 #: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:114 msgid "Locate a junction within the network." -msgstr "" +msgstr "Localizza un'incrocio nella rete." +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:119 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:338 #: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:119 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:336 msgid "Locate Edges" msgstr "Localizza archi" +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:119 #: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:119 msgid "Locate an edge within the network." -msgstr "" +msgstr "Localizza un'arco nella rete." +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:124 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:346 #: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:124 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:344 msgid "Locate Vehicles" msgstr "Localizza veicoli" +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:124 #: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:124 msgid "Locate a vehicle within the network." -msgstr "" +msgstr "Localizza un veicolo nella rete." +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:129 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:350 #: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:129 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:348 msgid "Locate Persons" msgstr "Localizza persone" +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:129 #: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:129 msgid "Locate a person within the network." -msgstr "" +msgstr "Localizza una persona nella rete." +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:134 #: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:134 msgid "Locate Container" -msgstr "" +msgstr "Localizza contenitori" +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:134 #: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:134 msgid "Locate a container within the network." -msgstr "" +msgstr "Localizza un contenitore nella rete." +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:139 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:369 #: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:139 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:367 msgid "Locate TLS" msgstr "Localizza semafori" +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:139 #: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:139 msgid "Locate a tls within the network." -msgstr "" +msgstr "Localizza un semaforo nella rete." +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:144 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:373 #: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:144 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:371 msgid "Locate Additional" msgstr "Localizza strutture addizionali" +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:144 #: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:144 msgid "Locate an additional structure within the network." -msgstr "" +msgstr "Localizza una struttura addizionale nella rete." +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:149 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:377 #: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:149 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:375 msgid "Locate PoI" msgstr "Localizza punti di interesse" +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:149 #: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:149 msgid "Locate a PoI within the network." -msgstr "" +msgstr "Localizza un punto di interesse nella rete." +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:154 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:381 #: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:154 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:379 msgid "Locate Polygon" msgstr "Localizza un poligono" +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:154 #: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:154 msgid "Locate a Polygon within the network." -msgstr "" +msgstr "Localizza un poligono nella rete." +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AboutSUMO.cpp:69 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:58 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_HallOfFame.cpp:57 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:416 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:413 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:408 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:375 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:380 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:298 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:487 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:97 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:173 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AboutSUMO.cpp:69 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:58 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_HallOfFame.cpp:57 @@ -989,32 +1346,43 @@ msgid "OK" msgstr "OK" +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:62 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:62 msgid "Quit on Simulation End" msgstr "Esci dopo che la simulazione finisce" +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:64 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:64 msgid "Autostart Simulation on Load and Reload" msgstr "Inizia la simulazione automaticamente dopo averla caricata" +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:66 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:66 msgid "Reload Simulation after finish (Demo mode)" msgstr "Ricarica la simulazione quando finisce (modo mostra)" +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:68 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:68 msgid "Locate elements when clicking on messages" msgstr "Localizza elementi cliccando su dei messaggi" +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:74 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:74 msgid "Breakpoint offset when clicking on time message" msgstr "" "Differenza di tempo sommata al punto di interruzione creato cliccando su un " "messaggio temporale" +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:98 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:98 msgid "Allow Textures" msgstr "Attiva texture" +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:101 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:76 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:133 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:995 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2354 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:101 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:76 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:133 @@ -1023,6 +1391,14 @@ msgid "&OK" msgstr "&OK" +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:102 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:72 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:639 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:390 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:134 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:996 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2355 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:102 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:64 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:72 @@ -1032,37 +1408,51 @@ #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:996 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2353 msgid "&Cancel" -msgstr "&Cancella" +msgstr "&Annulla" +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:69 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:69 msgid "Breakpoints Editor" -msgstr "" +msgstr "Editor di punti di interruzione" +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:90 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:89 msgid "&Load" msgstr "&Carica" +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:92 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:91 msgid "&Save" msgstr "&Salva" +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:95 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:94 msgid "Clea&r" msgstr "Sv&uota" +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2397 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:126 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2391 msgid "Time" -msgstr "" +msgstr "Ora" +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:142 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:141 msgid "Load Breakpoints" msgstr "Carica punti di interruzione" +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:163 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:162 msgid "Save Breakpoints" msgstr "Salva punti di interruzione" +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:173 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:155 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:258 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:240 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1102 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1183 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:172 #: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:155 #: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:258 @@ -1072,23 +1462,32 @@ msgid "Storing failed!" msgstr "Salvataggio fallito!" +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:242 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:245 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:241 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:244 msgid "Time format error" msgstr "Errore di formato dell'ora" +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:46 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:46 msgid "- General problem solving" msgstr "- Domande generali" +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:50 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:50 msgid "- Sumo-user mailing list" msgstr "- Sumo-user mailing list" +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:54 #: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:54 msgid "- Send us an Email" msgstr "- Mandaci un email" +#: D:\Repos\sumo/src\guisim\Command_Hotkey_InductionLoop.cpp:55 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_InductionLoop.cpp:59 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_TrafficLight.cpp:56 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_TrafficLight.cpp:60 #: /home/micha/programming/sumo/src/guisim/Command_Hotkey_InductionLoop.cpp:55 #: /home/micha/programming/sumo/src/guisim/Command_Hotkey_InductionLoop.cpp:59 #: /home/micha/programming/sumo/src/guisim/Command_Hotkey_TrafficLight.cpp:56 @@ -1097,253 +1496,308 @@ msgid "Hotkey '%' is not supported" msgstr "La scorciatoia '%' è sconosciuta" +#: D:\Repos\sumo/src\guisim\GUIBaseVehicle.cpp:300 #: /home/micha/programming/sumo/src/guisim/GUIBaseVehicle.cpp:300 msgid "GUI-triggered stop not implemented for meso" msgstr "" "la fermata azionata attraverso l'interfaccia grafica non funziona nel modo " "mesoscopico" +#: D:\Repos\sumo/src\guisim\GUIBaseVehicle.cpp:876 +#: D:\Repos\sumo/src\guisim\GUIVehicle.cpp:663 #: /home/micha/programming/sumo/src/guisim/GUIBaseVehicle.cpp:876 #: /home/micha/programming/sumo/src/guisim/GUIVehicle.cpp:668 msgid "Vehicle parameter '%' key '%' is not a number for vehicle '%'." msgstr "" "Il parametro veicolare '%' (chiave '%') non è numerico per il veicolo '%'." +#: D:\Repos\sumo/src\guisim\GUINet.cpp:326 #: /home/micha/programming/sumo/src/guisim/GUINet.cpp:326 msgid "Network size exceeds 1 Lightyear. Please reconsider your inputs.\n" msgstr "" "La rete è più larga di un anno luce. Riconsidera gli dati di ingresso.\n" +#: D:\Repos\sumo/src\guisim\GUINet.cpp:666 #: /home/micha/programming/sumo/src/guisim/GUINet.cpp:666 msgid "Trying to set data value for the unknown edge '%'." msgstr "" +#: D:\Repos\sumo/src\guisim\GUINet.cpp:690 #: /home/micha/programming/sumo/src/guisim/GUINet.cpp:690 msgid "" "Trying to set data value for the unknown relation from edge '%' to edge '%'." msgstr "" +#: D:\Repos\sumo/src\guisim\GUINet.cpp:708 #: /home/micha/programming/sumo/src/guisim/GUINet.cpp:708 msgid "No data defined after simulation begin time." msgstr "Nessun dato definito dopo il tempo iniziale della simulazione." +#: D:\Repos\sumo/src\guisim_main.cpp:57 #: /home/micha/programming/sumo/src/guisim_main.cpp:57 msgid "GUI version of the microscopic, multi-modal traffic simulation SUMO." msgstr "" "Versione grafica della simulazione microscopica e multimodale del traffico " "SUMO." +#: D:\Repos\sumo/src\guisim_main.cpp:77 +#: D:\Repos\sumo/src\netedit\netedit_main.cpp:81 #: /home/micha/programming/sumo/src/guisim_main.cpp:77 #: /home/micha/programming/sumo/src/netedit/netedit_main.cpp:81 msgid "This system has no OpenGL support. Exiting." msgstr "Questo sistema non sostiene OpenGL. Uscita." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:469 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:468 msgid "A microscopic, multi-modal traffic simulation." msgstr "Una simulazione microscopica e multimodale del traffico." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:510 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:504 msgid "Recomputing" -msgstr "" +msgstr "Ricalcolo" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:510 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:504 msgid "Recomputing is needed" -msgstr "" +msgstr "Ricalcolo necessario" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:519 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:513 msgid "Test coordinate" -msgstr "" +msgstr "Coordinata di prova" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:833 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:856 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:827 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:850 msgid "loading TLS Programs from '" msgstr "Caricando piani semaforici da '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:898 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:892 msgid "Loaded edge types from '" msgstr "Caricati tipi di arco (edgeType) da '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:900 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:933 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:894 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:927 msgid "load edgeTypes" msgstr "carica tipi di arco (edgeType)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:931 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:925 msgid "Reloaded edge types from '" msgstr "Ricaricari tipi di arco (edgeType) da '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:988 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:982 msgid "Reloading netedit config file '" msgstr "Ricaricando configurazione netedit '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:992 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:986 msgid "Reloading sumo config file '" msgstr "Ricaricando configurazione sumo '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:996 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1057 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:990 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1051 msgid "Reloading network file '" msgstr "Ricaricando file di rete '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1012 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1006 msgid "&Reload Netedit config" msgstr "%Ricarica configurazione netedit" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1013 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1007 msgid "&Reload Sumo config" msgstr "&Ricarica configurazione sumo" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1014 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1008 msgid "&Reload Network" msgstr "&Ricarica rete" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1260 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1253 msgid "Loading of '" msgstr "Caricando '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1265 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1258 msgid "'" msgstr "'" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1265 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1258 msgid "' loaded." msgstr "' caricato." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1354 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1347 msgid "&Modes" msgstr "&Modi" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1389 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1382 msgid "L&ock" msgstr "&Blocca" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1396 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1389 msgid "&Processing" msgstr "&Operazioni" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1421 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1414 msgid "&Tools" msgstr "&Utensile" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1423 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1416 msgid "Detectors" -msgstr "" +msgstr "Rivelatori" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1424 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1417 msgid "Districts" -msgstr "" +msgstr "Distretti" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1425 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1418 msgid "DRT" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1419 -msgid "Emissions" -msgstr "" - +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1427 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1420 msgid "CityBrain" -msgstr "" +msgstr "CityBrain" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1428 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1421 msgid "GTFS" -msgstr "" +msgstr "GTFS" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1429 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1422 msgid "Vissim" -msgstr "" +msgstr "Vissim" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1430 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1423 msgid "Visum" -msgstr "" +msgstr "Visum" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1431 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1424 msgid "Import" -msgstr "" +msgstr "Importa" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1432 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1425 msgid "Net" -msgstr "" +msgstr "Rete" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1433 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:699 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2750 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1426 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:673 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2744 msgid "Route" msgstr "Itinerario" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1434 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1427 msgid "Output" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1428 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:227 -msgid "Shapes" -msgstr "" +msgstr "Uscita" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1436 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1429 msgid "TLS" msgstr "Semaforo" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1437 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1430 msgid "Turn-defs" -msgstr "" +msgstr "Definizioni di svolte (Turn-defs)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1438 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1431 msgid "Visualization" -msgstr "" +msgstr "Visualizzazione" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1439 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1432 msgid "XML" -msgstr "" +msgstr "XML" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1526 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1519 msgid "Network computed" msgstr "Rete computata" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1530 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1523 msgid "Press F5" msgstr "Prema F5" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1531 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1524 msgid "Network requires recomputing" msgstr "La rete richiede di essere ricomputata" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1600 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1591 msgid "Loading console arguments" msgstr "Cargando argumenti della riga di commando" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1628 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1619 msgid "Creating new network." msgstr "Sto creando una nuova rete." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1639 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1630 msgid "Trying to load an empty network" msgstr "Sto tentando di caricare una rete vuota" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1655 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1646 msgid "Loading network file '" msgstr "Sto cargando la rete dal file '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1667 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1658 msgid "Trying to load an empty configuration" msgstr "Sto tentando di caricare una configurazione vuota" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1683 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1674 msgid "Loading configuration file '" msgstr "Sto cargando la configurazione dal file '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1713 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1704 msgid "Select Import Options" msgstr "Scegli opzioni d'importazione" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1719 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1710 msgid "Loading OSM file '" msgstr "Sto cargando il file OSM '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1739 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1732 msgid "Recompute with volatile options" msgstr "Ricomputa con opzioni volatili" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1740 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1733 msgid "" "Changes produced in the net due a recomputing with volatile options cannot " @@ -1352,233 +1806,309 @@ "Cambi introdotti ricomputando la rete con opzioni volatili non possono " "annullati. Vuoi continuare?" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1980 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2040 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1973 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2033 msgid "Running " msgstr "Eseguendo " +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2003 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1996 msgid "Loading network '" msgstr "Cargando rete '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2003 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2012 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1996 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2005 msgid "' in SUMO-GUI" msgstr "' in sumo-gui" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2012 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2005 msgid "Loading sumo config '" msgstr "Cargando configurazione sumo '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2325 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2317 msgid "Netedit options" -msgstr "" +msgstr "Opzioni Netedit" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2342 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1860 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2334 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1826 msgid "Sumo options" msgstr "Opzioni sumo" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2359 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2351 msgid "Netgenerate options" -msgstr "" +msgstr "Opzioni netgenerate" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2376 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1287 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:103 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2368 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1253 #: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:102 msgid "Undo" msgstr "Annulla" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2408 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1290 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:106 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2400 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1256 #: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:105 msgid "Redo" msgstr "Reimposta" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3080 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3072 msgid "Saving Network failed!" msgstr "Salvataggio della rete fallito!" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3086 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3078 msgid "Network saved in '" msgstr "Rete salvata in '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3092 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3084 msgid "Could not save network in '" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3148 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3130 msgid "Plain XML saved with prefix '" msgstr "Salvato plain XML con prefisso '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3153 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3135 msgid "Saving plain xml failed!" msgstr "Salvataggio plain xml fallito!" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3177 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3159 msgid "Joined junctions saved to '" msgstr "Nodi combinati salvati in '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3182 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3164 msgid "Saving joined junctions failed!" msgstr "Salvataggio dei nodi combinati fallito!" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3245 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3227 msgid "Netedit configuration saved in '" msgstr "Configurazione netedit salvata in '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3251 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3233 msgid "Could not save netedit configuration in '" msgstr "Non ho potuto salvare la configurazione netedit in '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3355 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3337 msgid "SUMO configuration saved in '" msgstr "Configurazione sumo salvata in '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3363 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3345 msgid "Could not save SUMO configuration in '" msgstr "Non ho potuto salvare la configurazione sumo in '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3417 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3399 msgid "TLS Programs saved in '" msgstr "Piani semaforici salvati in '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3422 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3404 msgid "Saving TLS Programs failed!" msgstr "Salvataggio dei piani semaforici fallito!" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3465 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3447 msgid "EdgeType saved in '" msgstr "Tipi di arco (edgeType) salvati in '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3470 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3452 msgid "Saving edgeTypes failed!" msgstr "Salvataggio dei tipi di arco (edgeType) fallito!" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3574 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3556 msgid "load additionals from '" msgstr "carica elementi addizionali da '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3578 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1307 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3560 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1304 msgid "Loading of additional file failed: " msgstr "Caricamento del file di elementi addizionali fallito: " +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3584 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1309 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3566 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1306 msgid "Loading of additional file sucessfully: " msgstr "File di elementi caricato con successo: " +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3610 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3592 msgid "reloading additionals from '" msgstr "ricarica elementi addizionali da '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3615 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3597 msgid "Reloading of additional file failed: " msgstr "Ricaricamento del file di elementi addizionali fallito: " +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3658 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3640 msgid "Additionals saved in '" msgstr "Elementi addizionali salvati in '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3667 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3650 msgid "Saving additionals failed!" -msgstr "" +msgstr "Salvataggio degli elementi addizionali fallito!" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3737 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4675 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4678 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3720 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4659 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4662 msgid "loading demand elements from '" msgstr "carica elementi di domanda da '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3741 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1318 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3724 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1315 msgid "Loading of route file failed: " msgstr "Caricamento del file di itinerari fallito: " +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3747 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1320 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3730 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1317 msgid "Loading of route file sucessfully: " msgstr "File di itinerari caricato con successo: " +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3778 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3761 msgid "Reloading of route file failed: " msgstr "Ricaricamento del file di itinerari fallito: " +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3819 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3802 msgid "Demand elements saved in '" msgstr "Elementi di domanda salvati in '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3828 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3812 msgid "Saving demand elements failed!" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3900 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4744 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3884 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4728 msgid "loading data elements from '" msgstr "carica elementi di dati da '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3904 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1329 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3888 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1326 msgid "Loading of data file failed: " msgstr "Caricamento del file di dati fallito: " +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3910 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1331 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3894 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1328 msgid "Loading of data file sucessfully: " msgstr "File di dati caricato con successo: " +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3940 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3924 msgid "reloading data elements from '" msgstr "ricarica elementi di dati da '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3945 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3929 msgid "Reloading of data file failed: " msgstr "Ricaricamento del file di dati fallito: " +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3987 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3971 msgid "Data elements saved in '" msgstr "Elementi di dati salvati in '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3992 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3976 msgid "Saving data elements failed!" -msgstr "" +msgstr "Salvataggio degli elementi di dati fallito!" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4064 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4048 msgid "load meanDatas from '" msgstr "carica meanData da '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4068 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1340 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4052 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1337 msgid "Loading of meandata file failed: " msgstr "Caricamento del file meanData fallito: " +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4074 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4105 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1342 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4058 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4089 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1339 msgid "Loading of meandata file sucessfully: " msgstr "File meanData caricato con successo: " +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4100 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4084 msgid "reloading meanDatas from '" msgstr "ricarica meanData da '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4144 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4128 msgid "MeanDatas saved in '" msgstr "MeanData salvato in '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4149 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4133 msgid "Saving meanData failed!" -msgstr "" +msgstr "Salvataggio degli elementi meanData fallito!" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4198 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4182 msgid "Confirm close Network" msgstr "Conferma per chiudere la rete" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4199 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4183 msgid "You have unsaved changes in the network." msgstr "Ci sono modificazioni alla rete ancora non salvate." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4200 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4266 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4310 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4354 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4398 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4184 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4250 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4294 @@ -1587,632 +2117,833 @@ msgid "Do you wish to close and discard all changes?" msgstr "Vuoi chiudere e perdere tutte modificazioni fatte?" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4264 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4248 msgid "Save additional elements before close" msgstr "Salva elementi addizionali prima di chiudere" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4265 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4249 msgid "You have unsaved additional elements." msgstr "Ci sono elementi addizionali ancora non salvati." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4308 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4292 msgid "Save demand elements before close" msgstr "Salva elementi di domanda prima di chiudere" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4309 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4293 msgid "You have unsaved demand elements." msgstr "Ci sono elementi di domanda ancora non salvati." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4352 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4336 msgid "Save data elements before close" msgstr "Salva elementi di dati prima di chiudere" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4353 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4337 msgid "You have unsaved data elements." msgstr "Ci sono elementi di dati ancora non salvati." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4396 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4380 msgid "Save meanData elements before close" msgstr "Salva elementi meanData prima di chiudere" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4397 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4381 msgid "You have unsaved meanData elements." msgstr "Ci sono elementi meanData ancora non salvati." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4640 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4624 msgid "loading additional elements from '" msgstr "carica elementi addizionali da '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4643 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4627 msgid "loading additionals from '" msgstr "carica elementi addizionali da '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4710 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4694 msgid "loading meanDatas from '" msgstr "carica meanData da '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4713 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4697 msgid "loading meandatas from '" msgstr "carica meanData da '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4747 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4731 msgid "Loading data elements from '" msgstr "Carica elementi di dati da '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:130 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:130 msgid "nets" msgstr "reti" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:131 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:131 msgid "configs" msgstr "configurazioni" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:196 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:196 msgid "&New Network" msgstr "&Nuova rete" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:196 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:196 msgid "Create a new network." msgstr "Crea una nuova rete." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:200 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:200 msgid "Open a new netedit window." msgstr "Apri una nuova finestra di netedit." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:204 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:204 msgid "Generate Network" -msgstr "" +msgstr "Genera rete" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:204 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:204 msgid "Create network using netgenerate." -msgstr "" +msgstr "Genera una rete usando netgenerate." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:211 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:211 msgid "Load Netedit config..." msgstr "Apri configurazione netedit..." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:211 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:211 msgid "Load a netedit configuration file." msgstr "Apre un file di configurazione di netedit." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:215 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:215 msgid "Load Sumo config..." msgstr "Apri configurazione sumo..." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:215 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:215 msgid "Load a SUMO configuration file." msgstr "Apre un file di configurazione di sumo." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:222 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:222 msgid "&Open Network..." msgstr "Apri &rete..." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:222 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:222 msgid "Open a SUMO network." msgstr "Apre una rete di sumo." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:226 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:226 msgid "Open Netconvert Configura&tion..." msgstr "Apri configurazione netconvert..." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:226 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:226 msgid "Open a configuration file with NETCONVERT options." msgstr "Apre un file di configurazione che contiene opzioni di netconvert." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:230 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:230 msgid "Import &Foreign Network..." msgstr "Importa rete straniera..." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:230 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:230 msgid "Import a foreign network such as OSM." msgstr "Importa una rete straniera come per esempio OSM." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:237 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:237 msgid "&Save Network" msgstr "Salva rete" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:237 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:237 msgid "Save the network." msgstr "Salva la rete." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:241 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:241 msgid "Save Net&work As..." msgstr "Salva rete " +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:241 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:241 msgid "Save the network to another file." msgstr "Salva la rete in un altro file." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:245 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:245 msgid "Save Plain XM&L..." msgstr "Salva Plain &XML..." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:245 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:245 msgid "Save a plain XML representation of the network." msgstr "Salva una representazione Plain XML della rete." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:249 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:249 msgid "Save &Joined Junctions..." msgstr "Salva nodi combinati..." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:249 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:249 msgid "Save log of joined junctions (allows reproduction of joins)." msgstr "" "Salva un protocollo dei nodi combinati che permette di riprodurre la " "combinazione." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:256 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:260 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:256 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:260 msgid "Reload the network." msgstr "Ricarica la rete." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:260 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:260 msgid "Reload Network" msgstr "Ricarica rete" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:267 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:267 msgid "Netedit Config" msgstr "Configurazione netedit" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:271 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:271 msgid "Sumo Config" msgstr "Configurazione sumo" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:275 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:275 msgid "Traffic Lights" msgstr "Semafori" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:279 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:279 msgid "Edge Types" msgstr "Tipi di arco" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:283 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:283 msgid "Additionals and Shapes" msgstr "Elementi addizioanli e forme" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:287 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:287 msgid "Demand Elements" msgstr "Elementi di domanda" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:291 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:291 msgid "Data Elements" msgstr "Elementi di dato" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:295 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:295 msgid "MeanData Elements" msgstr "Elementi meanData" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:300 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:300 msgid "Close the network." msgstr "Chiude la rete." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:334 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:334 msgid "Save Netedit Config" msgstr "Salva configurazione netedit" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:334 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:334 msgid "Save netedit configuration file." msgstr "Salva la configurazione netedit in un file." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:338 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:338 msgid "Save Netedit Config As..." msgstr "Salva configurazione netedit con nome..." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:338 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:338 msgid "Save netedit configuration in a new file." msgstr "Salva la configurazione netedit in un file nuovo." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:344 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:344 msgid "Reload Netedit Config" msgstr "Ricarica configurazione netedit" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:344 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:344 msgid "Reload netedit configuration." msgstr "Ricarica la configurazione netedit." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:352 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:352 msgid "Save Sumo Config" msgstr "Salva configurazione sumo" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:352 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:352 msgid "Save sumo configuration file." msgstr "Salva la configurazione sumo." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:356 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:356 msgid "Save Sumo Config As..." msgstr "Salva configurazione sumo con nome..." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:356 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:356 msgid "Save sumo configuration in a new file." msgstr "Salva la configurazione sumo in un file nuovo." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:362 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:362 msgid "Reload Sumo Config" msgstr "Ricarica configurazione sumo" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:362 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:362 msgid "Reload sumo configuration." msgstr "Ricarica la configurazione sumo." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:370 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:370 msgid "Load TLS Programs..." msgstr "Carica piani semaforici..." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:370 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:370 msgid "Load programs for traffic lights in the current net." msgstr "Carica piani semaforici della rete attuale." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:376 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:376 msgid "Save TLS Programs" msgstr "Salva piani semaforici" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:376 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:376 msgid "Save all traffic light programs of the current network." msgstr "Salva tutti i piani semaforici della rete attuale." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:380 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:380 msgid "Save TLS Programs As..." msgstr "Salva piani semaforici con nome..." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:380 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:380 msgid "Save all traffic light programs of the current network to another file." msgstr "Salva tutti i piani semaforici della rete attuale in un file nuovo." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:386 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:386 msgid "Reload TLS Programs" msgstr "Ricarica piani semaforici" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:386 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:386 msgid "Reload TLS Programs." msgstr "Ricarica piani semaforici." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:394 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:394 msgid "Load Edge Types..." msgstr "Carica tipi di arco..." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:394 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:394 msgid "Load edge types in the current net." msgstr "Carica tipi di arco per la rete attuale." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:400 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:400 msgid "Save Edge Types" msgstr "Salva tipi di arco" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:400 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:400 msgid "Save edge types of the current net." msgstr "Salva tipi di arco della rete attuale." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:404 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:404 msgid "Save Edge Types As..." msgstr "Salva tipi di arco con nome..." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:404 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:404 msgid "Save edge types of the current net to another file." msgstr "Salva tipi di arco della rete attuale in un file nuovo." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:410 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:410 msgid "Reload edge types" msgstr "Ricarica tipi di arco" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:410 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:410 msgid "Reload edge types." msgstr "Ricarica tipi di arco." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:418 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:418 msgid "Load Additionals..." msgstr "Carica elementi addizionali..." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:418 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:418 msgid "Load additionals and shapes." msgstr "Carica elementi addizionali e forme." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:424 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:424 msgid "Save Additionals" msgstr "Salca elementi addizionali" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:424 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:424 msgid "Save additionals and shapes." msgstr "Salva elementi addizionali e forme." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:428 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:428 msgid "Save Additionals As..." msgstr "Salva elementi addizionali con nome..." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:428 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:428 msgid "Save additional elements to another file." msgstr "Salva elementi addizionali in un file nuovo." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:434 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:434 msgid "Reload Additionals" msgstr "Ricarica elementi addizionali" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:434 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:434 msgid "Reload additionals." msgstr "Ricarica elementi addizionali." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:442 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:442 msgid "Load Demand Elements..." msgstr "Carica elementi di domanda..." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:442 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:442 msgid "Load demand elements." msgstr "Carica elementi di domanda." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:448 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:448 msgid "Save Demand Elements" msgstr "Salva elementi di domanda" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:448 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:448 msgid "Save demand elements." msgstr "Salva elementi di domanda." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:452 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:452 msgid "Save Demand Elements As..." msgstr "Salva elementi di domanda con nome..." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:452 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:452 msgid "Save demand elements to another file." msgstr "Salva elementi di domanda in un file nuovo." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:458 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:458 msgid "Reload Demand Elements" msgstr "Ricarica elementi di domanda" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:458 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:458 msgid "Reload demand elements." msgstr "Ricarica elementi di domanda." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:466 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:466 msgid "Load Data Elements..." msgstr "Carica elementi di dato..." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:466 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:466 msgid "Load data elements." msgstr "Carica elementi di dato." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:472 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:472 msgid "Save Data Elements" msgstr "Salva elementi di dato" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:472 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:472 msgid "Save data elements." msgstr "Salva elementi di dato." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:476 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:476 msgid "Save Data Elements As..." msgstr "Salva elementi di dato con nome..." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:476 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:476 msgid "Save data elements to another file." msgstr "Salva elementi di dato in un file nuovo." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:482 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:482 msgid "Reload Data Elements" msgstr "Ricarica elementi di dato" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:482 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:482 msgid "Reload data elements." msgstr "Ricarica elementi di dato." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:490 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:490 msgid "Load MeanDatas..." msgstr "Carica meanData..." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:490 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:490 msgid "Load meanDatas and shapes." msgstr "Carica meanData e forme." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:496 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:496 msgid "Save MeanDatas" msgstr "Salva meanData" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:496 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:496 msgid "Save meanDatas and shapes." msgstr "Salva meanData e forme." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:500 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:500 msgid "Save MeanDatas As..." msgstr "Salva meanData con nome..." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:500 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:500 msgid "Save meanData elements to another file." msgstr "Salva elementi meanData in un file nuovo." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:506 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:506 msgid "Reload MeanDatas" msgstr "Ricarica meanData" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:506 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:506 msgid "Reload meanDatas." msgstr "Ricarica elementi meanData." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:526 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2197 +#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2163 +msgid "&Network" +msgstr "&Rete" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:526 +msgid "Supermode network." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2200 +#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2166 +msgid "&Demand" +msgstr "&Domanda" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:529 +msgid "Sueprmode demand." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2203 +#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2169 +msgid "&Data" +msgstr "&Dati" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:532 +msgid "Supermode data." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:552 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:526 msgid "&Inspect" msgstr "&Ispeziona" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:552 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:526 msgid "Inspect elements and change their attributes." msgstr "Ispeziona elementi e cambia i loro attributi." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:555 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:529 msgid "&Delete" msgstr "Rimuovi" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:555 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:529 msgid "Delete elements." msgstr "Rimuove elementi." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:558 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:532 msgid "&Select" msgstr "&Seleziona" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:558 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:532 msgid "Select elements." msgstr "Seleziona elementi." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:615 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:696 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:589 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:670 msgid "&Move" msgstr "S&posta" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:615 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:696 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:589 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:670 msgid "Move elements." msgstr "Sposta elementi." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:618 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:592 msgid "&Edge" msgstr "&Arco" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:618 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:592 msgid "Create junction and edges." msgstr "Crea nodi e archi." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:621 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:595 msgid "&Connection" msgstr "&Collegamento" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:621 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:595 msgid "Modes connections between lanes." msgstr "Collega due corsie tra di loro." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:624 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:598 msgid "Pro&hibition" msgstr "Precedenza" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:624 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:598 msgid "Modes connection prohibitions." msgstr "Modo per visionare le precedenze." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:627 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:601 msgid "Modes traffic lights over junctions." msgstr "Modo dei semafori." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:630 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:604 msgid "Create additional elements." msgstr "Crea elementi addizionali." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:633 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:607 msgid "C&rossing" msgstr "Passaggio pedonale" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:633 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:607 msgid "Create crossings between edges." msgstr "Crea passaggi pedonali tra due archi." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:636 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:610 msgid "TA&Z" msgstr "Zona di assegnazione del traffico" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:636 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:610 msgid "Create Traffic Assignment Zones." msgstr "Crea zone di assegnazione del traffico." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:639 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:613 msgid "Create Points-Of-Interest and polygons." msgstr "Crea punti di interesse e poligoni." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:642 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:616 msgid "&Wire" msgstr "&Catenaria" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:642 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:616 msgid "Create wires." msgstr "Crea catenarie" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:699 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:673 msgid "Create Routes." msgstr "Crea itinerari." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:702 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:676 msgid "Vehicle" msgstr "Veicolo" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:702 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:676 msgid "Create vehicles." msgstr "Crea veicoli." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:705 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:679 msgid "Type" msgstr "Tipo" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:705 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:679 msgid "Create types (vehicles, person an containers)." msgstr "Crea tipi (di veicoli, di persone e di contenitori)." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:708 +msgid "TypeDistribution" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:708 +msgid "Create type distributions." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:711 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:682 msgid "Stop" -msgstr "Ferma" +msgstr "Fermata" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:711 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:682 msgid "Create stops." msgstr "Crea fermate." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:714 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:685 msgid "Person" msgstr "Persona" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:714 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:685 msgid "Create persons." msgstr "Crea persone." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:717 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:688 msgid "Person plan" msgstr "Itinerario personale" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:717 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:688 msgid "Create person plans." msgstr "Crea itinerari personali." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:720 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:179 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:691 #: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:179 msgid "Container" msgstr "Contenitori" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:720 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:691 msgid "Create containers." msgstr "Crea contenitori." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:723 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:694 msgid "Container plan" msgstr "Itinerario di contenitori" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:723 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:694 msgid "Create container plans." msgstr "Crea itinerari di contenitori." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:758 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:729 msgid "&EdgeData" msgstr "&EdgeData" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:758 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:729 msgid "Create edgeData elements." msgstr "Crea elementi edgeData." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:761 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:732 msgid "Edge&Relation" msgstr "Edge&Relation" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:761 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:732 msgid "Create edgeRelation elements." msgstr "Crea elementi edgeRelation." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:764 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:735 msgid "TA&ZRelation" msgstr "Relazione tra zone di assegnazione di traffico" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:764 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:735 msgid "Create TAZRelation elements." msgstr "Crea relazioni tra zone di assegnazione di traffico." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:767 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:738 msgid "&MeanData" msgstr "&MeanData" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:767 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:738 msgid "Create MeanData edge/lanes." msgstr "Crea archi o corsie MeanData." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:834 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1031 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2316 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2627 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:800 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:997 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2316 @@ -2220,6 +2951,12 @@ msgid "Show grid" msgstr "Mostra griglia" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:839 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1036 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1171 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2324 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2635 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2922 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:805 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1002 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1137 @@ -2229,11 +2966,16 @@ msgid "Hide junction shape" msgstr "Nascondi la forma del incrocio" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:844 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:810 msgid "Draw vehicles spread in lane or in depart position" msgstr "" "Disegna veicoli distributi nella corsia oppure nella posizione di partenza" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:849 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1186 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2340 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2944 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:815 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1152 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2340 @@ -2241,64 +2983,85 @@ msgid "Show demand elements" msgstr "Mostra elementi di domanda" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:854 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:820 msgid "Clicking should target lanes" -msgstr "" +msgstr "Accedi direttamente alle corsie cliccando" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:859 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2355 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:825 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2355 msgid "Show connections over junctions" msgstr "Mostra collegamenti sopra gli incroci" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:864 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2363 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:830 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2363 msgid "Hide connections" msgstr "Nascondi collegamenti" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:869 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:835 msgid "Show sub-additional elements" msgstr "Mostra elementi figli di elementi addizionali" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:874 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2379 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:840 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2379 msgid "Show TAZ elements" msgstr "Mostra zone di assegnazione di traffico" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:879 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:845 msgid "Selecting multiple edges automatically select their junctions" msgstr "" "Selezioni incroci adiacenti automaticamente quando più archi vengono " "selezionati" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:884 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:850 msgid "Clicking should apply state changes to all phases of TLS plan" msgstr "Applica il stato cambiato ad ogni fase del piano semaforico cliccando" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:889 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:855 msgid "Ask for confirmation before merging junction" msgstr "Richiedi conferma prima di combinare degli incroci" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:894 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:860 msgid "Show bubbles over junctions shapes" msgstr "Mostra sfere semaforiche sopra gli incroci" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:899 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:865 msgid "Apply mouse movement to elevation" msgstr "Usa il movimento mouse per cambiare il livello" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:904 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:870 msgid "Create consecutive edges" msgstr "Crea archi consecutivi" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:909 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:875 msgid "Create an edge in the opposite direction" msgstr "Crea un arco nella direziona opposta" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1041 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2643 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1007 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2643 msgid "Draw vehicles spread/depart position" msgstr "Disegna veicoli distribuiti/alla posizione di partenza" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1046 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1181 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2651 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2937 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1012 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1147 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2651 @@ -2306,408 +3069,503 @@ msgid "Show shapes" msgstr "Mostra forme" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1051 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2659 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1017 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2659 msgid "Show all trips" msgstr "Mostra tutte le corse" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1056 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2667 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1022 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2667 msgid "Show all person plans" msgstr "Mostra tutti gli itinerari personali" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1061 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2675 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1027 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2675 msgid "Lock selected person" msgstr "Blocca la persona selezionata" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1066 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1032 msgid "Show all container plans" msgstr "Mostra tutti gli itinerari di contenitori" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1071 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2691 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1037 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2691 msgid "Lock selected container" msgstr "Blocca il contenitore selezionato" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1076 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2699 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1042 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2699 msgid "Show non-inspected demand elements" msgstr "Mostra elementi di domanda non ispezionati" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1081 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2707 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1047 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2707 msgid "Show number of overlapped routes" msgstr "Mostra la quantità di itinerari sovrapposti" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1176 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2930 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1142 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2930 msgid "Show additionals" msgstr "Mostra elementi addizionali" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1191 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1157 msgid "Draw TAZRel from center" msgstr "Disegna relazione origine-destinazione partendo dal centro" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1196 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1162 msgid "Draw TAZ fill" msgstr "Disegna zone di assegnazione del traffico riempite" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1201 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1167 msgid "Only draw TAZRel from" msgstr "Disegna soltanto relazioni origine-destinazione uscente" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1206 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1172 msgid "Only draw TAZRel to" msgstr "Disegna soltanto relazioni origine-destinazione entrante" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1287 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1253 msgid "Undo the last change." msgstr "Annulla l'ultimo cambio." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1290 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1256 msgid "Redo the last change." msgstr "Reimposta l'ultimo cambio." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1293 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1259 msgid "Show undo/redo history" msgstr "Mostra l'elenco di annullamenti e reimpostazioni" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1293 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1259 msgid "Open undo/redo history dialog." msgstr "Apri il dialogo con l'elenco di annullamenti e reimpostazioni." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1314 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1280 msgid "Clear front element" msgstr "Resetta l'elemento di fronte" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1314 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1280 msgid "Clear current front element" msgstr "Resetta l'elemento di fronte" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1323 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1289 msgid "Load additionals in sumo-gui" msgstr "Carica elementi addizionali in sumo-gui" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1323 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1289 msgid "Load additionals in sumo-gui." msgstr "Carica elementi addizionali in sumo-gui." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1327 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1293 msgid "Load demand in sumo-gui" msgstr "Carica domanda in sumo-gui" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1327 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1293 msgid "Load demand in sumo-gui." msgstr "Carica domanda in sumo-gui." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1331 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1297 msgid "Open in sumo-gui" msgstr "Apri in sumo-gui" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1331 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1297 msgid "Opens the sumo-gui application with the current network." msgstr "Apre l'applicazione sumo-gui con la rete attuale." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1358 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1324 msgid "&Lanes" msgstr "&Corsie" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1363 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1329 msgid "&Connections" msgstr "C&ollegamenti" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1368 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1334 msgid "C&rossings" msgstr "Passaggi p&edonali" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1373 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1339 msgid "Walkin&gAreas" msgstr "&WalkingAreas" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1378 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1344 msgid "&Additionals" msgstr "Elementi &addizionali" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1383 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1349 msgid "&TAZs" msgstr "&Zone di assegnazione del traffico" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1388 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1354 msgid "&Wires" msgstr "&Catenarie" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1393 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1359 msgid "&Polygons" msgstr "&Poligoni" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1398 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1364 msgid "P&OIs" msgstr "P&unti di interesse" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1403 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1369 msgid "&Routes" msgstr "%Itinerari" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1418 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1384 msgid "Person&Trips" msgstr "Corse " +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1423 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1389 msgid "&Walks" msgstr "Cammini" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1428 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1394 msgid "Ri&des" msgstr "Passaggi" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1433 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1399 msgid "&Containers" msgstr "&Contenitori" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1438 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1404 msgid "Tra&nsports" msgstr "Trasporti" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1443 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1409 msgid "Trans&hips" msgstr "Trasbordi" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1448 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1414 msgid "Stop&s" msgstr "Fermate" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1453 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1419 msgid "&EdgeDatas" msgstr "&EdgeData" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1458 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1424 msgid "E&dgeRelDatas" -msgstr "" +msgstr "Dati di relazioni tra archi" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1463 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1429 msgid "Edge&TAZRel" -msgstr "" +msgstr "Relazione tra archi e zone di assegnazione del traffico" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1471 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1437 msgid "Lock selected elements" msgstr "Blocca elementi selezionati" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1471 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1437 msgid "selected elements" msgstr "elementi selezionati" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1478 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1444 msgid "Lock all elements" msgstr "Blocca tutti gli elementi" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1478 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1444 msgid "all elements" msgstr "tutti gli elementi" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1482 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1448 msgid "Unlock all elements" msgstr "Sblocca tutti gli elementi" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1818 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1784 msgid "Compute Junctions" msgstr "Compiuta incroci" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1818 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1784 msgid "Compute junction shape and logic." msgstr "Compiuta le forme e le logiche degli incroci." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1821 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1787 msgid "Compute Junctions with volatile options" msgstr "Compiuta incroci con opzioni volatili" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1821 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1787 msgid "Compute junction shape and logic using volatile junctions." msgstr "" "Compiuta le forme e le logiche degli incroci utilizzando opzioni volatili." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1824 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1790 msgid "Clean Junctions" msgstr "Ordinare incroci" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1824 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1790 msgid "Remove solitary junctions." msgstr "Rimuove incroci isolati." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1827 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1793 msgid "Join Selected Junctions" msgstr "Combini incroci selezionati" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1827 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1793 msgid "Join selected junctions into a single junction." msgstr "Combina gli incroci selezionati per farne un'incrocio commune." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1830 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1796 msgid "Clean invalid crossings" msgstr "Rimuovi passaggi pedonali invalidi" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1830 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1796 msgid "Clear invalid crossings." msgstr "Rimuove passaggi pedonali invalidi." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1836 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1802 msgid "Recompute Network in Data Mode" msgstr "Ricompiuta rete in modo Data" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1842 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1808 msgid "Compute demand" msgstr "Compiuta domanda" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1842 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1808 msgid "Computes demand elements." msgstr "Compiuta elementi di domanda." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1845 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1811 msgid "Clean routes" msgstr "Ordina itinerari" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1845 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1811 msgid "Removes routes without vehicles." msgstr "Rimuove itinerari senza veicoli associati con essi." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1848 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1814 msgid "Join routes" msgstr "Combina itinerari" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1848 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1814 msgid "Joins routes with the same edges." msgstr "Combina itinerari che passano per gli stessi archi." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1851 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1817 msgid "Adjust person plans" msgstr "Modifica itinerari personali" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1851 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1817 msgid "Adjust person plans (start/end positions, arrival positions, etc.)" msgstr "Modifica itinerari personali (posizioni di partenza/arrivo etc.)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1854 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1820 msgid "Clean invalid route elements" msgstr "Rimuovi itinerari invalidi" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1854 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1820 msgid "Clear elements with an invalid path (routes, Trips, Flows...)." msgstr "Rimuove elementi che contengono un itinerario invalido." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1860 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1826 msgid "Configure sumo Options." msgstr "Configura opzioni sumo." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1866 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:312 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:61 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1832 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:53 msgid "Options" msgstr "Opzioni" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1866 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1832 msgid "Configure netedit Options." msgstr "Configura opzioni netedit." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1979 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1945 msgid "Open a dialog for locating a Junction." msgstr "Apre un dialogo per localizzare un incrocio." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1982 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1948 msgid "Open a dialog for locating an Edge." msgstr "Apre un dialogo per localizzare un arco." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1985 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1951 msgid "&WalkingAreas" msgstr "&WalkingArea" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1985 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1951 msgid "Open a dialog for locating a Walking Area." msgstr "Apre un dialogo per localizzare un elemento WalkingArea." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1988 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1954 msgid "Open a dialog for locating a Vehicle." msgstr "Apre un dialogo per localizzare un veicolo." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1991 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1957 msgid "Open a dialog for locating a Person." msgstr "Apre un dialogo per localizzare una persona." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1994 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1960 msgid "&Route" msgstr "&Itinerario" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1994 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1960 msgid "Open a dialog for locating a Route." msgstr "Apre un dialogo per localizzare un'itinerario." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1997 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1963 msgid "&Stops" msgstr "&Fermate" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1997 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1963 msgid "Open a dialog for locating a Stop." msgstr "Apre un dialogo per localizzare una fermata." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2000 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1966 msgid "Open a dialog for locating a Traffic Light." msgstr "Apre un dialogo per localizzare un semaforo." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2003 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1969 msgid "Open a dialog for locating an Additional Structure." msgstr "Apre un dialogo per localizzare una struttura addizionale." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2006 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1972 msgid "Open a dialog for locating a Point of Interest." msgstr "Apre un dialogo per localizzare un punto di interesse." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2009 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1975 msgid "Open a dialog for locating a Polygon." msgstr "Apre un dialogo per localizzare un poligono." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2126 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2092 msgid "Toggle this Status Bar on/off." msgstr "Mostre/nasconde la barra di stato." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2133 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2099 msgid "Clear the Message Window." msgstr "Svuota la finestra di messaggi." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2158 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2124 msgid "Open feedback channels." msgstr "Va ai canali feedback." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2161 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2127 msgid "About netedit." msgstr "Su netedit." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2163 -msgid "&Network" -msgstr "&Rete" - +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2197 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2163 msgid "Select network mode." msgstr "Va al modo rete." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2166 -msgid "&Demand" -msgstr "&Domanda" - +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2200 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2166 msgid "Select demand mode." msgstr "Va al modo di domanda." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2169 -msgid "&Data" -msgstr "&Dati" - +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2203 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2169 msgid "Select data mode." msgstr "Va al modo dati." +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2238 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2242 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2201 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2205 msgid "Could not load SUMO configuration '" msgstr "Non ho potuto caricare la configurazione sumo '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2289 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2293 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2250 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2254 #: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:145 @@ -2715,10 +3573,31 @@ msgid "Could not load netedit configuration '" msgstr "non ho potuto caricare la configurazione netedit '" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2739 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2700 msgid "Save file as" -msgstr "" +msgstr "Salva file con nome" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2740 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2744 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2760 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2770 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2778 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2841 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2846 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2857 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2862 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2873 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2878 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2889 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2894 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2905 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2910 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2921 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2926 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2936 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2940 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2701 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2705 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2721 @@ -2741,6 +3620,31 @@ msgid "XML files (*.xml)" msgstr "File XML (*.xml)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2741 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2761 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2771 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2779 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2788 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2796 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2812 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2817 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2827 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2831 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2842 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2847 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2858 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2863 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2874 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2879 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2890 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2895 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2906 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2911 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2922 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2927 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2937 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2941 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2702 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2706 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2722 @@ -2768,22 +3672,27 @@ msgid "All files (*)" msgstr "Tutti i file (*)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2743 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2704 msgid "Open file" -msgstr "" +msgstr "Apri file" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2753 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2714 msgid "Save Network file as" msgstr "Salva file rete con nome" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2754 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2715 msgid "SUMO Network files (*.net.xml)" msgstr "File di reti sumo (*.net.xml)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2755 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2716 msgid "SUMO Network files zipped (*.net.xml.gz)" msgstr "File/archivio di reti sumo (*.net.xml.gz)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2756 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2717 msgid "" "XML files (*.xml)\n" @@ -2792,175 +3701,227 @@ "File XML (*.xml\n" ")Tutti i file" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2758 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2719 msgid "Open Network file" msgstr "Apri file rete" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2759 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2720 msgid "SUMO Network files (*.net.xml,*.net.xml.gz)" msgstr "File di rete sumo (*.net.xml,*.net.xml.gz)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2768 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2729 msgid "Open NetConvert file" msgstr "Apri file netconvert" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2769 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2730 msgid "Netconvert files (*.netccfg)" msgstr "File netconvert (*.netccfg)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2777 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2738 msgid "Save plain XML as" msgstr "Salva Plain XML con come" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2785 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2744 msgid "Save joined Junctions as" msgstr "Salva incroci combinati con come" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2786 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2745 msgid "Junction files (*.nod.xml)" msgstr "File di nodi (*.nod.xml)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2794 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2753 msgid "Save tool log" -msgstr "" +msgstr "Salva protocollo dell'utensile" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2795 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2754 msgid "Text file (*.txt)" -msgstr "" +msgstr "File di testo (*.txt)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2802 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2761 msgid "Open OSM file" msgstr "Apri file OSM" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2803 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2762 msgid "OSM net (*.osm.xml,*.osm)" msgstr "Rete OSM (*.osm.xml,*.osm)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2810 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2769 msgid "Save netedit Config file as" msgstr "Salva configurazione netedit con nome" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2770 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2774 -msgid "Netedit Config files (*.neteditcfg)" -msgstr "File configurazione netedit (*.neteditcfg)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2811 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2815 +msgid "Netedit Config files (*.netecfg)" +msgstr "" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2814 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2773 msgid "Open netedit Config file" msgstr "Apri configurazione netedit" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2816 +#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2770 +#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2774 +msgid "Netedit Config files (*.neteditcfg)" +msgstr "File configurazione netedit (*.neteditcfg)" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2825 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2783 msgid "Save SUMO Config file as" msgstr "Salva configurazione sumo con nome" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2826 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2830 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2784 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2788 msgid "SUMO Config files (*.sumocfg)" msgstr "File configurazione sumo (*.sumocfg)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2829 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2787 msgid "Open SUMO Config file" msgstr "Apri configurazione sumo" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2839 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2797 msgid "Save TLS file as" msgstr "Salva piani semaforici con nome" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2840 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2845 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2798 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2803 msgid "TLS files (*.tll.xml)" msgstr "Piani semaforici (*.tll.xml)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2844 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2802 msgid "Open TLS file" msgstr "Apri piano semaforico" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2855 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2813 msgid "Save EdgeType file as" msgstr "Salva file per tipi di arco con nome" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2856 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2814 msgid "EdgeType files (*.tll.xml)" msgstr "File tipi di arco (*.tll.xml)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2860 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2818 msgid "Open EdgeType file" msgstr "Apri tipi di arco" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2861 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2819 msgid "EdgeType files (*.typ.xml)" msgstr "File tipi di arco (*.typ.xml)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2871 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2829 msgid "Save Additionals file as" msgstr "Salva file per elementi addizionali con nome" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2872 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2877 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2830 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2835 msgid "Additional files (*.add.xml)" msgstr "File per elementi addizionali (*.add.xml)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2876 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2834 msgid "Open Additionals file" msgstr "Apri file per elementi addizionali" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2887 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2845 msgid "Save Route file as" msgstr "Salva file di itinerari con nome" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2888 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2893 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2846 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2851 msgid "Route files (*.rou.xml)" msgstr "File per itinerari (*.rou.xml)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2892 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2850 msgid "Open Route file" msgstr "Apri file per itinerari" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2903 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2861 msgid "Save Data file as" msgstr "Salva file dati con nome" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2904 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2909 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2862 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2867 msgid "Data files (*.dat.xml)" msgstr "File dati (*.dat.xml)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2908 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2866 msgid "Open Data file" msgstr "Apri file dati" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2919 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2877 msgid "Save MeanData file as" msgstr "Salva file meanData con nome" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2920 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2925 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2878 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2883 msgid "Meandata files (*.add.xml)" msgstr "File meanData (*.add.xml)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2924 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2882 msgid "Open MeanData file" msgstr "Apri file meanData" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2935 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2893 msgid "Save options file as" -msgstr "" +msgstr "Salva opzioni con nome" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2939 #: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2897 msgid "Open options file" -msgstr "" +msgstr "Apri file di opzioni" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:100 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:95 #, c-format msgid "Loading of sumo config file '%' failed." msgstr "Il caricamento del file di configurazione sumo '%' è fallito." +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:113 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:108 #, c-format msgid "Loading of netedit config file '%' failed." msgstr "Il caricamento del file di configurazione netedit '%' è fallito." +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:122 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:117 msgid "" "Invalid input network option. Load with either sumo/netedit/netconvert " @@ -2969,252 +3930,311 @@ "Opzione ingresso rete invalida. Procedi con configurazione sumo/netedit/" "netconvertoppure con l'opzione -new." +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:136 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:130 msgid "Invalid Options. Nothing loaded" msgstr "Opzioni invalide. Niente è stato caricato" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:150 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:144 msgid "Could not build projection!" msgstr "Non ho potuto eseguire la proiezione!" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:178 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:172 msgid "Performing initial computation ..." msgstr "Sto eseguendo la computazione iniziale..." +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:212 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:206 msgid "Failed to build network." msgstr "Non è stato possibile costruire la rete." +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:257 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:251 msgid "Start plain GUI with empty net" msgstr "Avvia l'interfaccia grafica con una rete vuota" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:258 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:252 msgid "Open a SUMO network" msgstr "Apri una rete sumo" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:259 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:253 msgid "Open a configuration file (netedit or netconvert config)" -msgstr "" +msgstr "Apri un file di configurazione (netedit o netconvert)" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:260 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:254 msgid "Open a SUMO config file" msgstr "Apri un file di configurazione sumo" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:285 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:279 msgid "Load sumo config" msgstr "Carica configurazione sumo" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:289 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:283 msgid "Load additional and shapes descriptions from FILE(s)" msgstr "Carica elementi addizionali e forme da FILE(s)" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:293 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:287 msgid "Load demand elements descriptions from FILE(s)" msgstr "Carica elementi di domanda da FILE(s)" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:297 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:291 msgid "Load data elements descriptions from FILE(s)" msgstr "Carica elementi dati da FILE(s)" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:301 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:295 msgid "Load meanData descriptions from FILE(s)" msgstr "Carica meanData da FILE(s)" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:306 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:300 msgid "File in which TLS Programs must be saved" msgstr "File nel quale i piani semaforici deveno essere salvati" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:309 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:303 msgid "File in which edgeTypes must be saved" msgstr "File nel quale i tipi di arco devono essere salvati" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:315 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:309 msgid "Start netedit with a new network" msgstr "Avvia netedit con una rete vuota" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:318 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:312 msgid "Write attribute help to file" -msgstr "" +msgstr "Aggiungi esplicazione dell'attributo nel file" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:323 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:317 msgid "Prefix for node naming" msgstr "Prefisso per la denominazione dei nodi" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:326 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:320 msgid "Prefix for edge naming" msgstr "Prefisso per la denominazione degli archi" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:329 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:323 msgid "Enable edge-infix ()" msgstr "Attiva infisso per archi ()" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:334 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:328 msgid "Prefix for busStop naming" msgstr "Prefisso per la denominazione di fermate degli autobus (busStop)" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:337 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:331 msgid "Prefix for trainStop naming" msgstr "Prefisso per la denominazione di fermate dei treni (trainStop)" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:340 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:334 msgid "Prefix for containerStop naming" msgstr "" "Prefisso per la denominazione di fermate per contenitori (containerStop)" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:343 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:337 msgid "Prefix for chargingStation naming" msgstr "" "Prefisso per la denominazione di stazioni di ricarica (chargingStation)" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:346 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:340 msgid "Prefix for parkingArea naming" msgstr "Prefisso per la denominazione di parcheggi (parkingArea)" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:349 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:343 msgid "Prefix for e1Detector naming" msgstr "Prefisso per la denominazione di rivelatori e1Detector" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:352 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:346 msgid "Prefix for e2Detector naming" msgstr "Prefisso per la denominazione di rivelatori e2Detector" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:355 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:349 msgid "Prefix for e3Detector naming" msgstr "Prefisso per la denominazione di rivelatori e3Detector" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:358 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:352 msgid "Prefix for e1InstantDetector naming" msgstr "Prefisso per la denominazione di rivelatori e1InstantDetector" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:361 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:355 msgid "Prefix for rerouter naming" msgstr "Prefisso per la denominazione di elementi rerouter" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:364 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:358 msgid "Prefix for calibrator naming" msgstr "Prefisso per la denominazione di elementi calibrator" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:367 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:361 msgid "Prefix for routeProbe naming" msgstr "Prefisso per la denominazione di elementi routeProbe" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:370 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:364 msgid "Prefix for variable speed sign naming" msgstr "Prefisso per la denominazione di limitazioni della velocità dinamiche" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:373 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:367 msgid "prefix for traction substation naming" msgstr "Prefisso per la denominazione di sottostazioni elettriche" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:376 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:370 msgid "Prefix for overhead wire naming" msgstr "Prefisso per la denominazione di catenarie" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:379 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:373 msgid "Prefix for polygon naming" msgstr "Prefisso per la denominazione di poligoni" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:382 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:376 msgid "Prefix for poi naming" msgstr "Prefisso per la denominazione di punti di interesse" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:387 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:381 msgid "Prefix for route naming" msgstr "Prefisso per la denominazione di itinerari (route)" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:390 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:384 msgid "Prefix for vType naming" msgstr "Prefisso per la denominazione di tipi veicolari (vType)" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:393 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:387 msgid "Prefix for vehicle naming" msgstr "Prefisso per la denominazione di veicoli" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:396 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:390 msgid "Prefix for trip naming" msgstr "Prefisso per la denominazione di corse (trip)" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:399 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:393 msgid "Prefix for flow naming" msgstr "Prefisso per la denominazione di flussi (flow)" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:402 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:396 msgid "Prefix for person naming" msgstr "Prefisso per la denominazione di persone" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:405 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:399 msgid "Prefix for personFlow naming" msgstr "Prefisso per la denominazione di flussi di persone (personFlow)" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:408 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:402 msgid "Prefix for container naming" msgstr "Prefisso per la denominazione di contenitori" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:411 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:405 msgid "Prefix for containerFlow naming" msgstr "Prefisso per la denominazione di flussi di contenitori (containerFlow)" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:418 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:412 msgid "Prefix for meanDataEdge naming" msgstr "Prefisso per la denominazione di elementi meanDataEdge" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:421 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:415 msgid "Prefix for meanDataLane naming" msgstr "Prefisso per la denominazione di elementi meanDataLane" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:428 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:422 msgid "Disable icons of special lanes" msgstr "Disattiva icone delle corsie speciali" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:431 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:425 msgid "Disable textures" msgstr "Disattiva texture" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:434 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:428 msgid "Load visualisation settings from FILE" msgstr "Carica configurazione di visualizzazione da FILE" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:439 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:433 msgid "Load current viewport from registry" msgstr "Carica veduta attuale da registry" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:442 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:436 msgid "Create initial window with the given x,y size" msgstr "" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:445 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:439 msgid "Create initial window at the given x,y position" msgstr "" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:450 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:444 msgid "Enable overlay for screen recognition" msgstr "" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:453 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:447 msgid "Enable output messages during GUI-Testing" msgstr "" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:456 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:450 msgid "Enable output messages during GUI-Testing specific of gl functions" msgstr "" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:459 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:453 msgid "Save gui settings in the given settings-output file" msgstr "Salva configurazione di visualizzazione nel file indicato" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:466 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:460 msgid "Defines the begin time in seconds; The simulation starts at this time" msgstr "" -"Definisce il periodo iniziale in secondi; La simulazione inizia al periodo " -"indicato" +"Definisce l'ora iniziale in secondi; La simulazione inizia all'ora indicata" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:469 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:463 msgid "Defines the end time in seconds; The simulation ends at this time" msgstr "" -"Definisce il periodo finale in secondi; La simulazione termina al periodo " -"indicato" +"Definisce l'ora finale in secondi; La simulazione termina alL'ora indicata" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:472 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:466 msgid "" "Length of the default interval length between action points for the car-" @@ -3229,6 +4249,7 @@ "(vType) o veicoli singoli. Deve essere multiplo della durata del passo di " "simulazione." +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:475 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:469 msgid "" "Select default speed deviation. A negative value implies vClass specific " @@ -3238,34 +4259,47 @@ "vengono usati valori standard differenziati per ogni classe di veicoli (0.1 " "per la classe passenger)" +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:514 #: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:508 msgid "Failed to reset options." msgstr "Il processo di resettare le opzioni è fallito." +#: D:\Repos\sumo/src\netedit\GNENet.cpp:370 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:370 msgid "delete junction" msgstr "rimuovi incrocio" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:412 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:412 msgid "delete edge" msgstr "rimuovi arco" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:491 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:491 msgid "replace edge" msgstr "sostituisci arco" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:553 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:553 msgid "delete lane" msgstr "rimuovi corsia" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:588 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:588 msgid "delete connection" msgstr "rimuovi collegamento" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:603 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:603 msgid "delete crossing" msgstr "rimuovi passaggio pedonale" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:621 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:650 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:672 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:685 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:698 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:728 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:621 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:650 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:672 @@ -3275,83 +4309,104 @@ msgid "delete " msgstr "rimuovi " +#: D:\Repos\sumo/src\netedit\GNENet.cpp:644 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:644 msgid "Trying to delete a default Vehicle Type" msgstr "Cerco di rimuovere un tipo di veicoli standard" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:737 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2690 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:737 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2685 msgid "duplicate lane" msgstr "duplica corsia" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:856 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:856 msgid "split edge" msgstr "taglia arco" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:973 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:973 msgid "split edges" msgstr "taglia archi" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:995 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:995 msgid "reverse edge" msgstr "rivolta arco" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1012 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1008 msgid "add reversed edge" msgstr "aggiungi arco rivoltato" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1046 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1043 msgid "merge junctions" msgstr "combina incroci" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1082 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1079 msgid "select roundabout" msgstr "seleziona rotatoria" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1098 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1095 msgid "create roundabout" msgstr "crea rotatoria" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1276 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1273 msgid "Forced computing junctions with volatile options ..." msgstr "Computazione forzata degli incroci con opzioni volatili..." +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1278 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1275 msgid "Forced computing junctions ..." msgstr "Computazione forzata degli incroci ..." +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1285 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1282 msgid "Computing junctions with volatile options ..." msgstr "Computazione degli incroci con opzioni volatili ..." +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1287 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1284 msgid "Computing junctions ..." msgstr "Sto computando gli incroci ..." +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1350 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1347 msgid "Finished computing junctions." msgstr "Finito di computare gli incroci." +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1356 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1353 msgid "Computing demand elements ..." msgstr "Sto computando gli elementi di domanda ..." +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1370 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1367 msgid "Finished computing demand elements." msgstr "Finito di computare gli elementi di domanda." +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1376 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1373 msgid "Computing data elements ..." msgstr "Sto computando gli elementi di dati ..." +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1383 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1380 msgid "Finished computing data elements." msgstr "Finito di computare gli elementi di dati." +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1462 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1459 msgid "Position of joined junction" msgstr "Posizione del incrocio combinato" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1463 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1460 msgid "" "There is another unselected junction in the same position of joined junction." @@ -3359,400 +4414,504 @@ "C'è un'altro incrocio non selezionato alla stessa posizione di quello " "combinato." +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1464 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1461 msgid "It will be joined with the other selected junctions. Continue?" msgstr "Sarà combinato con gli altri incroci selezionati. Confermi?" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1585 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1595 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1582 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1592 msgid "Clear crossings" msgstr "Rimuovi passaggi pedonali" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1586 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1583 msgid "There are no invalid crossings to remove." msgstr "Non ci sono passaggi pedonali invalidi da rimuovere." +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1596 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1593 msgid "Crossings will be cleared. Continue?" msgstr "I passaggi pedonali saranno rimossi. Confermi?" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1607 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1604 msgid "clear crossings" msgstr "rimuovi passaggi pedonali" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1620 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1617 msgid "clear junctions" msgstr "rimuovi incroci" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1649 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1646 msgid "clear unused routes" msgstr "rimuovi itinerari inutilizzati" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1704 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1701 msgid "merge routes" msgstr "combina itinerari" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1758 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1755 msgid "adjust person plans" msgstr "modifica piani personali" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1798 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1795 msgid "remove invalid demand elements" msgstr "rimuovi elementi di dato invalidi" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1813 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1810 msgid "replace junction by geometry" msgstr "sostituisci incrocio con nodo geometrico" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1858 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1855 msgid "Junction isn't removable" msgstr "l'incrocio non può essere rimosso" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1870 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1867 msgid "split junction" msgstr "separa incrocio" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1910 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1907 msgid "Could not rename split node to '%'" msgstr "Non ho potuto cambiare il nome del nodo separato a '%'" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1949 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1946 msgid "clear junction connections" msgstr "rimuovi collegamenti" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1961 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1958 msgid "reset junction connections" msgstr "resetta collegamenti" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1972 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1969 msgid "clear additional elements" msgstr "rimuovi elementi addizionali" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1985 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1982 msgid "clear demand elements" msgstr "rimuovi elementi di domanda" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1998 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1995 msgid "clear data elements" msgstr "rimuovi elementi di dati" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2009 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2006 msgid "clear meanData elements" msgstr "rimuovi elementi meanData" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2331 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2413 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2326 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2403 msgid "Duplicated ID" msgstr "ID duplicata" +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2689 #: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2689 msgid "Network size exceeds 1 Lightyear. Please reconsider your inputs." msgstr "La rete è più larga di un anno luce. Riconsidera gli dati di ingresso." +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:1468 #: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:1461 msgid "Default vType doesn't exist" -msgstr "" +msgstr "Il tipo di veicoli (vType) standard non è presente" +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2486 #: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2478 msgid "Invalid meanData pointer" msgstr "" +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2747 #: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2739 msgid "Redo replace in TLS" msgstr "" +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2753 #: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2745 msgid "Undo replace in TLS" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:334 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:332 msgid "Locate a junction within the network. (Shift+J)" msgstr "Localizza un'incrocio nella rete. (Shift+J)" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:338 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:336 msgid "Locate an edge within the network. (Shift+E)" msgstr "Localizza un'arco nella rete. (Shift+E)" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:342 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:340 msgid "Locate WalkingAreas" msgstr "Localizza WalkingArea" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:342 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:340 msgid "Locate a walkingArea within the network. (Shift+W)" msgstr "Localizza un elemento WalkingArea nella rete. (Shift+W)" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:346 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:344 msgid "Locate a vehicle within the network. (Shift+V)" msgstr "Localizza un veicolo nella rete. (Shift+V)" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:350 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:348 msgid "Locate a person within the network. (Shift+P)" msgstr "Localizza una persona nella rete. (Shift+P)" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:354 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:352 msgid "Locate Route" msgstr "Localizza itinerari" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:354 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:352 msgid "Locate a route within the network. (Shift+R)" msgstr "Localizza un'itinerario nella rete. (Shift+R)" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:358 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:356 msgid "Locate Stops" msgstr "Localizza fermate" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:358 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:356 msgid "Locate a stop within the network. (Shift+S)" msgstr "Localizza una fermata nella rete. (Shift+S)" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:369 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:367 msgid "Locate a tls within the network. (Shift+T)" msgstr "Localizza un semaforo nella rete. (Shift+T)" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:373 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:371 msgid "Locate an additional structure within the network. (Shift+A)" msgstr "Localizza una struttura addizionale nella rete. (Shift+A)" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:377 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:375 msgid "Locate a PoI within the network. (Shift+O)" msgstr "Localizza un punto di interesse nella rete. (Shift+O)" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:381 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:379 msgid "Locate a Polygon within the network. (Shift+L)" msgstr "Localizza un poligono nella rete. (Shift+L)" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:455 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:453 msgid "Remove from Selected" msgstr "Deselezioni" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:457 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:455 msgid "Add to Selected" msgstr "Selezioni" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:614 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:612 msgid "GUI-Settings cannot be saved in " msgstr "La configurazione della visualizzazione non può essere salvata in " +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:807 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:805 msgid "Confirm Junction Merger" msgstr "Confermi combinamento degli incroci" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:808 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:806 msgid "Do you wish to merge junctions '" msgstr "Vuoi combinare gli incroci '" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:809 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:807 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 #: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:205 msgid "' and '" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:810 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:808 msgid "' will be eliminated and its roads added to '" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:838 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:836 msgid " requires switch to network mode. Continue?" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:840 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:838 msgid " requires switch to demand mode. Continue?" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:842 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:840 msgid " requires switch to data mode. Continue?" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:847 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:845 msgid "Confirm switch mode" msgstr "Confermi cambio modo" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1425 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1423 msgid "Cannot delete in this mode" msgstr "Non è possibile rimuovere elementi in questo modo" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1428 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1426 msgid "delete network inspected elements" msgstr "rimuovi elementi di rete ispezionati" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1436 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1434 msgid "delete network selection" msgstr "rimuovi selezione di elementi di rete" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1444 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1442 msgid "delete demand inspected elements" msgstr "rimuovi elementi di domanda ispezionati" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1452 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1450 msgid "delete demand selection" msgstr "rimuovi domande selezionati" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1460 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1458 msgid "delete data inspected elements" msgstr "rimuovi elementi di dati ispezionati" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1468 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1466 msgid "delete data selection" msgstr "rimuovi elementi di dati selezionati" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2106 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2101 msgid "Reverse selected edges" msgstr "Rivolta archi selezionati" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2113 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2108 msgid "Reverse edge" msgstr "Rivolta arco" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2127 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2122 msgid "Add Reverse edge for selected edges" msgstr "Aggiungi arco rivoltato per ogni arco selezionato" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2134 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2129 msgid "Add reverse edge" msgstr "Aggiungi arco rivoltato" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2148 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2143 msgid "Add Reverse disconnected edge for selected edges" msgstr "Aggiungi arco rivoltato sconnesso per ogni arco selezionato" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2155 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2150 msgid "Add reverse disconnected edge" msgstr "Aggiungi arco rivoltato sconnesso" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2184 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2179 msgid "reset geometry points" msgstr "resetta nodi geometrici" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2205 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2200 msgid "straighten selected edges" msgstr "rettifica archi selezionati" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2213 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2208 msgid "straighten edge" msgstr "rettifica arco" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2227 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2222 msgid "smooth selected edges" -msgstr "" +msgstr "appiana gli archi selezionati" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2234 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2229 msgid "smooth edge" -msgstr "" +msgstr "appiana arco" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2248 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2243 msgid "straighten elevation of selected edges" msgstr "rettifica il livello degli archi selezionati" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2255 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2250 msgid "straighten edge elevation" msgstr "rettifica il livello dell'arco" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2269 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2264 msgid "smooth elevation of selected edges" msgstr "appiana il livello degli archi selezionati" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2276 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2271 msgid "smooth edge elevation" msgstr "appiana il livello dell'arco" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2290 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2285 msgid "reset edge lengths" msgstr "resetta la lunghezza dell'arco" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2319 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2314 msgid "copy edge template" msgstr "copia il modello arco" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2340 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2335 msgid "simplify shapes" msgstr "semplifica forme" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2382 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2377 msgid "close polygon shapes" msgstr "chiudi forme dei poligoni" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2413 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2408 msgid "open polygon shapes" msgstr "apri forme dei poligoni" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2462 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2457 msgid "select within polygon boundary" msgstr "seleziona nell'area delimitata dal poligono" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2507 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2502 #, c-format msgid "No lanes around % to attach it" msgstr "Nessuna corsia vicino % per attaccarlo" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2530 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2525 msgid "attach POI into lane" msgstr "attacca punto di interesse alla corsia" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2543 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2538 msgid "release POI from lane" msgstr "stacca punto di interesse dalla corsia" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2577 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2572 msgid "change edge Geometry Point position" msgstr "sposta un punto geometrico di un'arco" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2609 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2604 msgid "change polygon Geometry Point position" msgstr "sposta un punto geometrico di un poligono" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2629 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2624 msgid "change TAZ Geometry Point position" msgstr "sposta un punto geometrico di una zona di assegnazione di traffico" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2653 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2648 msgid "reset end points of selected edges" msgstr "resetta gli punti finali degli archi selezionati" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2664 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2659 msgid "reset end points of edge '" msgstr "resetta punti finali dell'arco '" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2683 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2678 msgid "duplicate selected lanes" msgstr "duplifica archi selezionati" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2720 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2715 msgid "reset custom lane shapes" msgstr "resetta forme di corsie personalizzate" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2727 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2722 msgid "reset custom lane shape" msgstr "resetta forma di corsia personalizzata" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2743 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2738 msgid "reset opposite lanes" msgstr "resetta corsie opposte" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2750 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2745 msgid "reset opposite lane" msgstr "resetta corsia opposta" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2804 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2799 msgid "select lane reachability" msgstr "seleziona corsie accessibili" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2846 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2841 msgid "Multiple lane in the same edge selected" msgstr "Più corsie dello stesso arco sono selezionati" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2847 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2842 msgid "There are selected lanes that belong to the same edge." msgstr "Ci sono corsie selezionati che appartengono allo stesso arco." +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2848 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2843 msgid "Only one lane per edge will be restricted for " msgstr "Una corsia sola per ogni arco sarà limitata al uso di " +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2863 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2871 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2858 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2866 msgid "Set vclass for " msgstr "Specifica classe di veicoli per " +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2864 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2872 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2945 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2953 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2859 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2867 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2940 @@ -3760,72 +4919,96 @@ msgid " to selected lanes" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2865 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2946 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2860 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2941 msgid "" "All lanes own already another lane in the same edge with a restriction for " msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2873 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2868 msgid " lanes will be restricted for " msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2874 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2869 msgid ". Continue?" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2901 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2896 msgid "restrict lane to " msgstr "limita corsia al uso di " +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2944 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2952 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2939 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2947 msgid "Add vclass for " msgstr "Aggiungi classe di veicoli per " +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2954 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3049 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2949 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3044 msgid " restrictions for " msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2955 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2950 msgid " will be added. Continue?" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2972 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2967 msgid "add restrictions for " msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2982 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2977 msgid "add vclass for " msgstr "Aggiungi classe di veicoli per " +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3039 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3047 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3077 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3034 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3042 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3072 msgid "Remove vclass for " msgstr "Rimuovi classe di veicoli per " +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3040 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3035 msgid " from selected lanes" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3041 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3036 msgid "Selected lanes and edges haven't a restriction for " msgstr "Le corsie selezionate non proibiscono " +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3048 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3043 msgid " in selected lanes" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3050 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3045 msgid " will be removed. Continue?" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3219 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3214 msgid "reset edge endpoints" msgstr "resetta punti finali dell'arco" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3264 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3531 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3566 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3589 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3259 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3526 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3561 @@ -3833,184 +5016,233 @@ msgid "Grid is still active, press ctrl+g to deactivate" msgstr "La griglia è tutt'ora attivata - premi Ctrl+g per disattivarla" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3283 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3278 msgid "reset custom junction shapes" msgstr "resetta forme personalizzate degli incroci" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3290 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3285 msgid "reset custom junction shape" msgstr "resetta forma personalizzata del incrocio" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3401 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3396 msgid "clear connections of selected junctions" msgstr "rimuovi collegamenti degli incroci selezionati" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3433 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3428 msgid "reset connections of selected junctions" msgstr "resetta collegamenti degli incroci selezionati" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3457 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3484 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3452 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3479 msgid "add TLS in multiple junctions" msgstr "aggiungi semaforo in più incroci" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:5579 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:5564 msgid "Shift + click to create two additionals in the same position" msgstr "" "Shift + clic per creare due strutture addizionali nella medesima posizione" +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:5828 #: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:5813 msgid "Control + click to create two stop in the same position" msgstr "Control + clic per creare due fermate nella medesima posizione" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1467 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1488 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1467 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1488 msgid "moving selection" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1668 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1668 msgid "Selection width:" msgstr "Lunghezza della selezione:" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1669 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1669 msgid " height:" msgstr " larghezza:" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1670 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1670 msgid " diagonal:" msgstr " diagonale:" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1834 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1834 msgid "selection using rectangle" msgstr "selezione attraverso un rettangolo" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1868 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1868 #, c-format msgid "Invalid windows size-format: %for option 'window-size'" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1946 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1946 msgid "Save NETEDITConfig" msgstr "Salva configurazione netedit" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1946 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1946 msgid "Save NETEDITConfig. (Ctrl+Shift+E)" msgstr "Salva configurazione netedit. (Ctrl+Shift+E)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1952 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1952 msgid "Save SumoConfig" msgstr "Salva configurazione sumo" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1952 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1952 msgid "Save SumoConfig. (Ctrl+Shift+S)" msgstr "Salva configurazione sumo. (Ctrl+Shift+S)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1958 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1958 msgid "Save network" msgstr "Salva rete" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1958 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1958 msgid "Save network. (Ctrl+S)" msgstr "Salva rete (Ctrl+S)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1966 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1966 msgid "Save individual files" msgstr "Salva file individuali" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1966 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1966 msgid "Save individual files." msgstr "Salva file individuali" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1972 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1972 msgid "Save additional elements" msgstr "Salva elementi addizionali" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1972 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1972 msgid "Save additional elements. (Ctrl+Shift+A)" msgstr "Salva elementi addizionali. (Ctrl+Shift+A)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1978 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1978 msgid "Save demand elements" msgstr "Salva elementi di domanda" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1978 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1978 msgid "Save demand elements. (Ctrl+Shift+D)" msgstr "Salva elementi di domanda. (Ctrl+Shift+D)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1984 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1984 msgid "Save data elements" msgstr "Salva elementi di dati" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1984 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1984 msgid "Save data elements. (Ctrl+Shift+B)" msgstr "Salva elementi di dati. (Ctrl+Shift+B)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1990 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1990 msgid "Save mean data elements" msgstr "Salva elementi meanData" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1990 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1990 msgid "Save mean data elements. (Ctrl+Shift+M)" msgstr "Salva elementi meanData. (Ctrl+Shift+M)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 msgid "Network" msgstr "Rete" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 msgid "Edit network elements" msgstr "Modifca elementi di rete" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 msgid "Set mode for edit network elements. (F2)" msgstr "Sceglie il modo per modificare elementi di rete. (F2)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2069 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2067 msgid "Demand" msgstr "Domanda" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 msgid "Edit traffic demand elements" msgstr "Modifica elementi di domanda di traffico" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 msgid "Set mode for edit traffic demand. (F3)" msgstr "Sceglie il modo per modificare la domanda di traffico. (F3)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2213 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2211 msgid "Data" msgstr "Dati" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 msgid "Edit data elements" msgstr "Modifica elementi di dati" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 msgid "Set mode for edit data demand. (F4)" msgstr "Sceglie il modo per modificare elementi di dati. (F4)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2065 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2065 msgid "Mode already selected" msgstr "Modo già scelto" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2150 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2150 msgid "Network mode already selected" msgstr "Modo rete già scelto" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2155 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2155 msgid "Save modifications in TLS before change mode" msgstr "Salva modificazioni dei semafori prima di cambiare modo" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2200 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2200 msgid "Demand mode already selected" msgstr "Modo domanda già scelto" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2235 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2235 msgid "Data mode already selected" msgstr "Modo dati già scelto" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2316 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2627 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2316 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2627 msgid "" @@ -4020,32 +5252,42 @@ "Mostra la griglia e limita spostamenti ad essa - specifica la taglia della " "griglia nella configurazione della visualizzazione. (Ctrl+G)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2324 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2635 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2922 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2324 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2635 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2922 msgid "Toggle hiding junction shape. (Ctrl+J)" msgstr "Mostra/nascone le forme degli incroci. (Ctrl+J)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2332 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2332 msgid "Draw vehicles spread in lane or depart position" msgstr "" "Disegna veicoli distribuiti lungo la corsia oppure nel punto di partenza" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2332 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2643 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2332 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2643 msgid "Draw vehicles spread in lane or in depart position." msgstr "" "Disegna veicoli distribuiti lungo la corsia oppure nel punto di partenza." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2340 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2944 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2340 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2944 msgid "Toggle show demand elements." msgstr "Mostra/nasconde elementi di domanda." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2348 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2348 msgid "Clicks target lanes" msgstr "Seleziona corsie con un clic" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2348 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2348 msgid "" "Toggle whether clicking should inspect/select/delete lanes instead of edges." @@ -4053,30 +5295,37 @@ "Indica se cliccando si può ispezionare/selezionare/rimuovere delle corsie " "invece di archi." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2355 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2355 msgid "Toggle show connections over junctions." msgstr "Mostra/nasconde collegamenti sopra gli incroci." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2363 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2363 msgid "Toggle hide connections." msgstr "Mostra/nasconde collegamenti." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2371 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2371 msgid "Show additional sub-elements" msgstr "Mostra elementi figli delle strutture addizionali" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2371 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2371 msgid "Toggle show additional sub-elements." msgstr "Mostra elementi figli delle strutture addizionali." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2379 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2379 msgid "Toggle show TAZ elements." msgstr "Mostra zone di assegnazione del traffico." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2387 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2387 msgid "Automatic select junctions" msgstr "Seleziona incroci automaticamente" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2387 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2387 msgid "" "Toggle whether selecting multiple edges should automatically select their " @@ -4085,10 +5334,12 @@ "Attiva/disattiva selezionare gli incroci adiacenti automaticamente quando " "vengono selezionati più archi." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2395 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2395 msgid "Apply state to all phases" msgstr "Applica stato a tutte le fasi" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2395 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2395 msgid "" "Toggle whether clicking should apply state changes to all phases of the " @@ -4097,351 +5348,450 @@ "Attiva/disattiva se cambi di stati vengono applicati a tutte le fasi del " "piano semaforico attuale." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2403 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2403 msgid "Automatic merging junction" msgstr "Combinazione automatica degli incroci" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2403 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2403 msgid "Toggle ask for confirmation before merging junction." msgstr "Attiva/disattiva conferma prima di combinare degli incroci." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2410 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2410 msgid "Show bubbles" msgstr "Mostra sfere semaforiche" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2410 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2410 msgid "Toggle show bubbles over junctions shapes." msgstr "Attiva/disattiva sfere semaforiche sopra gli incroci." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2418 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2418 msgid "Move elevation" msgstr "Sposta livello" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2418 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2418 msgid "Apply mouse movement to elevation instead of x,y position." msgstr "" "Usa lo spostamento del mouse per il livello anziché per la posizione x,y." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2426 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2426 msgid "Edge chain mode" msgstr "Modo archi catena" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2426 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2426 msgid "Create consecutive edges with a single click (hit ESC to cancel chain)." msgstr "" "Crea archi consecutivi con un solo clic (premi ESC per terminare la catena)." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2434 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2434 msgid "Edge opposite direction" msgstr "Crea arco opposto" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2434 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2434 msgid "Automatically create an edge in the opposite direction." msgstr "Crea un arco nella direzione opposta automaticamente." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2651 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2937 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2651 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2937 msgid "Toggle show shapes (Polygons and POIs)." msgstr "Attiva/disattiva forme (poligoni e punti di interesse)." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2659 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2659 msgid "Toggle show all trips (requires updated demand - F5)." msgstr "" "Attiva/disattiva di mostrare tutte le corse (necessita aggiornamento della " "domanda - F5)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2667 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2667 msgid "Toggle show all person plans." msgstr "Attiva/disattiva di mostrare tutti gli piani personali." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2675 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2675 msgid "Toggle lock selected person." msgstr "Attiva/disattiva di bloccare la persona selezionata." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2683 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2683 msgid "Show all containers plans" msgstr "Mostra tutti gli piani di contenitori" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2683 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2683 msgid "Toggle show all container plans." msgstr "Attiva/disattiva di mostrare tutti gli piani di contenitori." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2691 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2691 msgid "Toggle lock selected container." msgstr "Attiva/disattiva di bloccare il contenitore selezionato." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2699 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2699 msgid "Toggle show non-inspected demand elements." msgstr "Attiva/disattiva di mostrare elementi di domanda non ispezionati." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2707 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2707 msgid "Toggle show number of overlapped routes." msgstr "Attiva/disattiva di mostrare il numero di itinerari sovrapposti." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2930 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2930 msgid "Toggle show additionals." msgstr "Attiva/disattiva di mostrare le strutture addizionali." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2951 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2951 msgid "Draw TAZREL drawing mode" msgstr "Modo per disegnare relazioni origine-destinazione" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2951 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2951 msgid "Toggle draw TAZREL drawing mode." msgstr "" "Attiva/disattiva il modo per disegnare delle relazioni origine-destinazione." +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2958 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2958 msgid "Toggle draw TAZ fill" msgstr "" "Attiva/disattiva di riempire le zone di assegnazione di traffico di colore" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2965 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2965 msgid "Toggle draw TAZRel only from" msgstr "" "Attiva/disattiva di disegnare soltanto le relazioni origine-destinazioni " "uscenti" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2972 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2972 msgid "Toggle draw TAZRel only to" msgstr "" "Attiva/disattiva di disegnare soltanto le relazioni origine-destinazioni " "entranti" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3471 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3471 msgid "Set inspect mode" msgstr "Scegli modo ispezione" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3471 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3471 msgid "Mode for inspect elements and change their attributes. (I)" msgstr "Modo per ispezionare elementi e per modificare i loro attributi. (I)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3477 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3477 msgid "Set delete mode" msgstr "Scegli modo rimozione" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3477 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3477 msgid "Mode for delete elements. (D)" msgstr "Modo per rimuovere elementi. (D)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3546 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3681 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3546 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3690 msgid "Set move mode" msgstr "Scegli modo spostamento" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3546 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3681 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3546 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3690 msgid "Mode for move elements. (M)" msgstr "Modo per spostare elementi. (M)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3552 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3552 msgid "Set create edge mode" msgstr "Scegli modo archi" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3552 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3552 msgid "Mode for creating junction and edges. (E)" msgstr "Modo per creare incroci ed archi. (E)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3558 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3558 msgid "Set connection mode" msgstr "Scegli modo collegamenti" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3558 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3558 msgid "Mode for edit connections between lanes. (C)" msgstr "Modo per modificare i collegamenti tra corsie. (C)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3564 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3564 msgid "Set prohibition mode" msgstr "Scegli modo precedenze" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3564 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3564 msgid "Mode for editing connection prohibitions. (H)" msgstr "Modo per visualizzare le precedenze dei collegamenti. (H)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3570 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3570 msgid "Set traffic light mode" msgstr "Scegli modo semafori" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3570 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3570 msgid "Mode for edit traffic lights over junctions. (T)" msgstr "Modo per modificare i semafori. (T)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3576 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3576 msgid "Set additional mode" msgstr "Scegli modo delle strutture addizionali" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3576 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3576 msgid "Mode for adding additional elements. (A)" msgstr "Modo per aggiungere elementi addizionali. (A)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3582 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3582 msgid "Set crossing mode" msgstr "Scgeli modo passeggi pedonali" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3582 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3582 msgid "Mode for creating crossings between edges. (R)" msgstr "Modo per creare passeggi pedonali attraverso archi. (R)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3588 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3588 msgid "Set TAZ mode" msgstr "Scegli modo zone di assegnazione del traffico" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3588 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3588 msgid "Mode for creating Traffic Assignment Zones. (Z)" msgstr "Modo per creare zone di assegnazione del traffico. (Z)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3594 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3594 msgid "Set polygon mode" msgstr "Scegli modo poligoni" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3594 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3594 msgid "Mode for creating polygons and POIs. (P)" msgstr "Modo per creare poligoni e punti di interesse. (P)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3600 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3600 msgid "Set wire mode" msgstr "Scegli modo catenaria" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3600 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3600 msgid "Mode for editing wires. (W)" msgstr "Modo per creare catenarie. (W)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3687 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3696 msgid "Create route mode" msgstr "Scegli modo itinerari" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3687 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3696 msgid "Mode for creating routes. (R)" msgstr "Modo per creare itinerari. (R)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3693 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3702 msgid "Create vehicle mode" msgstr "SCgeli modo veicoli" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3693 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3702 msgid "Mode for creating vehicles. (V)" msgstr "Modo per creare veicoli. (V)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3699 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3708 msgid "Create type mode" msgstr "Scegli modo tipi" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3699 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3708 msgid "Mode for creating types (vehicles, person and containers). (T)" msgstr "Modo per creare tipi (di veicoli, persone e contenitori). (T)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3705 +msgid "Create type distribution mode" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3705 +msgid "Mode for creating type distribution. (U)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3711 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3714 msgid "Create stop mode" msgstr "Scegli modo fermate" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3711 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3714 msgid "Mode for creating stops. (A)" msgstr "Modo per creare fermate. (A)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3717 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3720 msgid "Create person mode" msgstr "Scegli modo persone" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3717 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3720 msgid "Mode for creating persons. (P)" msgstr "Modo per creare persone. (P)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3723 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3726 msgid "Create person plan mode" msgstr "Scegli modo piani personali" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3726 -msgid "Mode for creating person plans. (C)" -msgstr "Modo per creare piani personali. (C)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3723 +msgid "Mode for creating person plans. (L)" +msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3729 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3732 msgid "Create container mode" msgstr "Scegli modo contenitori" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3732 -msgid "Mode for creating containers. (P)" -msgstr "Modo per creare contenitori. (P)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3729 +msgid "Mode for creating containers. (C)" +msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3735 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3738 msgid "Create container plan mode" msgstr "Scegli modo piani di contenitori" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3735 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3738 msgid "Mode for creating container plans. (H)" msgstr "Modo per creare piani di contenitori. (H)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3816 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3815 msgid "Create edge data mode" msgstr "Scegli modo edgeData" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3816 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3815 msgid "Mode for creating edge datas. (E)" msgstr "Modo per creare elementi edgeData. (E)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3822 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3821 msgid "Create edge relation data mode" msgstr "Scegli modo edgeRelation" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3822 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3821 msgid "Mode for creating edge relation datas. (R)" msgstr "Modo per creare elementi edgeRelation. (R)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3828 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3827 msgid "Create TAZ relation data mode" msgstr "Scegli modo relazioni origine-destinazione" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3828 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3827 msgid "Mode for creating TAZ relation datas. (Z)" msgstr "Modo per creare relazioni origine-destinazione. (Z)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3834 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3833 msgid "MeanData mode" msgstr "Scegli modo meanData" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3834 #: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3833 msgid "Mode for MeanData elements. (M)" msgstr "Modo per creare elementi meanData. (M)" +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:103 #: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:102 msgid "Undo the last change. (Ctrl+Z)" msgstr "Annulla l'ultimo cambio. (Ctrl+Z)" +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:106 #: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:105 msgid "Redo the last change. (Ctrl+Y)" msgstr "Ripristina l'ultimo cambio. (Ctrl+Y)" +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:114 #: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:113 msgid "Compute path manager" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:114 #: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:113 msgid "Compute path manager." msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:528 #: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:521 msgid "WalkingArea Chooser" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:597 #: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:590 msgid "Route Chooser" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:605 #: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:598 msgid "Stop Chooser" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:641 #: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:629 msgid "TLS Chooser" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:652 #: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:640 msgid "Additional Chooser" msgstr "" +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:681 #: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:669 msgid "Poly Chooser" msgstr "" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:96 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:108 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:97 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:145 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:128 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:118 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:120 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:96 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:108 @@ -4452,6 +5802,13 @@ msgid "Undo create " msgstr "Annulla creazione " +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:122 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:99 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:110 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:99 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:147 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:120 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:122 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:99 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:110 @@ -4462,6 +5819,12 @@ msgid "Undo delete " msgstr "Annulla rimozione" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:118 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:107 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:155 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:138 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:128 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:130 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:118 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:107 @@ -4471,6 +5834,12 @@ msgid "Redo create " msgstr "Ripristina creazione " +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:132 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:109 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:157 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:140 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:130 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:132 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:120 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:109 @@ -4480,24 +5849,34 @@ msgid "Redo delete " msgstr "Ripristina rimozione " +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Attribute.cpp:158 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Attribute.cpp:158 msgid "Undo change " msgstr "Annulla cambio " +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Attribute.cpp:164 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Attribute.cpp:164 msgid "Redo change " msgstr "Ripristina cambio " +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:147 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:158 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:147 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:158 msgid "Undo moving up " msgstr "Annulla spostamento in alto " +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:149 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:156 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:149 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:156 msgid "Undo moving down " msgstr "Annulla spostamento in basso " +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:151 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:160 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:175 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:184 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:151 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:160 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:175 @@ -4505,153 +5884,181 @@ msgid "Invalid operation" msgstr "Operazione invalida" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:171 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:180 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:171 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:180 msgid "Redo moving front " msgstr "Rispristina spostamento in avanti " +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:173 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:182 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:173 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:182 msgid "Redo moving back " msgstr "Ripristina spostamento indietro " +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:108 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:108 msgid "Redo create connection '" msgstr "Ripristina creazione del collegamento " +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:111 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:111 msgid "Redo delete connection '" msgstr "Ripristina rimozione del collegamento " +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:163 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:163 msgid "Undo create crossing" msgstr "Annulla creazione di un passaggio pedonale" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:165 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:165 msgid "Undo delete crossing" msgstr "Annulla rimozione di un passaggio pedonale" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:173 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:173 msgid "Redo create crossing" msgstr "Ripristina creazione di un passaggio pedonale" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:175 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:175 msgid "Redo delete crossing" msgstr "Ripristina rimozione di un passaggio pedonale" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:136 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:136 msgid "Undo create edge '" msgstr "Annulla creazione del arco '" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:138 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:138 msgid "Undo delete edge '" msgstr "Annulla la rimozione del arco '" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:146 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:146 msgid "Redo create edge '" msgstr "Ripristina creazione del arco '" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:148 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:148 msgid "Redo delete edge '" msgstr "Ripristina rimozione del arco '" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:111 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:111 msgid "Undo create edgeType '" msgstr "Annulla creazione del tipo di arco '" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:113 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:113 msgid "Undo delete edgeType '" msgstr "Annulla rimozione del tipo di arco '" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:121 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:121 msgid "Redo create edgeType '" msgstr "Ripristina creazione del tipo di arco '" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:123 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:123 msgid "Redo delete edgeType '" msgstr "Ripristina rimozione del tipo di arco '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:113 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:115 -msgid "Undo enable " -msgstr "Annulla attivazione " - -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:113 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:115 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:123 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:125 -msgid " attribute in '" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:113 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:115 +msgid "Undo enable % attribute in '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:123 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:125 -msgid "Redo enable " -msgstr "Ripristina attivazione " +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:123 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:125 +msgid "Redo enable % attribute in '%'" +msgstr "" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:109 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:109 msgid "Undo create junction '" msgstr "Annulla creazione del incrocio '" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:111 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:111 msgid "Undo delete junction '" msgstr "Annulla rimozione del incrocio '" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:119 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:119 msgid "Redo create junction '" msgstr "Ripristina creazione del incrocio '" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:121 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:121 msgid "Redo delete junction '" msgstr "Ripristina rimozione del incrocio '" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:158 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:158 msgid "Undo create lane '" msgstr "Annulla creazione della corsia '" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:160 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:160 msgid "Undo delete lane '" msgstr "Annulla rimozione della corsia '" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:168 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:168 msgid "Redo create lane '" msgstr "Ripristina creazione della corsia '" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:170 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:170 msgid "Redo delete lane '" msgstr "Ripristina rimozione della corsia '" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:172 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:172 msgid "Undo create TLS '" msgstr "Annulla creazione del semaforo '" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:174 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:174 msgid "Undo delete TLS '" msgstr "Annulla rimozione del semaforo '" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:182 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:182 msgid "Redo create TLS '" msgstr "Ripristina creazione del semaforo '" +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:184 #: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:184 msgid "Redo delete TLS '" msgstr "Ripristina rimozione del semaforo '" +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:38 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:38 msgid "About Eclipse SUMO netedit" msgstr "Su Eclipse SUMO netedit" +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:53 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:53 msgid "Network editor for Eclipse SUMO, the Simulation of Urban MObility" msgstr "" +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:54 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:54 msgid "Graphical editor for road networks and infrastructure." msgstr "" +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:66 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:66 msgid "This application is based on code provided by the Eclipse SUMO project." msgstr "Questa applicazione è basata su code del progetto Eclipse SUMO." +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:67 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:67 msgid "" "These core components are available under the conditions of the Eclipse " @@ -4660,14 +6067,23 @@ "Questi componenti chiave vengono messi a disposizione alle condizioni del " "Eclipse Public License v2." +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:923 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:62 msgid "Accept" msgstr "Accetta" +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:62 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:62 msgid "Close accepting changes" msgstr "Chiudi e accetta i cambi" +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:377 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:925 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1396 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:63 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:94 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:93 @@ -4676,19 +6092,30 @@ msgid "Cancel" msgstr "Annulla" +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:63 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:63 msgid "Close discarding changes" msgstr "Chiudi e annulla i cambi" +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:378 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:97 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:64 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:93 msgid "Reset" msgstr "Resetta" +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:64 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:64 msgid "Reset to previous values" msgstr "Ripristina i valori anteriori" +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:276 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:650 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:59 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:713 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:494 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:133 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:276 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:649 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:59 @@ -4698,6 +6125,28 @@ msgid "accept" msgstr "accetta" +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:276 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:277 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:416 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:650 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:651 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:652 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:413 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:713 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:714 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:715 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:408 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:494 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:495 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:380 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:298 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:487 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:134 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:276 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:277 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:278 @@ -4723,6 +6172,11 @@ msgid "close" msgstr "chiudi" +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:277 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:651 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:60 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:714 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:495 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:277 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:650 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:60 @@ -4731,20 +6185,29 @@ msgid "cancel" msgstr "annulla" +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:652 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:715 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:278 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:651 #: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:692 msgid "reset" msgstr "resetta" +#: D:\Repos\sumo/src\netedit\dialogs\GNECalibratorDialog.cpp:237 #: /home/micha/programming/sumo/src/netedit/dialogs/GNECalibratorDialog.cpp:237 msgid "routes cannot be empty" msgstr "" +#: D:\Repos\sumo/src\netedit\dialogs\GNECalibratorDialog.cpp:472 #: /home/micha/programming/sumo/src/netedit/dialogs/GNECalibratorDialog.cpp:472 msgid "No routes defined" msgstr "Nessun itinerario definito" +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:71 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:638 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:389 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:63 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:71 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:638 @@ -4752,40 +6215,55 @@ msgid "&Accept" msgstr "&Accetta" +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:75 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:90 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:63 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:75 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:90 msgid "close accepting changes" msgstr "chiudi e accetta i cambi" +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:76 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:64 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:76 msgid "close discarding changes" msgstr "chiudi e annulla i cambi" +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:65 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:65 msgid "&Reset" msgstr "&Resetta" +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:65 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:77 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:65 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:77 msgid "reset to previous values" msgstr "ripristina i valori anteriori" +#: D:\Repos\sumo/src\netedit\dialogs\GNEDialogACChooser.cpp:111 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEDialogACChooser.cpp:111 msgid "Invalid Junction" msgstr "incrocio invalido" +#: D:\Repos\sumo/src\netedit\dialogs\GNEDialogACChooser.cpp:117 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEDialogACChooser.cpp:117 msgid "Invalid number of TLSs" msgstr "numero invalido di semafori" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:257 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:333 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:457 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:257 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:333 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:457 msgid "Activate friendlyPos and save" msgstr "Attiva friendlyPos e salva" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:257 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:333 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:257 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:333 msgid "" @@ -4795,30 +6273,40 @@ "Il parametro friendlyPos sarà attivato in tutte le fermate e in tutti " "rivelatori E2" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:259 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:460 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:259 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:460 msgid "Save invalid positions" msgstr "Salva posizioni invalide" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:259 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:259 msgid "Save stopping places and E2 detectors with invalid positions" msgstr "Salva fermate e rvelatori E2 con posizione invalide" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:263 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:335 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:466 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:263 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:335 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:466 msgid "Fix positions and save" msgstr "Salva con posizioni corrette" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:263 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:335 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:263 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:335 msgid "Position of stopping places and E2 detectors will be fixed" msgstr "Le posizioni di fermate e rvelatori E2 saranno corretti" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:265 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:265 msgid "Select invalid additionals" msgstr "Seleziona strutture addizionali invalide" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:265 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:265 msgid "" "Cancel saving of additionals and select invalid stopping places and E2 " @@ -4827,117 +6315,152 @@ "Annulla salvataggio delle strutture addizionali e seleziona fermate e " "rivelatori E invalidi" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:325 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:325 msgid "Build connections between lanes" msgstr "Crea collegamenti tra corsie" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:325 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:325 msgid "New connections will be created between non-connected lanes" msgstr "Dei collegamenti saranno aggiunti tra corsie sconnesse" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:327 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:327 msgid "Remove invalid E2 detectors" msgstr "Rimuovi rivelatori E2 invalidi" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:327 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:327 msgid "Remove Multilane E2 Detectors with non-connected lanes" msgstr "Rimuovi rivelatori E2 di più corsie con corsie sconnesse" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:202 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:189 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:202 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:189 msgid "Save list of conflicted items" msgstr "Salva elenco di elementi invalidi" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:240 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:240 msgid "Remove invalid routes" msgstr "Rimuovi itinerari invalidi" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:243 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:243 msgid "Save invalid routes" msgstr "Salva itinerari invalidi" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:246 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:246 msgid "Select conflicted routes" msgstr "Seleziona itinerari contradditori" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:249 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:249 msgid "Remove stops out of route" msgstr "Rimuovi fermate fuori itinerario" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:351 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:351 msgid "Remove invalid vehicles" msgstr "Rimuovi veicoli invalidi" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:354 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:354 msgid "Save invalid vehicles" msgstr "Salva veicoli invalidi" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:357 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:357 msgid "Select conflicted vehicle" msgstr "Seleziona veicoli contradditori" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:360 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:360 msgid "Remove stops out of vehicle's route" msgstr "Rimuovi fermate dall'itinerario del veicolo" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:463 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:463 msgid "Select conflicted Stops" msgstr "Seleziona fermate contradditorie" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:557 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:557 msgid "Delete person plan" msgstr "Rimuovi piani personali" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:560 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:560 msgid "Save invalid person plans" msgstr "Salva piani personali invalidi" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:563 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:563 msgid "Select conflicted person plans" msgstr "Seleziona piani personali contradditori" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:52 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:52 msgid "Fix network elements problems" msgstr "Correggi problemi di elementi di rete" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:206 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:206 msgid "Saving successfully" msgstr "Salvato con successo" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:213 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:213 msgid "Saving list of conflicted items failed" msgstr "Il salvataggio degli elementi contradditori è fallito" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:227 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:227 msgid "Remove invalid edges" msgstr "Rimuovi archi invalidi" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:230 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:230 msgid "Save invalid edges" msgstr "Salva archi invalidi" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:233 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:233 msgid "Select conflicted edges" msgstr "Seleziona archi contradditori" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:308 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:308 msgid "Remove invalid crossings" msgstr "Rimuovi passaggi pedonali invalidi" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:311 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:311 msgid "Save invalid crossings" msgstr "Salva passaggi pedonali invalidi" +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:314 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:314 msgid "Select conflicted crossing" msgstr "Seleziona passaggio pedonale contradditorio" +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:286 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:283 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:278 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:285 #: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:281 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:278 msgid "Sort" msgstr "Ordina" +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:287 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:284 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:279 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:252 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:286 #: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:282 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:279 @@ -4946,6 +6469,21 @@ msgid "Clear" msgstr "Svuota" +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:290 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:287 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:756 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:318 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:109 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:37 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:39 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:223 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1191 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:289 #: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:285 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:282 @@ -4964,12 +6502,18 @@ msgid "Help" msgstr "Aiuto" +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:300 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:297 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:292 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:299 #: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:295 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:292 msgid "Open Parameter Template" msgstr "Apri modello di parametri" +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:315 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:312 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:307 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:314 #: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:310 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:307 @@ -4977,24 +6521,36 @@ msgid "Loading of Parameters From % failed." msgstr "Caricamento di parametri da % fallito." +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:318 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:315 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:310 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:317 #: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:313 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:310 msgid "Loaded % Parameters." msgstr "Caricati % parametri." +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:328 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:320 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:327 #: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:323 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:320 msgid "Save Parameter Template file" msgstr "Salva file modello di parametri" +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:404 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:401 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:396 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:403 #: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:399 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:396 msgid "- Parameters are defined by a Key and a Value.\n" msgstr "- parametri vengono definiti da una parola chiave e un valore.\n" +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:405 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:402 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:397 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:404 #: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:400 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:397 @@ -5005,36 +6561,54 @@ "- Può essere definito in netedit usando il formato chiave1=valore1|" "chiave2=valore2|...\n" +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:406 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:403 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:398 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:405 #: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:401 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:398 msgid " - Duplicated and empty Keys aren't valid.\n" msgstr " - parole chiave vuote o duplicate non sono valide.\n" +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:407 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:404 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:399 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:406 #: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:402 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:399 msgid " - Whitespace and certain characters aren't allowed (@$%^&/|\\....)\n" msgstr " - Non sono permessi lo spazio e alcuni caratteri (@$%^&/|\\....)\n" +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:449 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:449 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:444 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:448 #: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:447 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:444 msgid "Key of Parameter not defined" msgstr "Chiave del parametro non definita" +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:451 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:451 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:446 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:450 #: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:449 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:446 msgid "Value of Parameter not defined" msgstr "Valore del parametro non definito" +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:454 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:458 #: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:457 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:454 msgid "Key of Parameter cannot be empty" msgstr "Chiave non deve essere lasciata vuota" +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:461 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:461 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:456 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:460 #: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:459 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:456 @@ -5042,12 +6616,15 @@ msgid "Key '%' of Parameter contains invalid characters" msgstr "La chiave '%' contiene dei caratteri invalidi" +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:464 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:464 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:463 #: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:462 #, c-format msgid "Key '%' already exist" msgstr "Chiave '%' già presente" +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:479 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:478 msgid "" "Only for\n" @@ -5056,296 +6633,474 @@ "Soltano per\n" "chiavi esistenti" +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:59 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:59 msgid "load elements" msgstr "carica elementi" +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:60 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:60 msgid "cancel loading of elements" msgstr "annulla caricamento di elementi" +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:61 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:61 msgid "overwrite" msgstr "sovrascrivi" +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:61 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:61 msgid "overwrite elements" msgstr "sovrascrivi elementi" +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:182 #: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:182 msgid "Rerouter has more than one edge" msgstr "Il rerouter contiene più di un arco" +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:321 #: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:321 msgid "There are no lanes in the network" -msgstr "" +msgstr "Non ci sono corsie nella rete" +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:341 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:361 #: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:341 #: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:361 msgid "There are no edges in the network" -msgstr "" +msgstr "Non ci sono archi nella rete" +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:398 #: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:398 msgid "There are no parking areas in the network" -msgstr "" +msgstr "Non ci sono parcheggi nella rete" +#: D:\Repos\sumo/src\netedit\dialogs\GNEUndoListDialog.cpp:58 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEUndoListDialog.cpp:58 msgid "OK\tclose dialog" msgstr "Accetta\tchiudi dialogo" +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:459 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:459 #, c-format msgid "Key '%' already exists" -msgstr "" +msgstr "La chiave '%' è già presente" +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:446 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1159 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1168 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:446 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:753 msgid "Edit parameters" msgstr "Modifica parametri" +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:466 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:466 msgid "Invalid row type" msgstr "Tipo di riga invalido" +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:635 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:426 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:463 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1249 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:635 #: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:425 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:455 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1252 msgid "Color Dialog" -msgstr "" +msgstr "Selettore di colori" +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:660 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:660 msgid "Open Image" msgstr "Apri immagine" +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:687 #: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:687 msgid "Open OSG File" msgstr "Apri file OSG" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:63 -msgid "Grid" +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:266 +msgid "Could not load configuration '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:64 -msgid "Spider" +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:271 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:169 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:173 +msgid "Could not load tool configuration '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:65 -msgid "Random grid" +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:275 +msgid "Loaded configuration." msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:66 -msgid "Random" +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:295 +#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:71 +msgid "Save options" +msgstr "Salva opzioni" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:297 +msgid "Save configuration file" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:298 +#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:73 +msgid "Load options" +msgstr "Carica opzioni" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:300 +msgid "Load configuration file" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:301 +msgid "Default options" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:303 +msgid "Reset all options to default" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:311 +msgid "Topics" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:362 +msgid "Search" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:364 +msgid "Include description in search" msgstr "" +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:81 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:138 +#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:122 +msgid "Reset value" +msgstr "resetta valore" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:226 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:238 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:251 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:272 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:734 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:746 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:760 +#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:556 +#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:568 +#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:582 +msgid "true" +msgstr "vero" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:229 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:241 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:254 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:275 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:737 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:749 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:766 +#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:559 +#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:571 +#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:585 +msgid "false" +msgstr "falso" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:458 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:82 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:82 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:232 msgid "Select filename" msgstr "Seleziona nome di file" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:63 +#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:63 +msgid "Grid" +msgstr "Griglia" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:64 +#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:64 +msgid "Spider" +msgstr "Ragnatela" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:65 +#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:65 +msgid "Random grid" +msgstr "Griglia casuale" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:66 +#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:66 +msgid "Random" +msgstr "Casuale" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:92 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:92 msgid "Advanced" -msgstr "" +msgstr "Avanzato" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:92 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:92 msgid "open advance netgenerate dialog" -msgstr "" +msgstr "apri dialogo netgenerate avanzato" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:94 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:94 msgid "Close dialog" +msgstr "Chiudi dialogo" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:71 +msgid "Save toolcfg" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:71 -msgid "Save options" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:73 +msgid "Save file with tool configuration" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:73 -msgid "Load options" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:74 +msgid "Load toolcfg" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:76 +msgid "Load file with tool configuration" msgstr "" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:77 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:75 msgid "Sorted by name" -msgstr "" +msgstr "Ordinato per nome" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:78 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:76 msgid "Grouped by categories" +msgstr "Aggruppato per categoria" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:90 +msgid "Blue options are mandatory" msgstr "" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:93 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:89 msgid "run python tool" -msgstr "" +msgstr "esegui utensile python" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:95 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:91 msgid "close tool dialog" -msgstr "" +msgstr "chiudi dialogo dell'utensile" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:97 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:93 msgid "reset to default values" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:122 -msgid "Reset value" -msgstr "" +msgstr "resetta a valori standard" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:245 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:227 #, c-format msgid "Use current % file" +msgstr "Utilizza il file attuale %" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:251 +#, c-format +msgid "Select % file" msgstr "" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:274 +msgid "Use current selected edges" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:349 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:253 msgid "network" -msgstr "" +msgstr "rete" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:392 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:296 msgid "additional" -msgstr "" +msgstr "addizionale" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:435 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:339 msgid "route" -msgstr "" +msgstr "itinerario" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:478 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:382 msgid "data" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:556 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:568 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:582 -msgid "true" -msgstr "" +msgstr "dati" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:559 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:571 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:585 -msgid "false" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:521 +msgid "sumo config" msgstr "" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:70 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:71 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:63 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:64 msgid "Save output" -msgstr "" +msgstr "Salva uscita" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:72 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:73 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:65 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:66 msgid "Console output" -msgstr "" +msgstr "Uscita della console" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:82 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:83 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:75 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:76 msgid "Abort" -msgstr "" +msgstr "Interrompi" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:82 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:83 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:75 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:76 msgid "abort running" -msgstr "" +msgstr "interrompi l'operazione in corso" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:84 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:85 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:77 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:78 msgid "Rerun" -msgstr "" +msgstr "Esegui di nuovo" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:84 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:85 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:77 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:78 msgid "rerun tool" -msgstr "" +msgstr "esegui di nuovo l'utensile" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:86 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:87 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:79 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:80 msgid "Back" -msgstr "" +msgstr "Indietro" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:86 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:87 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:79 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:80 msgid "back to tool dialog" -msgstr "" +msgstr "torna indietro al dialogo dell'utensile" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:95 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:87 #: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:88 msgid "close dialog" -msgstr "" +msgstr "chiudi dialogo" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:134 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:134 msgid "Nothing to enable, implement in Children" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:141 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:141 msgid "Nothing to disable, implement in Children" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:631 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:631 #, c-format msgid "TagProperty for tag '%' not defined" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:849 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:849 msgid "Nothing to toggle, implement in Children" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:913 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:913 msgid "The id of the node" msgstr "Il codice identificativo del nodo" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1909 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:918 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1903 msgid "The x-y-z position of the node on the plane in meters" msgstr "La posizione x-y-z del nodo sul piano in metri" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:923 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:923 msgid "An optional type for the node" msgstr "Un tipo opzionale per il nodo" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:929 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:929 msgid "A custom shape for that node" msgstr "Una forma personalizzata per il nodo" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:934 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:934 msgid "Optional turning radius (for all corners) for that node in meters" msgstr "Raggio di svolta opzionale (valido per tutti angoli del nodo) in metri" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:940 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:940 msgid "" "Whether the junction-blocking-heuristic should be activated at this node" msgstr "Se l'euristica per bloccare l'incrocio viene attivata per questo nodo" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:946 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:946 msgid "How to compute right of way rules at this node" msgstr "Metodo per computare le regole di precedenza di questo nodo" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:953 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:953 msgid "Whether this junction is at the fringe of the network" msgstr "Se questo nodo si trova al bordo della rete" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:960 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:960 msgid "Optional name of junction" msgstr "Nome opzionale del incrocio" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:965 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:965 msgid "An optional type for the traffic light algorithm" msgstr "Un tipo opzionale del algoritmo semaforico" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:971 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:971 msgid "An optional layout for the traffic light plan" msgstr "Uno schema opzionale per il piano semaforico" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:980 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:980 msgid "An optional id for the traffic light program" msgstr "Un codice identificativo opzionale per il piano semaforico" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:993 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:993 msgid "The id of the edge" msgstr "Il codice identificativo del arco" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:998 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1116 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:998 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1116 msgid "The number of lanes of the edge" msgstr "Il numero di corsie del arco" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1004 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1104 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1004 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1104 msgid "The maximum speed allowed on the edge in m/s" msgstr "La velocità massima ammessa su questo arco in m/s" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1064 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1230 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1446 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1010 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1064 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1127 @@ -5357,6 +7112,11 @@ "Permetti soltanto a queste classi di veicoli di circolare (classi non " "nominate saranno escluse)" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1016 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1070 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1133 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1236 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1452 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1016 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1070 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1133 @@ -5368,6 +7128,8 @@ "Escludi le classi di veicoli nominate (ma permetti l'accesso a tutte le " "altre)" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1021 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1148 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1021 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1148 msgid "" @@ -5377,11 +7139,15 @@ "Il spreadType definisce come la forma della corsia deriva dalla forma del " "arco (utilizzato soltanto nella visualizzazione)" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1110 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1028 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1110 msgid "The priority of the edge" msgstr "La priorità del arco" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1160 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1034 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1160 msgid "" @@ -5390,45 +7156,56 @@ "Larghezza di ognuna delle corsie di questo arco (utilizzata per la " "visualizzazione)" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1040 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1040 msgid "The width of the sidewalk that should be added as an additional lane" msgstr "" "La larghezza del marciapiede che si dovrebbe aggiungere come corsia " "addizionale" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1045 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1045 msgid "The width of the bike lane that should be added as an additional lane" msgstr "" "La larghezza della pista ciclabile che si dovrebbe aggiungere come corsia " "addizionale" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1058 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1058 msgid "The maximum speed allowed on the lane in m/s" msgstr "La velocità massima ammessa su questa corsia in m/s" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1075 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1075 msgid "" "Lane width for all lanes of this lane in meters (used for visualization)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1089 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2656 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2704 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1089 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2650 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2698 msgid "Edge ID" msgstr "Codice identificativo del arco" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1094 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1094 msgid "The name of a node within the nodes-file the edge shall start at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1099 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1099 msgid "The name of a node within the nodes-file the edge shall end at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1122 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1122 msgid "The name of a type within the SUMO edge type file" msgstr "Il nome di un tipo tratto dal file di tipi di archi" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1138 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1138 msgid "" "If the shape is given it should start and end with the positions of the from-" @@ -5437,20 +7214,25 @@ "Se la forma viene data l'inizio e la fine dovrebbero coincidere con le " "posizioni dei nodi from-node e to-node" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1143 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1143 msgid "The length of the edge in meter" msgstr "La lunghezza del arco in metri" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1155 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1155 msgid "street name (does not need to be unique, used for visualization)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1166 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1247 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1166 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1247 msgid "Move the stop line back from the intersection by the given amount" msgstr "" "Sposta la linea di arresto più in su quanto specificato partendo dal incrocio" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1172 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1172 msgid "" "Custom position in which shape start (by default position of junction from)" @@ -5458,6 +7240,7 @@ "Posizione personalizzata dove inizia la forma (lo standard è il nodo di " "partenza)" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1177 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1177 msgid "" "Custom position in which shape end (by default position of junction from)" @@ -5465,19 +7248,25 @@ "Posizione personalizzata dove termina la forma (lo standard è il nodo di " "arrivo)" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1182 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1182 msgid "Show if edge is bidirectional" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1188 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1188 msgid "Distance" msgstr "Distanza" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1194 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1288 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1194 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1288 msgid "The stop offset as positive value in meters" msgstr "Lo spostamento della linea di arresto (valore positivo) in metri" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1200 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1294 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1200 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1294 msgid "Specifies, for which vehicle classes the stopOffset does NOT apply." @@ -5485,12 +7274,14 @@ "Classi di veicoli per le quali NON viene applicato lo spostamento della " "linea di arresto." +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1214 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1214 msgid "Lane ID (Automatic, non editable)" msgstr "" "Codice identificativo della corsia (generato automaticamente e " "immodificabile)" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1219 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1219 msgid "" "The enumeration index of the lane (0 is the rightmost lane, -1 " @@ -5499,27 +7290,34 @@ "L'indice della corsia (da 0 per quella più a destra fino a -1 per quella più a sinistra)" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1224 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1224 msgid "Speed in meters per second" msgstr "Velocità in m/s" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1241 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1241 msgid "Width in meters (used for visualization)" msgstr "Larghezza in metri (usata per la visualizzazione)" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1253 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1253 msgid "Enable or disable lane as acceleration lane" msgstr "Attiva/disattiva corsia di accelerazione" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1259 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1259 msgid "If the shape is given it overrides the computation based on edge shape" msgstr "" "Una forma personalizzata sovrascrive quella generata dalla forma del arco" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1264 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1264 msgid "If given, this defines the opposite direction lane" msgstr "La corsia della direzione opposta (opzionale)" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1269 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1474 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1269 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1474 msgid "Permit changing left only for to the given vehicle classes" @@ -5527,6 +7325,8 @@ "Permetti soltanto alle classi di veicoli menzionati di cambiare corsia verso " "sinistra" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1276 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1481 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1276 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1481 msgid "Permit changing right only for to the given vehicle classes" @@ -5534,18 +7334,22 @@ "Permetti soltanto alle classi di veicoli menzionati di cambiare corsia verso " "destra" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1283 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1283 msgid "Lane type description (optional)" msgstr "Descrizione del tipo di corsia (opzionale)" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1308 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1308 msgid "Crossing ID" msgstr "Codice identificativo del passaggio pedonale" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1313 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1313 msgid "The (road) edges which are crossed" msgstr "Gli archi attraversati dal passaggio pedonale" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1318 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1318 msgid "" "Whether the pedestrians have priority over the vehicles (automatically set " @@ -5554,62 +7358,79 @@ "Se gli pedoni hanno la precedenza sui veicoli (attivato automaticamente per " "incroci con semafori)" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1324 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1324 msgid "The width of the crossings" msgstr "La larghezza dei passaggi pedonali" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1330 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1330 msgid "sets the tls-index for this crossing" msgstr "" "metti il signale usando il suo indice (tlsIndex) per questo passaggio " "pedonale" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1336 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1336 msgid "sets the opposite-direction tls-index for this crossing" msgstr "" "metti il signale per la direzione opposta usando il suo indice (tlsIndex)" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1342 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1342 msgid "Overrides default shape of pedestrian crossing" -msgstr "" +msgstr "Questa forma sovrascrive quella standard del passaggio pedonale" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1355 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1355 msgid "Walking Area ID" msgstr "Codice identificativo del WalkingArea" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1360 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1360 msgid "The width of the WalkingArea" msgstr "La larghezza del WalkingArea" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1366 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1366 msgid "The length of the WalkingArea in meter" msgstr "La lunghezza del WalkingArea in metri" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1371 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1371 msgid "Overrides default shape of pedestrian sidewalk" -msgstr "" +msgstr "Questa forma sovrascrive quella standard del marciapiede" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1384 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1384 msgid "The ID of the edge the vehicles leave" msgstr "" +"Il codice identificativo dell'arco dove i veicoli arrivano a fine percorso" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1389 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1389 msgid "The ID of the edge the vehicles may reach when leaving 'from'" msgstr "" +"Il codice identificativo dell'arco che i veicoli raggiungono dopo la " +"partenza a 'from'" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1394 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1394 msgid "the lane index of the incoming lane (numbers starting with 0)" msgstr "l'indice della corsia entrante" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1399 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1399 msgid "the lane index of the outgoing lane (numbers starting with 0)" msgstr "l'indice della corsia uscente" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1404 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1404 msgid "" "if set, vehicles which pass this (lane-2-lane) connection) will not wait" msgstr "se attivato, gli veicoli passando su qesto collegamento non si fermano" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1410 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1410 msgid "" "if set to false, vehicles which pass this (lane-2-lane) connection) will not " @@ -5618,6 +7439,7 @@ "se impostato a false, veicoli che passano questo collegamento non faranno " "attenzione a non bloccare l'incrocio" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1416 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1416 msgid "" "If set to a more than 0 value, an internal junction will be built at this " @@ -5626,6 +7448,7 @@ "Se impostato a un valore positivo, un incrocio interno sarà costruito alla " "posizione indicata (in metri) della corsia interna del collegamento" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1422 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1422 msgid "" "If set to true, This connection will not be TLS-controlled despite its node " @@ -5634,36 +7457,46 @@ "Se impostato a true, questo collegamento non sarà controllato dal semaforo " "dello stesso incrocio" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1428 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1428 msgid "Vision distance between vehicles" msgstr "Distanza di vista tra veicoli" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1434 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1434 msgid "sets index of this connection within the controlling traffic light" -msgstr "" +msgstr "imposta l'indice del collegamento usato nel semaforo che lo controlla" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1440 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1440 msgid "" "sets index for the internal junction of this connection within the " "controlling traffic light" msgstr "" +"imposta l'indice usato nel semaforo per l'incrocio interno di questo " +"collegamento" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1457 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1457 msgid "sets custom speed limit for the connection" msgstr "imposta un limite di veolcità personalizzato per il collegamento" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1463 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1463 msgid "sets custom length for the connection" msgstr "imposta una lunghezza personalizzata per il collegamento" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1469 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1469 msgid "sets custom shape for the connection" msgstr "imposta una forma personalizzata per il collegamento" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1488 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1488 msgid "if set to true, vehicles will make a turn in 2 steps" msgstr "se impostato a true, veicoli fanno inversione in due tempi" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1494 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1494 msgid "" "set a custom edge type (for applying vClass-specific speed restrictions)" @@ -5671,22 +7504,32 @@ "imposta un tipo di arco personalizzato (per applicare dei limiti di velocità " "diversi per ogni classe di veicoli)" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1500 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1500 msgid "turning direction for this connection (computed)" msgstr "direzione di svolta di questo collegamento (computata)" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1505 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1505 msgid "link state for this connection (computed)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1535 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1535 msgid "The id of bus stop" msgstr "Il codice identificativo della fermata di autobus" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1540 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1540 msgid "The name of the lane the bus stop shall be located at" -msgstr "" +msgstr "Il nome della corsia dove la fermata del bus deve essere posizionata" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1545 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1609 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1707 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3968 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4095 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1545 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1609 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1707 @@ -5698,6 +7541,14 @@ msgstr "" "La posizione iniziale sulla corsia (la posizione più in basso) in metri" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1550 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1614 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1712 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1841 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3973 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4100 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4470 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4916 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1550 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1614 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1712 @@ -5713,10 +7564,29 @@ "La posizione finale sulla corsia (la posizione più in alto) in metri, deve " "per forza essere più larga di startPos da più di 0.1m" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1555 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1555 msgid "Name of busStop" -msgstr "" +msgstr "Il nome della fermata del bus" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1560 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1680 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1722 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1785 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1868 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1985 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2066 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2146 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2225 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2252 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2299 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2965 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3272 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3978 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4105 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4475 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4921 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1560 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1624 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1680 @@ -5740,6 +7610,7 @@ "Se impostato, nessun errore sarà emesso se l'elemento viene posizionato a " "monte della corsia." +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1561 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1561 msgid "" "Instead, it will be placed 0.1 meters from the lanes end or at position 0.1" @@ -5747,6 +7618,24 @@ "Invece sarà posizionato o a 0.1 metri dal nodo di partenza o dal nodo di " "arrivo" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1562 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1626 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1682 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1724 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1787 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1870 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1987 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2148 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2227 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2254 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2301 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2967 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3274 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4477 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4923 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1562 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1626 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1682 @@ -5772,6 +7661,7 @@ "Se la posizione è negativa ed è inferiore alla lunghezza della corsia " "molteplicata con -1" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1568 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1568 msgid "" "Meant to be the names of the bus lines that stop at this bus stop. This is " @@ -5780,6 +7670,8 @@ "I nomi delle linee di autobus che fermano qui. Viene utilizzato solamente " "per la visualizzazione" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1573 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1637 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1573 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1637 msgid "" @@ -5789,6 +7681,9 @@ "Un numero maggiore di persone che cercano di salire creerà una coda a monte " "sul marciapiede" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1579 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1741 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1579 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1643 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1741 @@ -5796,22 +7691,44 @@ msgstr "" "Defizione opzionale dello spazio dove i veicoli si fermano a questa fermata" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1585 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1585 msgid "The RGBA color with which the busStop shall be displayed" msgstr "Il colore in modo RGBA nel quale si dipingeranno le fermate di autobus" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1599 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1599 msgid "The id of train stop" msgstr "Il codice identificativo della fermata del treno" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1604 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1604 msgid "The name of the lane the train stop shall be located at" msgstr "" +"Il nome della corsia dove la fermata ferroviaria deve essere posizionata" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1619 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1619 msgid "Name of trainStop" -msgstr "" +msgstr "Il nome della fermata ferroviaria" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1625 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1681 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1723 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1786 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1869 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1986 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2147 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2226 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2253 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2300 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2966 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3273 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3979 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4106 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4476 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4922 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1625 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1681 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1723 @@ -5835,6 +7752,7 @@ "Invece sarà posizionato o a 0.1 metri dal nodo di partenza o dal nodo di " "arrivo" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1632 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1632 msgid "" "Meant to be the names of the train lines that stop at this train stop. This " @@ -5843,127 +7761,159 @@ "I nomi delle linee ferroviarie che fermano qui. Viene utilizzato solamente " "per la visualizzazione" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1649 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1649 msgid "The RGBA color with which the trainStop shall be displayed" msgstr "" "Il colore in modo RGBA nel quale si dipingeranno le fermate ferroviarie" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1663 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1663 msgid "The name of the lane the stop access shall be located at" msgstr "" +"Il nome della corsia dove l'accesso alla fermata deve essere posizionato" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1668 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1668 msgid "The position on the lane (the lower position on the lane) in meters" -msgstr "" +msgstr "La posizione iniziale sulla corsia in metri" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1674 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1674 msgid "The walking length of the access in meters" -msgstr "" +msgstr "La lunghezza dell'accesso in metri da percorrere" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1697 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1697 msgid "The id of container stop" -msgstr "" +msgstr "Il codice identificativo della fermata per contenitori" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1702 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1702 msgid "The name of the lane the container stop shall be located at" msgstr "" +"Il nome della corsia dove la fermata per contenitori deve essere posizionata" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1717 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1717 msgid "Name of containerStop" -msgstr "" +msgstr "Il nome della fermata per contenitori" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1730 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1730 msgid "" "meant to be the names of the bus lines that stop at this container stop. " "This is only used for visualization purposes" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1735 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1735 msgid "" "Larger numbers of container trying to enter will create an upstream jam on " "the sidewalk" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1747 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1747 msgid "The RGBA color with which the containerStop shall be displayed" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1760 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1760 msgid "The id of charging station" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1765 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1765 msgid "Lane of the charging station location" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1770 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1770 msgid "Begin position in the specified lane" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1775 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1775 msgid "End position in the specified lane" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1780 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1780 msgid "Name of chargingStation" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1793 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1793 msgid "Charging power in W" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1799 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1799 msgid "Charging efficiency [0,1]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1806 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1806 msgid "" "Enable or disable charge in transit, i.e. vehicle must or must not to stop " "for charging" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1812 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1812 msgid "" "Time delay after the vehicles has reached / stopped on the charging station, " "before the energy transfer (charging) begins" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1826 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1826 msgid "The id of ParkingArea" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1831 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1831 msgid "The name of the lane the Parking Area shall be located at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1846 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1846 msgid "Lane position in that vehicle must depart when leaves parkingArea" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1851 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1851 msgid "Name of parkingArea" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1856 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1856 msgid " The number of parking spaces for road-side parking" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1862 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1862 msgid "" "If set, vehicles will park on the road lane and thereby reducing capacity" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1876 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1919 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1876 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1913 msgid "The width of the road-side parking spaces" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1882 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1882 msgid "" "The length of the road-side parking spaces. By default (endPos - startPos) / " "roadsideCapacity" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1888 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1929 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1888 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1923 msgid "" @@ -5971,22 +7921,35 @@ "positive means clockwise" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1894 +msgid "Enable or disable lefthand position" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1914 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1908 msgid "Name of parking space" -msgstr "" +msgstr "Il nome del parcheggio" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1924 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1918 msgid "The length of the road-side parking spaces" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1934 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1928 msgid "The slope of the road-side parking spaces" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1949 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1943 msgid "The id of E1" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1954 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2006 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2215 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2242 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2274 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1948 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2000 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2209 @@ -5997,6 +7960,8 @@ "the network used" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1959 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2279 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1953 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2273 msgid "" @@ -6004,6 +7969,11 @@ "position must be a value between -1*lane's length and the lane's length" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1964 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2022 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2102 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5916 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1958 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2016 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2096 @@ -6013,10 +7983,16 @@ "The aggregation period the values the detector collects shall be summed up" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1970 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1964 msgid "Name of induction loop" -msgstr "" +msgstr "Il nome del circuito di induzione" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1975 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2038 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2118 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2289 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1969 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2032 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2112 @@ -6025,6 +8001,11 @@ msgid "The path to the output file" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2043 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2123 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2190 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2294 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1974 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2037 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2117 @@ -6033,10 +8014,15 @@ msgid "Space separated list of vehicle type ids to consider" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2001 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1995 msgid "The id of E2" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2011 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2092 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2220 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2247 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2005 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2086 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2214 @@ -6044,19 +8030,25 @@ msgid "The position on the lane the detector shall be laid on in meters" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2016 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2010 msgid "The length of the detector in meters" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2108 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2022 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2102 msgid "The traffic light that triggers aggregation when switching" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2033 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2027 msgid "Name of lane area detector" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2048 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2128 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2042 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2122 msgid "" @@ -6064,6 +8056,9 @@ "vehicle is recognized as halting)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2054 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2201 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2048 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2128 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2195 @@ -6072,6 +8067,8 @@ "recognized as halting) in m/s" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2060 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2140 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2054 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2134 msgid "" @@ -6079,112 +8076,146 @@ "vehicle count as a participant to the jam) in m" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2082 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2076 msgid "The id of Multilane E2" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2087 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2081 msgid "The sequence of lane ids in which the detector shall be laid on" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2097 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2091 msgid "The end position on the lane the detector shall be laid on in meters" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2113 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2107 msgid "Name of Multilane E2 detector" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2163 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2157 msgid "The id of E3" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2168 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3219 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2162 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2354 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3213 msgid "X-Y position of detector in editor (Only used in netedit)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2180 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2174 msgid "Name of Entry Exit detector" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2195 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2189 msgid "" "The time-based threshold that describes how much time has to pass until a " "vehicle is recognized as halting) in s" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2269 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2263 msgid "The id of Instant Induction Loop (E1Instant)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2284 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2278 msgid "Name of instant induction loop" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2315 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2309 msgid "The id of RouteProbe" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2320 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2314 msgid "The id of an edge in the simulation network" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2325 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2319 msgid "The frequency in which to report the distribution" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2331 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2325 msgid "Name of route probe" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2336 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2330 msgid "The file for generated output" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2341 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2335 msgid "The time at which to start generating output" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2355 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2349 msgid "The id of Variable Speed Signal" -msgstr "" +msgstr "Il codice identificativo del limite di velocità dinamico" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2366 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2360 msgid "List of Variable Speed Sign lanes" -msgstr "" +msgstr "Elenco di corsie con limiti di velocità dinamici" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2371 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2365 msgid "Name of Variable Speed Signal" -msgstr "" +msgstr "Il nome del limite di velocità dinamico" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2376 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2370 msgid "" "Space separated list of vehicle type ids to consider (empty to affect all " "types)" msgstr "" +"Elenco di tipi di veicoli da considerare separati da spazi (lascia vuoto per " +"considerare tutti i tipi)" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2402 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2396 msgid "Speed" -msgstr "" +msgstr "Velocità" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2416 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2472 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2410 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2466 msgid "The id of Calibrator" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2421 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3165 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3185 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2415 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3159 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3179 msgid "The id of edge in the simulation network" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2426 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2482 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2420 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2476 msgid "The position of the calibrator on the specified lane" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2432 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2488 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2426 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2482 msgid "" @@ -6192,10 +8223,13 @@ "length" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2438 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2432 msgid "Name of Calibrator" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2443 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2499 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2437 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2493 msgid "" @@ -6203,16 +8237,22 @@ "distribution for generated vehicles" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2504 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2442 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2498 msgid "The output file for writing calibrator information or NULL" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2453 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2509 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2447 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2503 msgid "A threshold value to detect and clear unexpected jamming" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2459 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2515 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2453 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2509 msgid "" @@ -6220,165 +8260,212 @@ "types)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2477 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2471 msgid "The id of lane in the simulation network" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2494 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2488 msgid "Name of calibrator lane" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2528 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3715 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2522 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3709 msgid "The id of the route the vehicle shall drive along" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2533 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2527 msgid "First calibrator flow departure time" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2539 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5108 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2533 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4962 msgid "End of departure interval" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2549 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2543 msgid "The id of the vehicle type to use for this calibrator flow" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2555 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2549 msgid "Number of vehicles per hour, equally spaced" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2561 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2555 msgid "Vehicle's speed" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2576 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2570 msgid "The id of Rerouter" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2581 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2575 msgid "An edge id or a list of edge ids where vehicles shall be rerouted" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2586 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2580 msgid "X,Y position in editor (Only used in netedit)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2592 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2586 msgid "Name of Rerouter" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2597 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2591 msgid "The probability for vehicle rerouting (0-1)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2603 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2597 msgid "" "The waiting time threshold (in s) that must be reached to activate rerouting " "(default -1 which disables the threshold)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2609 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2603 msgid "" "The list of vehicle types that shall be affected by this rerouter (empty to " "affect all types)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2614 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2608 msgid "" "Whether the router should be inactive initially (and switched on in the gui)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2636 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2630 msgid "Begin" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2642 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2636 msgid "End" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2662 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2686 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2656 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2680 msgid "allowed vehicles" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2667 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2691 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2661 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2685 msgid "disallowed vehicles" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2680 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2674 msgid "Lane ID" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2710 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2756 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2704 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2724 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2750 msgid "SUMO Probability" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2724 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2718 msgid "ParkingArea ID" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2736 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2730 msgid "Enable or disable visibility for parking area reroutes" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2770 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2764 msgid "Edge in which vaporizer is placed" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2775 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2769 msgid "Start Time" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2781 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2775 msgid "End Time" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2787 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2781 msgid "Name of vaporizer" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2808 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2802 msgid "The id of the polygon" -msgstr "" +msgstr "Il codice identificativo del poligono" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2813 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2807 msgid "The shape of the polygon" -msgstr "" +msgstr "La forma del poligono" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2818 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2812 msgid "The RGBA color with which the polygon shall be displayed" -msgstr "" +msgstr "Il colore RGBA da usare per il poligono" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2824 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2818 msgid "An information whether the polygon shall be filled" -msgstr "" +msgstr "Se il poligono deve essere riempito di colore" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2830 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2824 msgid "The default line width for drawing an unfilled polygon" -msgstr "" +msgstr "La larghezza standard per disegnare un poligono non riempito" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2836 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2830 msgid "The layer in which the polygon lies" -msgstr "" +msgstr "Il livello del poligono" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2842 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2836 msgid "A typename for the polygon" -msgstr "" +msgstr "Un tipo di poligono" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2848 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2842 msgid "Polygon's name" -msgstr "" +msgstr "Il nome del poligono" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2853 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2847 msgid "A bitmap to use for rendering this polygon" -msgstr "" +msgstr "Un'immagine bitmap da disegnare sopra il poligono" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2859 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2930 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3020 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3097 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2853 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2924 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3014 @@ -6386,180 +8473,239 @@ msgid "Enable or disable use image file as a relative path" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2865 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2936 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3026 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3103 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2859 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2930 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3020 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3097 msgid "Angle of rendered image in degree" -msgstr "" +msgstr "Angolo dell'immagine in gradi" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2879 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2950 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3040 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2873 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2944 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3034 msgid "The id of the POI" -msgstr "" +msgstr "Il codice identificativo del punto di interesse" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2884 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2878 msgid "The position in view" -msgstr "" +msgstr "La posizione nella veduta" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2889 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2979 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3056 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2883 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2973 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3050 msgid "The color with which the POI shall be displayed" -msgstr "" +msgstr "Il colore da usare per il punto di interesse" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2895 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2985 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3062 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2889 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2979 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3056 msgid "A typename for the POI" -msgstr "" +msgstr "Un tipo per il punto di interesse" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2901 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2991 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3152 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2895 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2985 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3062 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3146 msgid "Name of POI" -msgstr "" +msgstr "Il nome del punto di interesse" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2906 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2996 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3073 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2900 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2990 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3067 msgid "The layer of the POI for drawing and selecting" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2912 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3002 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3079 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2906 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2996 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3073 msgid "Width of rendered image in meters" -msgstr "" +msgstr "Larghezza dell'immagine in metri" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3008 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3085 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2912 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3002 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3079 msgid "Height of rendered image in meters" -msgstr "" +msgstr "Altezza dell'immagine in metri" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2924 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3014 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3091 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2918 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3008 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3085 msgid "A bitmap to use for rendering this POI" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2955 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2949 msgid "The name of the lane at which the POI is located at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2960 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2954 msgid "" "The position on the named lane or in the net in meters at which the POI is " "located at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2973 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2967 msgid "The lateral offset on the named lane at which the POI is located at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3046 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3040 msgid "The longitude position of the parking vehicle on the view" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3051 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3045 msgid "The latitude position of the parking vehicle on the view" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3125 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3119 msgid "The id of the TAZ" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3130 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3124 msgid "The shape of the TAZ" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3135 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3129 msgid "TAZ center" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3140 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3134 msgid "An information whether the TAZ shall be filled" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3146 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3140 msgid "The RGBA color with which the TAZ shall be displayed" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3171 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3165 msgid "Depart weight associated to this Edge" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3191 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3185 msgid "Arrival weight associated to this Edget" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3214 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3208 msgid "Traction substation ID" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3225 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3219 msgid "Voltage of at connection point for the overhead wire" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3231 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3225 msgid "Current limit of the feeder line" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3245 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3239 msgid "Overhead wire segment ID" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3250 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3244 msgid "Substation to which the circuit is connected" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3255 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3249 msgid "List of consecutive lanes of the circuit" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3260 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3254 msgid "Starting position in the specified lane" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3266 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3260 msgid "Ending position in the specified lane" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3280 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3274 msgid "Inner lanes, where placing of overhead wire is restricted" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3293 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3287 msgid "Overhead wire clamp ID" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3298 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3292 msgid "" "ID of the overhead wire segment, to the start of which the overhead wire " "clamp is connected" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3303 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3297 msgid "ID of the overhead wire segment lane of overheadWireIDStartClamp" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3308 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3302 msgid "" "ID of the overhead wire segment, to the end of which the overhead wire clamp " "is connected" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3313 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3307 msgid "ID of the overhead wire segment lane of overheadWireIDEndClamp" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3336 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3330 msgid "The id of Route" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3341 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3373 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3335 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3367 msgid "" @@ -6567,16 +8713,22 @@ "spaces" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3346 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3378 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3340 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3372 msgid "This route's color" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3351 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3383 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3345 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3377 msgid "The number of times that the edges of this route shall be repeated" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3389 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3351 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3383 msgid "" @@ -6584,168 +8736,209 @@ "attribute," msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3358 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3390 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3352 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3384 msgid "the times will be shifted forward by 'cycleTime' on each repeat" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3405 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3399 msgid "The id of VehicleType distribution" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3427 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3421 msgid "The id of VehicleType" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3432 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3426 msgid "Vehicle Type Distribution" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3437 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3431 msgid "An abstract vehicle class" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3444 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3438 msgid "This vehicle type's color" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3449 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3443 msgid "The vehicle's netto-length (length) [m]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3454 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3448 msgid "Empty space after leader [m]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3459 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3453 msgid "The vehicle's maximum velocity [m/s]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3464 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3458 msgid "" "The vehicle's expected multiplicator for lane speed limits (or a " "distribution specifier)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3469 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3463 msgid "The vehicle's desired maximum velocity (interacts with speedFactor)." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3470 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3464 msgid "Applicable when no speed limit applies (bicycles, some motorways) [m/s]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3475 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3469 msgid "An abstract emission class" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3481 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3475 msgid "How this vehicle is rendered" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3487 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3481 msgid "The vehicle's width [m] (only used for drawing)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3493 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3487 msgid "The vehicle's height [m] (only used for drawing)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3499 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3493 msgid "" "Image file for rendering vehicles of this type (should be grayscale to allow " "functional coloring)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3504 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3498 msgid "The model used for changing lanes" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3511 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3505 msgid "The model used for car-following" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3518 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3512 msgid "" "The number of persons (excluding an autonomous driver) the vehicle can " "transport" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3523 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3517 msgid "The number of containers the vehicle can transport" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3528 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3522 msgid "The time required by a person to board the vehicle" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3534 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3528 msgid "The time required to load a container onto the vehicle" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3540 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3534 msgid "The preferred lateral alignment when using the sublane-model" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3547 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3541 msgid "" "The minimum lateral gap at a speed difference of 50km/h when using the " "sublane-model" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3553 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3547 msgid "The maximum lateral speed when using the sublane-model" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3559 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3553 msgid "" "The interval length for which vehicle performs its decision logic " "(acceleration and lane-changing)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3565 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3559 msgid "" "The probability when being added to a distribution without an explicit " "probability" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3571 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3565 msgid "3D model file for this class" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3576 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3570 msgid "Carriage lengths" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3581 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3575 msgid "Locomotive lengths" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3586 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3580 msgid "Gap between carriages" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3619 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3613 msgid "The ID of trip" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3669 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3618 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3663 msgid "The id of the vehicle type to use for this trip" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3630 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3624 msgid "The ID of the edge the trip starts at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3635 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3629 msgid "The ID of the edge the trip ends at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3640 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3634 msgid "List of intermediate edge ids which shall be part of the trip" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3648 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3688 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3642 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3682 msgid "" @@ -6753,164 +8946,235 @@ "definition" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3664 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3658 msgid "The id of trip" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3675 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3669 msgid "The name of the junction the trip starts at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3680 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3674 msgid "The name of the junction the trip ends at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3704 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3749 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3698 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3743 msgid "The ID of the vehicle" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3754 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3703 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3748 msgid "The id of the vehicle type to use for this vehicle" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3720 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3760 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3714 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3754 msgid "The index of the edge within route the vehicle starts at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3725 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3765 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3719 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3759 msgid "The index of the edge within route the vehicle ends at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3733 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3773 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3727 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3767 msgid "The time step at which the vehicle shall enter the network" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3789 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3783 msgid "The ID of the flow" -msgstr "" +msgstr "Il codice identificativo del flusso" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3794 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3873 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3915 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3788 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3830 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3867 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3909 msgid "The id of the flow type to use for this flow" -msgstr "" +msgstr "Il codice identificativo del tipo di flussi da usare per questo flusso" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3800 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3794 msgid "The ID of the edge the flow starts at" -msgstr "" +msgstr "Il codice identificativo dell'arco da dove parte il flusso" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3805 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3799 msgid "The ID of the edge the flow ends at" -msgstr "" +msgstr "Il codice identificativo dell'arco dove termina il flusso" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3810 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3804 msgid "List of intermediate edge ids which shall be part of the flow" -msgstr "" +msgstr "Elenco di archi intermedi che fanno parte del flusso" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3831 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3868 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3825 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3862 msgid "The id of the flow" -msgstr "" +msgstr "Il codice identificativo del flusso" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3842 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3836 msgid "The name of the junction the flow starts at" -msgstr "" +msgstr "Il nome dell'incrocio da dove il flusso parte" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3847 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3841 msgid "The name of the junction the flow ends at" -msgstr "" +msgstr "Il nome dell'incrocio dove il flusso termina" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3879 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3873 msgid "The id of the route the flow shall drive along" msgstr "" +"Il codice identificativo dell'itinerario sullo quale il flusso deve passare" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3884 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3921 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3878 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3915 msgid "The index of the edge within route the flow starts at" msgstr "" +"L'indice dell'arco fra tutti gli archi dell'itinerario da dove parte il " +"flusso" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3889 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3926 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3883 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3920 msgid "The index of the edge within route the flow ends at" msgstr "" +"L'indice dell'arco fra tutti gli archi dell'itinerario dove termina il flusso" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3910 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3904 msgid "The name of the flow" -msgstr "" +msgstr "Il nome del flusso" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3963 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3957 msgid "The name of the lane the stop shall be located at" -msgstr "" +msgstr "Il nome della corsia sulla quale la fermata deve essere posizionata" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3986 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3980 msgid "The lateral offset on the named lane at which the vehicle must stop" msgstr "" +"Lo spostamento laterale sulla corsia nominata dove il veicolo deve fermarsi" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4002 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4956 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3996 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4842 msgid "BusStop associated with this stop" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4018 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4988 +msgid "TrainStop associated with this stop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4510 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4012 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4472 msgid "ContainerStop associated with this stop" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4050 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4028 msgid "ChargingStation associated with this stop" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4066 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4044 msgid "ParkingArea associated with this stop" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4090 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4068 msgid "The name of the lane the waypoint shall be located at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4113 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4091 msgid "The lateral offset on the named lane at which the vehicle must waypoint" msgstr "" +"Lo spostamento laterale sulla corsia nominata dove il veicolo passa il punto " +"intermedio" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4129 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4107 msgid "BusWaypoint associated with this waypoint" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4145 +msgid "TrainWaypoint associated with this waypoint" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4161 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4123 msgid "ContainerWaypoint associated with this waypoint" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4177 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4139 msgid "ChargingStation associated with this waypoint" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4193 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4155 msgid "ParkingArea associated with this waypoint" -msgstr "" +msgstr "Parcheggio associato a questo punto intermedio" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4221 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4183 msgid "The time step at which the person shall enter the network" -msgstr "" +msgstr "L'ora quando la persona deve entrare nella rete" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4261 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4223 msgid "The time step at which the container shall enter the network" -msgstr "" +msgstr "L'ora quando il contenitore deve entrare nella rete" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4297 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4327 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4259 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4289 msgid "The ID of the edge the transport starts at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4302 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4264 msgid "The ID of the edge the transport ends at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4559 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4834 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4269 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4337 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4521 @@ -6919,67 +9183,100 @@ msgid "arrival position on the destination edge" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4337 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4275 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4299 msgid "list of vehicle alternatives to take for the transport" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4332 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4294 msgid "ID of the destination container stop" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4359 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4321 msgid "The ID of the edge the tranship starts at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4364 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4326 msgid "The ID of the edge the tranship ends at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4405 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4430 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4331 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4367 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4392 msgid "The position at which the tranship shall enter the net" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4381 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4411 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4442 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4343 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4373 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4404 msgid "speed of the container for this tranship in m/s" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4395 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4357 msgid "The name of the edge the tranship starts at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4400 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4362 msgid "Id of the destination container stop" -msgstr "" +msgstr "Codice identificativo della fermata finale del contenitore" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4425 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4759 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4387 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4669 msgid "id of the edges to walk" -msgstr "" +msgstr "codici identificativi degli archi da camminare" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4436 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4783 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4398 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4674 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4693 msgid "Arrival position on the destination edge" -msgstr "" +msgstr "Posizione di arrivo sull'arco finale" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4465 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4911 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4427 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4797 msgid "The ID of the edge the stop shall be located at" msgstr "" +"Il codice identificativo dell'arco dove la fermata deve essere posizionata" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4483 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4515 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4929 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4961 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4993 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5695 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4445 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4477 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4815 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4847 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5549 msgid "Minimum duration for stopping" -msgstr "" +msgstr "Durata minima della sosta alla fermata" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4490 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4522 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4936 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4968 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5000 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5702 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4452 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4484 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4822 @@ -6988,26 +9285,43 @@ msgid "The time step at which the route continues" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4496 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4528 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4458 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4490 msgid "Activity displayed for stopped container in GUI and output files " msgstr "" +"Attività del contenitore fermo menzionata nell'interfaccia grafica e nei " +"file in uscita " +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4589 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4623 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4511 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4551 msgid "The ID of the edge the person trip starts at" -msgstr "" +msgstr "Il codice identificativo dell'arco dove la persona inizia la sua corsa" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4554 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4516 msgid "The ID of the edge the person trip ends at" msgstr "" +"Il codice identificativo dell'arco dove la persona termina la sua corsa" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4565 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4599 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4633 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4667 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4527 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4561 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4595 msgid "List of possible vehicle types to take" -msgstr "" +msgstr "Elenco di tipi di veicoli atti per la corsa" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4604 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4638 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4672 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4532 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4566 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4600 @@ -7015,293 +9329,405 @@ "List of possible traffic modes. Walking is always possible regardless of " "this value" msgstr "" +"Elenco di modi possibili. Camminare lo è sempre indipendentemente da questo " +"valore" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4609 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4677 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4537 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4571 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4605 msgid "list of vehicle alternatives to take for the person trip" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4594 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4556 msgid "Id of the destination busStop" +msgstr "Codice identificativo della fermata di autobus di destinazione" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4628 +msgid "Id of the destination trainStop" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4657 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4585 msgid "The name of the junction the person trip starts at" -msgstr "" +msgstr "Il nome dell'incrocio dove la persona inizia la sua corsa" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4662 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4590 msgid "The name of the junction the person trip ends at" -msgstr "" +msgstr "Il nome dell'incrocio dove la persona termina la sua corsa" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4699 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4723 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4741 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4627 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4651 msgid "The ID of the edge the walk starts at" -msgstr "" +msgstr "Il codice identificativo dell'arco dove inizia il cammino" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4704 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4632 msgid "The ID of the edge the walk ends at" -msgstr "" +msgstr "Il codice identificativo dell'arco dove termina il cammino" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4728 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4656 msgid "Id of the destination bus stop" +msgstr "Codice identificativo della fermata di autobus di destinazione" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4746 +msgid "Id of the destination train stop" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4778 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4688 msgid "The id of the route to walk" -msgstr "" +msgstr "Il codice identificativo dell'itinerario da camminare" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4798 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4708 msgid "The name of the junction the walk starts at" -msgstr "" +msgstr "Il nome dell'incrocio dove inizia il cammino" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4803 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4713 msgid "The name of the junction the walk ends at" -msgstr "" +msgstr "Il nome dell'incrocio dove termina il cammino" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4824 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4854 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4878 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4734 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4764 msgid "The ID of the edge the ride starts at" -msgstr "" +msgstr "Il codice identificativo dell'arco dove inizia il passaggio" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4829 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4739 msgid "The ID of the edge the ride ends at" -msgstr "" +msgstr "Il codice identificativo dove termina il passaggio" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4840 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4864 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4888 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4750 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4774 msgid "list of vehicle alternatives to take for the ride" -msgstr "" +msgstr "elenco di veicoli alternativi da prendere per il passaggio" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4859 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4769 msgid "ID of the destination bus stop" +msgstr "Codice identificativo della fermata di autobus di destinazione" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4883 +msgid "ID of the destination train stop" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4942 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4974 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5006 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4828 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4860 msgid "Activity displayed for stopped person in GUI and output files " msgstr "" +"Attività della persona ferma menzionata nell'interfaccia grafica e nei file " +"in uscita " +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5018 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4872 msgid "This vehicle's color" -msgstr "" +msgstr "Il colore di questo veicolo" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5024 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4878 msgid "The lane on which thevehicle shall be inserted" -msgstr "" +msgstr "La corsia sulla quale il veicolo deve essere inserito" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5030 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4884 msgid "The position at which the vehicle shall enter the net" -msgstr "" +msgstr "La posizione dove il veicolo deve entrare nella rete" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5036 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4890 msgid "The speed with which the vehicle shall enter the network" -msgstr "" +msgstr "La velocità del veicolo quando entra nella rete" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5042 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4896 msgid "The lane at which the vehicle shall leave the network" -msgstr "" +msgstr "La corsia sulla quale il veicolo deve uscire dalla rete" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5048 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4902 msgid "The position at which the vehicle shall leave the network" -msgstr "" +msgstr "La posizione dove il veicolo deve uscire dalla rete" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5054 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4908 msgid "The speed with which the vehicle shall leave the network" -msgstr "" +msgstr "La velocità del veicolo quando esce dalla rete" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5060 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4914 msgid "" "A string specifying the id of a public transport line which can be used when " "specifying person rides" msgstr "" +"Un codice identificativo di una linea di trasporto pubblico che una persona " +"può usare per un passaggio" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5065 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4919 msgid "The number of occupied seats when the vehicle is inserted" msgstr "" +"Il numero di posti occupati al momento dell'entrata del veicolo nella rete" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5071 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4925 msgid "The number of occupied container places when the vehicle is inserted" msgstr "" +"Il numero di posti per contenitori occupati al momento dell'entrata del " +"veicolo nella rete" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5077 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4931 msgid "" "The lateral position on the departure lane at which the vehicle shall enter " "the net" msgstr "" +"Lo spostamento laterale sulla corsia di partenza dove il veicolo deve " +"entrare nella rete" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5083 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4937 msgid "" "The lateral position on the arrival lane at which the vehicle shall arrive" -msgstr "" +msgstr "Lo spostamento laterale sulla corsia di arrivo del veicolo" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5089 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4943 msgid "Insertion checks" -msgstr "" +msgstr "Prova d'inserimento" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5102 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4956 msgid "First flow departure time" -msgstr "" +msgstr "Partenza iniziale del flusso" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5114 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5135 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4968 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4989 msgid "probability for emitting a flow each second" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5115 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4969 msgid "(not together with vehsPerHour or period)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5121 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4975 msgid "Number of flows per hour, equally spaced" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5122 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4976 msgid "(not together with period or probability or poisson)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5128 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4982 msgid "Insert equally spaced flows at that period" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5129 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4983 msgid "(not together with vehsPerHour or probability or poisson)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5136 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4990 msgid "(not together with vehsPerHour or period or poisson)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5142 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4996 msgid "" "Insert flow expected vehicles per second with poisson distributed insertion " "rate" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5143 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4997 msgid "(not together with period or vehsPerHour or probability)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5156 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5010 msgid "The acceleration ability of vehicles of this type [m/s^2]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5162 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5016 msgid "The deceleration ability of vehicles of this type [m/s^2]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5168 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5022 msgid "" "The apparent deceleration of the vehicle as used by the standard model [m/" "s^2]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5174 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5028 msgid "The maximal physically possible deceleration for the vehicle [m/s^2]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5180 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5187 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5034 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5041 msgid "Car-following model parameter" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5193 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5047 msgid "SKRAUSSX parameter 1" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5198 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5052 msgid "SKRAUSSX parameter 2" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5203 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5057 msgid "SKRAUSSX parameter 3" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5208 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5062 msgid "SKRAUSSX parameter 4" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5213 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5067 msgid "SKRAUSSX parameter 5" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5218 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5072 msgid "EIDM Look ahead / preview parameter [s]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5224 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5078 msgid "EIDM AP Reaction Time parameter [s]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5230 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5084 msgid "EIDM Wiener Process parameter for the Driving Error [s]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5236 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5090 msgid "EIDM Wiener Process parameter for the Estimation Error [s]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5242 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5096 msgid "EIDM Coolness parameter of the Enhanced IDM [-]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5249 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5103 msgid "EIDM leader speed estimation error parameter [-]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5255 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5109 msgid "EIDM gap estimation error parameter [-]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5261 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5115 msgid "EIDM driving error parameter [-]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5267 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5121 msgid "EIDM maximal jerk parameter [m/s^3]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5273 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5127 msgid "" "EIDM maximal negative acceleration between two Action Points (threshold) [m/" "s^2]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5279 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5133 msgid "" "EIDM Time parameter until vehicle reaches amax after startup/driveoff [s]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5285 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5139 msgid "EIDM Flatness parameter of startup/driveoff curve [-]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5291 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5145 msgid "EIDM Shift parameter of startup/driveoff curve [-]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5297 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5151 msgid "" "EIDM parameter if model shall include vehicle dynamics into the acceleration " "calculation [0/1]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5303 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5157 msgid "" "EIDM parameter how many vehicles are taken into the preview calculation of " "the driver (at least always 1!) [-]" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5309 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5315 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5163 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5169 msgid "Peter Wagner 2009 parameter" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5321 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5327 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5175 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5181 msgid "IDMM parameter" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5333 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5339 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5345 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5351 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5363 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5381 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5187 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5193 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5199 @@ -7314,465 +9740,583 @@ msgid "W99 parameter" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5387 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5392 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5241 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5246 msgid "Wiedemann parameter" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5397 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5251 msgid "MinGap factor parameter" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5402 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5256 msgid "K parameter" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5407 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5261 msgid "Kerner Phi parameter" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5412 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5266 msgid "IDM Delta parameter" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5417 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5271 msgid "IDM Stepping parameter" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5422 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5276 msgid "Train Types" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5435 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5289 msgid "" "Minimum distance to pedestrians that are walking towards the conflict point " "with the ego vehicle." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5441 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5295 msgid "" "The accumulated waiting time after which a vehicle will drive onto an " "intersection even though this might cause jamming." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5447 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5301 msgid "" "This value causes vehicles to violate a yellow light if the duration of the " "yellow phase is lower than the given threshold." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5453 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5307 msgid "" "This value causes vehicles to violate a red light if the duration of the red " "phase is lower than the given threshold." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5459 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5313 msgid "" "This value causes vehicles affected by jmDriveAfterRedTime to slow down when " "violating a red light." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5465 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5319 msgid "" "This value causes vehicles to ignore foe vehicles that have right-of-way " "with the given probability." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5471 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5325 msgid "This value is used in conjunction with jmIgnoreFoeProb." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5472 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5326 msgid "" "Only vehicles with a speed below or equal to the given value may be ignored." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5478 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5332 msgid "" "This value configures driving imperfection (dawdling) while passing a minor " "link." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5484 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5338 msgid "" "This value defines the minimum time gap when passing ahead of a prioritized " "vehicle. " msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5490 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5344 msgid "Willingess of drivers to impede vehicles with higher priority" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5503 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5357 msgid "" "The eagerness for performing strategic lane changing. Higher values result " "in earlier lane-changing." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5509 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5363 msgid "" "The willingness for performing cooperative lane changing. Lower values " "result in reduced cooperation." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5515 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5369 msgid "" "The eagerness for performing lane changing to gain speed. Higher values " "result in more lane-changing." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5521 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5375 msgid "" "The eagerness for following the obligation to keep right. Higher values " "result in earlier lane-changing." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5527 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5381 msgid "" "The eagerness for using the configured lateral alignment within the lane." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5528 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5382 msgid "" "Higher values result in increased willingness to sacrifice speed for " "alignment." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5534 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5388 msgid "" "The eagerness for overtaking through the opposite-direction lane. Higher " "values result in more lane-changing." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5540 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5394 msgid "Willingness to encroach laterally on other drivers." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5546 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5400 msgid "" "Minimum lateral gap when encroaching laterally on other drives (alternative " "way to define lcPushy)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5552 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5406 msgid "Willingness to accept lower front and rear gaps on the target lane." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5558 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5412 msgid "Dynamic factor for modifying lcAssertive and lcPushy." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5564 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5418 msgid "" "Time to reach maximum impatience (of 1). Impatience grows whenever a lane-" "change manoeuvre is blocked." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5570 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5424 msgid "Maximum lateral acceleration per second." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5576 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5430 msgid "" "Factor for configuring the strategic lookahead distance when a change to the " "left is necessary (relative to right lookahead)." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5582 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5436 msgid "" "Factor for configuring the threshold asymmetry when changing to the left or " "to the right for speed gain." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5588 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5442 msgid "Upper bound on lateral speed when standing." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5594 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5448 msgid "" "Upper bound on lateral speed while moving computed as lcMaxSpeedLatStanding " "+ lcMaxSpeedLatFactor * getSpeed()" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5600 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5454 msgid "" "Distance to an upcoming turn on the vehicles route, below which the alignment" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5601 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5455 msgid "should be dynamically adapted to match the turn direction." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5607 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5461 msgid "The probability for violating rules gainst overtaking on the right." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5613 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5467 msgid "Time threshold for the willingness to change right." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5619 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5473 msgid "" "Speed difference factor for the eagerness of overtaking a neighbor vehicle " "before changing lanes (threshold = factor*speedlimit)." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5641 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5495 msgid "The name of the person" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5646 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5500 msgid "The id of the person type to use for this person" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5652 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5506 msgid "This person's color" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5658 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5512 msgid "The position at which the person shall enter the net" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5671 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5525 msgid "The name of the container" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5676 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5530 msgid "The id of the container type to use for this container" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5682 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5536 msgid "This container's color" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5708 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5562 msgid "" "If set to a non-negative time value, then the stop duration can be extended " "at most by the extension value in seconds" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5714 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5568 msgid "Whether a person or container or bth may end the stop" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5721 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5575 msgid "List of elements that must board the vehicle before it may continue" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5726 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5580 msgid "List of elements that can board the vehicle before it may continue" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5731 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5585 msgid "Whether the vehicle stops on the road or beside" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5738 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5592 msgid "Activity displayed for stopped person in GUI and output files" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5743 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5597 msgid "" "Parameter to be applied to the vehicle to track the trip id within a " "cyclical public transport route" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5748 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5602 msgid "" "New line attribute to be set on the vehicle when reaching this stop (for " "cyclical public transport route)" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5754 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5608 msgid "Speed to be kept while driving between startPos and endPos" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5760 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5614 msgid "" "Whether the stop may be skipped if no passengers wants to embark or disembark" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5767 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5621 msgid "" "transfer time if there shall be a jump from this stop to the next route edge" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5789 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5643 msgid "Data set ID" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5805 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5659 msgid "Interval ID" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5811 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5665 msgid "Data interval begin time" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5817 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5671 msgid "Data interval end time" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5833 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5687 msgid "edge ID" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5847 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5701 msgid "The ID of the edge the edgeRel starts at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5852 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5706 msgid "The ID of the edge the edgeRel ends at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5866 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5720 msgid "The name of the TAZ the TAZRel starts at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5871 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5725 msgid "The name of the TAZ the TAZRel ends at" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5906 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5760 msgid "The id of this set of measurements" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5911 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5765 msgid "The path to the output file. The path may be relative" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5921 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5775 msgid "" "The time to start writing. If not given, the simulation's begin is used." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5926 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5780 msgid "The time to end writing. If not given the simulation's end is used." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5931 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5785 msgid "" "If set to true, edges/lanes which were not use by a vehicle during this " "period will not be written" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5938 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5792 msgid "If set, junction internal edges/lanes will be written as well" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5944 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5798 msgid "" "The maximum travel time in seconds to write if only very small movements " "occur" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5950 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5804 msgid "" "Consider an edge/lane unused if it has at most this many sampled seconds" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5956 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5810 msgid "The maximum speed to consider a vehicle halting;" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5962 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5816 msgid "space separated list of vehicle type ids to consider" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5967 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5821 msgid "" "whether aggregation should be performed over all vehicles that entered the " "edge/lane in the aggregation interval" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5973 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5827 msgid "" "Whether pedestrians shall be recorded instead of vehicles. Allowed value is " "walk" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5978 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5832 msgid "List of attribute names that shall be written" -msgstr "" +msgstr "Elenco di nomi di attributi da usare in uscita" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5983 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5837 msgid "Restrict output to the given list of edge ids" msgstr "" +"Limita l'uscita agli codici identificativi di archi del elenco seguente" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5988 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5842 msgid "Restrict output to the given the list of edges given in file" msgstr "" +"Limita l'uscita agli codici identificativi di archi contenuti nel file " +"seguente" +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5993 #: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5847 msgid "" "Whether the traffic statistic of all edges shall be aggregated into a single " "value" msgstr "" +"Se le statistische del traffico di tutti gli archi dovrebbero confluire in " +"un valore totale" +#: D:\Repos\sumo/src\netedit\elements\GNEHierarchicalElement.cpp:421 #: /home/micha/programming/sumo/src/netedit/elements/GNEHierarchicalElement.cpp:421 msgid "Some child meanData were lost during sorting" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:96 #: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:96 msgid "" "element must be at least networkElement, additional, TAZ, demandElement, " "dataElement or meanData" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:100 #: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:100 msgid "" "element can be only a networkElement, additional, demandElement, dataElement " "or meanData at the same time" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:104 #: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:104 msgid "element can be only a shape, TAZ or wire element at the same time" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:108 #: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:108 msgid "" "If attributes mask the start and end position, both attributes have to be " "defined" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:134 #: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:134 msgid "Attributes aren't combinables" -msgstr "" +msgstr "Gli attributi non possono essere usati insieme" +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:136 #: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:136 msgid "allow need a disallow attribute in the same tag" msgstr "" +"bisogna definire anche un attributo disallow nello stesso tag quando si usa " +"l'attributo allow" +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:138 #: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:138 msgid "disallow need an allow attribute in the same tag" msgstr "" +"bisogna definire anche un attributo allow nello stesso tag quando si usa " +"l'attributo disallow" +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:152 #: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:152 #, c-format msgid "attribute '%' doesn't have a default value" -msgstr "" +msgstr "l'attributo '%' non possiede un valore standard" +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:158 #: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:158 #, c-format msgid "Attribute '%' not defined" -msgstr "" +msgstr "L'attributo '%' non è definito" +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:165 #: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:165 #, c-format msgid "Maximum number of attributes for tag % exceeded" -msgstr "" +msgstr "Il numero massimo di attributi per il tag % è stato raggiunto" +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:170 #: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:170 #, c-format msgid "Attribute '%' already inserted" -msgstr "" +msgstr "L'attributo '%' è già stato inserito" +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:207 #: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:207 #, c-format msgid "Attribute '%' doesn't exist" -msgstr "" +msgstr "L'attributo '%' non esiste" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAccess.cpp:173 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEEntryExitDetector.cpp:97 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEInductionLoopDetector.cpp:115 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEInstantInductionLoopDetector.cpp:111 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:174 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:190 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:197 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:143 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:201 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:132 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:137 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAccess.cpp:173 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEEntryExitDetector.cpp:97 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEInductionLoopDetector.cpp:115 @@ -7788,619 +10332,723 @@ msgid " > lanes's length" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:148 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:149 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:146 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:128 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:129 -msgid "Copy " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:148 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:146 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:128 -msgid " name to clipboard" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZSourceSink.cpp:146 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:128 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:129 +#, c-format +msgid "Copy % name to clipboard" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:149 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:129 -msgid " typed name to clipboard" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:148 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZSourceSink.cpp:147 +msgid "Copy % typed name to clipboard" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:156 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:156 #: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:136 msgid "Open " msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:156 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:156 #: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:136 msgid " Dialog" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:164 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:174 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:164 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:174 msgid "Cursor position over additional shape: " msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:168 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:168 msgid "Cursor position over lane: " msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:178 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:178 msgid "Mouse position over edge: " msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:181 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:139 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:181 #: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:139 msgid "Cursor position in view: " msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:398 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:398 msgid "Invalid number of edges" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:104 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:104 msgid "add bus stop '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:148 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:148 msgid "add train stop '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:186 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:186 msgid "" "Could not build access in netedit; busStop parent already owns an access in " "the edge '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:188 -msgid "Could not build access in netedit; The lane '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:188 -msgid "' doesn't support pedestrians" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:188 +#, c-format +msgid "" +"Could not build access in netedit; The lane '%' doesn't support pedestrians" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:194 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:194 msgid "add access in '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:235 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:235 msgid "add container stop '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:279 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:279 msgid "add charging station '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:322 -msgid "Could not build parking area with ID '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:322 -msgid "' in netedit; Invalid departPos over lane." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:323 +#, c-format +msgid "" +"Could not build parking area with ID '%' in netedit; Invalid departPos over " +"lane." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:331 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:330 msgid "add parking area '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:353 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:352 msgid "" "Could not build parking space in netedit; attribute width cannot be parse to " "float." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:355 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:354 msgid "" "Could not build parking space in netedit; attribute length cannot be parse " "to float." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:357 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:356 msgid "" "Could not build parking space in netedit; attribute angle cannot be parse to " "float." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:378 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:377 msgid "add parking space in '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:422 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:421 msgid "add induction loop '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:461 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:519 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:528 -msgid "Could not build lane area detector with ID '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:461 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:528 -msgid "' in netedit; invalid traffic light ID." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:462 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:529 +#, c-format +msgid "" +"Could not build lane area detector with ID '%' in netedit; invalid traffic " +"light ID." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:487 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:548 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:486 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:547 msgid "add lane area detector '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:519 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1543 -msgid "' in netedit; Lanes aren't consecutives." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:520 +#, c-format +msgid "" +"Could not build lane area detector with ID '%' in netedit; Lanes aren't " +"consecutives." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:593 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:592 msgid "add entry-exit detector '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:628 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:627 msgid "add entry detector in '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:663 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:662 msgid "add exit detector in '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:700 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:699 msgid "add instant induction loop '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:750 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:749 msgid "add lane calibrator '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:804 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:803 msgid "add calibrator '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:845 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:844 msgid "add calibrator flow in '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:901 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:900 msgid "add rerouter '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:939 -msgid "Could not build interval with ID '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:939 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1244 -msgid "' in netedit; begin is greather than end." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:940 +#, c-format +msgid "" +"Could not build interval with ID '%' in netedit; begin is greather than end." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:948 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:947 msgid "add rerouter interval in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "Could not build interval with begin '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "' in '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "' due overlapping." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:957 +#, c-format +msgid "" +"Could not build interval with begin '%' and end '%' in '%' due overlapping." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:979 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:978 msgid "add closing lane reroute in '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1007 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1006 msgid "add closing reroute in '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1034 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1033 msgid "add dest prob reroute in '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1062 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1061 msgid "add parking area reroute in '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1090 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1089 msgid "add route prob reroute in '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1127 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1126 msgid "add route probe '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1173 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1172 msgid "add Variable Speed Sign '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1214 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1213 msgid "add VSS Step in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1244 -msgid "Could not build Vaporizer with ID '" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1245 +#, c-format +msgid "" +"Could not build Vaporizer with ID '%' in netedit; begin is greather than end." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1251 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1250 msgid "add vaporizer in '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1305 -msgid "Could not build TAZ with ID '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1305 -msgid "' in netedit; Invalid Shape." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1306 +#, c-format +msgid "Could not build TAZ with ID '%' in netedit; Invalid Shape." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1317 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1316 msgid "add TAZ '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1378 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1472 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1377 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1471 msgid "add TAZ Sink in '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1401 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1450 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1400 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1449 msgid "add TAZ Source in '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1412 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1411 msgid "update TAZ Source in '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1483 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1482 msgid "update TAZ Sink in '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1512 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1511 msgid "add taction substation '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1543 -msgid "Could not build overhead wire with ID '" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1544 +#, c-format +msgid "" +"Could not build overhead wire with ID '%' in netedit; Lanes aren't " +"consecutives." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1556 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1555 msgid "add overhead wire '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1605 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1604 msgid "add polygon '" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1638 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1681 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1720 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1637 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1680 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1719 msgid "add POI '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1711 -msgid "Could not build POI with ID '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1711 -msgid "' in netedit; Network requires a geo projection." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1925 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:116 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -msgid "Could not build " +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1712 +#, c-format +msgid "Could not build POI with ID '%' in netedit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -msgid " with ID '" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1712 +msgid "Network requires a geo projection." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -msgid "' in netedit; ID contains invalid characters." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1908 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1914 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1920 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1932 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1938 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1944 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1950 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:245 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:257 +msgid "Could not build % with ID '%' in netedit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -msgid "' in netedit; Invalid position over lane." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1908 +msgid "ID contains invalid characters." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -msgid "' in netedit; declared twice." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1914 +msgid "Invalid position over lane." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1925 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -msgid " doesn't exist." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1920 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:245 +msgid "Declared twice." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -msgid "' in netedit; attribute " +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1926 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2005 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2023 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:251 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:116 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:132 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2198 +#, c-format +msgid "Could not build % in netedit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -msgid " cannot be negative." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1926 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2005 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2023 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:251 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:257 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2198 +#, c-format +msgid "% doesn't exist." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -msgid "' in netedit; list of VTypes isn't valid." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1932 +#, c-format +msgid "Attribute % cannot be negative." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -msgid "' in netedit; filename is invalid." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1938 +msgid "List of VTypes isn't valid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -msgid "' in netedit; list of lanes isn't valid." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1944 +msgid "Filename is invalid." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -msgid " in netedit; " +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1950 +msgid "List of lanes isn't valid." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:194 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:194 msgid "Both edges and lanes aren't defined" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:238 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:480 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:238 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:480 msgid "Both myEdge and myLane aren't defined" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibratorFlow.cpp:94 -msgid "calibratorFlow of calibrator '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibratorFlow.cpp:95 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibratorFlow.cpp:94 +#, c-format msgid "" -"' cannot be written. Either type or vehsPerHour or speed must be enabled" +"calibratorFlow of calibrator '%' cannot be written. Either type or " +"vehsPerHour or speed must be enabled" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:179 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:125 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:179 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:125 msgid "lanes aren't consecutives" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:183 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:129 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:183 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:129 msgid "lanes aren't connected" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:202 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:141 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:202 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:147 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:141 msgid " and " msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:115 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:115 msgid "' needs at least one entry and one exit" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:317 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:317 msgid "An entry-exit detector needs at least one entry detector" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:320 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:320 msgid "An entry-exit detector needs at least one exit detector" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:319 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:319 msgid "Release from lane" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:323 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:323 msgid "Attach to nearest lane" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:214 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:214 msgid "Simplify Shape" -msgstr "" +msgstr "Semplifica forma" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:214 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:214 msgid "Replace current shape with a rectangle" -msgstr "" +msgstr "Rimpiazza la forma attuale con un rettangolo" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:220 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:220 msgid "Open shape" -msgstr "" +msgstr "Apri forma" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:220 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:220 msgid "Open polygon's shape" -msgstr "" +msgstr "Apri la forma del poligono" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:222 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:66 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:222 #: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:65 msgid "Close shape" -msgstr "" +msgstr "Chiudi forma" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:222 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:222 msgid "Close polygon's shape" -msgstr "" +msgstr "Chiudi la forma del poligono" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:224 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:224 msgid "Select elements within polygon" -msgstr "" +msgstr "Seleziona elementi all'interno del poligono" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:224 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:224 msgid "Select elements within polygon boundary" -msgstr "" +msgstr "Seleziona elementi contenuti nel profilo del poligono" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:234 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:234 msgid "Remove geometry point" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:234 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:234 msgid "Remove geometry point under mouse" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:235 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:235 msgid "Set first geometry point" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:447 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:447 msgid "Number of remaining points insufficient" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:474 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:474 msgid "Polygon already opened" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:495 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:495 msgid "Polygon already closed" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:506 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:506 msgid "Selected point must be different of the first point" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:571 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:571 msgid "Polygon already simplified" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZ.cpp:282 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:715 #: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZ.cpp:282 msgid "Set custom Geometry Point" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:62 #: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:62 msgid "add data set" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:87 #: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:87 msgid "add data set and data interval" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:102 #: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:100 msgid "add data interval" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:130 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:167 #: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:128 #: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:165 msgid "add edge rel" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:205 -msgid "There is already a TAZ rel defined between '" +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:207 +msgid "There is already a TAZ rel defined between '%' and '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:207 -msgid "There is already a TAZ rel defined in '" +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:209 +msgid "There is already a TAZ rel defined in '%'." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:213 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:224 #: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:211 #: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:222 msgid "add TAZ rel" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1511 -msgid "' doesn't exist." -msgstr "" - +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataInterval.cpp:173 #: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataInterval.cpp:173 msgid "GenericData was already inserted" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataInterval.cpp:199 #: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataInterval.cpp:199 msgid "GenericData wasn't previously inserted" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:214 #: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:214 msgid "DataInterval was already inserted" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:231 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:255 #: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:231 #: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:255 msgid "DataInterval wasn't previously inserted" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:136 +msgid "Open % Dialog" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:316 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdgeType.cpp:155 #: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:316 #: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdgeType.cpp:155 msgid "Invalid index" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:64 #: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:64 msgid "Could not build meanDataEdge; " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:64 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:93 -msgid " already exists" +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:64 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:93 +#, c-format +msgid "% already exists" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:70 #: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:70 msgid "add meanDataEdge" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:93 #: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:93 msgid "Could not build meanDataLane; " msgstr "" +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:99 #: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:99 msgid "add meanDataLane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:116 -msgid " in netedit; edge doesn't exist." +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:116 +msgid "Edge doesn't exist." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -msgid " in netedit; attribute '" +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:132 +#, c-format +msgid "Attribute '%' doesn't exist." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNEPersonTrip.cpp:312 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEPersonTrip.cpp:323 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNEPersonTrip.cpp:306 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNEPersonTrip.cpp:317 msgid "This personTrip use junctions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:71 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:100 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1499 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1523 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1535 -msgid "There is another " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:71 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:100 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1499 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1523 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1535 -msgid " with the same ID='" -msgstr "" - +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:71 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1608 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1632 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1644 +msgid "There is another % with the same ID='%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:76 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:126 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:152 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:197 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:250 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:291 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:337 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:381 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:428 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:472 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:508 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:539 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:591 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:607 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:623 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:639 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:697 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:714 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:729 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:745 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:761 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:777 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:820 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:836 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:852 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:885 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:916 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:951 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:967 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1007 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1024 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1040 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1189 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1209 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:76 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:126 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:161 @@ -8436,31 +11084,33 @@ msgid "add " msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:102 -msgid " need at least one " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:108 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:118 -msgid " with id '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:108 -msgid "' doesn't exist in " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:102 +msgid "% needs at least one %" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:115 -msgid "Invalid definition for " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:108 +msgid "% with id '%' doesn't exist in % '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:115 -msgid " in " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:115 +msgid "Invalid definition for % in % '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:118 -msgid "' cannot be created in " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:118 +msgid "% with id '%' cannot be created in % '%'" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:183 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:236 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:277 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:325 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:369 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:416 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:460 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:500 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:531 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:877 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:908 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:192 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:244 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:285 @@ -8475,430 +11125,722 @@ msgid "VType distributions currently unsupported in netedit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:194 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:246 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:335 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:379 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:426 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:470 -msgid "Invalid vehicle type '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:194 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:246 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:290 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:335 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:379 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:426 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:470 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:510 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:541 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:821 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:852 -msgid "' used in " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:197 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:199 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:251 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:253 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:338 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:340 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:382 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:384 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:429 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:431 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:473 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:475 -msgid " used in " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:238 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:279 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:327 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:371 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:418 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:462 +msgid "Invalid vehicle type '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:188 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:243 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:284 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:330 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:374 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:465 +msgid "Invalid % used in % '%'. % is greater than number of lanes" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:190 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:245 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:286 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:332 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:376 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:423 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:467 +msgid "Invalid % used in % '%'. % is greater than vType %" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:223 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:231 msgid "netedit doesn't support route distributions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:290 -msgid "Invalid route '" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:251 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:253 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:338 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:340 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:382 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:384 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:429 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:431 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:473 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:475 -msgid "Invalid " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:241 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:282 +msgid "Invalid route '%' used in % '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -msgid " is greater than number of lanes" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:502 +msgid "Invalid person type '%' used in % '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -msgid " is greater than vType" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:533 +msgid "Invalid personFlow type '%' used in % '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:510 -msgid "Invalid person type '" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:879 +msgid "Invalid container type '%' used in % '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:541 -msgid "Invalid personFlow type '" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:910 +msgid "Invalid containerFlow type '%' used in % '%'." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1039 -msgid "Containers don't support stops at busStops" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1102 +msgid "Containers don't support stops at busStops or trainStops" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1110 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1047 msgid "Persons don't support stops at containerStops" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1118 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1055 msgid "Persons don't support stops at chargingStations" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1121 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1058 msgid "Containers don't support stops at chargingStations" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1129 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1066 msgid "Persons don't support stops at parkingAreas" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1132 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1069 msgid "Containers don't support stops at parkingAreas" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1142 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1079 msgid "vehicles don't support stops at edges" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1155 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1092 msgid "A stop must be defined either over a stoppingPlace, a edge or a lane" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1157 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1094 msgid "A stop requires only a stoppingPlace, edge or lane" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1282 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1214 msgid "A person trip from edge to edge needs two edges edge" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1292 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1224 msgid "A person trip from edge to busStop needs one edge and one busStop" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1302 +msgid "A person trip from edge to trainStop needs one edge and one trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1312 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1234 msgid "A person trip from junction to junction needs two junctions junction" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1245 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1404 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1425 -msgid "A ride from busStop to edge needs a busStop and an edge" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1323 +msgid "A walk to edge needs a busStop and an edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1255 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1414 -msgid "A transport from busStop to busStop needs two busStops" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1333 +msgid "A walk to busStop needs two busStops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1265 -msgid "A transport with edges attribute needs a list of edges" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1343 +msgid "A walk to trainStop needs two trainStops" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1275 -msgid "A route transport needs a route" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1353 +msgid "A walk with edges needs a list of edges" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1363 +msgid "A route walk needs a route" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1373 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1285 msgid "A ride from busStop to junction needs a busStop and an junction" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1384 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1296 msgid "A ride from edge to edge needs two edges edge" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1394 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1306 msgid "A ride from edge to busStop needs one edge and one busStop" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1404 +msgid "A ride from edge to trainStop needs one edge and one trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1418 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1568 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1320 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1459 msgid "A stop has to be placed over an edge" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1429 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1579 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1331 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1470 msgid "A stop has to be placed over a busStop" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1440 +msgid "A stop has to be placed over a trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1513 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1534 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1245 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1404 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1425 +msgid "A ride from busStop to edge needs a busStop and an edge" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1523 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1255 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1414 +msgid "A transport from busStop to busStop needs two busStops" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1544 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1435 msgid "A tranship from busStop to busStop needs two busStops" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1554 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1445 msgid "A tranship with edges attribute needs a list of edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1511 -msgid "Via edge '" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1620 +#, c-format +msgid "Via edge '%' doesn't exist." msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNEStop.cpp:446 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNEStop.cpp:443 msgid "Invalid Stop parent" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNEStop.cpp:461 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNEStop.cpp:458 msgid "Invalid parent" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNEVehicle.cpp:645 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNEVehicle.cpp:645 msgid "Invalid vehicle tag" msgstr "" +#: D:\Repos\sumo/src\netedit\elements\demand\GNEWalk.cpp:336 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEWalk.cpp:351 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNEWalk.cpp:331 #: /home/micha/programming/sumo/src/netedit/elements/demand/GNEWalk.cpp:346 msgid "This walk use junctions" -msgstr "" +msgstr "Questo cammino utilizza incroci" +#: D:\Repos\sumo/src\netedit\elements\network\GNEConnection.cpp:679 #: /home/micha/programming/sumo/src/netedit/elements/network/GNEConnection.cpp:679 msgid "Could not set attribute '%' (tls is broken)" -msgstr "" +msgstr "Non ho potuto impostare l'attributo '%' (il semaforo è invalido)" +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdge.cpp:2180 #: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdge.cpp:2180 msgid "Could not compute smooth shape for edge '%'" -msgstr "" +msgstr "Non ho potuto appianare la forma dell'arco '%'" +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdge.cpp:2198 #: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdge.cpp:2198 msgid "Could not compute smooth elevation for edge '%'" -msgstr "" +msgstr "Non ho potuto calcolare il livello appianato per l'arco '%'" +#: D:\Repos\sumo/src\netedit\elements\network\GNEInternalLane.cpp:241 #: /home/micha/programming/sumo/src/netedit/elements/network/GNEInternalLane.cpp:241 msgid "invalid link state='%'" -msgstr "" +msgstr "stato del collegamento invalido ('%')" +#: D:\Repos\sumo/src\netedit\elements\network\GNEJunction.cpp:335 #: /home/micha/programming/sumo/src/netedit/elements/network/GNEJunction.cpp:335 msgid "Reset junction shapes" -msgstr "" +msgstr "Resetta le forme degli incroci" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:471 #: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:470 msgid "Unexpected LinkState '%'" +msgstr "Stato di collegamento inaspettato '%'" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:672 +msgid "Copy parent edge name to clipboard" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:810 -msgid "Lane Parametric Length cannot be never 0" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:681 +msgid "Remove Lane From Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:972 -msgid "Opposite lane '%' does not connect the same nodes as edge '%'!" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:683 +msgid "Add Lane To Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:49 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:738 -msgid "Internal attributes" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:687 +msgid "Remove Edge From Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:175 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:177 -msgid "Invalid input parameter of " +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:689 +msgid "Add Edge To Selected" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:60 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:62 -msgid "name" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:706 +msgid "Reset edge end points" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:64 -msgid "button" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:733 +msgid "Select state for all links from this edge:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:69 -msgid "Disabled" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:743 +msgid "Additional options available in 'Inspect Mode'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:476 -msgid "Unsupported additional ID" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:758 +msgid "Shape pos: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:55 -msgid "Consecutive lane selector" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:759 +msgid "Length pos: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:59 -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:411 -msgid "No lanes selected" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:761 +msgid "Distance: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:61 -msgid "Finish path creation" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:763 +msgid "Height: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:64 -msgid "Abort path creation" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:764 +msgid "Angle: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:67 -msgid "Remove last lane" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:811 +#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:810 +msgid "Lane Parametric Length cannot be never 0" +msgstr "La lunghezza parametrica della corsia non può in nessun caso essere 0" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:973 +#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:972 +msgid "Opposite lane '%' does not connect the same nodes as edge '%'!" msgstr "" +"La corsia nella direzione opposta non collega gli stessi nodi dell'arco '%'!" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:70 -msgid "Show candidate lanes" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1846 +#, c-format +msgid "Edge operations (% selected)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:73 -msgid "-BACKSPACE: undo click" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1848 +msgid "Edge operations" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:73 -msgid "-ESC: Abort path creation" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1851 +msgid "Split edge here" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:134 -msgid "Invalid lane" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1852 +msgid "Split edge in both directions here (no simmetric opposite edge)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:151 -msgid "Lane path needs at least two lanes" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1857 +msgid "Split edge in both directions here (no opposite edge)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:171 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:393 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:469 -msgid "route creation" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1864 +msgid "Split edge in both directions here" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:406 -msgid "- Selected lanes: " +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1868 +msgid "Set geometry endpoint here (shift-click)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:407 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:943 -msgid "- Length: " +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1872 +msgid "Restore both geometry endpoints" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:48 -msgid "Parent " +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1874 +msgid "Restore geometry endpoints of all selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:65 -msgid "Parent element" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1877 +msgid "Restore geometry endpoint (shift-click)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:108 -msgid "select item..." +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1879 +msgid "Reverse %" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:110 -msgid "-Select an item in the list or" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1880 +msgid "Add reverse direction for %" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:110 -msgid "click over an element in view" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1884 +msgid "Add reverse disconnected direction for %" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:133 -msgid "select sub-item..." +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1885 +msgid "Reset lengths for %" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:136 -msgid "-Clicked over multiple" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1886 +msgid "Straighten %" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:137 -msgid "elements" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1887 +msgid "Smooth %" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:138 -msgid " - Select an item in the" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1888 +msgid "Straighten elevation of %" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:139 -msgid " list or click over an" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1889 +msgid "Smooth elevation of %" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:140 -msgid " element in view" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1936 +#, c-format +msgid "Lane operations (% selected)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:333 -msgid "Selected item '" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1938 +msgid "Lane operations" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:333 -msgid "' in DemandElementSelector" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1940 +msgid "Duplicate lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:346 -msgid "Selected invalid item in DemandElementSelector" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1941 +msgid "Set custom lane shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:48 -msgid "Drawing" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1942 +msgid "Reset custom shape" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:52 -msgid "Start drawing" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1946 +msgid "Reset opposite lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:53 -msgid "Stop drawing" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1958 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1969 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1978 +msgid "Sidewalk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:54 -msgid "Abort drawing" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1959 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1971 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1979 +msgid "Bike lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:58 -msgid "- 'Start drawing' or ENTER" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1960 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1973 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1980 +msgid "Bus lane" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:59 -msgid " to create shape." +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1963 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1975 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1981 +msgid "Green verge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:60 -msgid "- 'Stop drawing' or ENTER to" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1965 +msgid "Green verge (front)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:61 -msgid " finish shape creation." +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1966 +msgid "Green verge (back)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:62 -msgid "- 'Abort drawing' or ESC to" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1983 +msgid "Add restricted %" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:63 -msgid " abort shape creation." +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1984 +msgid "Remove restricted %" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:64 -msgid "- 'Shift + Click' to remove" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1985 +msgid "Transform to restricted %" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:65 -msgid " last inserted point." +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2026 +#, c-format +msgid "Template operations (% selected)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2028 +msgid "Template operations" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2031 +msgid "Use edge as template" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2032 +msgid "Apply template" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2047 +msgid "Select reachable" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2052 +msgid "Select reachable (compute junctions)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:746 +#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:49 +#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:738 +msgid "Internal attributes" +msgstr "Attributi interni" + +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:176 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:178 +#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:175 +#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:177 +msgid "Invalid input parameter of " +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:61 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:63 +#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:60 +#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:62 +msgid "name" +msgstr "nome" + +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:65 +#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:64 +msgid "button" +msgstr "bottone" + +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:70 +#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:69 +msgid "Disabled" +msgstr "Disattivato" + +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:477 +#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:476 +msgid "Unsupported additional ID" +msgstr "Codice identificativo dell'elemento addizionale non supportato" + +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:55 +#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:55 +msgid "Consecutive lane selector" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:59 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:411 +#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:59 +#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:411 +msgid "No lanes selected" +msgstr "Nessuna corsia selezionata" + +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:61 +#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:61 +msgid "Finish path creation" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:64 +#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:64 +msgid "Abort path creation" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:67 +#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:67 +msgid "Remove last lane" +msgstr "Rimuovi l'ultima corsia" + +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:70 +#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:70 +msgid "Show candidate lanes" +msgstr "Mostri le corsie candidate" + +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:73 +#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:73 +msgid "-BACKSPACE: undo click" +msgstr "-BACKSPACE: annulla clic" + +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:73 +#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:73 +msgid "-ESC: Abort path creation" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:134 +#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:134 +msgid "Invalid lane" +msgstr "Corsia invalida" + +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:151 +#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:151 +msgid "Lane path needs at least two lanes" +msgstr "La serie di corsie deve contenerne almeno due" + +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:482 +#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:171 +#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:393 +#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:469 +msgid "route creation" +msgstr "creazione di itinerari" + +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:406 +#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:406 +msgid "- Selected lanes: " +msgstr "- Corsie selezionate: " + +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:407 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:959 +#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:407 +#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:943 +msgid "- Length: " +msgstr "- Lunghezza: " + +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:48 +#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:48 +msgid "Parent " +msgstr "Padre " + +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:65 +#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:65 +msgid "Parent element" +msgstr "Elemento padre" + +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:108 +#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:108 +msgid "select item..." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:110 +#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:110 +msgid "-Select an item in the list or" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:110 +#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:110 +msgid "click over an element in view" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:133 +#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:133 +msgid "select sub-item..." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:136 +#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:136 +msgid "-Clicked over multiple" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:137 +#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:137 +msgid "elements" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:138 +#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:138 +msgid " - Select an item in the" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:139 +#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:139 +msgid " list or click over an" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:140 +#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:140 +msgid " element in view" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:337 +#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:333 +msgid "Selected item '" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:337 +#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:333 +msgid "' in DemandElementSelector" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:350 +#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:346 +msgid "Selected invalid item in DemandElementSelector" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:49 +#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:48 +msgid "Drawing" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:53 +#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:52 +msgid "Start drawing" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:54 +#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:53 +msgid "Stop drawing" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:55 +#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:54 +msgid "Abort drawing" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:59 +msgid "'Start drawing' or ENTER to create a shape." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:60 +msgid "'Stop drawing' or ENTER to finish shape creation." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:61 +msgid "'Abort drawing' or ESC to abort shape creation." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:62 +msgid "'Shift + Click' to remove the last inserted point." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:134 #: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:137 msgid "A new point cannot be added if drawing wasn't started" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:34 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:34 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:614 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1406 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:101 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:323 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:621 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:536 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:85 #: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:34 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:34 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:614 @@ -8911,195 +11853,274 @@ msgid "Information" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:38 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:38 #: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:38 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:38 msgid " edge candidate" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:42 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:42 #: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:42 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:42 msgid " last edge selected" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:45 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:45 #: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:45 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:45 msgid " edge selected" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:51 #: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:48 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:51 msgid " edge disconnected" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:62 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:62 msgid "Hierarchy" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:211 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:211 #, c-format msgid "Default Vehicle Type '%' cannot be removed" -msgstr "" +msgstr "Il tipo di veicoli standard '%' non può essere rimosso" +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:316 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:276 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:84 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:316 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:84 msgid "Center" -msgstr "" +msgstr "Centra" +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:323 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:1089 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:323 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:1252 msgid "Inspect" -msgstr "" +msgstr "Ispeziona" +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:324 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:98 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:442 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1384 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:324 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:259 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:96 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:440 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1356 msgid "Delete" -msgstr "" +msgstr "Rimuovi" +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:397 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:477 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:397 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:416 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:477 msgid " origin" -msgstr "" +msgstr " origine" +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:398 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:417 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:478 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:398 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:417 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:478 msgid " destination" -msgstr "" +msgstr " destinazione" +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:506 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:632 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:706 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:506 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:632 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:706 msgid " additionals..." -msgstr "" +msgstr " elementi addizionali..." +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:520 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:583 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:646 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:720 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:520 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:583 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:646 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:720 msgid " demand elements..." -msgstr "" +msgstr " elementi di domanda..." +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:597 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:660 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:738 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:534 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:597 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:660 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:738 msgid " edges..." -msgstr "" +msgstr " archi..." +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:548 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:611 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:674 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:756 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:548 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:611 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:674 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:756 msgid " lanes..." -msgstr "" +msgstr " corsie..." +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:569 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:569 msgid " TAZElements..." -msgstr "" +msgstr " zone di assegnazione del traffico..." +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:815 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:911 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:815 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:911 msgid "Data elements" -msgstr "" +msgstr "Elementi di dati" +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:841 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:841 msgid "Incomings" -msgstr "" +msgstr "Entranti" +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:851 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:851 msgid "Outgoing" -msgstr "" +msgstr "Uscenti" +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:890 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:65 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1322 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:890 #: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:65 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1325 msgid "Edges" -msgstr "" +msgstr "Archi" +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:890 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:71 #: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:890 #: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:71 msgid "Lanes" -msgstr "" +msgstr "Corsie" +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:51 #: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:50 msgid "Flow attributes" -msgstr "" +msgstr "Attributi del flusso" +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:470 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:597 #: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:170 #: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:469 #: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:596 msgid "rate" -msgstr "" +msgstr "rata" +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:344 #: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:343 msgid "change multiple flow attributes" -msgstr "" +msgstr "modifica più attributi di flussi" +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:370 #: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:369 msgid "enable multiple flow attributes" -msgstr "" +msgstr "attiva più attributi di flussi" +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:386 #: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:385 msgid "disable multiple flow attributes" -msgstr "" +msgstr "disattiva più attributi di flussi" +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:541 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:569 #: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:540 #: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:568 msgid "different: " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:185 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:185 msgid "Parameters of " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:195 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:195 msgid "Attribute" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:196 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:196 msgid "Description" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:197 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:197 msgid "Definition" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 msgid "Opening HelpAttributes dialog for tag '" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 msgid "' showing " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 msgid " attributes" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:247 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:247 msgid "Closing HelpAttributes dialog for tag '" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:319 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:418 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:495 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:319 #: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:417 #: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:494 msgid "Scale: Min -> Max" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:168 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:159 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:160 msgid "Inspect vehicle " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:180 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:171 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:172 msgid "Open dialog for editing color" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:184 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:256 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:257 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:176 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:177 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:248 @@ -9107,610 +12128,785 @@ msgid "Open dialog for editing allowed vClasses" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:480 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:499 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:615 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:472 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:491 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:607 msgid "change multiple attributes" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:618 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:610 msgid "change " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:618 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:610 msgid " attribute" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 msgid "Value '" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 msgid "' for attribute " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 msgid " of " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 msgid " isn't valid" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:689 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:681 msgid "enable attribute '" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:697 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:689 msgid "disable attribute '" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:971 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:963 msgid "Extended attributes" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:974 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:966 msgid "Open attributes editor" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1005 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:997 msgid "Attributes" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1009 #: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:1001 msgid "Edit attributes" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1155 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1164 +#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:749 +msgid "Parameters" +msgstr "" + #: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:49 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:97 msgid "Netedit attributes" -msgstr "" +msgstr "Attributi netedit" #: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:55 #: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:195 msgid "reference left" -msgstr "" +msgstr "riferimento sinistro" #: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:56 #: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:201 msgid "reference right" -msgstr "" +msgstr "riferimento destro" #: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:57 #: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:206 msgid "reference center" -msgstr "" +msgstr "riferimento centrale" #: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:69 msgid "Center view" -msgstr "" +msgstr "Centra veduta" #: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:137 msgid "Current selected reference point isn't valid" -msgstr "" +msgstr "Il punto di riferimento selezionato non è valido" #: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:231 msgid "- Reference point: Mark the initial position of the additional element." msgstr "" +"- Punto di riferimento: Segna la posizione iniziale dell'elemento " +"addizionale." #: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:232 msgid "" " Example: If you want to create a busStop with a length of 30 in the point " "100 of the lane:" msgstr "" +" Esempio: Se vuoi creare una fermata di autobus lunga 30 al punto 100 della " +"corsia:" #: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:233 msgid " - Reference Left will create it with startPos = 70 and endPos = 100." msgstr "" +" - Riferimento sinistro risulterà in una posizione iniziale di 70 e una " +"posizione finale di 100." #: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:234 msgid "" " - Reference Right will create it with startPos = 100 and endPos = 130." msgstr "" +" - Riferimento destro risulterà in una posizione iniziale di 100 e una " +"posizione finale di 130." #: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:235 msgid "" " - Reference Center will create it with startPos = 85 and endPos = 115." msgstr "" +" - Riferimento centrale risulterà in una posizione iniziale di 85 e una " +"posizione finale di 115." +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:236 #: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:236 msgid "" "- Block movement: if is enabled, the created additional element will be " "blocked. i.e. cannot be moved with" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:237 #: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:237 msgid " the mouse. This option can be modified inspecting element." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:238 #: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:238 msgid "- Center view: if is enabled, view will be center over created element." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:49 #: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:49 msgid "NetworkElements" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:56 #: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:56 msgid "Use selected" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:63 #: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:63 msgid "-Click over an edge to select" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:69 #: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:69 msgid "-Click over an lane to select" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:183 #: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:74 #: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:183 msgid "Invalid NetworkElementType" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:52 #: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:52 msgid "Overlapped elements" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:62 #: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:62 msgid "Overlapped " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:275 #: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:275 msgid "GEO attributes Help" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:278 #: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:278 msgid " - Click in the same position" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:279 #: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:279 msgid " for inspect next element" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:280 #: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:280 msgid " - Shift + Click in the same" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:281 #: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:281 msgid " position for inspect" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:282 #: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:282 msgid " previous element" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:145 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:145 msgid "Route creator" -msgstr "" +msgstr "Creatore d'itinerari" +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:964 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1153 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:152 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:948 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1156 msgid "No edges selected" -msgstr "" +msgstr "Nessun'arco selezionato" +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:154 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:154 msgid "Use last route" -msgstr "" +msgstr "Usa l'ultimo itinerario" +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:157 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:157 msgid "Finish route creation" -msgstr "" +msgstr "Termina la creazione dell'itinerario" +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:160 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:160 msgid "Abort route creation" -msgstr "" +msgstr "Annulla la creazione dell'itinerario" +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:163 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:163 msgid "Remove last edge" -msgstr "" +msgstr "Rimuovi l'ultimo arco" +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:166 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:166 msgid "Show candidate edges" -msgstr "" +msgstr "Mostra gli archi candidati" +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:387 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:374 msgid "Double junctions aren't allowed" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:395 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:382 msgid "Only two junctions are allowed" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:434 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:421 msgid "Double edges aren't allowed" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:444 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:431 msgid "Only consecutives edges are allowed" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:453 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:440 msgid "Only two edges are allowed" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:462 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:449 msgid "Invalid edge (SHIFT + click to add an invalid vClass edge)" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:469 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:456 msgid "Invalid edge (CONTROL + click to add a disconnected edge)" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:547 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:531 msgid "first select an edge" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:957 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:941 msgid "- Selected edges: " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:958 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:942 msgid "- Path edges: " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:960 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:944 msgid "- Average speed: " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:48 #: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:48 msgid " edge conflict (vClass)" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:36 #: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:36 msgid "Parent selector" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:39 #: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:39 msgid "No element selected" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:82 #: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:82 msgid "Parent type: " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:219 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:230 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:219 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:230 msgid "Invalid row or column" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:254 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:254 msgid "Invalid row" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:264 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:274 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:264 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:274 msgid "Invalid column" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:609 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:609 msgid "Accumulated: " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:679 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:679 msgid "Add phase" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:679 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:679 msgid "Add new phase." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:684 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:684 msgid "Default phase" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:684 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:684 msgid "Add default phase." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:689 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:689 msgid "Duplicate phase" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:689 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:689 msgid "Duplicate this phase." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:694 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:694 msgid "Red phase" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:694 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:694 msgid "Add red phase." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:699 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:699 msgid "Yellow phase" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:699 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:699 msgid "Add yellow phase." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:704 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:704 msgid "Green phase" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:704 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:704 msgid "Add green phase." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:709 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:709 msgid "Green priority phase" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:709 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:709 msgid "Add green priority phase." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:910 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:910 msgid "Cannot be parsed to double" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:922 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:922 msgid "Tooltips only for TextFields" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1252 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1252 msgid "Delete phase" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1252 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1252 msgid "Delete this phase." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1261 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1261 msgid "Move phase up" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1261 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1261 msgid "Move this phase up." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1270 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1270 msgid "Move phase down" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1270 #: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1270 msgid "Move this phase down." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:89 #: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:89 msgid "Element" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:152 #: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:152 msgid "network elements" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:155 #: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:155 msgid "Additional elements" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:158 #: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:158 msgid "Shape elements" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:161 #: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:161 msgid "TAZ elements" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:164 #: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:164 msgid "Wire elements" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:167 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1835 #: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:167 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1833 msgid "Vehicles" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:170 #: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:170 msgid "Stops" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:173 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1918 #: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:173 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1916 msgid "Persons" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:176 #: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:176 msgid "Person plans" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:182 #: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:182 msgid "Container plans" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:185 #: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:185 msgid "Person trips" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:188 #: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:188 msgid "Walks" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:191 #: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:191 msgid "Rides" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:194 #: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:194 msgid "Person stops" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:64 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:56 msgid "Delete geometry points" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:238 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:230 msgid "Protect Elements" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:240 +msgid "Protect all" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:240 +msgid "Protect all elements" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:242 +msgid "Unprotect all" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:242 +msgid "Unprotect all elements" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:244 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:232 msgid "Protect additional elements" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:247 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:235 msgid "Protect TAZ elements" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:250 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:238 msgid "Protect demand elements" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:253 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:241 msgid "Protect data elements" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEElementSet.cpp:48 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEElementSet.cpp:48 msgid "Element Set" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEElementSet.cpp:75 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEElementSet.cpp:75 msgid "Invalid supermode" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:96 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:100 msgid "Mark as front element" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:177 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:306 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:181 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:310 msgid "Set new parent" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:368 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:372 msgid "" "- Mark as front element: Mark element as front element (Will be drawn over " "all other elements)\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:369 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:373 msgid "- Block movement: disable movement in move mode\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:370 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:374 msgid "" "- Block shape: Disable moving of shape's vertices and edges. Entire shape " "can be moved'.\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:371 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:375 msgid "" "- Close shape: Add or remove the last vertex with the same position of first " "edge'." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:402 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:406 msgid "GEO Attributes" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:466 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:91 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:470 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:90 msgid "No geo-conversion defined" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:547 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:551 msgid " SUMO uses the World Geodetic System 84 (WGS84/UTM).\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:548 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:552 msgid "" " For a GEO-referenced network, geo coordinates are represented as pairs of " "Longitude and Latitude\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:549 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:553 msgid " in decimal degrees without extra symbols. (N,W..)\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:550 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:554 msgid " - Longitude: East-west position of a point on the Earth's surface.\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:551 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:555 msgid " - Latitude: North-south position of a point on the Earth's surface.\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:552 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:556 msgid "" " - CheckBox 'geo' enables or disables saving position in GEO coordinates\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:566 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:570 msgid "Templates" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:570 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:574 msgid "Set as Template" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:574 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:578 msgid "clear Edge Template" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:669 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:673 msgid "Only one edge must be inspected" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:733 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:737 msgid "No edge Template Set" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:749 -msgid "Parameters" -msgstr "" - +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:745 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:748 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:908 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:911 msgid "Additional dialog" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:764 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:927 msgid "Open rerouter dialog" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:770 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:933 msgid "Open calibrator dialog" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:776 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:939 msgid "Open calibrator lane dialog" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:782 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:945 msgid "Open VSS dialog" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:58 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:58 msgid "Apply selection" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:112 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:112 msgid "Unknown set" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:270 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:270 msgid "" "- The 'Match Attribute' controls allow to specify a set of objects which are " "then applied to the current selection\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:271 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:460 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:271 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:460 msgid " according to the current 'Modification Mode'.\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:272 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:461 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:272 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:461 msgid " 1. Select an object type from the first input box\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:273 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:462 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:273 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:462 msgid " 2. Select an attribute from the second input box\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:463 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:274 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:463 msgid "" @@ -9718,11 +12914,15 @@ "\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:276 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:465 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:276 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:465 msgid "- The empty expression matches all objects\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:277 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:466 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:277 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:466 msgid "" @@ -9730,6 +12930,8 @@ "operator ('<', '>', '=') and a number.\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:278 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:467 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:278 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:467 msgid "" @@ -9737,6 +12939,8 @@ "number by the given operator evaluates to 'true'\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:469 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:280 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:469 msgid "" @@ -9744,6 +12948,8 @@ "operator ('', '=', '!', '^') and a string.\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:470 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:281 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:470 msgid "" @@ -9751,32 +12957,44 @@ "attribute.\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:471 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:282 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:471 msgid " '=' matches if string is an exact match.\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:283 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:472 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:283 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:472 msgid " '!' matches if string is not a substring.\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:284 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:473 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:284 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:473 msgid " '^' matches if string is not an exact match.\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:286 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:475 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:286 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:475 msgid "- Examples:\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:287 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:476 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:287 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:476 msgid "" " junction; id; 'foo' -> match all junctions that have 'foo' in their id\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:288 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:477 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:288 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:477 msgid "" @@ -9784,972 +13002,1111 @@ "but not of type 'priority_stop'\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:289 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:478 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:289 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:478 msgid " edge; speed; '>10' -> match all edges with a speed above 10\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:87 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:87 msgid "speed" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:459 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:459 msgid "" "- The 'MatchGenericData Attribute' controls allow to specify a set of " "objects which are then applied to the current selection\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:65 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:64 msgid "Common move options" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:67 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:66 msgid "Allow change lanes" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:70 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:69 msgid "Merge geometry points" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:94 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:93 msgid "Network move options" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:97 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:96 msgid "Move whole polygons" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:133 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:132 msgid "Demand move options" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:136 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:135 msgid "Leave stopPersons connected" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:172 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:171 msgid "Shift selected edges geometry" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:181 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:180 msgid "Apply shift value" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:181 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:180 msgid "" "Shift edge geometry orthogonally to driving direction for all selected edges" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:252 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:251 msgid "Change Z in selection" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:261 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:260 msgid "Absolute value" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:261 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:260 msgid "Set Z value as absolute" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:263 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:262 msgid "Relative value" -msgstr "" +msgstr "Valore relativo" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:263 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:262 msgid "Set Z value as relative" -msgstr "" +msgstr "Imposta valore relativo per Z" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:266 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:265 msgid "Apply Z value" -msgstr "" +msgstr "Applica valore Z" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:266 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:265 msgid "Apply Z value to all selected junctions" -msgstr "" +msgstr "Applica valore Z a tutti gli incroci selezionati" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:518 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:534 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:518 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:534 msgid "Shift shape geometry" -msgstr "" +msgstr "Sposta forma" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:534 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:534 msgid "" "Shift shape geometry orthogonally to driving direction for all selected " "shapes" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:619 -msgid "-Click over edge to" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:620 -msgid " create or edit" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:621 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:624 -msgid " geometry point." -msgstr "" +msgstr "Sposta ogni forma selezionata ortogonalmente alla direzione di marcia" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:622 -msgid "-Shift+click over edge" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:616 +msgid "Click over edge to create or edit geometry point." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:623 -msgid " to edit start or end" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:616 +msgid "Shift+click over edge to edit start or end geometry point." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:618 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:628 msgid "-Move geometry point" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:621 #: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:631 msgid "-Merge geometry point" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:78 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:77 msgid "Selection information" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:150 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:149 msgid "Modification Mode" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:153 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:152 msgid "add" -msgstr "" +msgstr "aggiungi" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:153 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:152 msgid "Selected objects are added to the previous selection" -msgstr "" +msgstr "Gli oggetti selezionati vengono aggiunti alla previa selezione" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:155 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:154 msgid "remove" -msgstr "" +msgstr "rimuovi" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:155 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:154 msgid "Selected objects are removed from the previous selection" -msgstr "" +msgstr "Gli oggetti selezionati vengono rimossi dalla previa selezione" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:157 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:661 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:156 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:662 msgid "keep" -msgstr "" +msgstr "mantieni" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:157 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:156 msgid "Restrict previous selection by the current selection" -msgstr "" +msgstr "Mantieni l'intersezione tra la previa selezione e quella attuale" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:159 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:158 msgid "replace" -msgstr "" +msgstr "rimpiazza" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:159 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:158 msgid "Replace previous selection by the current selection" -msgstr "" +msgstr "Rimpiazza la previa selezione con quella attuale" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:214 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:213 msgid "Visual Scaling" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:243 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:242 msgid "Selection operations" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:252 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:251 msgid "Deselect all objects (hotkey: ESC)" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:254 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:253 msgid "Invert" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:254 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:253 msgid "Invert selection status of all objects" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:256 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:255 msgid "Save ids of currently selected objects to a file." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:258 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:257 msgid "Load ids from a file according to the current modification mode." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:260 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:259 msgid "Delete all selected objects (hotkey: DEL)" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:262 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:261 msgid "Reduce" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:262 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:261 msgid "Reduce network to current selection." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:275 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:274 msgid "Could not open '%'." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:324 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:125 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:320 #: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:125 msgid "Open List of Selected Items" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:342 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:148 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:338 #: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:148 msgid "Save List of selected Items" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1124 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1120 msgid "Hierarchy operations" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1135 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1145 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1131 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1141 msgid "Select" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1137 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1147 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1133 #: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1143 msgid "Unselect" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNEEdgeDataFrame.cpp:51 #: /home/micha/programming/sumo/src/netedit/frames/data/GNEEdgeDataFrame.cpp:51 msgid "There is already a % in edge '%'" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:69 #: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:69 msgid "DataSet" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:72 #: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:72 msgid "Create new dataSet" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:83 #: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:83 msgid "Create dataSet" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:140 #: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:140 msgid "Invalid dataSet ID" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:142 #: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:142 msgid "Invalid empty dataSet ID" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:144 #: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:144 msgid "Invalid duplicated dataSet ID" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:198 #: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:198 msgid "Interval" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:201 #: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:201 msgid "Create new interval" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:219 #: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:219 msgid "create interval" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:393 #: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:392 msgid "Data attributes" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:68 #: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:68 msgid "MeanData Type" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:161 #: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:161 msgid "MeanData Editor" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:164 #: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:164 msgid "Create MeanData" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:167 #: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:167 msgid "Delete MeanData" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:170 #: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:170 msgid "Copy MeanData" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:276 #: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:276 msgid "Current MeanData" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:54 #: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:54 msgid "Confirm TAZRelation" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:56 #: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:56 msgid "Create TAZRelation" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:56 #: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:56 msgid "Click fromTaz and toTaz (confirm hotkey )" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:58 #: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:58 msgid "Clear selection" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:58 #: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:58 msgid "Clear selected TAZs (hotkey )" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:122 #: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:122 msgid "From TAZ" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:128 #: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:128 msgid "To TAZ" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:177 #: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:177 #, c-format msgid "A % must be defined within an interval." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:179 #: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:179 msgid "There is already a % defined in TAZ'%'." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:181 #: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:181 msgid "There is already a % defined between TAZ'%' and '%'." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerPlanFrame.cpp:114 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:117 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerPlanFrame.cpp:114 msgid "Current selected container isn't valid." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:122 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:122 msgid "Current selected container type isn't valid." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:127 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerPlanFrame.cpp:119 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:127 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerPlanFrame.cpp:119 msgid "Current selected container plan isn't valid." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:275 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:242 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:285 msgid "VType with vClass == 'pedestrian' is oriented to pedestrians" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:244 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:244 msgid "VType with vClass != 'ignoring' is not oriented to containers" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:267 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:267 msgid "Invalid container parameters." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonPlanFrame.cpp:140 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:117 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonPlanFrame.cpp:140 msgid "Current selected person isn't valid." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:122 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:122 msgid "Current selected person type isn't valid." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:127 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonPlanFrame.cpp:146 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:127 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonPlanFrame.cpp:146 msgid "Current selected person plan isn't valid." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:250 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:277 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:250 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:287 msgid "VType with vClass == 'ignoring' is oriented to containers" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:252 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:252 msgid "VType with vClass != 'pedestrian' is not oriented to persons" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:275 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:275 msgid "Invalid person parameters." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNERouteFrame.cpp:52 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNERouteFrame.cpp:52 msgid "Route mode" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:78 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:85 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:92 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:99 -msgid "- Shift+Click to select parent\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:89 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:101 +msgid "Shift+Click to select parent" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:72 -msgid "- Click over a bus stop to\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:72 +msgid "Click over a bus stop to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:73 -msgid " create a stop." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:79 -msgid "- Click over a container stop\n" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:80 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:87 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:94 -msgid " to create a stop." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:86 -msgid "- Click over a charging station\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:78 +msgid "Click over a train stop to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:93 -msgid "- Click over a parking area\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:84 +msgid "Click over a container stop to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:100 -msgid "- Click over a lane to create\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:90 +msgid "Click over a charging station to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:101 -msgid " a stop." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:96 +msgid "Click over a parking area to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:105 -msgid "- No stop parents in current\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:102 +msgid "Click over a lane to create a stop." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:106 -msgid " network." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:106 +msgid "No stop parents in current network." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:189 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:189 msgid "Selected Stop type isn't valid." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:197 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:197 msgid "Selected % '%' as stop parent." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:200 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:200 msgid "Selected Stop parent isn't valid." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:206 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:206 msgid "Current selected Stop parent isn't valid." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:237 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:237 msgid "Current selected Stop type isn't valid." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:352 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:336 msgid "Stop must be placed over a route's edge" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:365 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:349 msgid "Stop must be placed over an embedded route's edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:68 -msgid "Current Type" -msgstr "" - +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:63 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:218 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:225 msgid "Type Editor" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:66 +msgid "Create type distribution" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:68 +msgid "Delete type distribution" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:62 +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:68 +msgid "Current Type" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:221 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:228 msgid "Create Type" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:223 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:268 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:230 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:275 msgid "Delete Type" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:225 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:232 msgid "Copy Type" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:256 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:263 msgid "Reset Type" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:420 -msgid "VType Distributions" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:423 -msgid "Show VType Distributions" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:93 -msgid "- Click over a route to\n" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:72 -msgid " create a vehicle." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:76 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:81 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:98 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:103 -msgid "- Select two edges to\n" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:77 -msgid " create a Trip." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:82 -msgid " create a vehicle with\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:71 +msgid "Click over a route to create a vehicle." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:83 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:105 -msgid " embedded route." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:75 +msgid "Select two edges to create a trip." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:87 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:109 -msgid "- Select two junctions\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:79 +msgid "Select two edges to create a vehicle with embedded route." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:88 -msgid " to create a Trip." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:83 +msgid "Select two junctions to create a trip." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:94 -msgid " create a routeFlow." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:88 +msgid "Click over a route to create a routeFlow." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:99 -msgid " create a flow." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:92 +msgid "Select two edges to create a flow." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:104 -msgid " create a flow with\n" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:96 +msgid "Select two edges to create a flow with embedded route." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:110 -msgid " to create a flow." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:100 +msgid "Select two junctions to create a flow." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:181 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:191 msgid "Current selected vehicle isn't valid." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:186 #: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:196 msgid "Current selected vehicle type isn't valid." -msgstr "" +msgstr "Il veicolo selezionato non è valido." +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:87 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:87 msgid "Current selected additional isn't valid." -msgstr "" +msgstr "L'elemento addizionale selezionato non è valido." +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:156 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:156 msgid "E2 multilane detectors need at least two consecutive lanes" msgstr "" +"Rivelatori E2 di più corsie hanno bisgno di almeno due corsie consecutive" +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:282 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:282 msgid " must be selected before insertion of " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:312 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:312 msgid "Attribute '" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:312 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:312 msgid "' cannot be greater than attribute '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:329 -msgid "List ofe dges cannot be empty" +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:329 +msgid "List of edges cannot be empty" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:339 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:339 msgid "List of lanes cannot be empty" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:439 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:232 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:439 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:232 msgid "Currently unsupported. Create rerouter elements using rerouter dialog" -msgstr "" +msgstr "Non supportato. Crea elementi rerouter utilizzando il dialogo apposito" +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:444 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:444 msgid "Currently unsupported. Create VSS steps using VSS dialog" msgstr "" +"Non supportato. Configura i limiti dinamici di velocità utlizzando il " +"dialogo apposito" +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:449 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:449 msgid "Currently unsupported. Create calibratorFlows using calibrator dialog" msgstr "" +"Non supportato. Crea elementi calibratorFlow utilizzando il dialogo apposito" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:67 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:66 msgid "Lane" -msgstr "" +msgstr "Corsia" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:79 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:68 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:78 msgid "No lane selected" -msgstr "" +msgstr "Nessuna corsia selezionata" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:81 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:80 msgid "Current Lane: " -msgstr "" +msgstr "Corsia attuale: " +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:90 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:396 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:89 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:395 msgid "Modifications" -msgstr "" +msgstr "Modifiche" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:94 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:93 msgid "Discard connection modifications (Esc)" -msgstr "" +msgstr "Rigetta le modifiche fatte ai collegamenti (Esc)" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:97 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:96 msgid "Save connection modifications (Enter)" -msgstr "" +msgstr "Salva le modifiche ai collegamenti (Enter)" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:101 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:100 msgid "Protect routes" -msgstr "" +msgstr "Proteggi gli itinerari" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:113 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:112 msgid "Changes reverted" -msgstr "" +msgstr "Modifiche annullate" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:130 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:129 msgid "Error saving connection operations" -msgstr "" +msgstr "Errore nel salvare i collegamenti" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:131 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:130 msgid "Connection edition cannot be saved because route '" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:131 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:130 msgid "' is broken." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:139 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:138 msgid "Changes accepted" -msgstr "" +msgstr "Modifiche accettate" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:152 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:151 msgid "Operations" -msgstr "" +msgstr "Operazioni" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:156 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:155 msgid "Select Dead Ends" -msgstr "" +msgstr "Seleziona rami secchi" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:156 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:155 msgid "" "Selects all lanes that have no outgoing connection (clears previous " "selection)" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:159 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:158 msgid "Select Dead Starts" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:159 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:158 msgid "" "Selects all lanes that have no incoming connection (clears previous " "selection)" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:162 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:161 msgid "Select Conflicts" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:162 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:161 msgid "" "Selects all lanes with more than one incoming connection from the same edge " "(clears previous selection)" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:165 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:164 msgid "Select Passing" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:165 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:164 msgid "" "Selects all lanes with a connection that has has the 'pass' attribute set" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:168 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:167 msgid "Clear Selected" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:168 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:167 msgid "Clears all connections of all selected objects" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:171 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:170 msgid "Reset Selected" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:171 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:170 msgid "Recomputes connections at all selected junctions" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:263 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:262 msgid "clear connections from selected lanes, edges and junctions" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:290 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:289 msgid "reset connections from selected lanes" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:309 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:168 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2176 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:308 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:168 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2174 msgid "Selection" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:313 -msgid "-Hold while" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:314 -msgid " clicking to create" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:315 -msgid " unyielding connections" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:316 -msgid " (pass=true)." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:321 -msgid "-Hold while" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:322 -msgid " clicking to create " -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:323 -msgid " conflicting connections" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:324 -msgid " (i.e. at zipper nodes" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:325 -msgid " or with incompatible" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:311 +msgid "" +"Hold while clicking to create unyielding connections (pass=true)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:326 -msgid " permissions" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:312 +msgid "" +"Hold while clicking to create conflicting connections (i.e. at zipper " +"nodes or with incompatible permissions" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:326 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:342 msgid "Possible Target" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:331 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:347 msgid "Source lane" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:335 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:351 msgid "Target lane" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:339 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:355 msgid "Target (pass)" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:343 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:359 msgid "Conflict" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:355 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:371 msgid "Edit Connections" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:421 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:437 msgid "modify connections" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:472 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:488 msgid "Pedestrian connections are generated automatically" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:474 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:490 msgid "Incompatible vehicle class permissions" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:476 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:492 msgid "Another lane from the same edge already connects to that lane" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:484 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:500 msgid "Invalid target for connection" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:74 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:72 msgid "Template selector" -msgstr "" +msgstr "Selezione di modelli" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:79 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:77 msgid "Create default edge" -msgstr "" +msgstr "Crea arco standard" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:82 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:80 msgid "Disallow for pedestrians" -msgstr "" +msgstr "Vieta l'accesso ai pedoni" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:84 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:82 msgid "Add sidewalk" -msgstr "" +msgstr "Aggiungi marciapiede" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:87 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:85 msgid "Use edgeType/template" -msgstr "" +msgstr "Utilizza tipo di arco/modello" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:439 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1247 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1312 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:93 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:437 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1245 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1310 msgid "Add" -msgstr "" +msgstr "Aggiungi" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:95 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:93 msgid "Add edge type" -msgstr "" +msgstr "Aggiungi tipo di arco" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:98 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:96 msgid "Delete edge type" -msgstr "" +msgstr "Rimuovi tipo di arco" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:101 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:99 msgid "Create from template" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:101 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:99 msgid "Create edgeType from template" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:320 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:369 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:318 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:367 msgid "create new edge type" -msgstr "" +msgstr "crea un nuovo tipo di arco" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:342 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:340 msgid "delete edge type" -msgstr "" +msgstr "rimuovi tipo di arco" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:407 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:405 msgid "template: " -msgstr "" +msgstr "modello: " +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:431 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:429 msgid "LaneType selector" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:439 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:437 msgid "Add lane type" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:442 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:440 msgid "Delete lane type" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:539 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:537 msgid "add laneType" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:576 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:574 msgid "remove laneType" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:623 -msgid "- ESC:" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:625 +msgid "ESC:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:624 -msgid " Deselect origin" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:626 +msgid "Deselect origin" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:625 -msgid "- Control+Click:" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:627 +msgid "Control+Click:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:626 -msgid " Move view" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:628 +msgid "Move view" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:627 -msgid "- Shift+Click:" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:629 +msgid "Shift+Click:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:628 -msgid " Splits edge in both directions" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:630 +msgid "Splits edge in both directions" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:629 -msgid "- Alt+Shift+Click:" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:631 +msgid "Alt+Shift+Click:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:630 -msgid " Splits edge in one direction" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:632 +msgid "Splits edge in one direction" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:645 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:643 msgid "Create Edge" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:669 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:667 msgid "Select either default edgeType or a custom edgeType or template" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:671 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:669 msgid "Invalid edge attributes" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:673 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:671 msgid "Invalid lane attributes" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:749 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:682 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:747 msgid "create new edge" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:754 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:752 msgid "An edge with the same geometry already exists!" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:757 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:755 msgid "Start- and endpoint for an edge must be distinct!" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:70 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:69 msgid "Junction" msgstr "Incrocio" +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:98 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:97 msgid "selection of edges" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:103 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:506 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:560 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:566 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:653 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:657 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:102 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:505 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:560 @@ -10759,1233 +14116,1578 @@ msgid "Use selected edges" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:106 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:105 msgid "Clear edges" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:109 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:108 msgid "Invert edges" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:197 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:196 msgid "Crossing parameters" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:485 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1608 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1612 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:484 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1580 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1584 msgid "Create" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:488 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:487 msgid "Create crossing" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:515 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:514 msgid "" "There is already another crossing with the same edges in the junction; " "Duplicated crossing aren't allowed." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:540 -msgid "-Click over junction to" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:541 -msgid " mark candidate edges." -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:542 -msgid "-Click over candidate" +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:539 +msgid "Click over junction to mark candidate edges." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:543 -msgid " edges for selecting." +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:539 +msgid "Click over candidate edges for selecting." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:541 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:547 msgid " Candidate" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:545 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:551 msgid " Selected" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:548 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:554 msgid " Invalid" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:561 #: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:567 msgid "Crossings" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:55 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:55 msgid "Selected connection" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:71 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:71 msgid "No Connection selected\n" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:74 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:74 msgid "- Junction: " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:75 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:75 msgid "- From lane: " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:76 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:76 msgid "- To lane: " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:94 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:94 msgid "Selected" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:95 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:95 msgid "Current selected connection" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:101 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:101 msgid "No conflict" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:102 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:102 msgid "No conflict with the selected connection" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:107 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:107 msgid "Yields" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:108 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:108 msgid "Connection yields the selected connection" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:113 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:113 msgid "Has right of way" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:114 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:114 msgid "Connection has right of way with the selected connection" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:119 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:119 msgid "Unregulated conflict" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:120 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:120 msgid "Connection has a unregulated conflict with the selected connection" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:125 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:125 msgid "Mutual conflict" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:126 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:126 msgid "Connection has a mutual conflict with the selected connection" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:175 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:175 msgid "Save prohibition modifications (Enter)" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:179 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:179 msgid "Unselect connection" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:181 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:181 msgid "Unselect connection (Esc)" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:229 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:229 msgid "Prohibitions" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:57 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:56 msgid "GEO POI Creator" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:60 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:59 msgid "Format: Lon-Lat" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:61 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:60 msgid "Format: Lat-Lon" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:67 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:66 msgid "Center View after creation" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:179 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:68 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:121 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:178 msgid "Create GEO POI (clipboard)" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:141 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:71 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:136 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:140 msgid "Cartesian equivalence:" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:142 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:72 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:141 msgid "- X = give valid longitude" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:143 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:73 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:142 msgid "- Y = give valid latitude" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:120 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:119 msgid "Create GEO POI" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:172 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:171 msgid "Using clipboard" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:228 +#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1428 +#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:227 +msgid "Shapes" +msgstr "Forme" + +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:331 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:330 msgid "POILane can be only placed over lanes" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:375 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:374 msgid "Current selected shape isn't valid." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:423 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:422 msgid "Polygon shape cannot be empty" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:153 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:152 msgid "TAZ" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:205 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:160 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:204 msgid "No TAZ selected" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:174 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:173 msgid "Current TAZ: " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:337 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:336 msgid "Invalid TAZ Child" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:346 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:345 msgid "TAZ Statistics" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:349 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:888 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:348 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:891 msgid "Statistics" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:376 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1129 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:375 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1132 msgid "- Number of edges: " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:377 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1134 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:376 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1137 msgid "- Min source: " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:378 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1135 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:377 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1138 msgid "- Max source: " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:379 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1136 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:378 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1139 msgid "- Average source: " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:381 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1138 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:380 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1141 msgid "- Min sink: " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:382 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1139 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:381 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1142 msgid "- Max sink: " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:383 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1140 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:382 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1143 msgid "- Average sink: " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:387 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:386 msgid "No TAZ Selected" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:399 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:398 msgid "Confirm changes" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:402 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:401 msgid "Cancel changes" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:432 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:431 msgid "TAZ changes" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:485 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:484 msgid "TAZ Sources/Sinks" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:491 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:490 msgid "Membership" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:492 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:491 msgid "Toggle" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:497 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:496 msgid "New source" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:502 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:501 msgid "New sink" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:508 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:507 msgid "Set zero fringe prob." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:511 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:646 -msgid "- Toggle Membership:" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:512 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:647 -msgid " Create new Sources/Sinks" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:512 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:646 +msgid "Toggle Membership:" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:513 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:648 -msgid " with given weights." +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:513 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:647 +msgid "Create new Sources/Sinks with given weights." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:655 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:563 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:656 msgid "Remove all edges" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:582 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:582 msgid "Remove all edges from selection" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:584 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:584 msgid "Add all edges to selection" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:588 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:588 msgid "Remove edge from selection" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:590 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:590 msgid "Add edge to selection" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:601 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:601 msgid "Remove " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:601 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:601 msgid " edges from to selection" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:603 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:603 msgid "Add " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:603 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:603 msgid " edges to selection" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:639 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:639 msgid "toggle" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:669 -msgid "- Keep Membership:" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:668 +msgid "Keep Membership:" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:668 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:670 msgid " Select Sources/Sinks." msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:671 -msgid "- Press ESC to clear" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:672 -msgid " current selection." +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:669 +msgid "Press ESC to clear the current selection." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:846 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:849 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:849 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:852 msgid "Set weight 0 in " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:846 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:849 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:849 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:852 msgid " sources and " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:847 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:850 msgid " sinks from TAZ '" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:850 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:853 msgid " sinks from " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:850 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:853 msgid " TAZs?" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:865 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:855 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:868 msgid "Set zero fringe probabilities" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:854 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:857 msgid "set zero fringe probabilities" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:865 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:868 msgid "No source/sinks to update." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:875 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:878 msgid "Selection Statistics" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:879 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:882 msgid "Source" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:884 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:887 msgid "Sink" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:916 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:919 msgid "TAZEdgeColor already selected" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:948 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:951 msgid "edge wasn't found" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:950 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:953 msgid "Invalid edge" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1127 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1130 msgid "- Edge ID: " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1162 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1165 msgid "TAZ parameters" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1187 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1190 msgid "Edges within" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1188 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1295 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1191 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1298 msgid "use" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1297 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1300 msgid "not use" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1327 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1330 msgid "Non TAZ Edge" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1331 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1334 msgid "Selected TAZ Edge" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1336 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1339 msgid "Color by Source" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1338 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1341 msgid "Color by Sink" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1340 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1343 msgid "Color by Source + Sink" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1342 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1345 msgid "Color by Source - Sink" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1445 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1448 msgid "TAZs" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1611 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1614 msgid "TAZ shape needs at least three points" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:121 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:119 msgid "Edit Traffic Light" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:185 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:183 msgid "Click over a junction to edit a TLS" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:197 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:195 msgid "Save TLS Changes" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:198 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:196 msgid "" "There is unsaved changes in current edited traffic light.\n" "Do you want to save it before changing mode?" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:244 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:242 msgid "tlLogic '%', program '%' could not be built" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:257 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2963 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:255 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2935 msgid "Loaded " msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:257 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:255 msgid " programs" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:418 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:416 msgid "Invalid phase index" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:514 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:512 msgid "modifying TLS definition" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:528 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:526 msgid "Unsaved modifications. Abort or Save" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:548 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:546 msgid "Traffic light Attributes" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:557 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:555 msgid "parameters" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 msgid "Assign E1 detectors" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 msgid "Enable assign E1 mode" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 msgid "Assign E1 detectors to the current TLS" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 msgid "Disable assign E1 mode" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:881 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:879 msgid "Traffic Light" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:886 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:955 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:884 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:945 msgid "Junction ID" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:893 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:891 msgid "TLS ID" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 msgid "Join" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 msgid "Enable join mode" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 msgid "Join TLS and junctions in the current junction." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 msgid "Disable join mode" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 msgid "Disjoin" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 msgid "Disjoin current TLS" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 msgid "Disjoin current TLS." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:923 +msgid "Finish join." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:925 +msgid "Cancel Join." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:962 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:952 msgid "no junction selected" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:984 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:974 msgid "Junction IDs" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1064 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1061 msgid "rename TLS" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1143 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1140 msgid "change TLS type" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1227 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1216 msgid "join TLS" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1289 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1278 msgid "disjoin TLS" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1368 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1340 msgid "Traffic Light Programs" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1381 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1353 msgid "Create TLS" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1381 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1353 msgid "Create a new traffic light program." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1384 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1356 msgid "" "Delete a traffic light program. If all programs are deleted the junction " "turns into a priority junction." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1387 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1359 msgid "Reset single" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1387 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1359 msgid "Reset current TLS program." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1390 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1362 msgid "Reset all" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1390 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1362 msgid "Reset all TLS programs." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1393 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1365 msgid "Save program modifications. (Enter)" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1396 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1368 msgid "Discard program modifications. (Esc)" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1491 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1463 msgid "TLSDefinition cannot be found" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1533 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1546 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1565 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1505 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1518 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1537 msgid "TLS cannot be created" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1534 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1506 msgid "Traffic Light cannot be created because junction must have" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1535 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1507 msgid "at least one incoming edge and one outgoing edge." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1547 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1566 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1519 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1538 msgid "Traffic Light cannot be created because junction" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1548 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1520 msgid "must have at least one connection." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1567 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1539 msgid "must have at least one controlled connection." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1610 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1582 msgid "Duplicate" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1650 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1622 msgid "reset current program" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1689 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1661 msgid "reset TLS" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1850 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1822 msgid "duplicate program '%' of traffic light '%'" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1896 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1868 msgid "Traffic light does not control any links" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1908 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1880 msgid "Phases" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1919 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1891 msgid "Clean States" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1920 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1892 msgid "Clean unused states from all phase" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1921 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1893 msgid "Clean unused states from all phase. (Not allowed for multiple programs)" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1925 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1897 msgid "Add States" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1926 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1898 msgid "Extend the state vector for all phases by one entry" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1927 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1899 msgid "" "Extend the state vector for all phases by one entry. (Unused until a " "connection or crossing is assigned to the new index)" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1931 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1903 msgid "Group Sig." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1932 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1904 msgid "" "Shorten state definition by letting connections with the same signal states " "use the same index" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1933 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1905 msgid "" "Shorten state definition by letting connections with the same signal states " "use the same index. (Not allowed for multiple programs)" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1937 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1909 msgid "Ungroup Sig." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1938 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1910 msgid "Let every connection use a distinct index (reverse state grouping)" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1939 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1911 msgid "" "Let every connection use a distinct index (reverse state grouping). (Not " "allowed for multiple programs)" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2067 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2039 msgid "invalid column" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2626 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2598 msgid "Error deleting phase '" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2898 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2870 msgid "TLS Program File" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2902 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2874 msgid "Load TLS program from additional file" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2904 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2876 msgid "Save TLS program to additional file" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2963 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2935 msgid " new programs for tlLogic '" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2968 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2940 msgid "Updated program '" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2968 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2940 msgid "' for tlLogic '" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2972 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2944 msgid "No programs found for traffic light '" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2991 #: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2963 msgid "Save TLS Program as" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:75 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:75 msgid "Current selected wire isn't valid." msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:117 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:117 #, c-format msgid "A % needs at least two lane positions" msgstr "" +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:237 #: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:237 msgid "Currently unsupported. Create VSS steps elements using VSS dialog" msgstr "" +#: D:\Repos\sumo/src\netedit\netedit_main.cpp:49 #: /home/micha/programming/sumo/src/netedit/netedit_main.cpp:49 msgid "" "Graphical editor for SUMO networks, demand and additional infrastructure." msgstr "" +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:127 #: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:126 msgid "Original network" msgstr "" +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:130 #: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:129 msgid "Modified network" msgstr "" +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:133 #: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:132 msgid "Output prefix network" msgstr "" +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:137 #: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:136 msgid "Select modified elements" msgstr "" +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:140 #: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:139 msgid "Select added elements" msgstr "" +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:143 #: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:142 msgid "Select deleted elements" msgstr "" +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:147 #: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:146 msgid "Load shapes for elements" msgstr "" +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:150 #: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:149 msgid "Load shapes for added" msgstr "" +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:153 #: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:152 msgid "Load shapes for deleted elements" msgstr "" +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:166 #: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:165 msgid "load shapes from '" msgstr "" +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:170 #: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:169 msgid "Loading of shape file failed: " msgstr "" +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:173 #: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:172 msgid "Loading of shape file sucessfully: " msgstr "" +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:43 #: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:42 msgid "Execute python tool '" msgstr "" +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:177 #: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:153 #, c-format msgid "Loaded % configuration." msgstr "" +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:206 #: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:182 #, c-format msgid "Saved % configuration." msgstr "" +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:76 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:60 #: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:71 #: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:55 msgid "cancelled by user\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:102 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:86 -msgid "popen() failed!" -msgstr "" - +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:119 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:103 #: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:114 #: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:98 msgid "starting process...\n" msgstr "" +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:137 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:121 #: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:124 #: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:108 msgid "error processing command\n" msgstr "" +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:152 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:136 #: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:136 #: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:120 msgid "process finished\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:142 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:125 -msgid "starting process silently...\n" -msgstr "" - +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:75 #: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:75 msgid "&Load selection" msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:77 #: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:77 msgid "&Save selection" msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:81 #: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:81 msgid "&Deselect chosen" msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:83 #: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:83 msgid "&Clear selection" msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:87 #: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:87 msgid "Cl&ose" msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:137 #: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:137 msgid "Errors while loading Selection" msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:116 #: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:116 msgid "Unknown object in GUISelectedStorage::select (id=%)." msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:133 #: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:133 msgid "Unknown object in GUISelectedStorage::deselect (id=%)." msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:150 #: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:150 msgid "Unknown object in GUISelectedStorage::toggleSelection (id=%)." msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:74 #: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:74 msgid "Unknown format!" msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:91 #: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:91 msgid "Unknown codec, falling back to HEVC!" msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:95 #: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:95 msgid "Unknown codec!" msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:100 #: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:100 msgid "Could not allocate video codec context!" msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:136 #: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:136 msgid "Could not open codec!" msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:142 #: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:142 msgid "Could not allocate video frame!" msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:148 #: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:148 msgid "Could not allocate the video frame data!" msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:155 #: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:155 msgid "Failed to open output file!" msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:160 #: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:160 msgid "Failed to write file header!" msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:165 #: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:165 msgid "Could not allocate video packet!" msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:175 #: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:175 msgid "Error sending final frame!" msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:183 #: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:183 msgid "Error during final encoding step!" msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:214 #: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:214 msgid "Error sending frame for encoding!" msgstr "" +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:222 #: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:222 msgid "Error during encoding!" msgstr "" +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGLObjectPopupMenu.cpp:170 #: /home/micha/programming/sumo/src/utils/gui/globjects/GUIGLObjectPopupMenu.cpp:170 msgid "Object must be a lane" msgstr "" +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:285 +msgid "Copy name to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:286 +msgid "Copy typed name to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:296 +msgid "Remove From Selected" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:298 +msgid "Add To Selected" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:308 +msgid "Show Parameter" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:317 +msgid "Show Type Parameter" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:326 +msgid "Copy cursor position to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:328 +msgid "Copy cursor geo-position to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:332 +msgid "Show cursor geo-position in " +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:350 +msgid "Open Manipulator..." +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:389 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:412 +msgid "type: %" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:87 #: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:87 msgid "&Save changes" msgstr "" +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:88 #: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:88 msgid "&Don't save" msgstr "" +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:89 #: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:89 msgid "&Abort" msgstr "" +#: D:\Repos\sumo/src\utils\gui\globjects\GUIShapeContainer.cpp:56 #: /home/micha/programming/sumo/src/utils/gui/globjects/GUIShapeContainer.cpp:56 msgid "Replacing POI '%'" msgstr "" +#: D:\Repos\sumo/src\utils\gui\globjects\GUIShapeContainer.cpp:81 #: /home/micha/programming/sumo/src/utils/gui/globjects/GUIShapeContainer.cpp:81 msgid "Replacing polygon '%'" msgstr "" +#: D:\Repos\sumo/src\utils\gui\images\GUIIconSubSys.cpp:989 #: /home/micha/programming/sumo/src/utils/gui/images/GUIIconSubSys.cpp:981 msgid "Instance was previously created" msgstr "" +#: D:\Repos\sumo/src\utils\gui\images\GUITextureSubSys.cpp:223 #: /home/micha/programming/sumo/src/utils/gui/images/GUITextureSubSys.cpp:223 msgid "Undefined texture" msgstr "" +#: D:\Repos\sumo/src\utils\gui\images\VClassIcons.cpp:91 #: /home/micha/programming/sumo/src/utils/gui/images/VClassIcons.cpp:91 msgid "Invalid vClass" msgstr "" +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:77 #: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:77 msgid "The 'value' attribute is deprecated for breakpoints. Please use 'time'." msgstr "" +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:383 #: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:383 msgid "The 'filename' attribute is deprecated for decals. Please use 'file'." msgstr "" +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:559 #: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:559 msgid " Could not decode breakpoint '%'" msgstr "" +#: D:\Repos\sumo/src\utils\gui\settings\GUIVisualizationSettings.cpp:2348 #: /home/micha/programming/sumo/src/utils/gui/settings/GUIVisualizationSettings.cpp:2348 msgid "No color defined for LinkState '%'" msgstr "" +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:116 #: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:116 msgid "Save the data..." msgstr "" +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:131 #: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:131 msgid "Multiplot" msgstr "" +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:219 #: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:219 msgid "Save Data" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:85 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:85 msgid "Track" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:92 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:92 msgid "&Hide Unselected" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:93 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:93 msgid "By &Name" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:93 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:93 msgid "Locate item by name" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:94 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:94 msgid "&Select/deselect" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:94 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:94 msgid "Select/deselect current object" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:95 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:95 msgid "&Filter substring" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:96 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:96 msgid "Select &all" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:96 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:96 msgid "Select all items in list" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:97 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:97 msgid "&Deselect all" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:97 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:97 msgid "Deselect all items in list" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:98 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:98 msgid "&Update" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:98 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:98 msgid "Reload all ids" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:102 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:102 msgid "case-sensitive search" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:104 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:104 msgid "auto-center" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:329 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:329 #, c-format msgid "% objects" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:65 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:65 msgid "Load viewport from file" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:67 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:67 msgid "Save viewport to file" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:210 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:210 msgid "Load Viewport" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:229 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:229 msgid "Save Viewport" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:277 -msgid "Run tool" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:278 -msgid "Cancel tool" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:280 -msgid "Accept settings" -msgstr "" - +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:87 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:87 msgid "View Settings" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:989 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:989 msgid "Enter a name" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:991 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:991 msgid "Please enter an alphanumeric name: " msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1070 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1070 msgid "Export view settings" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1121 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1121 msgid "Import view settings" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1138 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1155 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1138 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1155 msgid "Load Decals" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1172 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1172 msgid "Save Decals" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1244 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1309 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1242 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1307 msgid "No Data" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1248 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1313 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1246 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1311 msgid "Remove" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1571 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1616 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1569 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1614 msgid "Only for selected" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1573 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1571 msgid "constant text size" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1576 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1574 msgid "Size" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1581 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1694 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1732 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1853 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1935 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1975 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2001 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2121 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2156 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2219 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1579 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1692 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1730 @@ -11999,91 +15701,123 @@ msgid "Color" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1583 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1689 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1581 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1687 msgid "Background" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1614 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1612 msgid "Draw with constant size when zoomed out" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1619 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1617 msgid "Minimum Size" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1623 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1621 msgid "Exaggerate by" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1669 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1667 msgid "Save the setting to registry" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1670 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1668 msgid "Remove the setting from registry" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1671 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1669 msgid "Export setting to file" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1672 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1670 msgid "Load setting from file" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1675 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1673 msgid "Export includes:" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1676 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1674 msgid "Viewport" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1677 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1675 msgid "Delay" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1678 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1676 msgid "Decals" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1679 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1677 msgid "Breakpoints" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1698 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1696 msgid "Decals:" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1701 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1699 msgid "&Load XML Decals" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1702 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1700 msgid "&Save XML Decals" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1703 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1701 msgid "&Clear Decals" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1708 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1706 msgid "Toggle grid" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1712 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1710 msgid "x-spacing" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1717 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1715 msgid "y-spacing" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1726 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1724 msgid "Streets" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1734 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1763 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1857 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1870 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1939 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1979 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2005 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2125 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2160 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2221 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1732 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1761 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1855 @@ -12097,592 +15831,1430 @@ msgid "Interpolate" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1746 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2008 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2231 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1744 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2006 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2229 msgid "Recalibrate Rainbow" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1748 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1746 msgid "hide below" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1752 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1750 msgid "hide above" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1761 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1759 msgid "Scale width" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1784 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1782 msgid "Show bike markings" msgstr "Mostri strisce per ciclisti" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1786 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1784 msgid "Show turning arrows" msgstr "Mostri frecce direzionali" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1789 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1787 msgid "Show right-of-way rules" msgstr "Mostri regole di precedenza" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1791 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1789 msgid "Realistic stop line colors" msgstr "Colori realistici per strisce trasversali" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1794 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1792 msgid "Show lane borders" msgstr "Mostri lati di corsia" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1796 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1794 msgid "Show lane direction" msgstr "Mostri direzione di corsia" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1799 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1797 msgid "Hide macro connectors" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1801 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1799 msgid "Show sublanes" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1804 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1802 msgid "Show rails" msgstr "Mostri binari" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1806 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1804 msgid "Spread bidirectional railways/roads" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1806 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1804 msgid "" "Make both directional edges for a bidirectional railways or roads visible" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1809 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1807 msgid "Secondary shape" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1814 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1812 msgid "Exaggerate width by" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1820 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1818 msgid "Minimum size" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1826 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1824 msgid "Show edge id" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1827 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1825 msgid "Show street name" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1828 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1826 msgid "Show edge color value" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1829 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1827 msgid "Show edge scale value" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1840 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1923 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1963 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1838 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1921 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1961 msgid "Show As" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1842 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1925 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1965 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1840 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1923 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1963 msgid "'triangles'" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1843 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1966 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1841 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1964 msgid "'boxes'" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1844 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1927 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1967 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1842 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1925 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1965 msgid "'simple shapes'" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1845 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1928 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1968 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1843 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1926 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1966 msgid "'raster images'" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1846 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1926 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1844 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1924 msgid "'circles'" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1868 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1866 msgid "Scale size" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1877 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1875 msgid "Show vehicle id" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1878 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1876 msgid "Show vehicle color value" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1879 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1877 msgid "Show vehicle scale value" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1880 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1878 msgid "Show vehicle text param" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1887 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1885 msgid "Show blinker / brake lights" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1889 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1887 msgid "Show minimum gap" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1891 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1889 msgid "Show brake gap" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1893 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1891 msgid "Show Bluetooth range" msgstr "Mostri raggio Bluetooth" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1895 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1893 msgid "Show route index" msgstr "Mostri indice dell'itinerario" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1897 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1895 msgid "Scale length with geometry" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1899 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1897 msgid "Show parking info" msgstr "Mostri informazione parcheggio" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1901 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1899 msgid "Draw reversed vehicles in reverse" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1946 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1944 msgid "Show person id" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1947 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1945 msgid "Show person color value" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1958 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1956 msgid "Containers" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1986 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1984 msgid "Show container id" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1997 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1995 msgid "Junctions" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2014 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2012 msgid "Draw junction shape" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2016 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2014 msgid "Draw crossings/walkingareas" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2018 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2016 msgid "Show lane to lane connections" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2022 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2020 msgid "Show link tls index" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2023 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2021 msgid "Show link junction index" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2024 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2022 msgid "Show junction id" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2025 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2023 msgid "Show internal junction id" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2026 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2024 msgid "Show internal edge id" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2027 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2025 msgid "Show crossing and walkingarea id" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2028 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2026 msgid "Show traffic light phase index" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2029 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2027 msgid "Show traffic light phase name" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2030 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2028 msgid "Show junction name" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2036 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2034 msgid "Additional" msgstr "Strutture addizionali" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2041 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2039 msgid "Show object id" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2042 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2040 msgid "Show full name" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2049 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2047 msgid "StoppingPlace" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2050 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2048 msgid "body" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2051 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2049 msgid "sign" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2074 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2072 msgid "element" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2075 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2073 msgid "color" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2076 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2074 msgid "width" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2116 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2114 msgid "POIs" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2132 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2130 msgid "POI detail" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2137 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2135 msgid "Show poi id" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2138 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2136 msgid "Show poi type" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2139 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2137 msgid "Show poi text param" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2151 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2149 msgid "Polygons" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2166 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2164 msgid "Show polygon id" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2167 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2165 msgid "Show polygon types" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2181 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2179 msgid "Default Selection Color" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2184 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2182 msgid "Miscellaneous" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2233 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2231 msgid "hide below threshold" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2240 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2238 msgid "Exaggerate edgeRelation width by" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2245 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2243 msgid "Exaggerate tazRelation width by" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2251 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2249 msgid "Show data color value" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2257 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2255 msgid "Legend" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2262 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2260 msgid "Show Size Legend" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2265 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2263 msgid "Show Edge Color Legend" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2268 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2266 msgid "Show Vehicle Color Legend" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2281 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2279 msgid "Dither" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2287 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2285 msgid "Draw boundaries" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2290 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2288 msgid "Force draw for position selection" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2293 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2291 msgid "Force draw for rectangle selection" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2296 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2294 msgid "Disable dotted contours during selection/deletion" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2299 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2297 msgid "Recalculate boundaries" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2302 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2300 msgid "Show geometry point indices" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2308 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2306 msgid "3D view" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2313 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2311 msgid "Show TLS link markers" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2316 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2314 msgid "Show domes around TLS models from decals" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2319 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2317 msgid "Show auto-generated TLS models" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2321 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2319 msgid "Show head-up display" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2327 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2325 msgid "Sun brightness" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2339 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2337 msgid "Sky color" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:120 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:120 msgid "Recenter View" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:120 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:120 msgid "Recenter view to the simulated area." msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:124 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:124 msgid "Opens a menu which lets you edit the viewport. (Ctrl+I)" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:128 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:128 msgid "Toggle Zooming Style" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:128 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:128 msgid "" "Toggles whether zooming is based at cursor position or at the center of the " "view." msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:135 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:135 msgid "Locate Structures" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:135 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:135 msgid "Locate structures within the network." msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:139 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:139 msgid "Toggle View Tooltips" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:139 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:139 msgid "Toggles whether tooltips in the view shall be shown." msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:145 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:145 msgid "Toggle Menu Tooltips" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:145 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:145 msgid "Toggles whether tooltips in the menu shall be shown." msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:161 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:161 msgid "Edit Coloring Schemes" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:161 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:161 msgid "Opens a menu which lets you edit the coloring schemes. (F9)" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:172 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:172 msgid "Make Snapshot" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:172 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:172 msgid "Makes a snapshot of the view." msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:294 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:294 msgid "option window-size requires INT,INT" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:311 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:311 msgid "option window-pos requires INT,INT" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:340 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:340 msgid "Langua&ge" msgstr "Lingua" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:342 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:342 msgid "Change language to english. (en)" msgstr "Cambia lingua in inglese. (en)" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:344 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:344 msgid "Change language to german. (de)" msgstr "Cambia lingua in tedesco. (de)" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:346 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:346 msgid "Change language to spanish. (es)" msgstr "Cambia lingua in spagnolo. (es)" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:348 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:348 msgid "Change language to french. (fr)" msgstr "Cambia lingua in francese. (fr)" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:350 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:350 msgid "Change language to italian. (it)" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:352 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:352 msgid "简体中文 (zh)" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:354 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:354 msgid "繁體中文 (zh-Hant)" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:356 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:356 msgid "Change language to turkish. (tr)" msgstr "Cambia lingua in turco. (tr)" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:358 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:358 msgid "Change language to hungarian. (hu)" msgstr "Cambia lingua in ungherese. (hu)" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:372 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:372 msgid "german" msgstr "tedesco" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:376 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:376 msgid "spanish" msgstr "spagnolo" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:380 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:380 msgid "french" msgstr "francese" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:384 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:384 msgid "italian" msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:388 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:388 msgid "chinese" msgstr "cinese" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:392 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:392 msgid "chinese simplified" msgstr "cinese semplificato" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:396 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:396 msgid "turkish" msgstr "turco" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:400 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:400 msgid "hungarian" msgstr "ungherese" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:404 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:404 msgid "english" msgstr "inglese" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:412 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:412 msgid "Language changed to " msgstr "Lingua cambiata in " +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:414 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:414 msgid "Restart needed" msgstr "Bisogno di riavviare" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:415 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:415 msgid "Changing display language needs restart to take effect." msgstr "" "Bisogna riavviare il programma dopo un cambio di lingua per essere effettivo." +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:418 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:418 msgid "" "For the Debug build you might also need to set the LANG environment variable." msgstr "" +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:421 #: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:421 msgid "Under development. You can help to improve the translation at:" msgstr "" "In fase di sviluppo - puoi darci una mano per migliorare la traduzione qui:" +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:254 #: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:254 msgid " (No projection defined)" msgstr " (nessuna proiezione definita)" +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:1747 #: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:1738 msgid "Could not convert coordinates in %." msgstr "Non è stato possibile convertire le coordinate in %." +#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1419 +msgid "Emissions" +msgstr "Emissioni" + +#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3726 +msgid "Mode for creating person plans. (C)" +msgstr "Modo per creare piani personali. (C)" + +#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3732 +msgid "Mode for creating containers. (P)" +msgstr "Modo per creare contenitori. (P)" + +#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:113 +#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:115 +msgid "Undo enable " +msgstr "Annulla attivazione " + +#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:123 +#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:125 +msgid "Redo enable " +msgstr "Ripristina attivazione " + +#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:113 +#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:115 +#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:123 +#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:125 +msgid " attribute in '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:148 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:149 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:146 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:147 +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:128 +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:129 +msgid "Copy " +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:148 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:146 +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:128 +msgid " name to clipboard" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:149 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:147 +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:129 +msgid " typed name to clipboard" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:188 +msgid "Could not build access in netedit; The lane '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:188 +msgid "' doesn't support pedestrians" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:322 +msgid "Could not build parking area with ID '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:322 +msgid "' in netedit; Invalid departPos over lane." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:461 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:519 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:528 +msgid "Could not build lane area detector with ID '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:461 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:528 +msgid "' in netedit; invalid traffic light ID." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:519 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1543 +msgid "' in netedit; Lanes aren't consecutives." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:939 +msgid "Could not build interval with ID '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:939 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1244 +msgid "' in netedit; begin is greather than end." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 +msgid "Could not build interval with begin '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 +msgid "' in '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 +msgid "' due overlapping." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1244 +msgid "Could not build Vaporizer with ID '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1305 +msgid "Could not build TAZ with ID '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1305 +msgid "' in netedit; Invalid Shape." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1543 +msgid "Could not build overhead wire with ID '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1711 +msgid "Could not build POI with ID '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1711 +msgid "' in netedit; Network requires a geo projection." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1925 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:116 +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 +msgid "Could not build " +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 +msgid " with ID '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 +msgid "' in netedit; ID contains invalid characters." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 +msgid "' in netedit; Invalid position over lane." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 +msgid "' in netedit; declared twice." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1925 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 +msgid " doesn't exist." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 +msgid "' in netedit; attribute " +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 +msgid " cannot be negative." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 +msgid "' in netedit; list of VTypes isn't valid." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 +msgid "' in netedit; filename is invalid." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 +msgid "' in netedit; list of lanes isn't valid." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 +msgid " in netedit; " +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibratorFlow.cpp:94 +msgid "calibratorFlow of calibrator '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibratorFlow.cpp:95 +msgid "" +"' cannot be written. Either type or vehsPerHour or speed must be enabled" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:205 +msgid "There is already a TAZ rel defined between '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:207 +msgid "There is already a TAZ rel defined in '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1511 +msgid "' doesn't exist." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:64 +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:93 +msgid " already exists" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:116 +msgid " in netedit; edge doesn't exist." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 +msgid " in netedit; attribute '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:71 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:100 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:156 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1499 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1523 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1535 +msgid "There is another " +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:71 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:100 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:156 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1499 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1523 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1535 +msgid " with the same ID='" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:102 +msgid " need at least one " +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:108 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:118 +msgid " with id '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:108 +msgid "' doesn't exist in " +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:115 +msgid "Invalid definition for " +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:115 +msgid " in " +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:118 +msgid "' cannot be created in " +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:194 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:246 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:287 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:335 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:379 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:426 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:470 +msgid "Invalid vehicle type '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:194 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:246 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:249 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:287 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:290 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:335 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:379 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:426 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:470 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:510 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:541 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:821 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:852 +msgid "' used in " +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:197 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:199 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:251 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:253 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:338 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:340 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:382 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:384 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:429 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:431 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:473 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:475 +msgid " used in " +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:249 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:290 +msgid "Invalid route '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:251 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:253 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:338 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:340 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:382 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:384 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:429 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:431 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:473 +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:475 +msgid "Invalid " +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 +msgid " is greater than number of lanes" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 +msgid " is greater than vType" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:510 +msgid "Invalid person type '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:541 +msgid "Invalid personFlow type '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1039 +msgid "Containers don't support stops at busStops" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1265 +msgid "A transport with edges attribute needs a list of edges" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1275 +msgid "A route transport needs a route" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1511 +msgid "Via edge '" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:58 +msgid "- 'Start drawing' or ENTER" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:59 +msgid " to create shape." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:60 +msgid "- 'Stop drawing' or ENTER to" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:61 +msgid " finish shape creation." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:62 +msgid "- 'Abort drawing' or ESC to" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:63 +msgid " abort shape creation." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:64 +msgid "- 'Shift + Click' to remove" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:65 +msgid " last inserted point." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:619 +msgid "-Click over edge to" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:620 +msgid " create or edit" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:621 +#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:624 +msgid " geometry point." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:622 +msgid "-Shift+click over edge" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:623 +msgid " to edit start or end" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:71 +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:78 +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:85 +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:92 +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:99 +msgid "- Shift+Click to select parent\n" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:72 +msgid "- Click over a bus stop to\n" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:73 +msgid " create a stop." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:79 +msgid "- Click over a container stop\n" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:80 +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:87 +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:94 +msgid " to create a stop." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:86 +msgid "- Click over a charging station\n" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:93 +msgid "- Click over a parking area\n" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:100 +msgid "- Click over a lane to create\n" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:101 +msgid " a stop." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:105 +msgid "- No stop parents in current\n" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:106 +msgid " network." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:420 +msgid "VType Distributions" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:423 +msgid "Show VType Distributions" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:71 +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:93 +msgid "- Click over a route to\n" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:72 +msgid " create a vehicle." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:76 +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:81 +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:98 +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:103 +msgid "- Select two edges to\n" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:77 +msgid " create a Trip." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:82 +msgid " create a vehicle with\n" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:83 +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:105 +msgid " embedded route." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:87 +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:109 +msgid "- Select two junctions\n" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:88 +msgid " to create a Trip." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:94 +msgid " create a routeFlow." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:99 +msgid " create a flow." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:104 +msgid " create a flow with\n" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:110 +msgid " to create a flow." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:329 +msgid "List ofe dges cannot be empty" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:313 +msgid "-Hold while" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:314 +msgid " clicking to create" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:315 +msgid " unyielding connections" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:316 +msgid " (pass=true)." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:321 +msgid "-Hold while" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:322 +msgid " clicking to create " +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:323 +msgid " conflicting connections" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:324 +msgid " (i.e. at zipper nodes" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:325 +msgid " or with incompatible" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:326 +msgid " permissions" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:623 +msgid "- ESC:" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:624 +msgid " Deselect origin" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:625 +msgid "- Control+Click:" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:626 +msgid " Move view" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:627 +msgid "- Shift+Click:" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:628 +msgid " Splits edge in both directions" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:629 +msgid "- Alt+Shift+Click:" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:630 +msgid " Splits edge in one direction" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:540 +msgid "-Click over junction to" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:541 +msgid " mark candidate edges." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:542 +msgid "-Click over candidate" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:543 +msgid " edges for selecting." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:511 +#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:646 +msgid "- Toggle Membership:" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:512 +#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:647 +msgid " Create new Sources/Sinks" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:513 +#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:648 +msgid " with given weights." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:669 +msgid "- Keep Membership:" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:671 +msgid "- Press ESC to clear" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:672 +msgid " current selection." +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:102 +#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:86 +msgid "popen() failed!" +msgstr "" + +#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:142 +#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:125 +msgid "starting process silently...\n" +msgstr "" + +#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:277 +msgid "Run tool" +msgstr "" + +#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:278 +msgid "Cancel tool" +msgstr "" + +#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:280 +msgid "Accept settings" +msgstr "" + #~ msgid "&Scorciatoie" #~ msgstr "&Hotkey" diff -Nru sumo-1.17.0/data/po/it_py.po sumo-1.18.0/data/po/it_py.po --- sumo-1.17.0/data/po/it_py.po 1970-01-01 00:00:00.000000000 +0000 +++ sumo-1.18.0/data/po/it_py.po 2023-06-28 20:02:17.000000000 +0000 @@ -0,0 +1,136 @@ +# Italian translations for sumo package. +# Copyright (C) 2023 THE sumo'S COPYRIGHT HOLDER +# This file is distributed under the same license as the sumo package. +# Automatically generated, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: sumo\n" +"Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" +"POT-Creation-Date: 2023-05-26 14:09+0200\n" +"PO-Revision-Date: 2023-06-15 09:26+0000\n" +"Last-Translator: Mirko Barthauer \n" +"Language-Team: Italian \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18\n" + +#: D:\Repos\sumo/tools/game\runner.py:63 +msgid "Interactive Traffic Light" +msgstr "Gioco di semafori interattivi" + +#: D:\Repos\sumo/tools/game\runner.py:64 +msgid "Research intersection Ingolstadt" +msgstr "Incrocio della ricerca di Ingolstadt" + +#: D:\Repos\sumo/tools/game\runner.py:65 +msgid "Simple Junction" +msgstr "Incrocio semplice" + +#: D:\Repos\sumo/tools/game\runner.py:66 +msgid "Simple Junction (Demo)" +msgstr "Incrocio semplice (demo)" + +#: D:\Repos\sumo/tools/game\runner.py:67 +msgid "Four Junctions" +msgstr "Quattro incroci" + +#: D:\Repos\sumo/tools/game\runner.py:68 +msgid "Six Junctions" +msgstr "Sei incroci" + +#: D:\Repos\sumo/tools/game\runner.py:69 +msgid "Prof. Kühne" +msgstr "Prof. Kühne" + +#: D:\Repos\sumo/tools/game\runner.py:70 +msgid "3D Junction Virtual World" +msgstr "Incrocio 3D Mondo virtuale" + +#: D:\Repos\sumo/tools/game\runner.py:71 +msgid "3D Junction OpenStreetMap" +msgstr "Incrocio 3D OpenStreetMap" + +#: D:\Repos\sumo/tools/game\runner.py:72 +msgid "Highway Ramp" +msgstr "Rampa autostradale" + +#: D:\Repos\sumo/tools/game\runner.py:73 +msgid "Combined Highway On and Off Ramp" +msgstr "Rampa e uscita autostradale combinate" + +#: D:\Repos\sumo/tools/game\runner.py:74 +msgid "Corridor" +msgstr "Corridoio" + +#: D:\Repos\sumo/tools/game\runner.py:75 +msgid "Highway Ramp A10" +msgstr "Rampa autostradale A10" + +#: D:\Repos\sumo/tools/game\runner.py:76 +msgid "Demand Responsive Transport (new)" +msgstr "Trasporto a chiamata (nuovo)" + +#: D:\Repos\sumo/tools/game\runner.py:77 +msgid "DRT - Advanced (new)" +msgstr "Trasporto a chiamata - Livello avanzato (nuovo)" + +#: D:\Repos\sumo/tools/game\runner.py:78 +msgid "DRT - Demo" +msgstr "Trasporto a chiamata - Demo" + +#: D:\Repos\sumo/tools/game\runner.py:79 D:\Repos\sumo/tools/game\runner.py:89 +msgid "Highscore" +msgstr "Classifica per punteggi" + +#: D:\Repos\sumo/tools/game\runner.py:80 +msgid "Reset Highscore" +msgstr "Svuota classifica dei punteggi" + +#: D:\Repos\sumo/tools/game\runner.py:81 +msgid "German" +msgstr "Tedesco" + +#: D:\Repos\sumo/tools/game\runner.py:82 +msgid "English" +msgstr "Inglese" + +#: D:\Repos\sumo/tools/game\runner.py:83 +msgid "Italian" +msgstr "Italiano" + +#: D:\Repos\sumo/tools/game\runner.py:84 +msgid "Spanish" +msgstr "Spagnolo" + +#: D:\Repos\sumo/tools/game\runner.py:85 +msgid "French" +msgstr "Francese" + +#: D:\Repos\sumo/tools/game\runner.py:86 +msgid "Chinese (simplified)" +msgstr "Cinese (semplificato)" + +#: D:\Repos\sumo/tools/game\runner.py:87 +msgid "Chinese (traditional)" +msgstr "Cinese (tradizionale)" + +#: D:\Repos\sumo/tools/game\runner.py:88 +msgid "Quit" +msgstr "Esci" + +#: D:\Repos\sumo/tools/game\runner.py:90 +msgid "Congratulations!" +msgstr "Congratulazioni!" + +#: D:\Repos\sumo/tools/game\runner.py:91 +msgid "Your Score" +msgstr "Tuo punteggio" + +#: D:\Repos\sumo/tools/game\runner.py:92 +msgid "Continue" +msgstr "Continua" diff -Nru sumo-1.17.0/data/po/it_sumo.po sumo-1.18.0/data/po/it_sumo.po --- sumo-1.17.0/data/po/it_sumo.po 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/po/it_sumo.po 2023-06-28 20:02:17.000000000 +0000 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: sumo\n" "Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" -"POT-Creation-Date: 2023-04-15 12:21+0200\n" -"PO-Revision-Date: 2023-04-13 06:57+0000\n" +"POT-Creation-Date: 2023-06-15 09:59+0200\n" +"PO-Revision-Date: 2023-05-15 14:04+0000\n" "Last-Translator: Mirko Barthauer \n" "Language-Team: Italian \n" @@ -17,103 +17,108 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.17-dev\n" +"X-Generator: Weblate 4.18-dev\n" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:46 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:46 msgid "Reading input" msgstr "Lettura ingresso" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:54 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:54 msgid "Consolidating statistics" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:58 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:58 msgid "Building street representation" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:62 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:62 msgid "Generating work positions" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:66 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:66 msgid "Building bus lines" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:71 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:71 msgid "Generating population" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:75 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:75 msgid "Allocating schools" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:79 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:79 msgid "Allocating work places" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:83 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:83 msgid "Allocating car places" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGenHandler.cpp:178 +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:174 +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:181 +msgid "Invalid % value of edge % is treated as zero." +msgstr "" + +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:186 #, c-format msgid "Edge '%' is not known." -msgstr "" +msgstr "L'arco '%' è sconosciuto." -#: /home/micha/programming/sumo/src/activitygen/AGActivityGenHandler.cpp:329 +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:337 msgid "Unknown bus station '%'." msgstr "Fermata di autobus '%' sconosciuta." -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:61 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:61 msgid "Use FILE as SUMO-network to create trips for" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:64 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:64 msgid "Loads the SUMO-statistics FILE" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:72 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:72 msgid "Write generated trips to FILE" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:81 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:81 msgid "" "Sets the time of beginning of the simulation during the first day (in " "seconds)" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:84 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:84 msgid "" "Sets the time of ending of the simulation during the last day (in seconds)" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:87 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:87 msgid "Sets the duration of the simulation in days" msgstr "" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:64 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:111 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:64 +#: D:\Repos\sumo/src\router\ROLoader.cpp:111 msgid "Missing definition of network to load!" msgstr "La definizione della rete da caricare manca!" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:67 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:67 #, c-format msgid "The network file '%' could not be accessed." -msgstr "" +msgstr "Il file della rete '%' non è accessibile." -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:69 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:116 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:69 +#: D:\Repos\sumo/src\router\ROLoader.cpp:116 msgid "Loading net" msgstr "Caricamento della rete" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:79 -#: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:227 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:133 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:79 +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:227 +#: D:\Repos\sumo/src\router\ROLoader.cpp:133 #, c-format msgid "Deprecated vehicle classes '%' in input network." msgstr "Ci sono le classi di veicoli obsolete '%' nella rete di ingresso." -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:89 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:89 msgid "" "Generates trips of persons throughout a day for the microscopic, multi-modal " "traffic simulation SUMO." @@ -121,1844 +126,1857 @@ "Genera corse di persone per un giorno intero simulato nella simulazione del " "traffico microscopica e multimodale SUMO." -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:113 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:113 #, c-format msgid "Loaded % edges." msgstr "% archi caricati." -#: /home/micha/programming/sumo/src/activitygen/city/AGCity.cpp:427 +#: D:\Repos\sumo/src\activitygen\city\AGCity.cpp:425 msgid "No street that allows passenger vehicles found in this city." msgstr "" +"Non è stata trovata nessuna via accessibile a veicoli passeggeri in questa " +"città." -#: /home/micha/programming/sumo/src/activitygen/city/AGWorkPosition.cpp:126 +#: D:\Repos\sumo/src\activitygen\city\AGWorkPosition.cpp:126 msgid "Work position already occupied. Cannot give it to another adult." msgstr "" +"Posizione di lavoro già presa. Non può essere assegnata ad un altro adulto." -#: /home/micha/programming/sumo/src/dfrouter/RODFDetFlowLoader.cpp:76 +#: D:\Repos\sumo/src\dfrouter\RODFDetFlowLoader.cpp:76 msgid "At least one value lies beyond given time boundaries." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFDetFlowLoader.cpp:104 +#: D:\Repos\sumo/src\dfrouter\RODFDetFlowLoader.cpp:104 msgid "At least one line does not contain the correct number of columns." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFDetector.cpp:171 +#: D:\Repos\sumo/src\dfrouter\RODFDetector.cpp:171 msgid "Missing routes for detector '%'." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFDetector.cpp:305 +#: D:\Repos\sumo/src\dfrouter\RODFDetector.cpp:305 #, c-format msgid "Detector '%' has no routes!?" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFDetectorHandler.cpp:86 +#: D:\Repos\sumo/src\dfrouter\RODFDetectorHandler.cpp:86 msgid "Could not add detector '%' (probably the id is already used)." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:61 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:61 msgid "Loads the SUMO-network FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:70 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:70 msgid "Loads detector descriptions from FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:75 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:75 msgid "Loads detector flows from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:82 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:82 msgid "Saves computed routes to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:85 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:85 msgid "Forces dfrouter to compute routes for in-between detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:89 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:89 msgid "Saves typed detectors to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:92 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:92 msgid "Saves detector positions as pois to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:95 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:95 msgid "Saves emitter definitions for source detectors to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:98 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:98 msgid "Add vehicle types to the emitters file (PKW, LKW)" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:101 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:101 msgid "" "Write generated vehicle types into separate FILE instead of including them " "into the emitters-output" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:104 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:104 msgid "Saves emitter positions as pois to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:108 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:108 msgid "Saves variable seed sign definitions for sink detectors to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:111 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:111 msgid "Saves rerouter definitions for sink detectors to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:114 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:114 msgid "" "Write induction loop definitions for the given detector positions to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:117 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:117 msgid "Add source detectors to the validation output" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:123 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:123 msgid "Derive missing flow values from upstream or downstream (not working!)" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:127 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:127 msgid "Switches to highway-mode" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:131 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:131 msgid "Only warn about unparseable detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:135 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:135 msgid "Recomputes detector types even if given" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:139 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:139 msgid "Recomputes routes even if given" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:143 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:143 msgid "Keeps routes even if they have exhausted max-search-depth" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:146 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:146 msgid "Keeps routes even if a shorter one exists" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:150 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:150 msgid "Number of edges to follow a route without passing a detector" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:153 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:153 msgid "Writes only emission times" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:156 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:156 msgid "Do not route on these edges" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:159 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:159 msgid "Only route on edges allowing the given vclass" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:162 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:162 msgid "Allow turnarounds as route continuations" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:167 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:167 msgid "Minimum distance in meters between start and end node of every route" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:170 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:170 msgid "generate random departure times for emitted vehicles" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:174 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:174 msgid "Multiply flow times with TIME to get seconds" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:177 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:177 msgid "Subtracts TIME seconds from (scaled) flow times" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:180 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:180 msgid "Expected distance between two successive data sets" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:185 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:185 msgid "Write calibrators to FILE" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:188 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:188 msgid "Include routes in the output which have no vehicles" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:192 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:192 msgid "" "Checks whether detectors with calculated flow 0 can attract additional " "traffic" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:195 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:195 msgid "Removes empty detectors from the list" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:198 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:198 msgid "" "Whether edges with unknown status can prevent an edge from becoming a source" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:201 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:201 msgid "" "Try to determine further inflows to an inbetween detector when computing " "split probabilities" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:205 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:205 msgid "Scale factor for flows" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:209 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:123 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:167 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:199 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:209 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:123 +#: D:\Repos\sumo/src\od2trips_main.cpp:167 +#: D:\Repos\sumo/src\router\ROFrame.cpp:199 msgid "Assigns a default depart lane" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:212 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:127 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:170 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:202 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:212 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:127 +#: D:\Repos\sumo/src\od2trips_main.cpp:170 +#: D:\Repos\sumo/src\router\ROFrame.cpp:202 msgid "Assigns a default depart position" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:215 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:131 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:173 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:205 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:215 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:131 +#: D:\Repos\sumo/src\od2trips_main.cpp:173 +#: D:\Repos\sumo/src\router\ROFrame.cpp:205 msgid "Assigns a default depart speed" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:218 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:135 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:176 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:208 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:218 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:135 +#: D:\Repos\sumo/src\od2trips_main.cpp:176 +#: D:\Repos\sumo/src\router\ROFrame.cpp:208 msgid "Assigns a default arrival lane" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:221 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:139 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:179 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:211 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:221 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:139 +#: D:\Repos\sumo/src\od2trips_main.cpp:179 +#: D:\Repos\sumo/src\router\ROFrame.cpp:211 msgid "Assigns a default arrival position" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:224 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:143 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:182 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:214 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:224 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:143 +#: D:\Repos\sumo/src\od2trips_main.cpp:182 +#: D:\Repos\sumo/src\router\ROFrame.cpp:214 msgid "Assigns a default arrival speed" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:227 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:227 msgid "The default speed deviation of vehicles" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:231 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:231 msgid "Defines the begin time; Previous defs will be discarded" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:234 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:234 msgid "Defines the end time; Later defs will be discarded; Defaults to one day" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:239 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:239 msgid "Lists detectors with no flow (enable -v)" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:242 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:242 msgid "Prints aggregated detector flows" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:246 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:225 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:246 +#: D:\Repos\sumo/src\router\ROFrame.cpp:225 msgid "Disable console output of route parsing step" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:113 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:113 msgid "Computing detector types" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:142 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:142 msgid "Computed detector types:" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:143 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:143 #, c-format msgid " % source detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:144 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:144 #, c-format msgid " % sink detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:145 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:145 #, c-format msgid " % in-between detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:146 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:146 #, c-format msgid " % invalid detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:281 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:281 msgid "Could not close route for '%'" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:439 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:439 #, c-format msgid "" "Detector '%' has no flows.\n" " Trying to rebuild." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:467 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:467 msgid " Could not build list of previous flows." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:504 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:504 msgid " Could not build list of latter flows." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:591 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:591 msgid "Removed detector '%' because no flows for him exist." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:614 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:614 #, c-format msgid "Detector '%' has no flow." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:693 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:693 #, c-format msgid "" "Quitting checking for being a source for detector '%' due to seen edge limit." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:793 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:793 #, c-format msgid "" "Quitting checking for being a destination for detector '%' due to seen edge " "limit." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:869 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:869 #, c-format msgid "" "Quitting checking for being a false source for detector '%' due to seen edge " "limit." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:1002 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:1002 msgid "Average speedFactor for PKW is % maximum speedFactor is %." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:1006 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:1006 msgid "Average speedFactor for LKW is % maximum speedFactor is %." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:70 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:70 msgid "No detector file given (use --detector-files )." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:76 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:76 msgid "Could not open detector file '%'" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:88 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:88 msgid "No detectors found." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:103 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:103 #, c-format msgid "The measure-file '%' can not be opened." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:124 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:124 msgid "Removing empty detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:128 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:128 msgid "Scanning for empty detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:143 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:143 msgid "No source detectors found." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:147 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:147 msgid "Computing routes" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:158 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:158 msgid "The detector types are not defined; use in combination with a network" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:162 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:162 msgid "The emitters have no routes; use in combination with a network" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:193 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:193 msgid "Rechecking loaded flows" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:198 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:198 msgid "Writing emitters" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:210 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:210 msgid "Writing emitter pois" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:217 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:217 msgid "Writing speed triggers" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:224 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:224 msgid "Writing validation detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:231 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:231 msgid "Writing highway end rerouter" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:251 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:251 msgid "Builds vehicle routes for SUMO using detector values." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:69 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:69 msgid "Write generated route alternatives to FILE" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:72 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:72 msgid "Write edge splits and connectivity to FILE" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:75 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:75 msgid "Write intermodal edges with lengths and travel times to FILE" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:78 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:78 msgid "Write trips instead of vehicles (for validating trip input)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:81 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:81 msgid "Write trips with geo-coordinates" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:84 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:84 msgid "Write trips with fromJunction and toJunction" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:87 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:87 msgid "Include the cost attribute in route output" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:92 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:559 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:92 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:565 msgid "" "Edge weights for routing are dynamically disturbed by a random factor drawn " "uniformly from [1,FLOAT)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:95 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:118 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:95 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:118 msgid "" "Aggregation period for the given weight files; triggers rebuilding of " "Contraction Hierarchy" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:98 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:112 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:568 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:98 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:112 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:574 msgid "" "Consider edge priorities in addition to travel times, weighted by factor" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:101 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:574 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:101 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:580 msgid "" "Initialize lookup table for astar from the given file (generated by marouter " "--all-pairs-output)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:104 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:577 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:104 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:583 msgid "Initialize lookup table for astar ALT-variant from the given file" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:107 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:107 msgid "Save lookup table for astar ALT-variant to the given file" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:117 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:206 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:117 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:206 msgid "Use FLOAT as Gawron's beta" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:121 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:210 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:121 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:210 msgid "Use FLOAT as Gawron's a" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:124 -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:62 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:213 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:124 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:62 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:213 msgid "Write exit times (weights) for each edge" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:127 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:251 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:127 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:251 msgid "Include total route length in the output" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:130 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:216 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:130 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:216 msgid "Save routes with near zero probability" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:133 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:219 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:133 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:219 msgid "Only reuse routes from input, do not calculate new ones" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:136 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:136 msgid "The probability of keeping the old route" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:139 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:139 msgid "Route all public transport input" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:142 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:202 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:142 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:202 msgid "Choose a route choice method: gawron, logit, or lohse" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:145 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:145 msgid "Use c-logit model (deprecated in favor of --route-choice-method logit)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:149 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:149 msgid "Use FLOAT as logit's beta" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:153 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:153 msgid "Use FLOAT as logit's gamma" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:157 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:157 msgid "Use FLOAT as logit's theta (negative values mean auto-estimation)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:160 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:580 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:160 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:586 msgid "" "Use FLOAT as a factor on pedestrian maximum speed during intermodal routing" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:163 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:583 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:163 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:589 msgid "" "Use FLOAT as a factor on walking speed against vehicle traffic direction" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:170 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:590 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:170 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:596 msgid "Where taxis can drop off customers ('allJunctions, 'ptStops')" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:173 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:593 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:173 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:599 msgid "Where taxis can pick up customers ('allJunctions, 'ptStops')" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:176 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:599 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:176 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:605 msgid "Estimated time for taxi pickup" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:179 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:602 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:179 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:608 msgid "" "Use FLOAT as a maximum train length when initializing the railway router" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:216 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:216 msgid "Routing algorithm '%' does not support weight-attribute '%'." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:220 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:220 #, c-format msgid "Routing algorithm '%' does not support bulk routing." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:228 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:243 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:228 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:243 msgid "Invalid route choice method '%'." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:232 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:232 msgid "" "The --logit option is deprecated, please use --route-choice-method logit." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:244 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:244 msgid "Cannot derive file name for alternatives output, skipping it." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:251 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:251 msgid "" "Option --write-trips.junctions takes no affect when --write-trips is " "disabled." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:107 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:107 #, c-format msgid "Routing algorithm '%' does not support restriction-params" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:151 -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:180 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:151 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:180 msgid "Unknown routing Algorithm '%'!" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:178 -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:210 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:178 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:210 msgid "No weight data was loaded for attribute '%'." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:238 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:238 msgid "" "Shortest path router and DUE computer for the microscopic, multi-modal " "traffic simulation SUMO." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTREdge.cpp:64 +#: D:\Repos\sumo/src\jtrrouter\ROJTREdge.cpp:64 #, c-format msgid "The edges '%' and '%' are not connected." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:59 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:59 msgid "Read turning ratios from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:69 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:69 msgid "Use STR[] as default turn definition" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:73 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:73 msgid "Use STR[] as list of sink edges" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:76 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:76 msgid "Whether all edges are allowed as sink edges" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:79 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:79 msgid "Ignore road restrictions based on vehicle class" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:82 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:82 msgid "Allow to re-use a road" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:85 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:85 msgid "Use all source edges as sink edges." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:88 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:88 msgid "" "Subtract upstream flow when inserting a new flow. When option --sources-are-" "sinks is set, the upstream flow is limited to the value of the source flow " "and the remaining part terminates." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:68 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:68 msgid "" "The turn-file format with elements %, % is deprecated, please use % instead." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:87 -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:143 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:87 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:143 #, c-format msgid "The edge '%' declared as a sink is not known." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:116 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:116 msgid "Ignoring flow '%' without 'from'" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:128 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:128 #, c-format msgid "The edge '%' declared as a source is not known." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:152 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:152 #, c-format msgid "" "The edge '%' is not known within the network (within a 'from-edge' tag)." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:172 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:172 #, c-format msgid "The edge '%' is not known within the network (within a 'to-edge' tag)." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:178 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:178 msgid "'probability' must be positive (in definition of to-edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:201 -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:206 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1302 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1400 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:201 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:206 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1302 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1400 #, c-format msgid "The edge '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:210 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:210 msgid "'probability' must be positive (in edgeRelation from '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:94 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:94 msgid "" "The defaults for turnings must be a tuple of at least two numbers divided by " "','." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:101 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:101 msgid "A turn default is not numeric." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:182 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:182 msgid "" "Router for the microscopic, multi-modal traffic simulation SUMO based on " "junction turning ratios." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/GUI.cpp:330 +#: D:\Repos\sumo/src\libsumo\GUI.cpp:332 msgid "This system has no OpenGL support. Exiting." -msgstr "" +msgstr "Questo sistema non sostiene OpenGL. Uscita." -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:904 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:904 #, c-format msgid "" "Ignoring veh '%' no-opposite subscription filter for geographic range object " "collection. Consider using the 'lanes' filter." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1067 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1067 msgid "" "Lanes filter is only feasible for context domain 'vehicle' (current is '%'), " "ignoring filter..." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1164 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1164 msgid "" "Turn filter is only feasible for context domain 'vehicle' (current is '%'), " "ignoring filter..." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1229 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1229 msgid "" "Field of vision opening angle ('%') should be within interval (0, 360), " "ignoring filter..." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1341 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1341 msgid "" "addSubscriptionFilterLateralDistance could not determine shape of lane '%' " "with a lateral shift of %." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1399 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1399 msgid "Vehicle '%' was removed though being controlled by TraCI" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1408 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1408 msgid "Person '%' was removed though being controlled by TraCI" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/MeanData.cpp:83 +#: D:\Repos\sumo/src\libsumo\MeanData.cpp:83 msgid "Found % meanData definitions with id '%'." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Person.cpp:530 +#: D:\Repos\sumo/src\libsumo\Person.cpp:535 #, c-format msgid "" "Departure time=% for person '%' is in the past; using current time=% instead." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Person.cpp:929 -msgid "Could not determine position on lane '% at lateral position %." +#: D:\Repos\sumo/src\libsumo\Person.cpp:934 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1741 +msgid "Could not determine position on lane '%' at lateral position %." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Simulation.cpp:105 +#: D:\Repos\sumo/src\libsumo\Simulation.cpp:105 msgid "Simulation version % started via libsumo with time: %." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Simulation.cpp:699 +#: D:\Repos\sumo/src\libsumo\Simulation.cpp:699 msgid "" "Ignoring vehicle type '%' when performing intermodal routing because it is " "not allowed on the start edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/TrafficLight.cpp:697 +#: D:\Repos\sumo/src\libsumo\TrafficLight.cpp:697 #, c-format msgid "" "Cannot check for all deadlocks on swapConstraints because the route for " "vehicle '%' is not computed yet" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1122 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1133 msgid "" "Stop replacement parameter 'teleport=%' ignored for vehicle '%' when only " "removing stop." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1231 -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1354 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1246 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1374 msgid "Unsupported parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1306 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1326 msgid "Waypoint (speed = %) at index % does not support triggers" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1340 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1360 msgid "" "Triggered stop at index % cannot be changed into a waypoint by setting speed " "to %" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1457 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1477 #, c-format msgid "Ignoring changeLaneRelative for vehicle '%' that isn't on the road" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1459 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1479 msgid "Ignoring indexOffset % for vehicle '%' on laneIndex %." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1551 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1575 #, c-format msgid "" "Departure time for vehicle '%' is in the past; using current time instead." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1717 -msgid "Could not determine position on lane '%' at lateral position %." -msgstr "" - -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1914 -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:422 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1938 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:422 msgid "Invalid route replacement for vehicle '%'. %" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:2597 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:2634 msgid "" "Ignoring lane change subscription filter with non-neighboring lane offset " "direction=%." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/VehicleType.cpp:289 +#: D:\Repos\sumo/src\libsumo\VehicleType.cpp:322 #, c-format msgid "Automatically setting emergencyDecel to % for vType '%' to match decel." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/VehicleType.cpp:301 +#: D:\Repos\sumo/src\libsumo\VehicleType.cpp:334 msgid "New value of emergencyDecel (%) is lower than decel (%)" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAAssignments.cpp:190 +#: D:\Repos\sumo/src\marouter\ROMAAssignments.cpp:190 msgid "Unknown origin '%'." msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAAssignments.cpp:194 +#: D:\Repos\sumo/src\marouter\ROMAAssignments.cpp:194 msgid "Unknown destination '%'." msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:71 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:121 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:71 +#: D:\Repos\sumo/src\od2trips_main.cpp:121 msgid "Does not save vtype information" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:74 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:74 msgid "Writes edge loads and final costs into FILE" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:77 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:77 msgid "Writes complete distance matrix into FILE" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:81 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:85 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:81 +#: D:\Repos\sumo/src\od2trips_main.cpp:85 msgid "Loads O/D-files from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:86 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:90 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:86 +#: D:\Repos\sumo/src\od2trips_main.cpp:90 msgid "Loads O/D-matrix in Amitran format from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:89 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:93 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:89 +#: D:\Repos\sumo/src\od2trips_main.cpp:93 msgid "Loads O/D-matrix in tazRelation format from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:93 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:97 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:93 +#: D:\Repos\sumo/src\od2trips_main.cpp:97 msgid "Define data attribute for loading counts (default 'count')" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:96 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:96 msgid "The travel time influence of prior intervals" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:99 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:99 msgid "Parameter key(s) defining source (and sink) taz" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:102 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:102 msgid "Ignore attributes 'fromTaz' and 'toTaz'" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:106 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:106 msgid "" "Defines the time interval when aggregating single vehicle input; Defaults to " "one hour" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:109 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:109 msgid "Ignore edge priorities when calculating capacities and restraints" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:115 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:115 msgid "" "Aggregate routing queries with the same origin for different vehicle types" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:153 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:137 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:153 +#: D:\Repos\sumo/src\od2trips_main.cpp:137 msgid "Scales the loaded flows by FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:156 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:146 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:156 +#: D:\Repos\sumo/src\od2trips_main.cpp:146 msgid "Defines the name of the vehicle type to use" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:159 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:159 msgid "Defines the prefix for vehicle flow names" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:162 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:152 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:162 +#: D:\Repos\sumo/src\od2trips_main.cpp:152 msgid "Uses STR[] as a timeline definition" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:165 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:155 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:165 +#: D:\Repos\sumo/src\od2trips_main.cpp:155 msgid "Uses STR as a 24h-timeline definition" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:168 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:168 msgid "Keep traffic flows of all time slots in the net" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:172 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:172 msgid "Choose a assignment method: incremental, UE or SUE" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:175 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:175 msgid "Use FLOAT as tolerance when checking for SUE stability" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:178 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:178 msgid "" "Use left-turn penalty FLOAT to calculate link travel time when searching " "routes" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:181 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:181 msgid "" "Use INTEGER as the number of paths needed to be searched for each OD pair at " "each iteration" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:184 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:184 msgid "Penalize existing routes with FLOAT to find secondary routes" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:188 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:188 msgid "Use FLOAT as the upper bound to determine auxiliary link cost" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:192 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:192 msgid "Use FLOAT as the lower bound to determine auxiliary link cost" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:195 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:195 msgid "" "maximal number of iterations for new route searching in incremental and " "stochastic user assignment" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:198 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:198 msgid "" "maximal number of inner iterations for user equilibrium calculation in the " "stochastic user assignment" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:223 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:223 msgid "Use FLOAT as (c-)logit's beta for the commonality factor" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:227 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:227 msgid "Use FLOAT as (c-)logit's gamma for the commonality factor" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:231 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:231 msgid "Use FLOAT as (c-)logit's theta" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:239 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:239 msgid "Invalid assignment method '%'." msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:247 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:247 msgid "" "Contraction hierarchies do not work with k shortest path search (please use " "a different routing algorithm)!" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMARouteHandler.cpp:87 +#: D:\Repos\sumo/src\marouter\ROMARouteHandler.cpp:87 msgid "No origin or no destination given, ignoring '%'!" msgstr "" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:239 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:239 msgid "" "Deterministic user equilibrium ('UE') is not implemented yet, using " "stochastic method ('SUE')." msgstr "" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:323 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:315 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:323 +#: D:\Repos\sumo/src\od2trips_main.cpp:315 msgid "No output file given." msgstr "" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:340 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:340 msgid "" "Import O/D-matrices for macroscopic traffic assignment to generate SUMO " "routes." msgstr "" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:376 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:376 msgid "No districts loaded, will use edge ids!" msgstr "" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:387 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:387 msgid "No valid vehicles loaded." msgstr "" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:390 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:285 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:390 +#: D:\Repos\sumo/src\od2trips_main.cpp:285 msgid "Loading failed." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:89 -#: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:66 -#: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:184 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:89 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:66 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:185 msgid "Vehicle '%' teleports beyond arrival edge '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:109 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:109 msgid "Vehicle '%' ends teleporting on edge '%':%, time=%." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:167 -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:197 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:167 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:197 msgid "Teleporting vehicle '%'; waited too long, from edge '%':%, time=%." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:187 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:187 msgid "" "Teleporting vehicle '%'; waited too long, from edge '%':% to edge '%':%, " "time=%." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:137 -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:603 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:137 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:603 msgid "Clearing jam at calibrator '%' at time=%." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:145 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:145 msgid "Could not clear jam at calibrator '%' at time=%." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:177 -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:414 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:177 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:414 msgid "No valid routes in calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:181 -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:418 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:181 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:418 msgid "Route '%' in calibrator '%' does not contain edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:220 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:220 msgid "Join stops are not available in meso yet (vehicle '%', segment '%')." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:247 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:247 msgid "" "Vehicle '%' has multiple stops on segment '%', time=% (stop-output will be " "merged)." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:370 -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1669 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:370 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1656 #, c-format msgid "" "Vehicle '%' ignores triggered stop on lane '%' due to capacity constraints." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:387 -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1684 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:387 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1671 #, c-format msgid "" "Vehicle '%' ignores container triggered stop on lane '%' due to capacity " "constraints." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:554 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:554 msgid "Error: Invalid vehicles in state (may be a micro state)!" msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.h:188 -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.h:194 -msgid "parkingZoneReroute not implemented for meso" -msgstr "" - -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:172 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:172 msgid "Changing a vehicle ID is not permitted" -msgstr "" +msgstr "Non è permesso di cambiare il codice identificativo di un veicolo" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:289 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:289 msgid "Vehicle '%' is not allowed on any lane of via edge '%'." msgstr "" +"Il veicolo '%' non ha diritto di accedere a nessuna delle corsie dell'arco " +"'%'." -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:317 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:317 msgid "Vehicle '%' has no valid route from edge '%' to stop edge '%'." msgstr "" +"Il veicolo '%' non dispone di un itinerario valido tra l'arco '%' e l'arco " +"'%' dove fermarsi." -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:361 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:361 #, c-format msgid "Vehicle '%' has no valid route." -msgstr "" +msgstr "Il veicolo '%' non dispone di un itinerario valido." -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:363 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:363 msgid "Removing vehicle '%' which has no valid route." -msgstr "" +msgstr "Il veicolo '%' viene rimosso per causa dell'itinerario invalido." -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:377 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:377 #, c-format msgid "No route for vehicle '%' found." -msgstr "" +msgstr "Non è stato trovato nessun'itinerario per il veicolo '%'." -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:447 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:447 #, c-format msgid "current edge '%' not found in new route" -msgstr "" +msgstr "l'arco attuale '%' non è presente nell'itinerario nuovo" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:460 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:460 msgid "Vehicle is on junction-internal edge leading elsewhere" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:473 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:473 msgid "" "Vehicle is moving past junction and committed to move to another successor " "edge" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:543 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:543 msgid "Vehicle '%' could not assign stop '%' after rerouting (%) at time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:683 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:683 msgid "No connection between edge '%' and edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:692 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:692 #, c-format msgid "Edge '%' prohibits." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:706 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:706 #, c-format msgid "Vehicle '%' is not allowed to depart on its first edge." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:736 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:736 msgid "Vehicle '%' has no valid route. %" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:799 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:799 msgid "" "Vehicle '%' ignores attribute arrivalEdge=% after rerouting at time=% " "(routeLength=%)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:813 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:813 msgid "Vehicle '%' will not be able to arrive at the given position!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:833 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:833 msgid "Vehicle '%' will not be able to arrive at the given lane '%_%'!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:845 -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:857 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:845 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:857 msgid "Vehicle '%' has no usable arrivalLane on edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:869 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:869 msgid "Vehicle '%' will not be able to arrive with the given speed!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:885 -msgid "Ignoring departEdge % for vehicle '% with % route edges" +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:885 +msgid "Ignoring departEdge % for vehicle '%' with % route edges" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.h:879 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.h:909 msgid "getLeader not yet implemented for meso" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.h:893 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.h:923 msgid "getFollower not yet implemented for meso" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:660 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:660 msgid "" "Choosing new speed factor % for vehicle '%' to match departure speed % (max " "%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1264 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1264 #, c-format msgid "Bidi-edge '%' does not exist" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1277 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1277 msgid "Ambiguous superposable edges between junction '%' and '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1308 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1308 #, c-format msgid "Edge '%s' and bidi edge '%s' have no matching bidi lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:78 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:78 msgid "Load road network description from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:83 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:83 msgid "Load routes descriptions from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:87 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:87 msgid "Load further descriptions from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:91 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:91 msgid "Load edge/lane weights for online rerouting from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:94 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:108 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:94 +#: D:\Repos\sumo/src\router\ROFrame.cpp:108 msgid "Name of the xml attribute which gives the edge weight" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:97 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:97 msgid "Loads a network state from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:99 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:99 msgid "Shifts all times loaded from a saved state by the given offset" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:101 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:101 msgid "Removes vehicles with the given IDs from the loaded state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:104 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:134 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:104 +#: D:\Repos\sumo/src\router\ROFrame.cpp:134 msgid "" "Initialize a TAZ for every junction to use attributes toJunction and " "fromJunction" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:114 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:114 msgid "Save complete network states into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:119 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:119 msgid "Write also empty edges completely when dumping" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:124 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:124 msgid "Write positions and speeds with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:128 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:128 msgid "Save the emission values of each vehicle" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:130 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:130 msgid "Write emission values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:132 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:132 msgid "Save the positions in emission output using geo-coordinates (lon/lat)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:135 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:135 msgid "" "Write emission values scaled to the step length rather than as per-second " "values" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:138 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:138 msgid "Save the battery values of each vehicle" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:140 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:140 msgid "Write battery values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:143 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:143 msgid "Save the elecHybrid values of each vehicle" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:145 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:145 msgid "Write elecHybrid values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:147 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:147 msgid "Write elecHybrid values into one aggregated file" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:150 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:150 msgid "Write data of charging stations" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:153 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:153 msgid "Write data of overhead wire segments" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:156 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:156 msgid "Write data of electrical substation stations" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:158 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:158 msgid "Write substation values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:161 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:161 msgid "Save the Floating Car Data" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:163 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:163 msgid "Save the Floating Car Data using geo-coordinates (lon/lat)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:165 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:165 msgid "Add the vehicle signal state to the FCD output (brake lights etc.)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:167 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:167 msgid "Add kilometrage to the FCD output (linear referencing)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:169 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:169 msgid "Add acceleration to the FCD output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:171 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:171 msgid "" "Add leader vehicle information to the FCD output (within the given distance)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:173 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:173 msgid "Add generic parameter values to the FCD output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:175 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:175 msgid "Restrict fcd output to the edge selection from the given input file" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:177 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:177 msgid "List attributes that should be included in the FCD output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:179 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:179 msgid "List shape names that should be used to filter the FCD output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:182 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:182 msgid "" "Restrict SSM device output to the edge selection from the given input file" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:185 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:185 msgid "Save a lot of information for each timestep (very redundant)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:188 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:188 msgid "Save the vehicle queues at the junctions (experimental)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:190 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:190 msgid "Save vehicle queues with the given period" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:193 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:193 msgid "" "Save complete vehicle positions inclusive speed values in the VTK Format " "(usage: /path/out will produce /path/out_$TIMESTEP$.vtp files)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:195 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:195 msgid "Save the vehicle trajectories in the Amitran format" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:200 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:200 msgid "Save aggregated vehicle departure info into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:203 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:203 msgid "Save summary-output with the given period" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:206 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:206 msgid "Save aggregated person counts into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:210 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:210 msgid "Save single vehicle trip info into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:213 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:213 msgid "" "Write tripinfo output for vehicles which have not arrived at simulation end" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:216 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:216 msgid "" "Write tripinfo output for vehicles which have not departed at simulation end " "because of depart delay" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:220 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:220 msgid "Save personinfo and containerinfo to separate FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:224 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:224 msgid "Save single vehicle route info into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:228 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:228 msgid "Write the exit times for all edges" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:232 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:232 msgid "Write the last route only" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:236 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:236 msgid "Sorts the output by departure time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:240 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:240 msgid "Write the output in the duarouter alternatives style" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:243 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:243 msgid "Write costs for all routes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:247 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:247 msgid "Write the output with the intended instead of the real departure time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:254 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:254 msgid "" "Write vehroute output for vehicles which have not arrived at simulation end" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:257 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:257 msgid "Skip vehroute output for public transport vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:260 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:260 msgid "Include invalid routes and route stubs in vehroute output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:263 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:263 msgid "Include information about edges between stops" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:266 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:266 msgid "" "Write the vehicle speedFactor (defaults to 'true' if departSpeed is written)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:269 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:269 msgid "Include internal edges in the output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:273 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:273 msgid "Save person and container routes to separate FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:276 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:276 msgid "Save links states into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:279 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:279 msgid "Save railsignal-blocks into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:282 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:282 msgid "" "Save bluetooth visibilities into FILE (in conjunction with device.btreceiver " "and device.btsender)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:285 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:285 msgid "Record lane changes and their motivations for all vehicles into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:288 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:288 msgid "Record start of lane change manoeuvres" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:291 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:291 msgid "Record end of lane change manoeuvres" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:294 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:294 msgid "Record coordinates of lane change manoeuvres" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:297 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:297 msgid "" "Record stops and loading/unloading of passenger and containers for all " "vehicles into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:299 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:299 msgid "Write stop output for stops which have not ended at simulation end" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:302 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:302 msgid "Write collision information into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:305 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:305 msgid "Write aggregated traffic statistics for all edges into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:307 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:307 msgid "Write aggregated traffic statistics for all lanes into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:311 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:311 msgid "Write overall statistics into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:315 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:315 msgid "Save movereminder states of selected vehicles into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:317 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:317 msgid "List of vehicle ids which shall save their movereminder states" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:321 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:321 msgid "Use TIME[] as times at which a network state written" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:323 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:323 msgid "save state repeatedly after TIME period" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:325 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:325 msgid "Keep only the last INT periodic state files" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:327 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:327 msgid "Prefix for network states" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:329 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:329 msgid "Suffix for network states (.xml.gz or .xml)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:331 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:331 msgid "Files for network states" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:333 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:333 msgid "Save random number generator states" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:335 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:335 msgid "Save person and container states (experimental)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:337 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:337 msgid "Save rail signal constraints" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:339 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:339 msgid "Write internal state values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:343 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:343 msgid "Defines the begin time in seconds; The simulation starts at this time" msgstr "" +"Definisce l'ora iniziale in secondi; La simulazione inizia all'ora indicata" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:346 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:346 msgid "Defines the end time in seconds; The simulation ends at this time" msgstr "" +"Definisce l'ora finale in secondi; La simulazione termina alL'ora indicata" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:349 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:349 msgid "Defines the step duration in seconds" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:352 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:352 msgid "" "Whether to use ballistic method for the positional update of vehicles " "(default is a semi-implicit Euler method)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:355 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:355 msgid "" "Whether vehicles that depart between simulation steps should extrapolate the " "depart position" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:358 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:358 msgid "Defines the number of threads for parallel simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:361 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:361 msgid "" "Defines the resolution in m when handling lateral positioning within a lane " "(with -1 all vehicles drive at the center of their lane" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:365 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:142 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:365 +#: D:\Repos\sumo/src\router\ROFrame.cpp:142 msgid "Load routes for the next number of seconds ahead" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:368 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:145 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:368 +#: D:\Repos\sumo/src\router\ROFrame.cpp:145 msgid "Disable (junction) internal links" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:371 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:371 msgid "" "Ignore vehicles which block the junction after they have been standing for " "SECONDS (-1 means never ignore)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:374 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:374 msgid "Do not check whether routes are connected" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:377 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:377 msgid "Do not check whether accidents occur" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:380 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:380 msgid "How to deal with collisions: [none,warn,teleport,remove]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:383 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:383 +msgid "" +"How to deal with collisions between vehicle and pedestrian: [none,warn," +"teleport,remove]" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:386 msgid "" "Let vehicle stop for TIME before performing collision.action (except for " "action 'none')" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:386 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:389 +msgid "" +"Let vehicle stop for TIME before performing intermodal-collision.action " +"(except for action 'none')" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:392 msgid "Enables collisions checks on junctions" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:389 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:395 msgid "Increase or decrease sensitivity for junction collision check" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:392 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:398 msgid "" "Sets the fraction of minGap that must be maintained to avoid collision " "detection. If a negative value is given, the carFollowModel parameter is used" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:395 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:401 msgid "Delay vehicle insertion to stay within the given maximum number" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:398 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:404 msgid "" "Abort the simulation if the given maximum number of teleports is exceeded" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:401 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:407 msgid "" "Scale demand by the given factor (by discarding or duplicating vehicles)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:404 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:410 msgid "Suffix to be added when creating ids for cloned vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:407 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:413 msgid "" "Specify how long a vehicle may wait until being teleported, defaults to 300, " "non-positive values disable teleporting" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:410 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:416 msgid "" "The waiting time after which vehicles on a fast road (speed > 69km/h) are " "teleported if they are on a non-continuing lane" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:413 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:419 msgid "" "The waiting time after which vehicles on a fast road (default: speed > 69km/" "h) are teleported if they are on a non-continuing lane" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:416 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:422 msgid "" "The waiting time after which vehicles with a disconnected route are " "teleported. Negative values disable teleporting" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:419 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:425 msgid "" "Whether vehicles shall be removed after waiting too long instead of being " "teleported" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:422 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:428 msgid "" "The waiting time after which persons / containers waiting for a pickup are " "teleported. Negative values disable teleporting" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:425 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:431 msgid "" "The waiting time after which vehicles on bidirectional edges are teleported" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:428 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:434 msgid "" "Length of time interval, over which accumulated waiting time is taken into " "account (default is 100s.)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:431 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:437 msgid "Minimum consecutive waiting time before applying startupDelay" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:434 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:440 msgid "" "How long vehicles wait for departure before being skipped, defaults to -1 " "which means vehicles are never skipped" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:437 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:443 msgid "" "Whether insertion on an edge shall not be repeated in same step once failed" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:440 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:446 msgid "Whether each vehicle is checked separately for insertion on an edge" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:443 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:449 msgid "" "Allow inserting a vehicle in a situation which requires emergency braking" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:446 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:452 msgid "" "Each vehicle receives a random offset to its depart value drawn uniformly " "from [0, TIME]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:449 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:455 msgid "Duration of a lane change maneuver (default 0)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:452 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:458 msgid "Whether overtaking on the right on motorways is permitted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:455 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:461 msgid "Switches off all traffic lights." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:458 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:464 msgid "Sets default visibility for actuation detectors" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:461 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:467 msgid "Sets default jam-threshold parameter for all actuation detectors" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:464 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:470 msgid "Sets default detector length parameter for all actuation detectors" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:467 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:473 msgid "Sets default range for detecting delayed vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:470 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:476 msgid "Minimum deceleration when braking at yellow" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:473 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:479 msgid "Let railsignals operate in moving-block mode by default" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:476 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:482 msgid "" "Specify how long a vehicle may wait until impatience grows from 0 to 1, " "defaults to 300, non-positive values disable impatience growth" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:479 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:485 msgid "" "Length of the default interval length between action points for the car-" "following and lane-change models (in seconds). If not specified, the " @@ -1966,919 +1984,949 @@ "settings override the default. Must be a multiple of the simulation step-" "length." msgstr "" +"Durata del intervallo (in secondi) tra due action point usati nei modelli di " +"guida e di cambio corsia. Verrà usata la durata del passo di simulazione se " +"non specificata. Può essere definita separatamente per tipi di veicoli " +"(vType) o veicoli singoli. Deve essere multiplo della durata del passo di " +"simulazione." -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:482 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:488 msgid "Select default car following model (Krauss, IDM, ...)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:486 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:492 msgid "" "Select default speed deviation. A negative value implies vClass specific " "defaults (0.1 for the default passenger class" msgstr "" +"Scegli la varianza standard della velocità. Se un valore negativo viene dato " +"vengono usati valori standard differenziati per ogni classe di veicoli (0.1 " +"per la classe passenger)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:489 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:495 msgid "" "Select default emergencyDecel value among ('decel', 'default', FLOAT) which " "sets the value either to the same as the deceleration value, a vClass-class " "specific default or the given FLOAT in m/s^2" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:492 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:498 msgid "Use Kirchhoff's laws for solving overhead wire circuit" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:495 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:501 msgid "" "Enable recuperation from the vehicle equipped with elecHybrid device into " "the overhead wire." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:498 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:504 msgid "" "Enable current limits of traction substation during solving the overhead " "wire electrical circuit." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:501 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:507 msgid "" "Sets the fraction of emergency decel capability that must be used to trigger " "a warning." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:504 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:510 msgid "" "Whether parking simulation includes maneuvering time and associated lane " "blocking" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:507 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:513 msgid "Override stop until times with stop ended times when given" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:510 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:516 msgid "Override stop arrival times with stop started times when given" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:514 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:520 msgid "Select among pedestrian models ['nonInteracting', 'striping', 'remote']" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:517 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:523 msgid "" "Width of parallel stripes for segmenting a sidewalk (meters) for use with " "model 'striping'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:520 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:526 msgid "Factor for random slow-downs [0,1] for use with model 'striping'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:523 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:529 msgid "" "Minimal gap / safety buffer (in meters) from a pedestrian to another vehicle " "for use with model 'striping'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:526 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:532 msgid "" "Time in seconds after which pedestrians start squeezing through a jam when " "using model 'striping' (non-positive values disable squeezing)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:528 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:534 msgid "" "Time in seconds after which pedestrians start squeezing through a jam while " "on a pedestrian crossing when using model 'striping' (non-positive values " "disable squeezing)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:530 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:536 msgid "" "Time in seconds after which pedestrians start squeezing through a jam while " "on a narrow lane when using model 'striping'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:533 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:539 msgid "Fraction of stripes to reserve for oncoming pedestrians" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:536 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:542 msgid "" "Fraction of stripes to reserve for oncoming pedestrians on crossings and " "walkingareas" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:539 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:545 msgid "Maximum width in m to reserve for oncoming pedestrians" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:542 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:548 msgid "Interpret departPosLat for walks in legacy style" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:545 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:551 msgid "" "Generate INT intermediate points to smooth out lanes within the walkingarea" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:548 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:554 msgid "The address (host:port) of the external simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:551 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:557 msgid "" "Tolerance to apply when matching pedestrian and vehicle positions on " "boarding at individual stops" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:562 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:568 msgid "" "Apply the given time penalty when computing minimum routing costs for minor-" "link internal lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:565 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:571 msgid "" "Apply scaled travel time penalties based on green split when computing " "minimum routing costs for internal lanes at traffic lights" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:571 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:577 msgid "" "Distinguish travel time by turn direction and shift a fraction of the " "estimated time loss ahead of the intersection onto the internal edges" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:596 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:602 msgid "" "When set, trips between the same origin and destination will share a taxi by " "default" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:605 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:611 msgid "Replay exact rerouting sequence from vehroute-output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:610 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:59 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:133 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:123 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:616 +#: D:\Repos\sumo/src\router\ROFrame.cpp:59 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:133 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:123 msgid "Return fuel consumption values in (legacy) unit l instead of mg" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:613 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:90 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:136 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:126 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:619 +#: D:\Repos\sumo/src\router\ROFrame.cpp:90 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:136 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:126 msgid "Determines where to load PHEMlight definitions from" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:616 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:93 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:139 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:129 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:622 +#: D:\Repos\sumo/src\router\ROFrame.cpp:93 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:139 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:129 msgid "Enable fleet age modelling with the given reference year in PHEMlight5" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:619 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:96 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:142 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:132 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:625 +#: D:\Repos\sumo/src\router\ROFrame.cpp:96 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:142 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:132 msgid "Set ambient temperature to correct NOx emissions in PHEMlight5" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:628 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:634 msgid "Disable performance reports for individual simulation steps" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:631 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:637 msgid "Enable statistics on vehicle trips" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:634 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:640 msgid "Disable console output of current simulation step" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:637 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:643 msgid "Number of simulation steps between step-log outputs" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:642 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:648 msgid "Enables TraCI Server if set" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:644 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:650 msgid "Expected number of connecting clients" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:648 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:654 msgid "Enables mesoscopic simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:650 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:656 msgid "Length of an edge segment in mesoscopic simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:652 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:658 msgid "Factor for calculating the net free-free headway time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:654 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:660 msgid "Factor for calculating the net free-jam headway time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:656 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:662 msgid "Factor for calculating the jam-free headway time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:658 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:664 msgid "Factor for calculating the jam-jam headway time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:663 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:669 msgid "Enable multiple queues at edge ends" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:665 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:671 msgid "Enable separate queues for every lane" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:667 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:673 msgid "" "Do not build queues (or reduce capacity) for lanes allowing only the given " "vclasses" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:670 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:676 msgid "Enable mesoscopic traffic light and priority junction handling" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:684 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:690 msgid "Enable mesoscopic overtaking" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:686 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:692 msgid "" "Time interval for rechecking insertion into the next segment after failure" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:698 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:704 msgid "Load visualisation settings from FILE" -msgstr "" +msgstr "Carica configurazione di visualizzazione da FILE" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:701 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:707 msgid "Quits the GUI when the simulation stops" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:704 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:710 msgid "Start the GUI in gaming mode" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:707 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:713 msgid "Select the game type ('tls', 'drt')" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:710 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:716 msgid "Start the simulation after loading" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:713 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:719 msgid "Use FLOAT in ms as delay between simulation steps" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:716 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:722 msgid "Use TIME[] as times when the simulation should halt" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:720 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:726 msgid "Load edge/lane weights for visualization from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:723 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:729 msgid "Load a secondary road network for abstract visualization from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:726 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:732 msgid "Restart the simulation after ending (demo mode)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:729 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:735 msgid "Do not load background pictures" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:732 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:738 msgid "Load current viewport from registry" -msgstr "" +msgstr "Carica veduta attuale da registry" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:735 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:741 msgid "Create initial window with the given x,y size" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:738 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:744 msgid "Create initial window at the given x,y position" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:741 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:747 msgid "The aggregation period for value tracker windows" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:745 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:751 msgid "Start with an OpenSceneGraph view instead of the regular 2D view" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:750 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:756 msgid "Enable overlay for screen recognition" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:754 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:760 msgid "Enable output messages during GUI-Testing" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:758 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:764 msgid "Save gui settings in the given settings output file" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:809 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:815 msgid "No network file (-n) specified." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:813 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:819 msgid "Invalid scaling factor." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:817 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:823 msgid "A vehroute-output file is needed for exit times." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:829 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:835 msgid "You can either restart or quit on end." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:834 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:840 msgid "" "The option 'meso-junction-control.limited' implies 'meso-junction-control'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:852 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:858 msgid "The begin time should not be negative." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:862 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:868 msgid "The end time should be after the begin time." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:867 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:873 msgid "the minimum step-length is 0.001" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:882 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:888 msgid "The save-state time=% will not be used before simulation end at %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:894 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:900 msgid "" "option movereminder-output.vehicles requires option movereminder-output to " "be set" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:899 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:905 msgid "" "The option 'sloppy-insert' is deprecated, because it is now activated by " "default, see the new option 'eager-insert'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:902 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:908 msgid "" "Only one of the options 'lanechange.duration' or 'lateral-resolution' may be " "given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:906 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:912 msgid "Sublane dynamics are not supported by mesoscopic simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:910 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:916 msgid "" "The option 'ignore-accidents' is deprecated. Use 'collision.action none' " "instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:923 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:929 msgid "" "The option tripinfo-output.write-undeparted implies tripinfo-output.write-" "unfinished." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:945 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:951 #, c-format msgid "Unknown model '%' for option 'carfollow.model'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:954 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:960 #, c-format msgid "" "Invalid value '%' for option 'default.emergencydecel'. Must be a FLOAT or " "'default' or 'decel'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:960 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:966 msgid "You need a non-negative delay." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:973 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:979 msgid "Parallel simulation is only possible when compiled with Fox." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:978 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:984 msgid "You need at least one thread." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:982 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:988 msgid "" "Number of threads exceeds number of thread-rngs. Simulation runs with the " "same seed may produce different results" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:985 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:991 msgid "game.mode must be one of ['tls', 'drt']" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:992 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:998 msgid "" "Invalid transfer option '%'. Must be one of 'parkingAreas', 'ptStops' and " "'allJunctions'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:1051 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:1057 msgid "" "Integration method was set to 'ballistic', since a default action step " "length was specified." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSInsertionControl.cpp:276 -#: /home/micha/programming/sumo/src/router/RONet.cpp:481 +#: D:\Repos\sumo/src\microsim\MSInsertionControl.cpp:276 +#: D:\Repos\sumo/src\router\RONet.cpp:481 #, c-format msgid "Another vehicle with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSInternalJunction.cpp:55 +#: D:\Repos\sumo/src\microsim\MSInternalJunction.cpp:55 #, c-format msgid "Internal junction % has no incoming lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:312 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:314 msgid "Unequal lengths of neigh lane '%' and lane '%' (% != %)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:321 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:323 msgid "Unequal lengths of bidi lane '%' and lane '%' (% != %)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:758 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:760 #, c-format msgid "Vehicle '%' is inserted in emergency situation." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:764 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:766 msgid "Vehicle '%' will not be able to depart using the given velocity (%)!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:780 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:782 msgid "" "Invalid departPos % given for vehicle '%'. Inserting at lane end instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1025 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:1027 msgid "" "Vehicle '%' is inserted too fast and will violate the speed limit on a lane " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1029 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:1031 msgid "" "Vehicle '%' will not be able to depart using the given velocity (slow lane " "ahead)!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1658 -msgid "" -"Vehicle '%' collision with person '%', lane='%', gap=%, time=%, stage=%." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2059 +msgid "Vehicle '%'" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2088 +#, c-format +msgid "Teleporting vehicle '%' after" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2093 +#, c-format +msgid "Removing vehicle '%' after" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1800 -msgid "Vehicle '%' collision with person '%', lane='%', time=%, stage=%." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2097 +#, c-format +msgid "Keeping remote-controlled vehicle '%' after" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2110 +msgid " collision with person '%', lane='%', gap=%, time=%, stage=%." +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2113 +msgid " collision with person '%', lane='%', time=%, stage=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2101 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2179 msgid "Teleporting vehicle '%'; beyond end of lane, target lane='%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2108 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2186 msgid "Removing vehicle '%' after earlier collision, lane='%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2113 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2191 msgid "Teleporting vehicle '%' after earlier collision, lane='%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2585 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2663 msgid "" "Lane '%' is approached multiple times from edge '%'. This may cause " "collisions." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:4184 -msgid "Invalid collision.action '%'." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:4268 +msgid "Invalid % '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:4314 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:4405 msgid "" "State was saved with more than % threads. Change the number of threads or do " "not load RNG state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:169 -#: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:232 -#: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:239 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:169 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:232 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:239 msgid "Method not supported" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:187 -#: /home/micha/programming/sumo/src/router/RONet.cpp:60 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:187 +#: D:\Repos\sumo/src\router\RONet.cpp:60 msgid "A network was not yet constructed." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:221 -#: /home/micha/programming/sumo/src/router/RONet.cpp:83 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:221 +#: D:\Repos\sumo/src\router\RONet.cpp:83 msgid "A network was already constructed." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:286 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:286 msgid "" "Option weights.separate-turns is only supported when simulating with " "internal lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:388 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:388 msgid "Simulation version % started with time: %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1459 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1463 msgid "" "TraCI and Triggers cannot use routing algorithm '%'. using 'astar' instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1629 -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:427 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:235 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:221 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1633 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:427 +#: D:\Repos\sumo/src\router\ROLoader.cpp:235 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:221 #, c-format msgid "Loading of % failed." -msgstr "" +msgstr "Caricamento fallito di %." -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1649 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1653 #, c-format msgid "Loading state from '%' failed." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:103 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:108 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:103 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:108 msgid "Taz usage was requested but no taz present in % '%'!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:262 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:262 #, c-format msgid "Vehicle type distribution '%' is empty." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:266 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:910 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:266 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:910 #, c-format msgid "Another vehicle type (or distribution) with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:316 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:287 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:316 msgid "Ids of internal routes are ignored (vehicle '%')." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:306 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:306 msgid "Invalid reference to route '%' in route %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:317 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:317 msgid "Attribute 'period' is deprecated for route. Use 'cycleTime' instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:330 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:330 msgid "Disconnected route % when repeating." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:336 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:336 msgid "Invalid cost for route '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:393 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:393 #, c-format msgid "Route '%' has no edges." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:411 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:446 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:411 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:446 msgid "" "Cannot repeat stops with 'until' in route % because no cycleTime is defined." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:420 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:420 msgid "" "Cannot repeat stops with 'arrival' in route % because no cycleTime is " "defined." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:443 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:443 #, c-format msgid "A vehicle with id '%' already exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:446 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:520 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:446 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:520 #, c-format msgid "Another route (or distribution) with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:524 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:524 #, c-format msgid "Route distribution '%' is empty." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:564 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:559 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:564 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:559 msgid "" "Vehicle type '%' with vClass=pedestrian should only be used for persons and " "not for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:573 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:573 msgid "" "Ignoring child element 'route' for vehicle '%' because attribute 'route' is " "set." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:582 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:582 #, c-format msgid "Vehicle '%' has no route." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:724 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:724 msgid "" "Could not merge vehicle stops for vehicle '%' into implicitly defined route " "'%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:755 -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:327 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:755 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:327 msgid "" "Person '%' receives type '%' which implicitly uses unsuitable vClass '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:891 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:891 msgid "" "There exists a person and a container with the same id '%'. Starting with " "SUMO 1.9.0 this is an error." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:986 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:986 #, c-format msgid "Another flow with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1127 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1127 msgid "The busStop '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1133 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1133 msgid "The containerStop '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1139 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1139 msgid "The parkingArea '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1146 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1146 msgid "The chargingStation '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1153 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1153 msgid "The overhead wire segment '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1157 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1157 msgid "Invalid stop definition%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1305 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1309 msgid "Stop edge '%' missing in attribute 'via' for % '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1324 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1198 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1316 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1329 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1203 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1321 msgid "" "The attribute departPos is no longer supported for walks, please use the " "person attribute, the arrivalPos of the previous step or explicit stops." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1350 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1355 msgid "Ignoring arrivalPos for % because it is outside the given stop '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1356 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1219 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1361 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1224 msgid "No destination edge for %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1385 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1239 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1390 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1244 msgid "Start edge not defined for person '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1395 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1460 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1250 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1307 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1400 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1465 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1255 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1312 msgid "Non-positive walking duration for '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1422 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1466 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1311 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1427 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1471 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1316 msgid "Non-positive walking speed for '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1491 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1496 msgid "No edges to walk for person '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1528 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1533 msgid "" "Could not find departure lane for walk of person '%' when interpreting " "departPosLat" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1600 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1605 msgid "Could not read tranship speed for container '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1608 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1613 msgid "Non-positive tranship speed for container '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1634 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1639 #, c-format msgid "The start edge for container '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1653 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1658 msgid "" "Inconsistent tranship for container '%', only one option is allowed: " "'edges', 'to', 'containerStop'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1659 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1664 msgid "No edges to tranship container '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:76 -#: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:64 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:164 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteLoader.cpp:36 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:76 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:64 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:164 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteLoader.cpp:36 msgid "Can not read XML-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:87 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:87 msgid "Could not parse time from state file '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:184 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:184 msgid "State was written with sumo version % (present: %)!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:229 -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:285 -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignalConstraint.cpp:144 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:229 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:285 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignalConstraint.cpp:144 #, c-format msgid "Unknown lane '%' in loaded state." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:389 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:389 #, c-format msgid "Ignoring program '%' for traffic light '%' in loaded state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:424 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:424 msgid "Could not load vehicle control state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:433 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:433 msgid "Removed % vehicles while loading state." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:459 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:459 #, c-format msgid "Could not load vehicle '%' from state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:319 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:319 msgid "No gap control available for meso." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:714 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:714 msgid "" "Lane change model did not provide a reason for changing (state=%, time=%\n" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:755 -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:171 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:755 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:171 msgid "should not happen" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:944 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:944 msgid "" "Vehicle '%' moved by TraCI from % to % (dist %) with implied speed of % " "(exceeding maximum speed %). time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1701 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1688 msgid "Vehicle '%' aborts joining after extension of %s at time %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1846 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1833 msgid "Vehicle '%' to split from vehicle '%' is not known. time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:2741 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:2769 msgid "Suspicious right_before_left junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4375 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4487 msgid " for unknown reasons" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4383 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4495 msgid "" -"Vehicle '%' performs emergency stop at the end of lane '%'% (decel=%, " -"offset=%), time=%." +"Vehicle '%' performs emergency stop at the end of lane '%'% (decel=%, offset=" +"%), time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4458 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4570 msgid "Unexpected end of opposite lane for vehicle '%' at lane '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4576 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4688 msgid "" "Vehicle '%' performs emergency braking on lane '%' with decel=%, wished=%, " "severity=%, time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:5427 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:5571 #, c-format msgid "Vehicle '%' aborts stop." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:7213 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:7408 msgid "Error: Invalid vehicles in state (may be a meso state)!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleControl.cpp:449 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:7439 +msgid "Action steps are out of sync for loaded vehicle '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSVehicleControl.cpp:469 #, c-format msgid "Vehicle '%' aborted waiting for a % that will never come." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:169 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:170 msgid "Vehicle '%' ends teleporting on edge '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:308 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:318 msgid "" "Value of 'emergencyDecel' (%) should be higher than 'decel' (%) for vType " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:311 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:321 msgid "" "Value of 'emergencyDecel' (%) is lower than 'apparentDecel' (%) for vType " "'%' may cause collisions." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:433 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:443 #, c-format msgid "" "Value of tau=% in vehicle type '%' lower than simulation step size may cause " "collisions." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:439 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:449 #, c-format msgid "" "Vehicle class '%' of vType '%' is set as ignored by option --meso-ignore-" @@ -2886,1068 +2934,1164 @@ "queue for multi-modal meso simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_CC.cpp:66 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_CC.cpp:66 msgid "" "The number of lanes needs to be specified in the attributes of carFollowing-" "CC with the \"lanesCount\" attribute" msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Daniel1.cpp:61 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Daniel1.cpp:61 msgid "" "Maximum speed of vehicle '%' is lower than the minimum speed (min: %, max: " "%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Krauss.cpp:58 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Krauss.cpp:58 msgid "Rounding 'sigmaStep' to % for vType '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Rail.cpp:50 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Rail.cpp:50 msgid "Unknown train type: %. Exiting!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Rail.cpp:252 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Rail.cpp:252 msgid "" "Anything else than semi implicit euler update is not yet implemented. " "Exiting!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:161 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:165 #, c-format msgid "Device '%' cannot save state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:201 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:205 msgid "Invalid float value '%'for parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:214 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:218 msgid "Invalid bool value '%'for parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:227 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:231 msgid "Invalid time value '%'for parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:65 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:65 msgid "The range of the bt receiver" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:68 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:68 msgid "Whether all recognition point shall be written" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:71 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:71 msgid "The offtime used for calculating detection probability (in seconds)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:295 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:295 msgid "" "The vehicle '%' cannot be in the range of vehicle '%', leave, and enter it " "in one step." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:421 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:436 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:421 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:436 msgid "" "btreceiver: Can not update position of vehicle '%' which is not on the road." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTsender.cpp:120 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTsender.cpp:134 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTsender.cpp:120 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTsender.cpp:134 msgid "" "btsender: Can not update position of vehicle '%' which is not on the road." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:52 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:52 msgid "Track fuel consumption for non-electric vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:109 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:122 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:128 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:113 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:126 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:132 msgid "" "Battery builder: Vehicle '%' doesn't have a valid value for parameter % (%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:199 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:203 #, c-format msgid "Battery of vehicle '%' is depleted." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:309 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:319 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:329 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:313 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:323 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:333 msgid "Trying to set into the battery device of vehicle '%' an invalid % (%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Bluelight.cpp:59 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Bluelight.cpp:59 msgid "" "Set the distance at which other drivers react to the blue light and siren " "sound" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Bluelight.cpp:68 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Bluelight.cpp:68 msgid "" "bluelight device is not compatible with mesosim (ignored for vehicle '%')" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:66 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:66 msgid "Initial value assigned to the driver's awareness." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:68 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:68 msgid "Time scale for the error process." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:70 msgid "Noise intensity driving the error process." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:72 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:72 msgid "" "General scaling coefficient for applying the error to the perceived speed " "difference (error also scales with distance)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:74 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:74 msgid "" "General scaling coefficient for applying the error to the perceived distance " "(error also scales with distance)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:76 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:76 msgid "" "General scaling coefficient for applying the error to the vehicle's own " "speed when driving without a leader (error also scales with own speed)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:78 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:78 msgid "" "Base threshold for recognizing changes in the speed difference (threshold " "also scales with distance)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:80 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:80 msgid "" "Base threshold for recognizing changes in the headway (threshold also scales " "with distance)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:82 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:82 msgid "Minimal admissible value for the driver's awareness." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:84 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:84 msgid "" "Maximal reaction time (~action step length) induced by decreased awareness " "level (reached for awareness=minAwareness)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:102 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:116 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:116 msgid "Invalid value '%'for vType parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:166 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:179 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:166 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:179 msgid "" "ElecHybrid builder: Vehicle '%' doesn't have a valid value for parameter % " "(%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:374 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:374 #, c-format msgid "" "The resistivity of overhead wire segment connected to vehicle % is < 0. Set " "to 1e-6." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:432 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:528 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:711 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:848 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:432 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:528 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:711 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:848 msgid "" "Overhead wire solver is on, but the Eigen library has not been compiled in!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:648 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:883 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:648 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:883 msgid "The element or node with the last Id was not found in the circuit!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Emissions.cpp:47 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Emissions.cpp:47 msgid "Recording begin time for emission-data" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Emissions.cpp:50 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Emissions.cpp:50 msgid "Recording period for emission-output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:48 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:48 msgid "" "An exemplary parameter which can be used by all instances of the example " "device" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:63 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:63 #, c-format msgid "Invalid value '%'for vehicle parameter 'example'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:75 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:75 #, c-format msgid "Invalid value '%'for vType parameter 'example'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:67 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:67 msgid "Recording begin time for FCD-data" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:70 -#: /home/micha/programming/sumo/src/microsim/devices/MSTransportableDevice_FCD.cpp:49 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSTransportableDevice_FCD.cpp:49 msgid "Recording period for FCD-data" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:73 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:73 msgid "Record objects in a radius around equipped vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:123 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:123 #, c-format msgid "Specified shape '%' for filtering fcd-output could not be found." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:148 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:148 msgid "Could not load names of edges for filtering fcd-output from '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:167 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:167 #, c-format msgid "Unknown attribute '%' to write in fcd output." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Friction.cpp:48 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Friction.cpp:48 msgid "" "The measurement noise parameter which can be applied to the friction device" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Friction.cpp:50 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Friction.cpp:50 msgid "" "The measurement offset parameter which can be applied to the friction device " "-> e.g. to force false measurements" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:49 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:49 msgid "The communication range to the traffic light" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:52 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:52 msgid "The maximum speed factor when approaching a green light" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:55 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:55 msgid "Minimum speed when coasting towards a red light" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:171 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:171 msgid "" "Invalid value '%' for parameter 'device.glosa.range' of traffic light '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:54 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:54 msgid "The period with which the vehicle shall be rerouted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:58 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:58 msgid "The rerouting period before depart" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:62 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:62 msgid "The weight of prior edge weights for exponential moving average" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:66 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:66 msgid "The number of steps for moving average weight of prior edge weights" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:70 msgid "The interval for updating the edge weights" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:75 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:75 msgid "Use zones (districts) as routing start- and endpoints" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:78 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:78 msgid "" "Use weight files given with option --weight-files for initializing edge " "weights" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:82 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:82 msgid "The number of parallel execution threads used for rerouting" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:85 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:85 msgid "Let rerouting happen at the same time for all vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:88 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:88 msgid "Allow rerouting triggered by rail signals." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:91 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:91 msgid "Compute separate average speeds for bicycles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:94 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:94 msgid "Save adapting weights to FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:102 msgid "" "Only one of the options 'device.rerouting.adaptation-steps' or 'device." "rerouting.adaptation-weight' may be given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:106 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:106 msgid "weights.random-factor cannot be less than 1" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:110 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:110 msgid "Negative value for device.rerouting.adaptation-interval!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:115 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:115 msgid "" "The value for device.rerouting.adaptation-weight must be between 0 and 1!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:120 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:243 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:120 +#: D:\Repos\sumo/src\router\ROFrame.cpp:243 msgid "Parallel routing is only possible when compiled with Fox." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:125 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:125 msgid "Adapting number of routing threads to number of simulation threads." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:220 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:234 msgid "" "Specifies which measures will be logged (as a space or comma-separated " -"sequence of IDs in ('TTC', 'DRAC', 'PET'))" +"sequence of IDs in ('TTC', 'DRAC', 'PET', 'PPET','MDRAC'))" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:222 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:236 msgid "" "Specifies space or comma-separated thresholds corresponding to the specified " "measures (see documentation and watch the order!). Only events exceeding the " "thresholds will be logged." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:224 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:238 msgid "" "Specifies whether trajectories will be logged (if false, only the extremal " "values and times are reported)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:226 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:240 msgid "" "Specifies the detection range in meters. For vehicles below this distance " "from the equipped vehicle, SSM values are traced." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:228 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:242 msgid "" "Specifies the time in seconds to be logged after a conflict is over. " "Required >0 if PET is to be calculated for crossing conflicts." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:230 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:244 +msgid "Specifies the perception reaction time for MDRAC computation." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:246 msgid "Give a global default filename for the SSM output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:232 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:248 msgid "Whether to use coordinates of the original reference system in output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:234 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:250 msgid "Whether to write positions (coordinates) for each timestep" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:236 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:252 msgid "Whether to write lanes and their positions for each timestep" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:247 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:254 +msgid "" +"Which conflicts will be excluded from the log according to the conflict type " +"they have been classified (combination of values in 'ego', 'foe' , '', any " +"numerical valid conflict type code). An empty value will log all and " +"'ego'/'foe' refer to a certain conflict type subset." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:265 msgid "Could not load names of edges for filtering SSM device output from '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:1057 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:1119 msgid "" "SSM device of vehicle '%' detected collision with vehicle '%' at time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2188 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2331 msgid "" "Cannot classify SSM encounter between ego vehicle % and foe vehicle % at " "time=%\n" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2366 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2390 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2509 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2533 msgid "" "Cannot compute SSM due to bad internal lane geometry at junction '%'. " "Crossing point between traffic from links % and % not found." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3497 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3699 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3703 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3984 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.measures'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3503 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3705 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3709 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3990 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.measures'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3508 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3714 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.file'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3531 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3737 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.geo'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3537 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3743 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.geo'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3542 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3748 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.geo'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3558 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3764 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.write-positions'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3564 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3770 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.write-positions'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3569 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3596 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3775 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3802 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.write-positions'. " "Using default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3585 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3791 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.write-lane-positions'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3591 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3797 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.write-lane-positions'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3612 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3819 +#, c-format +msgid "Invalid value '%' for vehicle parameter 'ssm.conflict-order'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3827 +#, c-format +msgid "Invalid value '%' for vType parameter 'ssm.conflict-order'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3833 +msgid "" +"Vehicle '%' does not supply vehicle parameter 'device.ssm.exclude-conflict-" +"types'. Using default of '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3851 +msgid "" +"SSM order filter '%' is not supported. Aborting construction of SSM device " +"'%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3868 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.range'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3618 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3874 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.range'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3623 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3879 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.range'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3639 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3895 +#, c-format +msgid "Invalid value '%'for vehicle parameter 'ssm.mdrac.prt'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3901 +#, c-format +msgid "Invalid value '%'for vType parameter 'ssm.mdrac.prt'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3906 +msgid "" +"Vehicle '%' does not supply vehicle parameter 'device.ssm.mdrac.prt'. Using " +"default of '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3924 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.extratime'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3645 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3930 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.extratime'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3650 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3935 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.extratime'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3656 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3941 #, c-format msgid "" "Negative (or no) value encountered for vehicle parameter 'device.ssm." "extratime' in vehicle '%' using default value % instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3670 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3955 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.trajectories'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3676 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3961 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.trajectories'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3681 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3966 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.trajectories'. " "Using default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3710 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3995 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.measures'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3727 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4012 msgid "" "SSM identifier '%' is not supported. Aborting construction of SSM device '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3738 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4023 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.thresholds'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3744 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4029 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.thresholds'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3749 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4034 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.thresholds'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3764 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4049 msgid "" "Given list of thresholds ('%') is not of the same size as the list of " "measures ('%').\n" "Please specify exactly one threshold for each measure." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:82 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:46 +msgid "" +"Time to wait for a rescue vehicle on the road side when the battery is empty" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:48 +msgid "" +"Additional battery buffer for unexpected traffic situation when estimating " +"the battery need" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:50 +msgid "Battery percentage to go into rescue mode" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:52 +msgid "Search radius in travel time seconds" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:54 +msgid "When to trigger a new search if no station has been found" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:56 +msgid "The maximum charging speed of the vehicle battery" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:58 +msgid "Type of energy transfer" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:60 +msgid "" +"After this waiting time vehicle searches for a new station when the initial " +"one is blocked" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:124 +msgid "" +"Rerouting using station finder removes all upcoming stops for vehicle '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:84 msgid "" "The dispatch algorithm [greedy|greedyClosest|greedyShared|routeExtension|" "traci]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:85 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:87 msgid "Write information from the dispatch algorithm to FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:88 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:90 msgid "Load dispatch algorithm parameters in format KEY1:VALUE1[,KEY2:VALUE]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:91 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:93 msgid "The period between successive calls to the dispatcher" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:94 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:96 msgid "The behavior of idle taxis [stop|randomCircling]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:97 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:99 msgid "Write information from the idling algorithm to FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:115 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:117 msgid "Vehicle '%' with device.taxi should have vClass taxi instead of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:122 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:124 msgid "" "Vehicle '%' with personCapacity % and containerCapacity % is not usable as " "taxi." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:147 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:149 #, c-format msgid "Dispatch algorithm '%' is not known" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:313 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:328 msgid "Invalid Re-dispatch for existing customer '%' with a new reservation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:346 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:361 msgid "Re-dispatch did not mention pickup for existing customer '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:453 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:468 msgid "Could not add taxi stop for vehicle '%' to %. time=% error=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:569 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:584 msgid "Taxi '%' reaches scheduled end of service at time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:645 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:660 msgid "" "All customers left vehicle '%' at time=% but there are % remaining stops" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:116 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:116 msgid "Vehicle type for manual driving regime." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:118 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:118 msgid "Vehicle type for automated driving regime." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:120 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:120 msgid "Average response time needed by a driver to take back control." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:122 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:122 msgid "Recovery rate for the driver's awareness after a ToC." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:124 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:124 msgid "" "Attention level below which a driver restrains from performing lane changes " "(value in [0,1])." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:126 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:126 msgid "Average awareness a driver has initially after a ToC (value in [0,1])." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:128 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:128 msgid "Deceleration rate applied during a 'minimum risk maneuver'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:130 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:130 msgid "" "Time, which the vehicle requires to have ahead to continue in automated " "mode. The default value of 0 indicates no dynamic triggering of ToCs." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:132 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:132 msgid "Probability that a dynamically triggered TOR is not answered in time." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:134 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:134 msgid "If true, the vehicle tries to change to the right during an MRM." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:136 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:136 msgid "" "If set, the vehicle tries to reach the given named stopping place during an " "MRM." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:138 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:138 msgid "Duration the vehicle stays at the safe spot after an MRM." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:140 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:140 msgid "" "Maximal acceleration that may be applied during the ToC preparation phase." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:142 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:142 msgid "Timegap for ToC preparation phase." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:144 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:144 msgid "Additional spacing for ToC preparation phase." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:146 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:146 msgid "" "Maximal deceleration applied for establishing increased gap in ToC " "preparation phase." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:148 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:148 msgid "" "Rate of adaptation towards the increased headway during ToC preparation." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:150 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:150 msgid "" "Whether a coloring scheme shall by applied to indicate the different ToC " "stages." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:152 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:152 msgid "Switches on output by specifying an output filename." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:161 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:161 msgid "ToC device is not supported by the mesoscopic simulation." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:200 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:200 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.measures'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:206 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:206 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.measures'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:220 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:220 msgid "" "Given value for ToC device parameter 'dynamicMRMProbability' (=%) is not in " "the admissible range [0,0.5]. Truncated to %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:246 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:246 msgid "" "If any openGap parameters for the ToC model are specified, then at least one " "of toc.ogNewTimeHeadway and toc.ogNewSpaceHeadway must be defined." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:578 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:578 msgid "Ignoring unknown safe spot '%' for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:731 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:731 #, c-format msgid "vType '%' for vehicle '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:933 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:933 msgid "" "Setting device.toc.currentAwareness during automated mode has no effect." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:950 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:950 #, c-format msgid "" "Value of dynamicToCThreshold must be non-negative. (Given value % for " "vehicle % is ignored)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:961 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:961 #, c-format msgid "" "Value of dynamicMRMProbability must be non-negative. (Given value % for " "vehicle % is ignored)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:975 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:975 #, c-format msgid "" "Value of maxPreparationAccel must be non-negative. (Given value % for " "vehicle % is ignored)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:1000 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:1021 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:1000 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:1021 msgid "Unknown ToCState '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:97 +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:97 msgid "" "Mixing reservations of persons and containers with the same group is not " "supported for % and %" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:200 +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:200 msgid "Inconsistent group reservations." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:204 +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:204 msgid "Inconsistent group reservations (2)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:63 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:65 msgid "Idle taxi '%' has no next segment to stop. time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:104 #, c-format msgid "Idle taxi '%' could not stop within %m" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:155 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:157 #, c-format msgid "Vehicle '%' ends idling in a cul-de-sac" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:96 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:183 +msgid "Could not determine taxi stand for vehicle '%' at time=%" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:96 msgid "Rerouting is useless if the edge weights do not get updated!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:148 +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:148 msgid "weights.priority-factor cannot be negative." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:152 +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:152 msgid "" "Option weights.priority-factor does not take effect because all edges have " "the same priority" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:411 +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:411 msgid "Unknown routing algorithm '%'!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSTransportableDevice_Routing.cpp:46 +#: D:\Repos\sumo/src\microsim\devices\MSTransportableDevice_Routing.cpp:46 msgid "The period with which the person shall be rerouted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/engine/VehicleEngineHandler.cpp:157 +#: D:\Repos\sumo/src\microsim\engine\VehicleEngineHandler.cpp:157 msgid "Invalid engine map type. Only \"poly\" is supported for now" msgstr "" -#: /home/micha/programming/sumo/src/microsim/engine/VehicleEngineHandler.cpp:197 +#: D:\Repos\sumo/src\microsim\engine\VehicleEngineHandler.cpp:197 msgid "Unknown tag '%' while parsing." msgstr "" -#: /home/micha/programming/sumo/src/microsim/lcmodels/MSAbstractLaneChangeModel.cpp:82 +#: D:\Repos\sumo/src\microsim\lcmodels\MSAbstractLaneChangeModel.cpp:82 #, c-format msgid "Lane change model '%' is not compatible with sublane simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/lcmodels/MSAbstractLaneChangeModel.cpp:98 +#: D:\Repos\sumo/src\microsim\lcmodels\MSAbstractLaneChangeModel.cpp:98 #, c-format msgid "Lane change model '%' not implemented" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:124 +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:124 msgid "" "No valid detector length and start position given. Assuming startPos = 0 and " "length = end position" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:128 +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:128 msgid "" "No valid detector length and end position given. Assuming endPos = lane " "length and length = endPos-startPos" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:908 +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:908 msgid "Multi-lane e2Detector does not support detecting persons yet" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:161 +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:160 msgid "Negative vehicle step fraction for '%' on lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:556 +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:554 msgid "aggregated meanData output not yet implemented for trackVehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:755 +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:766 msgid "Unknown attribute '%' to write in meanData '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSStopOut.cpp:69 +#: D:\Repos\sumo/src\microsim\output\MSStopOut.cpp:69 msgid "Vehicle '%' stops on edge '%', time=% without ending the previous stop." msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSStopOut.cpp:105 +#: D:\Repos\sumo/src\microsim\output\MSStopOut.cpp:105 msgid "Vehicle '%' ends stop on edge '%', time=% without entering the stop." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:139 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:140 #, c-format msgid "Traffic light '%' does not control any links" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:227 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:229 msgid "" "Unknown inductionLoop '%' given as custom detector for actuated tlLogic '%', " "program '%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:241 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:242 msgid "" "At actuated tlLogic '%', minDur % is too short for a detector gap of %m." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:406 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:407 msgid "At actuated tlLogic '%', actuated phase % has no controlling detector." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:443 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:444 msgid "At actuated tlLogic '%', linkIndex % has no controlling detector." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:452 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:453 msgid "" "Invalid link '%' given as linkMaxDur parameter for actuated tlLogic '%', " "program '%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:462 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:463 msgid "" "Invalid link '%' given as linkMinDur parameter for actuated tlLogic '%', " "program '%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:903 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:905 msgid "" "At actuated tlLogic '%', transition phase % should not have multiple next " "phases" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1061 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1063 msgid "Unmatched parentheses in condition %'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1076 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1078 msgid "Invalid empty condition '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1091 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1093 msgid "Unsupported condition '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1154 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1156 msgid "Division by 0 in condition '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1205 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1207 #, c-format msgid "Modifying global condition '%' is forbidden" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1217 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1219 msgid "Invalid empty expression" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1313 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1315 msgid "Error when retrieving conditions '%' for tlLogic '%' (%)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSDelayBasedTrafficLightLogic.cpp:96 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSDelayBasedTrafficLightLogic.cpp:96 msgid "" "Unknown laneAreaDetector '%' given as custom detector for delay_based " "tlLogic '%', program '%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSOffTrafficLightLogic.cpp:80 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSOffTrafficLightLogic.cpp:80 msgid "Invalid 'off'-state for link % at junction '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSOffTrafficLightLogic.cpp:84 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSOffTrafficLightLogic.cpp:84 msgid "Inconsistent 'off'-states for linkIndex % at tlLogic '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:109 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:109 #, c-format msgid "Rail signal at junction '%' does not control any links" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:1210 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:1210 msgid "Found circular block after railSignal % (% edges, length %)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:1321 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:1321 msgid "Found circular block at railSignal % (% edges, length %)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignalConstraint.cpp:147 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignalConstraint.cpp:147 #, c-format msgid "Unknown tracker lane '%' in loaded state." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:169 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:169 msgid "Listing output lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:243 -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:277 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:243 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:277 msgid "Unrecognized traffic threshold calculation mode" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:57 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:57 msgid "NO VALID POLICY LIST READ" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:81 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:81 msgid "VEHICLE TYPES WEIGHT only works with phase policy, which is missing" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:160 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:160 #, c-format msgid "" "MSSwarmTrafficLightLogic::init Intersection % pheromoneInputLanes: lane " "% not allowed" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:182 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:182 #, c-format msgid "" "MSSwarmTrafficLightLogic::init Intersection % pheromoneOutputLanes lane " "% not allowed" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:194 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:194 msgid "*** Intersection % will run using MSSwarmTrafficLightLogic ***" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:202 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:202 msgid "TL % time 0 Policy: % (pheroIn= 0 ,pheroOut= 0 ) OldPolicy: % ." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:81 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:81 msgid "Mismatching phase size in tls '%', program '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:116 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:116 msgid "No initial signal plan loaded for tls '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:163 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:163 msgid "Could not build an off-state for tls '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:487 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:487 #, c-format msgid "" "The computed factor sum in WAUT '%' at time '%' equals zero;\n" " assuming an error in WAUT definition." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:159 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:163 msgid "Unused states in tlLogic '%', program '%' in phase % after tl-index %" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:178 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:182 msgid "" "Missing yellow phase in tlLogic '%', program '%' for tl-index % when " "switching% to phase %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:200 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:204 msgid "Missing green phase in tlLogic '%', program '%' for tl-index %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:263 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:267 msgid "" "Program '%' at tlLogic '%' is incompatible with logic at junction " "'%' (mutual conflict between link indices %,% tl indices %,% phase %).\n" @@ -3955,6715 +4099,6780 @@ "include the program when building." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:460 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:464 msgid "Green fraction is only 1% for link % in tlLogic '%', program '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:164 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:164 msgid "" "At NEMA tlLogic '%', different sizes of NEMA phase states. Please check the " "NEMA XML" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:566 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:566 msgid "At NEMA tlLogic '%', actuated phase % has no controlling detector" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:584 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:584 msgid "At NEMA tlLogic '%, linkIndex % has no controlling detector" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:630 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:630 #, c-format msgid "NEMA tlLogic '%' is not coordinated but an offset was set." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:959 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:959 msgid "I am starting in the coordinated phases" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel.h:180 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel.h:182 msgid "moveTo is ignored by the current movement model" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel.h:196 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel.h:198 msgid "moveToXY is ignored by the current movement model" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Remote.cpp:209 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Remote.cpp:209 #, c-format msgid "Edge: % does not allow pedestrians." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Remote.cpp:299 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Remote.cpp:299 msgid "Pedestrian model 'remote' does not support simulation.loadState state\n" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:124 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:871 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:124 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:870 msgid "" "Pedestrian vType '%' width % is larger than pedestrian.striping.stripe-width " "and this may cause collisions with vehicles." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:179 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:179 msgid "Person '%' could not find sidewalk on edge '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:463 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:466 #, c-format msgid "Invalid walkingarea '%' does not allow continuation." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:1923 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:1926 msgid "Disconnected walk for person '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:2124 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:2127 msgid "Person '%' is jammed on edge '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:90 +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:90 msgid "Adjusting departPos for cloned walk with routeDistribution '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:94 +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:94 msgid "Adjusting arrivalPos for cloned walk with routeDistribution '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:98 +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:98 msgid "Adjusting departLane for cloned walk with routeDistribution '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSStageTrip.cpp:174 +#: D:\Repos\sumo/src\microsim\transportables\MSStageTrip.cpp:174 msgid "" "Ignoring vehicle type '%' when routing person '%' because it is not allowed " "on the start edge." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:134 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:134 msgid "Changing a transportable ID is not permitted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:256 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:256 msgid "Teleporting % '%'; waited too long, from edge '%', time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:391 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:391 msgid "parkingAreaReroute not support for containers" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportableControl.cpp:69 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportableControl.cpp:69 msgid "Unknown pedestrian model '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:142 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:142 msgid "No flow intervals in calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:161 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:161 #, c-format msgid "Calibrator '%' has no active or upcoming interval" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:209 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:209 msgid "Insertion lane may differ from calibrator lane for calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:213 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:213 msgid "Unknown vehicle type '%' in calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:216 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:216 msgid "Mandatory attribute missing in definition of calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:218 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:218 msgid "" "Non-numeric value for numeric attribute in definition of calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:221 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:221 msgid "" "Either 'vehsPerHour', 'speed' or 'type' has to be set in flow definition of " "calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:224 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:224 msgid "Type calibration is not supported in meso for calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:318 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:318 msgid "Calibrator '%' could not remove vehicle '%' time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:699 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:699 msgid "Cannot set flow for calibrator '%' with overlapping interval." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:701 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:701 msgid "Cannot set flow for calibrator '%' with negative interval." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSLaneSpeedTrigger.cpp:176 +#: D:\Repos\sumo/src\microsim\trigger\MSLaneSpeedTrigger.cpp:176 msgid "Invalid or unsorted time entry in vss '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSLaneSpeedTrigger.cpp:192 +#: D:\Repos\sumo/src\microsim\trigger\MSLaneSpeedTrigger.cpp:192 msgid "Time % was set twice for vss '%'; replacing first entry." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:354 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:409 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:454 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:471 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:492 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:518 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:544 -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:386 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:354 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:409 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:454 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:471 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:492 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:518 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:544 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:386 msgid "" "Overhead circuit solver requested, but solver support (Eigen) not compiled " "in." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:579 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:579 msgid "Overhead circuit solver requested, but solver support not compiled in." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:690 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:690 #, c-format msgid "" "The requested total power could not be delivered by the overhead wire. Only " "% of originally requested power was provided." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:127 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:127 msgid "MSTriggeredRerouter %: No destination edge id given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:192 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:192 msgid "MSTriggeredRerouter %: No route id given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:217 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:217 msgid "MSTriggeredRerouter %: No parking area id given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:505 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:505 #, c-format msgid "" "Cannot keep destination edge '%' for vehicle '%' due to closed edges. " "Terminating route." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:604 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:604 msgid "Invalid value '%' for vehicle parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:612 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:612 msgid "Invalid value '%' for vType parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:784 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:782 #, c-format msgid "" "Parkingarea '%' along the way cannot be used by vehicle '%' for unknown " "reason" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1105 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1103 msgid "" "Invalid distance computation for vehicle '%' to parkingArea '%' at time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1160 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1158 msgid "" "Invalid distance computation for vehicle '%' from parkingArea '%' at time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1236 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1234 msgid "" "ParkingArea '%' is targeted by rerouter '%' but doesn't have it's own " "rerouter. This may cause parking search to abort." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:119 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:153 msgid "Ambiguity in turnarounds computation at junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:269 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:358 msgid "Converting invalid rail_crossing to priority junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:273 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:362 msgid "Converting invalid rail_crossing to traffic_light at junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:282 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1739 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:423 -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:358 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:371 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1744 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:423 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:358 msgid "Could not allocate tls '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:173 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:176 msgid "" "Added % bidi-edges to ensure that all tracks are usable in both directions." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:175 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:178 #, c-format msgid "Ignore % edges because they have the wrong spreadType" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:197 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:200 #, c-format msgid "Bidi-edge '%' prevented by filtering rules." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:211 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:214 msgid "Could not add bidi-edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:272 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:275 msgid "Railway nodes by number of incoming,outgoing edges:" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:370 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:373 msgid "Found % railway nodes marked as buffer_stop" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:380 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:383 msgid "Found % bidirectional rail edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:406 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:409 msgid "Found % railway edges and % railway nodes (% signals)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:523 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:526 msgid "Added % bidi-edges as extension of existing bidi edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:534 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:537 msgid "Could not find bidi-edge for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:639 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:642 msgid "Found % reversible edge sequences between broken rail nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:668 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:671 msgid "Reversed % sequences (count by length: %)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:689 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:692 msgid "Ignoring buffer stop junction '%' with % edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:746 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:749 msgid "Added % edges to connect % buffer stops in both directions." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:827 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:830 msgid "" "Added % bidi-edges between % pairs of railway switches (count by length: %)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:974 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:977 msgid "" "Edge sequence is not consistent with stop sequence in line '%', not adding " "bidi edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1016 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1019 #, c-format msgid "" "Stop on edge '%' can only be reached in reverse but edge has the wrong " "spreadType." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1037 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1044 msgid "No connection found between stops on edge '%' and edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1147 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1154 msgid "" "Added % bidi-edges to ensure connectivity of straight tracks at geometry-" "like nodes." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1149 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1156 msgid "" "Added % bidi-edges to ensure connectivity of straight tracks at switches." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1209 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1216 msgid "" "Cannot extend track direction priority because there are no track edges with " "positive priority" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1265 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1272 msgid "" "Edge '%' was loaded with undefined priority (%) but has unambiguous main " "direction (no bidi edge)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:116 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1359 +msgid "Added % rail signals at % stops." +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:116 #, c-format msgid "Can not build ramp on edge '%' - the edge is unsuitable." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:120 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:120 #, c-format msgid "Can not build on ramp on edge '%' - the edge is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:131 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:131 #, c-format msgid "Can not build off ramp on edge '%' - the edge is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:249 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:249 msgid "Ups - could not build on-ramp for edge '%' (node could not be build)!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:254 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:254 msgid "Ups - could not build on-ramp for edge '%'!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:284 -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:289 -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:400 -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:403 -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:710 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:284 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:289 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:400 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:403 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:710 msgid "Could not set connection!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:356 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:356 msgid "Ups - could not build off-ramp for edge '%' (node could not be build)!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:361 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:361 msgid "Ups - could not build off-ramp for edge '%'!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:423 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:423 msgid "For edge '%': could not compute shape." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:431 -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:459 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:432 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:460 #, c-format msgid "At least one of edge's '%' nodes is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:456 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:457 #, c-format msgid "Edge '%' needs at least one lane." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:462 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:463 msgid "Invalid edge id '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:492 -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:626 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:493 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:627 #, c-format msgid "Edge's '%' from- and to-node are at the same position." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:999 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1000 msgid "Found angle of % degrees at edge '%', segment %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1155 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1156 msgid "Could not set connection from '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1667 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1668 msgid "Connection '%_%->%_%' is only %m short." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1768 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1770 msgid "" "Intersecting left turns at junction '%' from lane '%' and lane '%' (increase " "junction radius to avoid this)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1868 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1870 msgid "" "Speed of % connection '%' reduced by % due to turning radius of % (length=%, " "angle=%)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2208 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2210 msgid "In lane '%': lane shape could not be determined (%)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2221 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2223 msgid "In lane '%': Could not build shape (%)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2629 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2637 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " "directions but only % targets" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2670 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2678 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " "directions and % targets (after target pruning)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2689 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2697 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " "connections with directions '%' but target edge '%' has only % suitable lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2716 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2724 msgid "" "Cannot apply turn sign information for edge '%' because not enough target " "lanes could be determined for direction '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2955 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2985 msgid "Edge '%' is not connected to outgoing edges at junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2969 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2999 msgid "Lane '%' is not connected from any incoming edge at junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2986 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3016 #, c-format msgid "Ignoring changeLeft prohibition for '%' to avoid dead-end" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2989 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3019 #, c-format msgid "Ignoring changeRight prohibition for '%' to avoid dead-end" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:3590 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3620 #, c-format msgid "The lane '%' on edge '%' already had a traffic light signal." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:3596 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3626 msgid "Could not set any signal of the tlLogic '%' (unknown group)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4079 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4117 msgid "Ignoring invalid stopOffset for edge '%' (negative offset)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4088 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4126 msgid "Ignoring invalid stopOffset for lane '%' (negative offset)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4094 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4132 msgid "Ignoring invalid stopOffset for lane '%' (invalid lane index)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4357 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4395 #, c-format msgid "Edge % allows pedestrians on all lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4415 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4453 #, c-format msgid "Edge '%' already has a dedicated lane for %s. Not adding another one." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4452 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4490 #, c-format msgid "Edge '%' doesn't have a dedicated lane for %s. Cannot be restored." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4500 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4538 msgid "Could not avoid overlapping shape at node '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:121 -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:140 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:121 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:140 msgid "Invalid boundary: need at least 2 coordinates" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:142 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:142 msgid "Invalid boundary: malformed coordinate" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:259 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:259 msgid "" "Cannot prune edges using a geo-boundary because no projection has been loaded" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:438 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:438 msgid "Attempt to rename edge using existing id '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:498 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:499 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:501 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:498 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:499 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:501 msgid "Error on parsing a split (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:556 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:556 msgid "Split at '%' lies beyond the edge's length (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:639 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:639 msgid "Could not insert edge '%' before split of edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:643 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:643 msgid "Could not insert edge '%' after split of edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:880 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:880 msgid "Moving opposite lane '%' from invalid lane '%' to lane index %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:882 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:882 msgid "Removing opposite lane '%' for invalid lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:891 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:891 msgid "Removing unknown opposite lane '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:896 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:896 msgid "Adapting invalid opposite lane '%' for edge '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:902 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:902 msgid "Adapting missing opposite lane '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:908 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:908 msgid "Averaging edge lengths for lane '%' (length %) and edge '%' (length %)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:921 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:921 msgid "Opposite lane '%' does not connect the same nodes as edge '%'!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1421 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1421 msgid "Replacing loaded roundabout '%' with '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1739 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1739 msgid "Edge '%' overlaps with edge '%' by %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1755 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1755 #, c-format msgid "Edge '%' has a vertical jump of %m." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1757 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1757 #, c-format msgid "Edge '%' has a grade of %%." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1767 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1767 #, c-format msgid "Connection '%' has a vertical jump of %m." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1769 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1769 #, c-format msgid "Connection '%' has a grade of %%." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1809 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1809 msgid "Not joining tram edge '%' with % lanes." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1883 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1883 msgid "Ambiguous tram edges '%' and '%' for lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:2037 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:138 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:554 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:2037 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:138 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:554 #, c-format msgid "Edge's '%' from-node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:2041 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:142 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:566 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:2041 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:142 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:566 #, c-format msgid "Edge's '%' to-node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:52 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:52 msgid "The default number of lanes in an edge" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:56 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:56 msgid "The default width of lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:59 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:59 msgid "The default method for computing lane shapes from edge shapes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:63 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:63 msgid "The default speed on an edge (in m/s)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:67 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:67 msgid "The default friction on an edge" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:71 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:71 msgid "The default priority of an edge" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:74 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:74 msgid "The default edge type" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:77 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:77 msgid "The default width of added sidewalks" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:80 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:80 msgid "The default width of added bike lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:83 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:83 msgid "The default width of a pedestrian crossing" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:86 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:86 msgid "The default speed 'limit' on a pedestrian crossing (in m/s)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:89 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:89 msgid "The default speed 'limit' on a pedestrian walkingarea (in m/s)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:92 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:92 msgid "The default for allowed vehicle classes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:95 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:95 msgid "The default for disallowed vehicle classes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:98 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:98 msgid "Whether junctions should be kept clear by default" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:101 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:101 msgid "The default turning radius of intersections" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:104 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:104 msgid "The default length when overriding connection lengths" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:107 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:107 msgid "" "The default algorithm for computing right of way rules ('default', " "'edgePriority')" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:110 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:110 msgid "" "Allow building right-before-left junctions when the incoming edge speeds are " "below FLOAT (m/s)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:113 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:113 msgid "" "Build left-before-right junctions instead of right-before-left junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:117 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:117 msgid "Omits internal links" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:120 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:120 msgid "" "Remaps alphanumerical IDs of nodes and edges to ensure that all IDs are " "integers" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:123 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:123 msgid "Remaps IDs of nodes to integers starting at INT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:126 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:126 msgid "Remaps IDs of edges to integers starting at INT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:130 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:130 msgid "" "Ensures that generated ids do not included any of the typed IDs from FILE " "(sumo-gui selection file format)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:134 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:134 msgid "Removes vehicle class restrictions from imported edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:138 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:138 msgid "Disables building turnarounds" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:142 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:142 msgid "Disables building turnarounds at tls-controlled junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:145 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:145 msgid "Disables building turnarounds at geometry-like junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:148 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:148 msgid "Disables building turnarounds except at dead end junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:151 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:151 msgid "" "Disables building turnarounds except at at junctions with a dedicated " "turning lane" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:154 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:154 msgid "Disables building turnarounds at fringe junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:157 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:157 msgid "Disables building connections to left" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:161 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:161 msgid "Splits edges across geometry nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:165 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:165 msgid "" "Replace nodes which only define edge geometry by geometry points (joins " "edges)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:168 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:168 msgid "Ensure that the given list of edges is not modified" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:176 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:176 msgid "Ensure that edges with public transport stops are not modified" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:188 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:192 msgid "splits geometry to restrict segment length" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:192 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:196 msgid "reduces too similar geometry points" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:195 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:199 msgid "" "Warn about edge geometries with an angle above DEGREES in successive segments" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:198 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:202 msgid "" "Warn about edge geometries with a turning radius less than METERS at the " "start or end" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:201 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:205 msgid "" "Straighten edge geometries to avoid turning radii less than geometry.min-" "radius" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:204 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:208 msgid "" "Straighten edge geometries to avoid turning radii less than geometry.min-" "radius (only railways)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:207 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:211 msgid "" "Warn if the junction shape is to far away from the original node position" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:210 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:214 msgid "Warn if edges overlap by more than the given threshold value" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:213 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:217 msgid "" "Ignore overlapping edges if they are separated vertically by the given " "threshold." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:216 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:220 msgid "Modify edge geometries to avoid overlap at junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:219 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:223 msgid "" "join adjacent lanes that have the same permissions and which do not admit " "lane-changing (sidewalks and disallowed lanes)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:222 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:226 msgid "" "Matches stops outside the road network to the referencing pt line when below " "the given distance" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:226 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:230 msgid "Repair topology of the railway network" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:229 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:233 msgid "" "Repair topology of the railway network just enough to let loaded public " "transport lines to work" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:232 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:236 msgid "" "Allow bidirectional rail use wherever rails with opposite directions meet at " "a straight angle" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:235 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:239 msgid "Add turn-around connections at all loaded stops." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:238 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:242 +msgid "" +"Penalty factor for adding new bidi edges to connect public transport stops" +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:245 msgid "Make all rails usable in both direction" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:241 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:248 msgid "Make all rails edge ids from FILE usable in both direction" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:244 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:251 msgid "Set edge priority values based on estimated main direction" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:247 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:254 msgid "Extend loaded edge priority values based on estimated main direction" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:250 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:257 +msgid "Guess signals that guard public transport stops" +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:260 msgid "The search radius for finding suitable road accesses for rail stops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:254 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:264 msgid "The maximum road accesses registered per rail stops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:258 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:268 msgid "" "The walking length of the access is computed as air-line distance multiplied " "by FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:262 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:272 msgid "Skips automatic generation of stops on the bidi-edge of a loaded stop" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:266 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:276 #, c-format msgid "Warn about edge geometries with a grade in % above FLOAT." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:269 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:279 msgid "Smooth edge geometries with a grade above the warning threshold." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:273 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:283 msgid "Turn off normalizing node positions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:277 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:186 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:287 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:186 msgid "Adds FLOAT to net x-positions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:281 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:190 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:291 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:190 msgid "Adds FLOAT to net y-positions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:284 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:193 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:294 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:193 msgid "Adds FLOAT to net z-positions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:288 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:298 msgid "Flips the y-coordinate along zero" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:292 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:302 msgid "Enable roundabout-guessing" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:295 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:305 msgid "Default visibility when approaching a roundabout" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:298 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:308 msgid "Enable guessing of opposite direction lanes usable for overtaking" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:301 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:311 msgid "Ensure that opposite edges have the same length" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:304 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:314 msgid "Enable guessing of network fringe nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:307 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:317 msgid "Guess disconnected edges above the given speed as outer fringe" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:310 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:320 msgid "Assumes left-hand traffic on the network" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:326 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:336 msgid "Interprets STR[] as list of junctions to exclude from joining" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:338 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:348 msgid "Modifies all edge speeds by adding FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:341 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:351 msgid "Modifies all edge speeds by multiplying by FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:344 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:354 msgid "Modifies all edge speeds to at least FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:352 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:362 msgid "Generate INT intermediate points to smooth out intersection corners" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:355 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:365 msgid "" "Generate INT intermediate points to smooth out lanes within the intersection" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:358 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:368 msgid "" "Generate longer intersections to allow for smooth s-curves when the number " "of lanes changes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:398 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:411 msgid "Forces rectangular cuts between lanes and intersections" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:457 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:470 msgid "Always build walking areas even if there are no crossings" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:460 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:473 msgid "" "Do not create a walkingarea between sidewalks that are connected by a " "pedestrian junction within FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:605 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:618 msgid "Only keep edges with speed in meters/second > FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:609 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:622 msgid "Remove edges in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:613 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:626 msgid "" "Only keep edges in STR[] or those which are kept due to other keep-edges or " "remove-edges options" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:616 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:629 msgid "" "Only keep edges in FILE (Each id on a single line. Selection files from sumo-" "gui are also supported) or those which are kept due to other keep-edges or " "remove-edges options" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:619 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:632 msgid "" "Remove edges in FILE. (Each id on a single line. Selection files from sumo-" "gui are also supported)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:623 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:636 msgid "Remove edges after joining" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:627 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:640 msgid "" "Only keep edges which are located within the given boundary (given either as " "CARTESIAN corner coordinates or as polygon )" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:630 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:643 msgid "" "Only keep edges which are located within the given boundary (given either as " "GEODETIC corner coordinates or as polygon " ")" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:634 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:647 msgid "Only keep edges which allow one of the vclasses in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:637 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:650 msgid "Remove edges which allow only vclasses from STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:640 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:653 msgid "Only keep edges where type is in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:643 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:656 msgid "Only keep the INT largest weakly connected components" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:646 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:659 msgid "Remove edges where type is in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:650 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:663 msgid "Removes isolated edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:657 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:670 msgid "All nodes will be unregulated" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:662 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:675 msgid "Do not regulate nodes in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:666 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:679 msgid "Do not regulate district nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:672 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:685 msgid "Enable ramp-guessing" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:675 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:688 msgid "" "Guess on-ramps and mark acceleration lanes if they exist but do not add new " "lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:679 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:692 msgid "Treat edges with speed > FLOAT as no ramps" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:683 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:696 msgid "Treat edges with speed < FLOAT as no highways" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:687 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:700 msgid "Use FLOAT as ramp-length" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:691 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:704 msgid "Use FLOAT as minimum ramp-length" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:695 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:708 msgid "Tries to handle the given edges as ramps" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:698 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:711 msgid "Do not consider the given edges as ramps" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:702 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:715 msgid "Avoids edge splitting" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:713 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:725 #, c-format msgid "unsupported value '%' for option '--tls.default-type'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:717 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:729 msgid "" "only one of the options 'keep-edges.in-boundary' or 'keep-edges.in-geo-" "boundary' may be given" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:721 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:733 msgid "" "only one of the options 'no-internal-links' or 'crossings.guess' may be given" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:725 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:737 msgid "only one of the options 'no-internal-links' or 'walkareas' may be given" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:729 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:741 msgid "" "only one of the options 'tls.green.time' or 'tls.cycle.time' may be given" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:733 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:745 msgid "default.lanenumber must be at least 1" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:741 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:753 msgid "" "only one of the options 'default.disallow' or 'default.allow' may be given" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:745 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:757 msgid "junctions.internal-link-detail must >= 2" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:750 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:762 msgid "" "Option 'junctions.scurve-stretch' requires internal lanes to work. Option '--" "no-internal-links' will be disabled." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:757 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:769 msgid "" "option 'default.junctions.radius' is smaller than option 'junctions.small-" "radius'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:765 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:777 msgid "tls.layout must be 'opposites', 'incoming' or 'alternateOneWay'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:770 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:782 msgid "default.right-of-way must be one of '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:774 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:786 msgid "roundabouts.visibility-distance must be positive or -1" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:790 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:802 msgid "Unknown value for default.spreadtype '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:88 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:88 msgid "Cannot supply height since no height data was loaded" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:136 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:136 msgid "Could not get height data for coordinate %" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:190 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:190 msgid "Could not open shape file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:204 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:204 msgid "" "Could not create geocoordinates converter; check whether proj.4 is installed." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:231 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:231 msgid "Ignored heightmap feature type %" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:276 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:276 msgid "Cannot load shape file since SUMO was compiled without GDAL support." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:288 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:288 msgid "Cannot load GeoTIFF file." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:303 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:303 msgid "Could not parse geo information from %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:312 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:312 msgid "Unknown color band in %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:319 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:319 msgid "Failure in reading %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:348 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:348 msgid "Cannot load GeoTIFF file since SUMO was compiled without GDAL support." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:89 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:89 msgid "Could not load names of edges too keep from '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:107 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:107 msgid "Could not load IDs from '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:123 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:123 msgid "Invalid lane id '%' (missing '_')." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:130 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:130 msgid "Invalid lane index '%' for lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedSUMOTLDef.cpp:359 +#: D:\Repos\sumo/src\netbuild\NBLoadedSUMOTLDef.cpp:359 #, c-format msgid "Could not patch tlLogic '%' for changed crossings" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedSUMOTLDef.cpp:889 +#: D:\Repos\sumo/src\netbuild\NBLoadedSUMOTLDef.cpp:889 msgid "Unused state in tlLogic '%', program '%' at tl-index %" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:83 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:83 msgid "" "TYellow of signal group '%' was less than the computed one; patched (was:%, " "is:%)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:300 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:300 msgid "During computation of traffic light '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:514 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:514 msgid "Could not set signal on connection (signal: %, group: %)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:612 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:612 msgid "myNeedsContRelation was not propperly initialized\n" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:94 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:94 msgid "Removing self-loops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:98 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:98 msgid "Finding isolated roads" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:103 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:103 msgid "Finding largest components" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:110 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:110 msgid "Removing unwished edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:117 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:117 msgid "Processing public transport stops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:132 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:132 msgid "Revising public transport stops based on pt lines" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:138 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:138 msgid "Cleaning up public transport stops that are not served by any line" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:144 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:144 #, c-format msgid "Removed % pt stops because they could not be assigned to the network" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:149 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:149 msgid "Align pt stop id signs with corresponding edge id signs" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:186 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:186 msgid "Joining tram edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:190 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:190 msgid " Joined % tram edges into roads." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:228 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:228 msgid "Joining junction clusters" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:233 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:233 #, c-format msgid " Joined % junction cluster(s)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:236 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:236 msgid "Joining junctions with identical coordinates" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:240 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:240 #, c-format msgid " Joined % junctions." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:245 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:245 msgid "Joining lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:248 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:248 #, c-format msgid " Joined lanes on % edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:258 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:258 #, c-format msgid " % nodes removed." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:278 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:278 msgid "Reducing geometries" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:285 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:285 msgid "Joining similar edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:295 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:295 msgid "guessing opposite direction edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:301 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:301 msgid "Splitting geometry edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:308 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:308 #, c-format msgid " Joined % junctions after splitting geometry." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:313 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:313 msgid "Computing turning directions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:322 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:322 msgid "Assigning nodes to traffic lights" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:345 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:345 msgid "Guessing and setting on-/off-ramps" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:361 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:361 msgid "Guessed % bike lanes." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:372 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:372 #, c-format msgid "Guessed % sidewalks." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:382 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:382 #, c-format msgid "Remapped % edge IDs and % node IDs." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:397 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:397 msgid "Sorting nodes' edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:402 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:402 msgid "Computing node shapes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:410 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:410 msgid "Computing edge shapes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:423 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:423 msgid "Applying speed modifications" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:436 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:436 msgid "Computing node types" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:447 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:447 #, c-format msgid "Guessed % pedestrian crossings." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:475 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:475 msgid "Computing priorities" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:479 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:479 msgid "Computing approached edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:484 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:484 msgid "Guessing and setting roundabouts" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:487 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:487 msgid " Guessed % roundabout(s)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:493 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:493 msgid "Computing approaching lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:497 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:497 msgid "Dividing of lanes on approached lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:503 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:503 msgid "Guessing Network fringe" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:506 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:506 #, c-format msgid " Guessed % fringe nodes." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:511 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:511 msgid "Processing turnarounds" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:529 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:529 msgid "Rechecking of lane endings" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:551 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:551 msgid "Joining traffic light nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:558 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:558 msgid "Computing traffic light control information" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:565 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:565 msgid "Computing node logics" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:570 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:570 msgid "Computing traffic light logics" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:577 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:577 msgid " % traffic light(s) %computed." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:585 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:588 msgid "Building inner edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:598 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:601 msgid "stretching junctions to smooth geometries" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:627 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:630 msgid "Generating street signs" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:638 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:641 msgid "Checking overlapping edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:643 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:646 msgid "Checking edge grade" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:658 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:661 msgid "Find accesses for pt rail stops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:681 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:684 msgid "" "Network contains very large coordinates and will probably flicker in the " "GUI. Check for outlying nodes and make sure the network is shifted to the " "coordinate origin" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:688 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:691 msgid "Moving network to origin" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:299 -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:321 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:299 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:321 msgid "Invalid node id '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:465 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:465 msgid " Removing self-looping edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:744 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:744 msgid "Could not compute indirect left turn shape at node '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:760 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:760 #, c-format msgid "Connection '%' starts at a non-existant lane." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:763 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:763 #, c-format msgid "Connection '%' targets a non-existant lane." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:777 -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:795 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:777 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:795 msgid "Could not use custom shape for connection %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:786 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:786 msgid "Custom shape has distance % to incoming lane for connection %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:803 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:803 msgid "Custom shape has distance % to outgoing lane for connection %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1003 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1003 msgid "" "Junction '%' is too complicated (% connections, max %); will be set to %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1144 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1144 #, c-format msgid "Shape for junction '%' has distance % to its given position." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1148 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1148 msgid "For junction '%': could not compute shape." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1852 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1850 msgid "Something went wrong during the building of a connection..." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:2871 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:2878 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (no " "walkingarea found)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3047 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3054 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (no vehicle " "lanes to cross)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3066 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3073 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (invalid " "shape)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3217 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3224 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' targets '%' and " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3240 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3247 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' is targeted by '%' " "and '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3245 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3252 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' starts and ends at " "walkingarea '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3465 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3472 msgid "Invalid pedestrian topology: crossing '%' across [%] has no target." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3685 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3692 msgid "Request for unknown crossing '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3701 -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3712 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3708 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3719 msgid "Request for unknown crossing for the given Edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:319 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:319 msgid "Removed a road without junctions: %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:406 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:406 msgid "Found % components and removed % (% edges)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:447 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:447 msgid "Removed % railway components (% edges)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:658 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:663 #, c-format msgid "" "Ignoring join exclusion for junction '%' since it already occurred in a list " "of nodes to be joined." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:691 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:696 msgid "" "Ignoring join-cluster because junction '%' was already excluded from joining." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:694 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:699 #, c-format msgid "" "Ignoring join-cluster because junction '%' already occurred in another join-" "cluster." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:700 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:705 #, c-format msgid "Unknown junction '%' in join-cluster." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:708 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:713 msgid "Ignoring join-cluster '%' because it has size '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:722 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:727 msgid "unknown junction '%' while joining." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:780 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:821 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:828 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:833 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:840 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:785 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:826 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:833 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:838 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:845 msgid "Not joining junctions % (%)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:800 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:814 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:805 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:819 msgid "Reducing junction cluster % (%)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1709 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1714 msgid "Could not join junctions %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1909 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1956 msgid "Ambiguous traffic light type for node cluster '%', setting to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2005 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2052 #, c-format msgid " The junction '%' to set as not-controlled is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2174 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2221 msgid "Could not build joined tls '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2219 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2266 msgid "Could not build guessed, joined tls." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2335 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2382 msgid "Could not build a joined tls." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2352 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2399 msgid "Building a tl-logic for junction '%' twice is not possible." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2434 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2526 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2481 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2573 msgid "-----------------------------------------------------" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2435 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2482 msgid "Summary:" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2493 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2540 msgid " Node type statistics:" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2522 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2569 msgid " Network boundaries:" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2555 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2602 msgid "Attempt to rename node using existing id '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeShapeComputer.cpp:441 +#: D:\Repos\sumo/src\netbuild\NBNodeShapeComputer.cpp:444 msgid "Fixing offset for edge '%' at node '%." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:561 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:561 #, c-format msgid "" "Minor green from edge '%' to edge '%' exceeds %m/s. Maybe a left-turn lane " "is missing." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:773 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:773 msgid "" "Generating NEMA phases is not support for traffic light '%' with % incoming " "edges. Using tlType 'actuated' as fallback" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:799 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:799 msgid "The traffic light '%' cannot be adapted to a cycle time of %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:818 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:818 msgid "The traffic light '%' has a high cycle time of %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:197 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:197 msgid "Could not retrieve edge '%' for first stop of line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:203 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:203 msgid "First stop edge '%' is not part of the route of line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:227 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:227 msgid "Could not retrieve edge '%' for last stop of line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:233 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:233 msgid "Last stop edge '%' is not part of the route of line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:294 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:302 msgid "Removed invalid stop '%' from line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:312 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:320 msgid "Removed duplicate stop '%' at area '%' from line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:315 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:323 msgid "Removed duplicate stop '%' named '%' from line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:99 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:99 msgid "" "Cannot revise pt stop localization for pt line '%', which consist of one way " "only. Ignoring!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:103 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:103 msgid "" "Cannot revise pt stop localization for pt line '%', which has no route " "edges. Ignoring!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:122 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:122 msgid "" "Cannot assign stop '%' on edge '%' to pt line '%' (wayNodes not found). " "Ignoring!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:137 -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:151 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:137 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:151 msgid "" "Cannot revise pt stop localization for incomplete pt line '%'. Ignoring!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:162 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:162 msgid "Could not re-assign PT stop '%', probably broken osm file." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:171 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:171 msgid "PT stop '%' has been moved to edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:243 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:243 msgid "" "Could not assign stop '%' to pt line '%' (closest edge '%', distance %). " "Ignoring!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:275 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:275 msgid "Cannot assign stop % on edge '%' to pt line '%'. Ignoring!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:458 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:475 msgid "" "Could not determine vehicle class for public transport line of type '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:523 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:540 msgid "Could not determine direction for line '%' at stop '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:110 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:110 msgid "" "Could not find corresponding edge or compatible lane for pt stop '%' (%). " "Thus, it will be removed!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:136 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:136 msgid "" "Could not create reverse-direction stop for superposed edge '%' (origStop " "'%'). Stop id '%' already in use by stop on edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:170 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:170 #, c-format msgid "Added % stops for superposed rail edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:272 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:272 msgid "Could not determine cross product for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:326 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:326 msgid "Removing pt stop '%' on non existing edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:357 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:357 msgid "Could not re-assign pt stop '%' after replacing edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:446 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:446 msgid "" "Could not find corresponding edge or compatible lane for free-floating pt " "stop '%' (%). Thus, it will be removed!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:44 +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:44 #, c-format msgid "Ignoring parking area on edge '%' due to invalid permissions." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:51 +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:51 #, c-format msgid "Ignoring parking area on edge '%' due to insufficient space." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:71 +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:71 msgid "Could not find edge for parkingArea '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:115 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:115 #, c-format msgid "The traffic light '%' does not control any links; it will not be build." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:229 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:229 msgid "Unreachable edge '%' within tlLogic '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:509 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:509 #, c-format msgid "The rail crossing '%' does not have any roads." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogic.cpp:100 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogic.cpp:100 #, c-format msgid "When adding phase: illegal character '%' in state" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogic.cpp:233 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogic.cpp:233 #, c-format msgid "Non-static traffic light '%' does not define variable phase length." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogicCont.cpp:235 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:243 msgid "Could not build program '%' for traffic light '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogicCont.cpp:376 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:384 msgid "Guessing signalID for link index % at traffic light '%'." msgstr "" -#: /home/micha/programming/sumo/src/netconvert_main.cpp:97 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:491 +#, c-format +msgid "" +"Was not able to apply the OpenDRIVE signal group information onto the signal " +"program of traffic light % generated by SUMO." +msgstr "" + +#: D:\Repos\sumo/src\netconvert_main.cpp:98 msgid "" "Network importer / builder for the microscopic, multi-modal traffic " "simulation SUMO." msgstr "" -#: /home/micha/programming/sumo/src/netconvert_main.cpp:120 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:273 -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:93 +#: D:\Repos\sumo/src\netconvert_main.cpp:121 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:273 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:93 msgid "Could not build projection!" -msgstr "" +msgstr "Non ho potuto eseguire la proiezione!" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:41 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:41 msgid "Read edge-type defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:44 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:44 msgid "" "The Ids of generated nodes use an alphanumerical code for easier readability " "when possible" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:48 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:48 msgid "Generate INT left-turn lanes" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:50 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:50 msgid "Set the length of generated turning lanes to FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:53 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:53 msgid "" "Apply random spatial perturbation in x direction according the the given " "distribution" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:55 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:55 msgid "" "Apply random spatial perturbation in y direction according the the given " "distribution" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:57 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:57 msgid "" "Apply random spatial perturbation in z direction according the the given " "distribution" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:63 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:63 msgid "Defines the probability to build a reverse edge" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:67 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:67 msgid "Draw lane numbers randomly from [1,default.lanenumber]" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:71 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:71 msgid "Draw edge priority randomly from [1,default.priority]" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:74 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:74 msgid "Draw edge type randomly from all loaded types" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:80 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:80 msgid "Forces NETGEN to build a grid-like network" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:85 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:85 msgid "The number of junctions in both dirs" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:90 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:90 msgid "The length of streets in both dirs" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:95 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:95 msgid "The number of junctions in x-dir; Overrides --grid-number" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:100 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:100 msgid "The number of junctions in y-dir; Overrides --grid-number" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:105 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:105 msgid "The length of horizontal streets; Overrides --grid-length" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:110 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:110 msgid "The length of vertical streets; Overrides --grid-length" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:114 -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:147 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:114 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:147 msgid "" "The length of streets attached at the boundary; 0 means no streets are " "attached" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:117 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:117 msgid "" "The length of streets attached at the boundary in x direction; 0 means no " "streets are attached" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:119 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:119 msgid "" "The length of streets attached at the boundary in y direction; 0 means no " "streets are attached" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:124 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:124 msgid "Forces NETGEN to build a spider-net-like network" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:129 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:129 msgid "The number of axes within the net" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:134 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:134 msgid "The number of circles of the net" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:139 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:139 msgid "The distances between the circles" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:144 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:144 msgid "Omit the central node of the network" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:152 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:152 msgid "Forces NETGEN to build a random network" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:157 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:157 msgid "Describes how many times an edge shall be added to the net" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:162 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:162 msgid "The maximum distance for each edge" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:167 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:167 msgid "The minimum distance for each edge" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:172 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:172 msgid "The minimum angle for each pair of (bidirectional) roads in DEGREES" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:177 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:177 msgid "The number of tries for creating each node" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:182 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:182 msgid "Probability for roads to continue at each node" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:187 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:187 msgid "Probability for a node having exactly 1 neighbor" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:192 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:192 msgid "Probability for a node having exactly 2 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:197 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:197 msgid "Probability for a node having exactly 3 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:202 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:202 msgid "Probability for a node having exactly 4 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:207 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:207 msgid "Probability for a node having exactly 5 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:212 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:212 msgid "Probability for a node having exactly 6 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:215 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:215 msgid "Place nodes on a regular grid with spacing rand.min-distance" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:235 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:235 msgid "You have to specify the type of network to generate." msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:239 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:239 msgid "You may specify only one type of network to generate at once." msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:274 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:274 msgid "Option 'random-type' takes no effect unless 'type-files' are loaded" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:90 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:90 msgid "" "[traffic_light|priority|right_before_left|left_before_right|" "traffic_light_right_on_red|priority_stop|allway_stop|...] Determines " "junction type (see wiki/Networks/PlainXML#Node_types)" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:119 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:120 msgid "Spider networks need at least 3 arms." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:123 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:124 msgid "Spider networks with many arms should use option spider.omit-center" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:126 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:127 msgid "Spider networks need at least one circle." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:134 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:135 #, c-format msgid "" "The radius of spider networks should be at least % for the given lanenumber, " "lanewidth and junction radius" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:176 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:177 msgid "" "The number of nodes must be positive and at least 2 in one direction if " "there are no attachments." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:184 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:185 #, c-format msgid "" "The distance between nodes should be at least % for the given lanenumber, " "lanewidth and junction radius" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:190 -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:195 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:191 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:196 #, c-format msgid "" "The length of attached streets should be at least % for the given " "lanenumber, lanewidth and junction radius" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:230 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:231 msgid "" "Synthetic network generator for the microscopic, multi-modal traffic " "simulation SUMO." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:266 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:267 msgid " Generation done;" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:267 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:268 #, c-format msgid " % nodes generated." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:268 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:269 #, c-format msgid " % edges generated." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:273 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:274 msgid " Removed % traffic lights at geometry-like nodes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:53 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:53 msgid "Read SUMO-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:60 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:60 msgid "Read XML-node defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:66 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:66 msgid "Read XML-edge defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:72 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:72 msgid "Read XML-connection defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:75 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:75 msgid "Read XML-traffic light defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:81 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:81 msgid "Read XML-type defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:86 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:86 msgid "Reads public transport stops from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:88 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:88 msgid "Reads public transport lines from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:90 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:90 msgid "Reads polygons from FILE for embedding in network where applicable" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:97 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:97 msgid "Read shapefiles (ArcView, Tiger, ...) from files starting with 'FILE'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:102 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:102 msgid "" "Read converted Navteq GDF data (unsplitted Elmar-network) from path 'FILE'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:106 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:106 msgid "Read OSM-network from path 'FILE(s)'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:110 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:110 msgid "Read OpenDRIVE-network from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:114 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:114 msgid "Read VISUM-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:118 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:118 msgid "Read VISSIM-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:123 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:123 msgid "Read RoboCup-net from DIR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:127 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:127 msgid "Read MATsim-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:131 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:131 msgid "Read ITSUMO-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:134 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:134 msgid "Read heightmap from ArcGIS shapefile" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:137 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:137 msgid "Read heightmap from GeoTIFF" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:145 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:159 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:199 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:145 +#: D:\Repos\sumo/src\od2trips_main.cpp:159 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:199 msgid "Continue on broken input" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:148 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:148 msgid "Continue on invalid connections" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:151 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:151 msgid "Show errors in connections at parsing" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:154 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:154 msgid "Continue on unknown edge types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:157 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:157 msgid "vmax is parsed as given in km/h" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:160 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:160 msgid "" "Use YYYY-MM-DD date to determine the readiness of features under construction" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:163 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:163 msgid "Remove all z-data" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:166 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:166 msgid "Remove the list of keys from all params" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:169 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:169 msgid "" "List vehicle classes that may ignore lane changing restrictions ('all' " "discards all restrictions)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:174 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:174 msgid "If edge shapes do not end at the node positions, extend them" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:178 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:178 msgid "Skips the check for duplicate nodes and edges" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:181 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:181 msgid "Imports elevation data" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:184 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:184 msgid "" "Reconstruct (relative) elevation based on layer data. Each layer is raised " "by FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:187 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:187 #, c-format msgid "" "Maximum grade threshold in % at 50km/h when reconstrucing elevation based on " "layer data. The value is scaled according to road speed." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:190 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:190 msgid "Whether one-way roads should be spread to the side instead of centered" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:193 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:193 msgid "Import lane-specific access restrictions" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:197 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:197 msgid "Import bike lanes and fix directions and permissions on bike paths" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:200 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:200 msgid "Import sidewalks" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:203 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:203 msgid "Import crossings" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:206 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:206 msgid "Import turning arrows from OSM to help with connection building" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:209 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:209 msgid "The default length of a public transport stop in FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:211 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:211 msgid "The default length of a bus stop in FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:213 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:213 msgid "The default length of a tram stop in FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:215 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:215 msgid "The default length of a train stop in FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:218 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:219 msgid "Whether additional attributes shall be imported" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:221 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:223 msgid "" "List of additional attributes that shall be imported from OSM via osm.all-" "attributes (set 'all' to import all)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:224 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:226 msgid "" "The speed limit to be set when there is no actual speed limit in reality" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:228 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:230 msgid "The edge lengths given in the MATSIM-file will be kept" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:231 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:233 msgid "The lane number will be computed from the capacity" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:237 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:239 msgid "Read edge ids from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:241 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:243 msgid "Read from-node ids from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:245 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:247 msgid "Read to-node ids from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:249 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:251 msgid "Read type ids from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:252 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:254 msgid "Read lane number from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:255 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:257 msgid "Read speed from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:258 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:260 msgid "Read custom edge length from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:261 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:263 msgid "Read total edge width from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:264 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:266 msgid "Read (non-unique) name from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:267 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:269 msgid "" "Distance threshold for determining whether distinct shapes are connected " "(used when from-id and to-id are not available)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:270 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:272 msgid "Add the list of field names as edge params" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:274 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:276 msgid "Uses edge type defaults on problems" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:279 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:281 msgid "Insert edges in both directions" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:283 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:285 msgid "Guess the proper projection" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:286 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:125 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:288 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:125 msgid "Use traditional axis order (lon, lat)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:291 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:293 msgid "Allow more vehicle classes by default" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:294 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:296 msgid "The edge lengths given in the DLR Navteq-file will be kept" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:300 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:302 msgid "Structure join offset" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:303 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:305 msgid "Use FLOAT as default speed" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:306 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:308 msgid "Factor for edge velocity" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:309 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:311 msgid "Writes lanes without an explicit speed set" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:314 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:95 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:316 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:95 msgid "Load language mappings from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:317 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:319 msgid "Uses priorities from types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:320 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:322 msgid "Uses lane numbers from types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:323 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:325 msgid "Uses speeds from types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:326 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:328 msgid "Sets connector speed" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:330 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:332 msgid "Sets connector lane number" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:333 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:335 msgid "Excludes connectors" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:337 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:339 msgid "Computes the number of lanes from the edges' capacities" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:340 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:342 msgid "Prints all warnings, some of which are due to VISUM misbehaviour" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:345 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:347 msgid "The factor for flow to no. lanes conversion" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:350 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:352 msgid "Imports all lane types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:352 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:354 msgid "Whether lane widths shall be ignored." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:354 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:356 msgid "" "The geometry resolution in m when importing curved geometries as line " "segments." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:356 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:358 msgid "" "Allow stop lines to be built beyond the start of the junction if the " "geometries allow so" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:358 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:360 msgid "" "The minimum lane width for determining start or end of variable-width lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:360 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:362 msgid "Import internal lane shapes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:362 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:364 msgid "Sets edge-id based on road-id and offset in m (legacy)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:364 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:366 msgid "Use custom lane shapes to compensate discarded lane types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:375 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:368 +msgid "" +"Use the OpenDRIVE controller information for the generated signal program" +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:379 msgid "" "Discard all railway signal information loaded from other formats than plain-" "xml" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:397 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:400 msgid "" "Cannot import network data without PROJ-Library. Please install package proj " "before building sumo" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:422 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:314 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:425 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:314 msgid "Environment variable SUMO_HOME is not set, using built in type maps." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:455 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:458 msgid "It is recommend to use option osm.crossings with osm.sidewalks" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:138 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:139 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:138 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:139 msgid "Could not open shape description '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:187 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:187 msgid "Needed field '%' (street-id) is missing." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:198 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:198 msgid "Needed field '%' (from node id) is missing." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:202 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:202 msgid "Needed field '%' (to node id) is missing." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:218 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:218 msgid "Unknown type '%' for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:233 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:233 #, c-format msgid "" "Required field '%' or '%' is missing (add fields or set option --shapefile." "use-defaults-on-failure)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:249 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:249 msgid "" "Road geometry must be of type 'linestring' or 'linestring25D' (found '%')" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:261 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:90 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:261 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:90 msgid "No coordinate system found and coordinates look already projected." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:264 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:93 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:264 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:93 msgid "Could not find geo coordinate system, assuming WGS84." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:277 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1488 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:600 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimAbstractEdge.cpp:44 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:171 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:277 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1562 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:600 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimAbstractEdge.cpp:44 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:171 msgid "Unable to project coordinates for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:290 -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:304 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:304 #, c-format msgid "Node '%' could not be added" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:312 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:312 #, c-format msgid "Edge '%' connects identical nodes, skipping." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:329 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:329 #, c-format -msgid "Edge '% is not unique." +msgid "Edge '%' is not unique." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:338 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:338 msgid "Edge '%' is not unique. Renaming subsequent edge to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:354 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:354 msgid "Could not create edge '%'. An edge with the same id already exists." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:368 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:368 msgid "Could not create edge '-%'. An edge with the same id already exists." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:382 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:331 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:382 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:331 msgid "SUMO was compiled without GDAL support." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:76 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:76 msgid "Loading nodes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:80 -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:105 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:80 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:105 #, c-format msgid "The file '%' could not be opened." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:90 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:90 msgid "Loading street names" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:95 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:95 msgid "Output will not contain street names because the file '%' was not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:100 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:100 msgid "Loading edges" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:114 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:114 msgid "Loading traffic lights" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:123 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:123 msgid "Loading prohibited manoeuvres" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:132 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:132 msgid "Loading connected lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:141 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:141 msgid "Loading time restrictions" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:210 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:210 msgid "Non-numerical value for intermediate status in node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:215 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:215 msgid "Non-numerical value for number of geometries in node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:222 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:222 msgid "Non-numerical value for x-position in node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:226 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:226 msgid "Non-numerical value for y-position in node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:230 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:321 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:230 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:321 msgid "Unable to project coordinates for node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:240 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:240 msgid "Could not add add node '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:242 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:260 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:379 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:474 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1350 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:242 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:267 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:386 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:481 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1424 msgid "Could not add node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:299 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:299 msgid "Missing version string in file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:309 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:309 msgid "Non-numerical value for form_of_way of link '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:316 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:316 msgid "Non-numerical value for brunnel_type of link '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:329 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:329 msgid "Non-numerical value for street_type of link '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:351 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:351 msgid "Non-numerical value for the SPEED_RESTRICTION of link '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:366 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:366 msgid "Non-numerical value for the number of lanes of link '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:420 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:538 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:596 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:759 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:420 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:545 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:603 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:760 msgid "Could not add edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:431 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:431 msgid "Missing column %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:442 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:442 msgid "Missing optional column % without default value." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:499 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:499 #, c-format msgid "The traffic light edge '%' could not be found." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:511 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:511 msgid "Could not allocate tls for '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:702 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:702 msgid "Could not parse YYYY-MM-DD date '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:747 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:747 msgid "Ignoring temporary prohibited manoeuvre (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:756 -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:801 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:756 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:801 msgid "Ignoring prohibition from unknown start edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:761 -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:806 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:761 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:806 msgid "Ignoring prohibition from unknown end edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:811 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:811 msgid "" "Ignoring invalid lane index '%' in connection from edge '%' with % lanes." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:816 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:816 msgid "Ignoring invalid lane index '%' in connection to edge '%' with % lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:821 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:821 msgid "Could not set loaded connection from '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:117 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:117 msgid "Could not open itsumo-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:217 -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:180 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:217 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:180 msgid "Could not add edge '%'. Probably declared twice." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:232 -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:142 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:703 -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:148 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:232 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:142 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:703 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:148 msgid "Unable to project coordinates for node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:237 -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:147 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:237 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:147 msgid "Could not add node '%'. Probably declared twice." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:240 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:240 msgid "Not numeric position information for node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:242 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:242 msgid "Missing data in node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:260 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:260 msgid "Missing node in laneset '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:263 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:263 msgid "Fond laneset-id '%' twice." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:277 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:277 msgid "Not numeric value in laneset '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:279 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:279 msgid "Missing data in laneset '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:290 msgid "Not numeric value in lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:292 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:292 msgid "Missing data in lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:202 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:202 msgid "Bogus capacity period format; requires 'hh:mm:ss'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:234 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:234 msgid "Could not find from-node for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:237 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:237 msgid "Could not find to-node for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:253 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:253 msgid "Could not add intermediate node to split loop edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:211 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:217 msgid "Could not find signal reference '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:274 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:312 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:281 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:319 msgid "Could not build node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:411 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:418 msgid "Ignoring road '%' without geometry." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:435 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:442 msgid "Could not apply laneOffsets for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:668 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:633 #, c-format msgid "Edge '%' has no lanes." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:704 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:674 #, c-format msgid "While setting connections: from-edge '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:714 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:684 #, c-format msgid "While setting connections: to-edge '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:740 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:743 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:710 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:713 msgid "Could not find fromEdge representation of '%' in connection '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:792 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:766 +#, c-format +msgid "" +"Controlling multiple junctions by the same controller '%' is currently not " +"implemented." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:787 #, c-format msgid "Edge '%' has signals but no lane sections." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:814 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:809 msgid "Ambiguous start of connection." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:831 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:826 msgid "Ambiguous end of connection." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:844 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:859 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:892 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:839 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:854 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:901 msgid "Could not find edge '%' for signal '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:881 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:875 +msgid "" +"The signaling of the connection from '%' to '%' (controller '%') is " +"ambiguous because it is overwritten signal '%' and with controller '%'." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:890 msgid "Found a traffic light signal on an unknown edge (original edge id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1287 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1319 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:921 +msgid "" +"The signaling of the connection from '%' to '%' (controller '%') is " +"ambiguous because it is overwritten with signal '%' and controller '%'." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1361 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1393 #, c-format msgid "While setting connections: incoming road '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1362 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1436 msgid "Could not find node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1455 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1529 msgid "Mismatched geometry for edge '%' between geometry segments % and %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1636 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1710 #, c-format msgid "The sections of edge '%' are not sorted properly." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1648 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1722 msgid "" "Almost duplicate s-value '%' for lane sections occurred at edge '%'; second " "entry was removed." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1691 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1765 msgid "Could not compute spiral geometry for edge '%' (cDot=% length=%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1740 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1814 msgid "Could not compute spiral geometry for edge '%' (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2012 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2086 msgid "" "Will discard access settings as both denied and allowed classes have been " "specified." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2320 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2392 msgid "Ignoring invalid pRange value '%' for road '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2420 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2617 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2470 +msgid "Ignoring missing signal '%' in controller '%'." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2508 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2704 #, c-format msgid "In laneLink-element: incoming road '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2516 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2603 msgid "Ignoring object without id at edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2534 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2621 msgid "Repeat without object at edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2588 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2675 msgid "Could not set projection (%). This can be ignored with --ignore-errors." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2592 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2679 #, c-format msgid "geoReference format '%' currently not supported" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2661 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2752 msgid "Mismatching parenthesis in geometry definition for road '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2665 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2756 msgid "Double geometry information for road '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:156 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:104 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:156 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:104 msgid "Could not open osm-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:168 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:168 #, c-format msgid "Found and substituted % osm nodes." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:192 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:192 msgid "Removing duplicate edges" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:207 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:207 #, c-format msgid "Removed % duplicate osm edges." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:241 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:241 msgid "Discarding way '%' because it has only % node(s)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:404 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:404 msgid "Could not insert junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:462 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:462 msgid "" "Discarding edge '%' which connects two identical nodes without geometry." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:574 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:574 msgid "New value for oneway found: %" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:606 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:607 msgid "Skipping edge '%' because it has zero lanes." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:626 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:627 msgid "Skipping edge '%' because it has speed %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:746 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:747 msgid "" "Forward lanes count for edge '%' ('%') is not matching the number of lanes " "defined in width:lanes:forward key ('%'). Using default width values." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:792 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:793 msgid "" "Backward lanes count for edge '%' ('%') is not matching the number of lanes " "defined in width:lanes:backward key ('%'). Using default width values." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:805 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:806 msgid "Could not add edge '-%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:893 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:894 msgid "" "Attribute 'id' in the definition of a node is not of type long long int." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:899 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:900 msgid "Tag element on wrong XML hierarchy level." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:941 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:942 msgid "Value of key '%' is invalid ('%') in node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:946 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:947 msgid "Value of key '%' is not numeric ('%') in node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1091 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:592 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1092 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:592 msgid "The referenced geometry information (ref='%') is not known" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1329 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1331 #, c-format msgid "Using default lane width for edge '%' as key '%' could not be parsed." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1332 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1334 #, c-format msgid "Using default lane width for edge '%' as value '%' could not be parsed." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1375 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1377 msgid "Using minimum lane number from list (%) for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1377 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1381 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1392 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1404 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1427 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1437 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1379 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1383 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1394 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1406 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1429 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1439 msgid "Value of key '%' is not numeric ('%') in edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1434 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1436 msgid "Ignoring track count % for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1605 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1607 msgid "Unknown lane use specifier '%' ignored for way '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1714 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1716 msgid "No node found for reference '%' in relation '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1776 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1778 msgid "Found unknown restriction type '%' in relation '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1814 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1816 msgid "Invalid color value '%' in relation %" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1832 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1834 msgid "No way found for reference '%' in relation '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1844 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1846 msgid "Ignoring restriction relation '%' with unknown type." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1848 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1850 msgid "Ignoring restriction relation '%' with unknown from-way." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1852 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1854 msgid "Ignoring restriction relation '%' with unknown to-way." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1856 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1858 msgid "Ignoring restriction relation '%' with unknown via." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1860 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1862 msgid "Ignoring restriction relation '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1885 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1887 #, c-format msgid "" "Platform '%' in relation: '%' is given as polygon, which currently is not " "supported." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1906 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1908 #, c-format msgid "" "Referenced platform: '%' in relation: '%' is corrupt. Probably OSM file is " "incomplete." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1945 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1947 #, c-format msgid "PT line '%' in relation % seems to be split, only keeping first part." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1978 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1980 msgid "" "PT line in relation % with no stops ignored. Probably OSM file is incomplete." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1984 -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:222 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1986 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:222 msgid "Ignoring duplicate PT line '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1999 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2001 msgid "Via-node '%' was not instantiated" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2005 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2007 #, c-format msgid "from-edge '%' of restriction relation could not be determined" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2009 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2011 #, c-format msgid "to-edge '%' of restriction relation could not be determined" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2039 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2041 msgid "direction of restriction relation could not be determined%" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2060 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2062 #, c-format msgid "Ambiguous way reference '%' in restriction relation" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2311 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2314 msgid "" "Discarding unknown compound '%' in type '%' (first occurrence for edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2315 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2320 msgid "Discarding unusable type '%' (first occurrence for edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2364 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2365 msgid "Discarding compound type '%' (first occurrence for edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2369 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2380 msgid "Adding new type '%' (first occurrence for edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2404 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2415 msgid "Ambiguous railway kilometrage direction for way '%' (assuming forward)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2411 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2422 msgid "Inconsistent railway kilometrage direction for way '%': % (skipping)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2456 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2467 msgid "Value of railway:position is not numeric ('%') in node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2548 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2559 msgid "" "Ignoring turn sign information for % lanes on edge % with % driving lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:118 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:118 msgid "Could not open sumo-net-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:146 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:146 #, c-format msgid "Edge's '%' from-node and to-node '%' are identical." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:165 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:165 msgid "Could not insert edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:191 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:787 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:318 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:191 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:787 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:318 #, c-format msgid "Unknown edge '%' given in connection." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:230 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:272 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:230 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:272 #, c-format msgid "The traffic light '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:288 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:290 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:292 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:294 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:288 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:292 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:294 #, c-format msgid "Edge '%' in prohibition was not built." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:345 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:345 #, c-format msgid "Deprecated vehicle class(es) '%' in input network." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:403 -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1683 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:403 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1688 #, c-format msgid "Unknown edge '%' in roundabout" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:520 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:520 #, c-format msgid "Edge '%' occurred at least twice in the input." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:542 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:542 msgid "Unmatched closing tag for tl-logic." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:545 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:545 msgid "Could not add program '%' for traffic light '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:615 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:615 msgid "Unknown spreadType '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:628 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:628 #, c-format msgid "Found lane '%' not within edge element." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:633 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:633 msgid "Renaming lane '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:699 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:699 msgid "" "Duplicate definition of stopOffset for edge %.\n" "Ignoring duplicate specification." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:705 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:705 msgid "" "Duplicate definition of lane's stopOffset on edge %.\n" "Ignoring duplicate specifications." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:742 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:742 #, c-format msgid "Junction '%' occurred at least twice in the input." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:839 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:839 msgid "Invalid lane index '%' for connection from '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:929 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:929 msgid "Definition of tl-logic '%' was not finished." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:941 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:127 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:941 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:127 msgid "Unknown traffic light type '%' for tlLogic '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:955 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:955 msgid "found phase without tl-logic" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:963 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:963 msgid "Phase duration for tl-logic '%/%' must be positive." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1019 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1019 msgid "Missing connection divider in prohibition attribute '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1026 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1030 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1026 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1030 msgid "Unknown edge prohibition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:205 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:205 msgid "Can not open visum-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:247 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:247 #, c-format msgid "Too short value line in % occurred." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:249 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:249 msgid "A value in % should be numeric but is not (id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:251 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:251 msgid "One of the needed values ('%') is missing in %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:326 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:326 msgid "Duplicate node occurred ('%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:344 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:344 msgid "Unable to project coordinates for district %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:350 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:350 msgid "Duplicate district occurred ('%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:368 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:368 msgid "Unable to project coordinates for point %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:458 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:475 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:458 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:475 msgid "Duplicate edge occurred ('%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:580 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:580 msgid "" "Incoming connector '%' will not be build - would be not connected to network." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:584 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:618 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:584 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:618 #, c-format msgid "The district '%' could not be built." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:594 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:629 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:594 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:629 msgid "A duplicate edge id occurred (ID='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:614 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:614 msgid "" "Outgoing connector '%' will not be build - would be not connected to network." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:665 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:671 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:720 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:665 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:671 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:720 msgid "There is no edge from node '%' to node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:698 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:698 msgid "Error in geometry description from node '%' to node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:757 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:757 msgid "A lane number for edge '%' is not numeric (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:762 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:762 msgid "A lane number for edge '%' is not positive (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:781 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:781 msgid "A lane length for edge '%' is not numeric (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:785 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:785 msgid "A lane length for edge '%' is not positive (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:846 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:846 msgid "Could not find split position for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:856 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:856 msgid "Ups - could not insert node!" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:917 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:917 #, c-format msgid "Could not find TLS '%' for setting the signal group." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:930 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:930 msgid "Ignoring SIGNALGRUPPEZUFSABBIEGER because LsaNr is not known" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:987 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:987 msgid "Unknown edge in TEILFLAECHENELEMENT" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1007 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1007 msgid "Unknown are for area part '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1069 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1069 msgid "" "Ignoring lane-to-lane connection (not yet implemented for this format " "version)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1107 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1107 msgid "A from-lane number for edge '%' is not numeric (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1112 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1112 msgid "A from-lane number for edge '%' is not positive (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1121 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1121 msgid "A to-lane number for edge '%' is not numeric (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1126 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1126 msgid "A to-lane number for edge '%' is not positive (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1142 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1142 msgid "" "A from-lane number for edge '%' is larger than the edge's lane number (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1146 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1146 msgid "" "A to-lane number for edge '%' is larger than the edge's lane number (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1162 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1162 msgid "Ignoring stopping place '%' without edge id" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1164 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1164 msgid "Ignoring stopping place '%' without node informatio" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1171 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1171 msgid "" "Could not find edge with from-node '%' and base id '%' for stopping place '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1176 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1176 msgid "Unexpected from-node '%' for edge '%' of stopping place '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1182 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1182 msgid "" "Could not find edge with to-node '%' and base id '%' for stopping place '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1187 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1187 msgid "Unexpected to-node '%' for edge '%' of stopping place '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1271 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1271 #, c-format msgid "The node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1508 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1508 msgid "Could not build connector node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1518 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1518 msgid " The from-node was not found within the net" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1521 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1521 msgid " The to-node was not found within the net" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1524 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1524 msgid " Both nodes are the same" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1539 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:431 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1539 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:431 msgid "Could not load VISUM language map from '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1551 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1551 #, c-format msgid "Unknown entry '%' in VISUM language map" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:103 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:103 msgid " Removed % traffic lights before loading plain-XML" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:112 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:112 msgid "No nodes loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:115 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:115 msgid "No edges loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:126 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:126 msgid " Import done:" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:128 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:128 #, c-format msgid " % districts loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:130 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:130 #, c-format msgid " % nodes loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:132 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:132 msgid " % types loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:134 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:134 #, c-format msgid " % edges loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:136 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:136 #, c-format msgid "The split of edges was performed % times." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:144 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:144 msgid "Proj projection parameters used: '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:165 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:165 #, c-format msgid "Deprecated vehicle class(es) '%' in input edge files." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:61 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:61 msgid "Invalid speed code (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:64 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:64 msgid "Non-numerical value for an edge's speed type occurred (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:90 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:90 msgid "Invalid lane number (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:94 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:94 msgid "Non-numerical value for an edge's lane number occurred (edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NITypeLoader.cpp:62 +#: D:\Repos\sumo/src\netimport\NITypeLoader.cpp:62 msgid "Could not open %-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIVisumTL.cpp:76 +#: D:\Repos\sumo/src\netimport\NIVisumTL.cpp:76 msgid "invalid node for traffic light '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:85 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:85 msgid "" "Target edge '%' is not connected with '%'; the connection cannot be reset." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:99 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:99 msgid "Edge '%' has no connection to lane '%'; the connection cannot be reset." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:267 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:267 msgid "Unable to project shape for connection from edge '%' to edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:275 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:275 msgid "Could not set loaded connection from lane '%' to lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:347 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:347 #, c-format msgid "Node '%' in crossing is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:356 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:356 msgid "No edges specified for crossing at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:364 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:364 #, c-format msgid "Edge '%' for crossing at node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:372 -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:450 -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:455 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:372 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:450 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:455 msgid "Edge '%' does not touch node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:385 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:385 #, c-format msgid "Crossing at controlled node '%' must be prioritized" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:390 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:390 msgid "Unable to project shape for crossing at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:403 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:403 msgid "Crossing with edges '%' already exists at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:435 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:435 msgid "No edges specified for walkingArea at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:441 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:441 #, c-format msgid "Edge '%' for walkingArea at node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:467 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:467 msgid "Unable to project shape for walkingArea at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:222 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:222 msgid "Duplicate edge id occurred ('%'); assuming overwriting is wished." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:227 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:227 #, c-format msgid "Edge '%' changed it's type; assuming type override is wished." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:315 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:315 msgid "Ignoring self-looped edge '%' at junction '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:393 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:393 #, c-format msgid "'%' is deprecated, please use '%' instead." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:403 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:403 msgid "Lane index is larger than number of lanes (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:447 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:447 msgid "Unable to project coordinates for lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:472 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:472 msgid "Ignoring 'split' because it cannot be assigned to an edge" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:481 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:481 msgid "Edge '%' has a split at invalid position %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:486 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:486 msgid "Edge '%' has already a split at position %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:520 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:520 msgid "Invalid split node id for edge '%' (from- and to-node are forbidden)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:558 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:558 msgid "The from-node is not given for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:570 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:570 msgid "The to-node is not given for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:616 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:616 msgid "Ignoring unknown spreadType '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:674 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:674 #, c-format msgid "Duplicate edge '%' occurred." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:683 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:683 msgid "An important information is missing in edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:705 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:705 #, c-format msgid "Unknown edge '%' in roundabout." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:151 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:151 msgid "Missing position (at node ID='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:184 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:184 msgid "Could not insert node though checked this before (id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:213 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:213 msgid "Unable to project node shape at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:321 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:321 msgid "Unknown traffic light type '%' for node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:330 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:330 msgid "Unknown traffic light layout '%' for node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:341 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:341 msgid "Changing traffic light type '%' to '%' for tl '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:153 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:153 #, c-format msgid "Edge '%' for stop '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:161 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:161 #, c-format msgid "Lane '%' for stop '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:173 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:173 msgid "Could not add public transport stop '%' (already exists)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:192 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:192 #, c-format msgid "Edge '%' for access to stop '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:253 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:253 msgid "Found route outside line definition" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:263 -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:283 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:263 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:283 #, c-format msgid "Edge '%' in route of line '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:302 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:302 msgid "Stop '%' within line '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:318 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:318 msgid "Stop '%' within route '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLShapeHandler.cpp:46 -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1744 +#: D:\Repos\sumo/src\netimport\NIXMLShapeHandler.cpp:46 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1749 #, c-format msgid "Lane '%' to place poi '%' on is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLShapeHandler.cpp:59 -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1757 +#: D:\Repos\sumo/src\netimport\NIXMLShapeHandler.cpp:59 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1762 #, c-format msgid "lane position % for poi '%' is not valid." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:114 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:114 msgid "Definition of tlLogic '%' was not finished." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:140 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:158 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:140 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:158 msgid "Cannot load traffic light program for unknown id '%', programID '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:331 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:331 msgid "Invalid lane index '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTypesHandler.cpp:85 +#: D:\Repos\sumo/src\netimport\NIXMLTypesHandler.cpp:85 msgid "Invalid lane spread type '%'. Using default 'right'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTypesHandler.cpp:114 +#: D:\Repos\sumo/src\netimport\NIXMLTypesHandler.cpp:114 msgid "Invalid lane index % for edge type '%' with % lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/NIImporter_Vissim.cpp:887 +#: D:\Repos\sumo/src\netimport\vissim\NIImporter_Vissim.cpp:887 msgid "Could not open vissim-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnection.cpp:241 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnection.cpp:241 msgid "Could not build connection between '%' and '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnection.cpp:248 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnection.cpp:248 msgid "Lane sizes differ for connection '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnectionCluster.cpp:496 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnectionCluster.cpp:496 msgid "NIVissimConnectionCluster:More than a single node" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnectionCluster.cpp:662 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnectionCluster.cpp:662 msgid "NIVissimConnectionCluster: how to get an edge's position?" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:205 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:205 #, c-format msgid "Could not build district '%' - edge '%' is missing." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:360 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:360 msgid "" "No streams assigned at district'%'.\n" " Using default speed 200km/h" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:377 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:526 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:377 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:526 #, c-format msgid "The referenced speed distribution '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:378 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:385 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:378 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:385 msgid ". Using default." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:143 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:143 msgid "Ugly split to prohibit '%' by '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:186 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:186 msgid "Could not prohibit '%' by '%'. Have not found disturbance." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:191 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:191 msgid "Could not prohibit '%' by '%'. Disturbance connects same node." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:210 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:262 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:210 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:262 #, c-format msgid "Would have to split edge '%' to build a prohibition" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:237 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:237 #, c-format msgid "Could not prohibit '%' - it was not built." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:243 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:243 msgid "Could not prohibit '%' by '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:307 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:307 msgid "NIVissimDisturbance: no connection" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:340 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:340 #, c-format msgid "Could not build % of % disturbances." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:439 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:439 msgid "Will not build edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:464 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:472 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:464 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:472 #, c-format msgid "Could not insert node '%' to nodes container." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:490 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:490 msgid "Could not build edge '%'; would connect same node." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:532 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:532 msgid "What about distribution '%' " msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:138 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:138 #, c-format msgid "Could not set tls signal at edge '%' - the edge was not built." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:152 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:152 msgid "Edge '%': Lanes were not assigned." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:375 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:375 msgid "" "Error on adding a traffic light\n" " Must be a multiple id ('%')" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:383 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:383 msgid "The signal group '%' could not be assigned to tl '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:392 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:392 msgid "The signal '%' could not be assigned to tl '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:399 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:399 msgid "Could not set % of % traffic lights." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:402 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:402 #, c-format msgid "Could not set % of % groups." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:405 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:405 #, c-format msgid "Could not set % of % signals." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Lichtsignalanlagendefinition.cpp:84 -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:93 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Lichtsignalanlagendefinition.cpp:84 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:93 #, c-format msgid "Unsupported LSA-Type '%' occurred." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgeberdefinition.cpp:73 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgeberdefinition.cpp:73 msgid "Omitting unknown traffic light." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:142 -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:170 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:142 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:170 msgid "VAS traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:154 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:154 msgid "VSPLUS traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:162 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:162 msgid "TRENDS traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:178 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:178 msgid "TL traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:186 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:186 msgid "POS traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:194 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:194 msgid "externally defined traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Simdauer.cpp:49 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Simdauer.cpp:49 msgid "Simulation duration could not be parsed" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:85 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:85 msgid "Trying to set the effort for the unknown edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:100 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:100 msgid "Trying to set the travel time for the unknown edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:129 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:129 msgid "Invalid network, no network version declared." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:133 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:133 msgid "" "Network contains internal links which are ignored. Vehicles will 'jump' " "across junctions and thus underestimate route lengths and travel times." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:163 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:163 msgid "State was written at a different time=% than the begin time %!" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:197 -#: /home/micha/programming/sumo/src/router/RONet.cpp:223 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:197 +#: D:\Repos\sumo/src\router\RONet.cpp:223 #, c-format msgid "A TAZ with id '%' already exists. Not building junction TAZ." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:228 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:228 msgid "" "Loading vehicles ahead of a state file is not supported. Correct --begin " "option or load vehicles with option --route-files" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:256 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:256 msgid "Loading weights from '%'..." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:285 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:285 msgid "Loading done." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:390 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:390 msgid "Wrong number of state file names!" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:425 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:425 msgid "Loading % from '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:445 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:445 #, c-format msgid "The route file '%' is not accessible." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLDetectorBuilder.cpp:526 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:461 +msgid "" +"LaneData requested for mesoscopic simulation but --meso-lane-queue is not " +"active. Falling back to edgeData." +msgstr "" + +#: D:\Repos\sumo/src\netload\NLDetectorBuilder.cpp:526 msgid "" "The netstate type 'hbefa' is deprecated. Please use the type 'emissions' " "instead." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:198 +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:198 msgid "Asymmetrical neigh lane '%' for lane '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:218 +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:218 #, c-format msgid "" "Internal edge '%' is not properly connected (probably a manually modified " "net.xml)." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:391 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:391 msgid "Unknown from-node '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:395 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:395 msgid "Unknown to-node '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:535 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:535 #, c-format msgid "" "Shape of lane '%' is broken.\n" " Can not build according edge." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:557 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:557 #, c-format msgid "Another lane with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:627 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:627 msgid "An unknown lane ('%') was tried to be set as incoming to junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:781 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:781 msgid "Traffic light '%' has unknown type '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:785 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:785 #, c-format msgid "" "Traffic light type '%' cannot be used in mesoscopic simulation. Using '%' as " "fallback." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:874 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:874 msgid "maxDur % should not be smaller than minDir % in phase of tlLogic %" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:889 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:889 msgid "Duplicate condition '%' in tlLogic '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:942 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:942 msgid "Invalid person mode '%' in E1 detector definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1001 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1001 msgid "" "VTypeProbes are deprecated. Use fcd-output devices (assigned to the vType) " "instead." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1061 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1061 msgid "Ignoring deprecated argument 'cont' for E2 detector '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1077 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1077 msgid "Invalid person mode '%' in E2 detector definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1091 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1091 msgid "" "Trying to specify detector's lane by the given id since the argument 'lane' " "is missing." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1131 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1131 msgid "" "Missing argument 'pos' for E2Detector '%'. Assuming detector start == lane " "start of lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1136 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1136 msgid "" "Missing argument 'endPos' for E2Detector '%'. Assuming detector end == lane " "end of lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1205 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1205 #, c-format msgid "" "Ignoring argument 'period' for E2Detector '%' since argument 'tl' was given." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1262 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1262 msgid "Invalid person mode '%' in E3 detector definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1341 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1341 msgid "Invalid person mode '%' in edgeData definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1365 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1365 msgid "Unknown edge '%' in edgeData definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1414 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1372 +msgid "" +"LaneData '%' requested for mesoscopic simulation but --meso-lane-queue is " +"not active. Falling back to edgeData." +msgstr "" + +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1419 #, c-format msgid "Unknown from-edge '%' in connection." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1420 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1425 #, c-format msgid "Unknown to-edge '%' in connection." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1425 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1430 msgid "Invalid lane index in connection from '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1506 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1511 #, c-format msgid "Unknown from-edge '%' in conflict." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1511 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1516 #, c-format msgid "Unknown to-edge '%' in connflict." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1516 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1521 msgid "Invalid lane index in conflict with '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1568 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1573 msgid "" "no valid geo projection loaded from network. fcd-output.geo will not work" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1596 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1601 msgid "Replacing junction-taz '%' with loaded TAZ." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1639 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1644 msgid "Skipping visualization of taz '%', polygon already exists." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1670 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1675 msgid "At district '%': succeeding edge '%' does not exist." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:116 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:116 msgid "Information about the number of nodes was missing." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:126 -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:143 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:126 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:143 msgid "Ignoring junction logic for junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:333 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:333 msgid "Invalid traffic light type '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:344 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:344 #, c-format msgid "Another logic with id '%' and programID '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:471 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:471 msgid "Traffic lights could not be built." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:75 +#: D:\Repos\sumo/src\netload\NLNetShapeHandler.cpp:163 +#, c-format +msgid "" +"% edges of the primary network did not occur in the alternative-net-file" +msgstr "" + +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:75 msgid "Vaporizers are deprecated. Use rerouters instead." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:84 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:84 msgid "Unknown edge ('%') referenced in a vaporizer." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:93 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:93 msgid "A vaporization begin time is negative (edge id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:97 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:97 msgid "A vaporization ends before it starts (edge id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:191 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:191 msgid "" "The overheadWireSegment '%' was not created as it is attached to internal " "lane. It will be build automatically." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:196 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:196 #, c-format msgid "" "The overheadWireSegment '%' not built as it is attached to internal lane. It " "will be build automatically." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:208 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:208 #, c-format msgid "" "The overheadWireSegment '%' has wrong position. Automatically set from 0 to " "the length of the lane." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:216 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:216 msgid "" "Overhead wire solver (Eigen) not compiled in, expect errors in overhead wire " "simulation" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:376 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:376 msgid "" "A connecting overhead wire start segment '%' defined for overhead wire clamp " "'%' is not assigned to the traction substation '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:378 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:378 msgid "" "A connecting overhead wire end segment '%' defined for overhead wire clamp " "'%' is not assigned to the traction substation '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:382 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:382 msgid "" "The overhead wire clamp '%' defined in an overhead wire section was not " "assigned to the substation '%'. Please define proper in additional files before defining overhead wire section." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:397 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:397 msgid "" "Cannot check circuit, overhead circuit solver support (Eigen) not compiled " "in." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:469 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:469 msgid "" "Not building overhead wire clamps, overhead wire solver support (Eigen) not " "compiled in." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:472 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:472 msgid "" "Ignoring overhead wire clamps, they make no sense when overhead wire circuit " "solver is off." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:526 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:526 msgid "Ignoring invalid access from non-pedestrian lane '%' in busStop '%'." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:54 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:54 msgid "The generated net will be written to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:59 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:59 msgid "Prefix of files to write plain xml nodes, edges and connections to" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:62 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:62 msgid "Write all lanes and their attributes even when they are not customized" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:69 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:69 msgid "Defines a prefix for edge and junction names" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:74 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:74 msgid "Write geo coordinates in plain-xml" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:79 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:79 msgid "The generated net will be written to FILE using Amitran format" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:82 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:82 msgid "The generated net will be written to FILE using MATsim format" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:85 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:85 msgid "The generated net will be written to FILE using OpenDRIVE format" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:88 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:88 msgid "" "The generated net will be written to dlr-navteq files with the given PREFIX" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:91 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:91 msgid "" "The network coordinates are written with the specified level of output " "precision" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:94 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:94 msgid "Street names will be included in the output (if available)" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:97 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:97 msgid "Writes original names, if given, as parameter" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:100 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:100 msgid "Writes street signs as POIs to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:104 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:104 msgid "Writes public transport stops to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:106 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:106 msgid "Writes public transport lines to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:108 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:108 msgid "Clean-up pt stops that are not served by any line" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:111 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:111 msgid "Writes parking areas to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:114 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:114 msgid "Analyze topology of the railway network" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:118 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:118 msgid "" "Write shapes that are embedded in the network input and that are not " "supported by polyconvert (OpenDRIVE)" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:123 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:123 msgid "" "Builds parameterized curves whenever the angular change between straight " "segments exceeds FLOAT degrees" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:127 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:127 msgid "Write lanes in lefthand networks on the left side (positive indices)" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:130 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:130 msgid "" "Match loaded shapes to the closest edge within FLOAT and export as road " "objects" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:154 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:153 msgid "OpenDRIVE export needs internal links computation." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:164 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:163 msgid "" "OpenDRIVE cannot represent oblique lane cuts and should use option " "'rectangular-lane-cut'." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:173 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:173 msgid "public transport lines output requires 'ptstop-output' to be set" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:177 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:177 msgid "" "'ptline-clean-up' only works in conjunction with 'ptline-output'. Ignoring " "invalid option." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:186 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:186 msgid "Writing network" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:91 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:91 msgid "" "DlrNavteq node data will be written in (floating point) cartesian coordinates" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:155 -#: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:162 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:155 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:162 msgid "Could not reconstruct shape for edge:'%' (%)." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:307 +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:313 msgid "Could not compute smooth shape for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:450 +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:456 msgid "" "Could not compute smooth shape from lane '%' to lane '%'. Use option " "'junctions.scurve-stretch' or increase radius of junction '%' to fix this." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:957 +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:963 msgid "" "Uneven stop line at lane '%' (dist=%) cannot be represented in OpenDRIVE." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:231 +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:235 msgid "" "Embedding TAZ-data inside the network is deprecated. Use option --taz-output " "instead" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:351 +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:458 msgid "Could not find bidi-connection for edge '%'" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:517 +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:545 #, c-format msgid "Lane '%' has a maximum allowed speed of 0." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_XML.cpp:88 -#: /home/micha/programming/sumo/src/polyconvert/PCPolyContainer.cpp:105 +#: D:\Repos\sumo/src\netwrite\NWWriter_XML.cpp:88 +#: D:\Repos\sumo/src\polyconvert\PCPolyContainer.cpp:105 msgid "" "Ignoring option \"proj.plain-geo\" because no geo-conversion has been defined" msgstr "" -#: /home/micha/programming/sumo/src/od/ODAmitranHandler.cpp:48 -msgid "Invalid duration for timeSlice starting %." +#: D:\Repos\sumo/src\od2trips_main.cpp:80 +msgid "Loads TAZ (districts; also from networks) from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/od/ODDistrictCont.cpp:72 -#, c-format -msgid "Could not access network file '%' to load." +#: D:\Repos\sumo/src\od2trips_main.cpp:102 +msgid "Writes trip definitions into FILE" msgstr "" -#: /home/micha/programming/sumo/src/od/ODDistrictHandler.cpp:130 -msgid "'probability' must be positive (in definition of % '%')." +#: D:\Repos\sumo/src\od2trips_main.cpp:105 +msgid "Writes flow definitions into FILE" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:80 -msgid "Missing origin '%' and destination '%' (% vehicles)." +#: D:\Repos\sumo/src\od2trips_main.cpp:108 +msgid "Writes probabilistic flow instead of evenly spaced flow" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:86 -msgid "Missing origin '%' (% vehicles)." +#: D:\Repos\sumo/src\od2trips_main.cpp:111 +msgid "Writes pedestrians instead of vehicles" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:91 -msgid "Missing destination '%' (% vehicles)." +#: D:\Repos\sumo/src\od2trips_main.cpp:114 +msgid "Writes persontrips instead of vehicles" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:97 -#, c-format -msgid "District '%' has no source." +#: D:\Repos\sumo/src\od2trips_main.cpp:117 +msgid "Add modes attribute to personTrips" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:101 -#, c-format -msgid "District '%' has no sink." +#: D:\Repos\sumo/src\od2trips_main.cpp:124 +msgid "Writes trips between junctions" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:193 -msgid "" -"Cannot find different source and sink edge for origin '%' and destination " -"'%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:129 +#: D:\Repos\sumo/src\router\ROFrame.cpp:116 +msgid "Defines the begin time; Previous trips will be discarded" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:364 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:384 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:410 +#: D:\Repos\sumo/src\od2trips_main.cpp:132 +#: D:\Repos\sumo/src\router\ROFrame.cpp:119 msgid "" -"Flow density of % vehicles per second, cannot be represented with a simple " -"probability. Falling back to even spacing." +"Defines the end time; Later trips will be discarded; Defaults to the maximum " +"time that SUMO can represent" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:434 -msgid "End of file while reading %." +#: D:\Repos\sumo/src\od2trips_main.cpp:140 +msgid "Spreads trips uniformly over each time period" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:461 -msgid "Broken period definition '%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:143 +msgid "Always choose source and sink edge which are not identical" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:475 -msgid "Broken factor: '%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:149 +msgid "Defines the prefix for vehicle names" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:509 -#, c-format -msgid "Missing line with % district names." +#: D:\Repos\sumo/src\od2trips_main.cpp:162 +msgid "Disable console output of current time step" msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:519 -msgid "Missing line for district %." +#: D:\Repos\sumo/src\od2trips_main.cpp:193 +msgid "No TAZ input file (-n) specified." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:533 -msgid "More entries than districts found." +#: D:\Repos\sumo/src\od2trips_main.cpp:197 +msgid "No input specified." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:538 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:586 -msgid "Not numeric vehicle number in line '%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:201 +msgid "No trip table output file (-o) or flow-output is specified." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:584 -msgid "Missing at least one information in line '%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:205 +msgid "Only one of the the options 'pedestrians' and 'persontrips' may be set." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:647 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:154 -msgid "Could not open '%'." +#: D:\Repos\sumo/src\od2trips_main.cpp:248 +msgid "" +"Importer of O/D-matrices for the microscopic, multi-modal traffic simulation " +"SUMO." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:658 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:664 -#, c-format -msgid "'%' does not contain the needed information about the time described." +#: D:\Repos\sumo/src\od2trips_main.cpp:270 +msgid "You must supply a TAZ, network or districts file ('-n')." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:674 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:687 -#, c-format -msgid "Could not access matrix file '%' to load." +#: D:\Repos\sumo/src\od2trips_main.cpp:276 +msgid "No districts loaded." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:714 -#, c-format -msgid "Could not access route file '%' to load." +#: D:\Repos\sumo/src\od2trips_main.cpp:282 +msgid "No vehicles loaded." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:731 -msgid "Assuming 24 entries for a day timeline, but got %." +#: D:\Repos\sumo/src\od\ODAmitranHandler.cpp:48 +msgid "Invalid duration for timeSlice starting %." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:741 -msgid "Broken time line definition: missing a value in '%'." +#: D:\Repos\sumo/src\od\ODDistrictCont.cpp:72 +#, c-format +msgid "Could not access network file '%' to load." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:80 -msgid "Loads TAZ (districts; also from networks) from FILE(s)" +#: D:\Repos\sumo/src\od\ODDistrictHandler.cpp:130 +msgid "'probability' must be positive (in definition of % '%')." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:102 -msgid "Writes trip definitions into FILE" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:80 +msgid "Missing origin '%' and destination '%' (% vehicles)." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:105 -msgid "Writes flow definitions into FILE" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:86 +msgid "Missing origin '%' (% vehicles)." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:108 -msgid "Writes probabilistic flow instead of evenly spaced flow" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:91 +msgid "Missing destination '%' (% vehicles)." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:111 -msgid "Writes pedestrians instead of vehicles" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:97 +#, c-format +msgid "District '%' has no source." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:114 -msgid "Writes persontrips instead of vehicles" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:101 +#, c-format +msgid "District '%' has no sink." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:117 -msgid "Add modes attribute to personTrips" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:193 +msgid "" +"Cannot find different source and sink edge for origin '%' and destination " +"'%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:124 -msgid "Writes trips between junctions" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:364 D:\Repos\sumo/src\od\ODMatrix.cpp:384 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:410 +msgid "" +"Flow density of % vehicles per second, cannot be represented with a simple " +"probability. Falling back to even spacing." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:129 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:116 -msgid "Defines the begin time; Previous trips will be discarded" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:434 +msgid "End of file while reading %." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:132 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:119 -msgid "" -"Defines the end time; Later trips will be discarded; Defaults to the maximum " -"time that SUMO can represent" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:461 +msgid "Broken period definition '%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:140 -msgid "Spreads trips uniformly over each time period" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:475 +msgid "Broken factor: '%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:143 -msgid "Always choose source and sink edge which are not identical" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:509 +#, c-format +msgid "Missing line with % district names." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:149 -msgid "Defines the prefix for vehicle names" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:519 +msgid "Missing line for district %." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:162 -msgid "Disable console output of current time step" +#: D:\Repos\sumo/src\od\ODMatrix.cpp:533 +msgid "More entries than districts found." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:193 -msgid "No TAZ input file (-n) specified." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:538 D:\Repos\sumo/src\od\ODMatrix.cpp:586 +msgid "Not numeric vehicle number in line '%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:197 -msgid "No input specified." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:584 +msgid "Missing at least one information in line '%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:201 -msgid "No trip table output file (-o) or flow-output is specified." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:647 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:154 +msgid "Could not open '%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:205 -msgid "Only one of the the options 'pedestrians' and 'persontrips' may be set." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:658 D:\Repos\sumo/src\od\ODMatrix.cpp:664 +#, c-format +msgid "'%' does not contain the needed information about the time described." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:248 -msgid "" -"Importer of O/D-matrices for the microscopic, multi-modal traffic simulation " -"SUMO." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:674 D:\Repos\sumo/src\od\ODMatrix.cpp:687 +#, c-format +msgid "Could not access matrix file '%' to load." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:270 -msgid "You must supply a TAZ, network or districts file ('-n')." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:714 +#, c-format +msgid "Could not access route file '%' to load." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:276 -msgid "No districts loaded." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:731 +msgid "Assuming 24 entries for a day timeline, but got %." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:282 -msgid "No vehicles loaded." +#: D:\Repos\sumo/src\od\ODMatrix.cpp:741 +msgid "Broken time line definition: missing a value in '%'." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:471 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:168 +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:471 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:168 msgid "Could not load '%'." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:491 +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:491 msgid "Loaded decal '%' with bounding box % %." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:597 +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:597 msgid "Could not load '%'. The model is replaced by a cone shape." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGManipulator.cpp:257 +#: D:\Repos\sumo/src\osgview\GUIOSGManipulator.cpp:257 #, c-format msgid "Currently in % camera mode. Press [F] to switch." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:166 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:166 msgid "Could not load traffic light files." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:454 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:454 msgid "Invalid link index in '%'." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:456 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:456 msgid "Unknown traffic light in '%'." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:992 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:992 msgid " (No projection defined)" -msgstr "" +msgstr " (nessuna proiezione definita)" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:996 -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:997 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:996 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:997 msgid "N/A" -msgstr "" +msgstr "non disponibile" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:107 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:208 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:263 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:341 -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:240 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:107 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:208 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:263 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:341 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:240 msgid "Unable to project coordinates for polygon '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:184 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:184 msgid "Missing id under '%'" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:232 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:265 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:140 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:299 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:271 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:385 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:232 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:265 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:140 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:299 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:271 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:385 msgid "Unable to project coordinates for POI '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:300 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:300 msgid "Unsupported shape type occurred (id='%')." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:71 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:71 msgid "Could not open dlr-navteq-poi-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:86 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:86 msgid "Could not open dlr-navteq-poly-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:128 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:128 msgid "Invalid x coordinate for POI '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:132 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:132 msgid "Invalid y coordinate for POI '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:137 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:137 msgid "The name of a POI is missing." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:191 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:191 msgid "Invalid dlr-navteq-polygon - line: '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:220 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:220 #, c-format msgid "The polygon '%' is empty." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:224 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:224 msgid "The name of a polygon is missing; it will be discarded." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:157 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:157 msgid "Could not import polygon from relation '%' (missing ways)" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:212 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:212 msgid "" "Could not import polygon from relation '%' (name:% reason: found gap of %m " "to way '%')\n" " Total length of remaining ways: %m." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:230 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:230 msgid "Assembled polygon from relation '%' (name:%)" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:254 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:254 #, c-format msgid "Polygon '%' has no shape." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:114 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:114 msgid "Could not open visum-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:149 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:149 msgid "Unable to project coordinates for point '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderXML.cpp:63 +#: D:\Repos\sumo/src\polyconvert\PCLoaderXML.cpp:63 msgid "Could not open xml-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:55 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:55 msgid "Could not open net-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:71 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:71 msgid "Could not find projection parameter in net." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCTypeDefHandler.cpp:71 +#: D:\Repos\sumo/src\polyconvert\PCTypeDefHandler.cpp:71 msgid "Could not add polygon type '%' (probably the id is already used)." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:81 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:81 msgid "Loads SUMO-network FILE as reference to offset and projection" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:85 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:85 msgid "" "Reads polygons from FILE assuming they're coded in DLR-Navteq (Elmar)-format" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:87 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:87 msgid "" "Reads pois from FILE+ assuming they're coded in DLR-Navteq (Elmar)-format" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:92 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:92 msgid "Reads polygons from FILE assuming it's a Visum-net" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:100 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:100 msgid "Reads pois and shapes from FILE assuming they're coded in XML" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:105 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:105 msgid "Reads pois from FILE+ assuming they're coded in OSM" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:107 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:107 msgid "The type will be made of the key-value - pair" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:109 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:109 msgid "The id will be set from the given 'name' attribute" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:111 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:111 msgid "" "If FLOAT >= 0, assemble one polygon from all ways of a relation if they all " "connect with gaps below FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:118 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:118 msgid "Reads shapes from shapefiles FILE+" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:122 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:122 msgid "Guesses the shapefile's projection" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:130 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:130 msgid "Defines in which column the id can be found" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:134 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:134 msgid "Defines which columns form the type id (comma separated list)" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:137 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:137 msgid "A running number will be used as id" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:140 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:140 msgid "Extract all additional columns as params" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:143 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:143 msgid "" "[auto|true|false]. Forces the 'fill' status to the given value. Default " "'auto' tries to determine it from the data type" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:148 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:148 msgid "Reads types from FILE" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:156 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:156 msgid "Write generated polygons/pois to FILE" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:159 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:159 msgid "Write generated polygons/pois to a dlr-tdp file with the given prefix" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:165 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:169 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:172 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:177 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:181 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:165 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:169 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:172 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:177 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:181 msgid "Pruning" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:165 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:165 msgid "Enables pruning on net boundaries" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:169 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:169 msgid "" "Uses FLOAT,FLOAT,FLOAT,FLOAT as offset definition added to the net boundary. " "Positive values grow the boundary on all sides while negative values shrink " "it." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:172 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:172 msgid "Uses STR as pruning boundary" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:177 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:177 msgid "Items in STR will be kept though out of boundary" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:181 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:181 msgid "Items with names in STR[] will be removed" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:196 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:196 msgid "Imports all attributes as key/value pairs" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:202 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:202 msgid "" "Adds FLOAT to the layer value for each poi (i.e. to raise it above polygons)" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:206 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:206 msgid "Sets STR as default color" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:209 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:209 msgid "Sets STR as default prefix" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:212 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:212 msgid "Sets STR as default type" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:215 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:215 msgid "Fills polygons by default" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:218 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:218 msgid "Sets FLOAT as default layer" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:221 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:221 msgid "Sets default action to discard" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:225 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:225 msgid "Write geo coordinates in output" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:232 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:232 msgid "" "Importer of polygons and POIs for the microscopic, multi-modal traffic " "simulation SUMO." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:285 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:285 msgid "In order to prune the input on the net, you have to supply a network." msgstr "" -#: /home/micha/programming/sumo/src/router/ROEdge.cpp:204 +#: D:\Repos\sumo/src\router\ROEdge.cpp:204 msgid "" "No interval matches passed time=% in edge '%'.\n" " Using edge's length / max speed." msgstr "" -#: /home/micha/programming/sumo/src/router/ROEdge.cpp:230 +#: D:\Repos\sumo/src\router\ROEdge.cpp:230 msgid "" "No interval matches passed time=% in edge '%'.\n" " Using edge's length / edge's speed." msgstr "" -#: /home/micha/programming/sumo/src/router/ROEdge.cpp:453 +#: D:\Repos\sumo/src\router\ROEdge.cpp:453 msgid "" "Option weights.priority-factor does not take effect because all edges have " "the same priority." msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:47 +#: D:\Repos\sumo/src\router\ROFrame.cpp:47 msgid "Write generated routes to FILE" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:53 +#: D:\Repos\sumo/src\router\ROFrame.cpp:53 msgid "Write used vehicle types into separate FILE" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:56 +#: D:\Repos\sumo/src\router\ROFrame.cpp:56 msgid "Keep vTypeDistribution ids when writing vehicles and their types" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:63 +#: D:\Repos\sumo/src\router\ROFrame.cpp:63 msgid "Use FILE as SUMO-network to route on" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:66 +#: D:\Repos\sumo/src\router\ROFrame.cpp:66 msgid "Write vehicles that reference routes by their id" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:73 +#: D:\Repos\sumo/src\router\ROFrame.cpp:73 msgid "Read additional network data (districts, bus stops) from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:87 +#: D:\Repos\sumo/src\router\ROFrame.cpp:87 msgid "Read sumo routes, alternatives, flows, and trips from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:101 +#: D:\Repos\sumo/src\router\ROFrame.cpp:101 msgid "Read network weights from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:104 +#: D:\Repos\sumo/src\router\ROFrame.cpp:104 msgid "Read lane-based network weights from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:125 +#: D:\Repos\sumo/src\router\ROFrame.cpp:125 msgid "Continue if a route could not be build" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:128 +#: D:\Repos\sumo/src\router\ROFrame.cpp:128 msgid "Prune the number of alternatives to INT" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:131 +#: D:\Repos\sumo/src\router\ROFrame.cpp:131 msgid "Use origin and destination zones (districts) for in- and output" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:139 +#: D:\Repos\sumo/src\router\ROFrame.cpp:139 msgid "Assume input is unsorted" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:148 +#: D:\Repos\sumo/src\router\ROFrame.cpp:148 msgid "generate random departure times for flow input" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:151 +#: D:\Repos\sumo/src\router\ROFrame.cpp:151 msgid "" "Remove loops within the route; Remove turnarounds at start and end of the " "route" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:154 +#: D:\Repos\sumo/src\router\ROFrame.cpp:154 msgid "Tries to correct a false route" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:157 +#: D:\Repos\sumo/src\router\ROFrame.cpp:157 msgid "" "Tries to correct an invalid starting edge by using the first usable edge " "instead" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:160 +#: D:\Repos\sumo/src\router\ROFrame.cpp:160 msgid "" "Tries to correct an invalid destination edge by using the last usable edge " "instead" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:163 +#: D:\Repos\sumo/src\router\ROFrame.cpp:163 msgid "" "Maximum distance when mapping input coordinates (fromXY etc.) to the road " "network" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:166 +#: D:\Repos\sumo/src\router\ROFrame.cpp:166 msgid "Match positions to junctions instead of edges" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:169 +#: D:\Repos\sumo/src\router\ROFrame.cpp:169 msgid "Aggregate routing queries with the same origin" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:173 +#: D:\Repos\sumo/src\router\ROFrame.cpp:173 msgid "The number of parallel execution threads used for routing" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:177 +#: D:\Repos\sumo/src\router\ROFrame.cpp:177 msgid "" "Select among routing algorithms ['dijkstra', 'astar', 'CH', 'CHWrapper']" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:181 +#: D:\Repos\sumo/src\router\ROFrame.cpp:181 msgid "" "Comma separated list of param keys to compare for additional restrictions" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:186 +#: D:\Repos\sumo/src\router\ROFrame.cpp:186 msgid "Interpolate edge weights at interval boundaries" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:190 +#: D:\Repos\sumo/src\router\ROFrame.cpp:190 msgid "Expand the end of the last loaded weight interval to infinity" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:194 +#: D:\Repos\sumo/src\router\ROFrame.cpp:194 msgid "" "Apply the given time penalty when computing routing costs for minor-link " "internal lanes" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:217 +#: D:\Repos\sumo/src\router\ROFrame.cpp:217 msgid "Defaults will override given values" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:222 +#: D:\Repos\sumo/src\router\ROFrame.cpp:222 msgid "Defines how often statistics shall be printed" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:233 +#: D:\Repos\sumo/src\router\ROFrame.cpp:233 msgid "No output specified." msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:238 +#: D:\Repos\sumo/src\router\ROFrame.cpp:238 msgid "A positive number of alternatives must be enabled." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:62 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:64 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:83 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:85 +#: D:\Repos\sumo/src\router\ROLoader.cpp:62 +#: D:\Repos\sumo/src\router\ROLoader.cpp:64 +#: D:\Repos\sumo/src\router\ROLoader.cpp:83 +#: D:\Repos\sumo/src\router\ROLoader.cpp:85 msgid "Trying to set a weight for the unknown edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:114 +#: D:\Repos\sumo/src\router\ROLoader.cpp:114 #, c-format msgid "The network file '%' is not accessible." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:140 +#: D:\Repos\sumo/src\router\ROLoader.cpp:140 #, c-format msgid "The additional file '%' is not accessible." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:217 +#: D:\Repos\sumo/src\router\ROLoader.cpp:217 msgid "Routes found between time steps % and %." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:243 +#: D:\Repos\sumo/src\router\ROLoader.cpp:243 msgid "The loader for % from file '%' could not be initialised (%)." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:281 -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:158 +#: D:\Repos\sumo/src\router\ROLoader.cpp:281 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:183 msgid "failed." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:162 +#: D:\Repos\sumo/src\router\RONet.cpp:162 #, c-format msgid "The edge '%' occurs at least twice." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:176 +#: D:\Repos\sumo/src\router\RONet.cpp:176 #, c-format msgid "The TAZ '%' occurs at least twice." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:199 +#: D:\Repos\sumo/src\router\RONet.cpp:199 #, c-format msgid "The TAZ '%' is unknown." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:204 +#: D:\Repos\sumo/src\router\RONet.cpp:204 #, c-format msgid "The edge '%' for TAZ '%' is unknown." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:259 +#: D:\Repos\sumo/src\router\RONet.cpp:259 #, c-format msgid "The bidi edge '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:270 +#: D:\Repos\sumo/src\router\RONet.cpp:270 #, c-format msgid "The node '%' occurs at least twice." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:279 +#: D:\Repos\sumo/src\router\RONet.cpp:279 msgid "The % '%' occurs at least twice." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:446 +#: D:\Repos\sumo/src\router\RONet.cpp:446 #, c-format msgid "The vehicle type '%' occurs at least twice." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:498 +#: D:\Repos\sumo/src\router\RONet.cpp:498 msgid "Requesting departure time for unknown vehicle '%'" msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:528 +#: D:\Repos\sumo/src\router\RONet.cpp:528 #, c-format msgid "Another person with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:637 +#: D:\Repos\sumo/src\router\RONet.cpp:637 msgid "" "Bulking different maximum speeds ('%' and '%') may lead to suboptimal routes." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:640 +#: D:\Repos\sumo/src\router\RONet.cpp:640 msgid "" "Bulking different vehicle classes ('%' and '%') may lead to invalid routes." msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:137 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:137 msgid "Unknown node '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:243 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:243 msgid "Ignoring lane '%' with broken shape." msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:280 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:280 msgid "Skipping isolated junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:299 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:299 #, c-format msgid "unknown from-edge '%' in connection" msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:302 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:302 #, c-format msgid "unknown to-edge '%' in connection" msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:316 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:316 #, c-format msgid "unknown via-edge '%' in connection" msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:368 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:368 msgid "Ignoring invalid access from non-pedestrian edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteDef.cpp:123 +#: D:\Repos\sumo/src\router\RORouteDef.cpp:123 msgid "Repaired route of vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteDef.cpp:222 +#: D:\Repos\sumo/src\router\RORouteDef.cpp:222 msgid "" "There are stop edges which were not part of the original route for vehicle " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteDef.cpp:237 +#: D:\Repos\sumo/src\router\RORouteDef.cpp:237 msgid "Edge '%' not connected to edge '%' for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:200 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:200 msgid "Triggered departure for person '%' requires starting with a ride." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:202 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:202 msgid "" "Triggered departure for container '%' requires starting with a transport." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:224 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:224 #, c-format msgid "Found % outside container element" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:338 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:338 msgid "No probability for route %, using default." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:493 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:493 msgid "Ids of internal route distributions are ignored (vehicle '%')." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:609 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:609 msgid "Discarding person '%' because her plan is empty" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:635 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:635 msgid "Discarding personFlow '%' because their plan is empty" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:643 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:643 #, c-format msgid "probabilistic personFlow '%' must specify end time" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:716 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:716 msgid "Discarding container '%' because it's plan is empty" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:733 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:733 msgid "Discarding containerFlow '%' because it's plan is empty" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1036 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1041 msgid "Triggered departure for container '%' requires a unique lines value." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1076 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1081 msgid "Cannot convert geo-positions because the network has no geo-reference" msgstr "" -#: /home/micha/programming/sumo/src/sumo_main.cpp:49 +#: D:\Repos\sumo/src\sumo_main.cpp:49 msgid "Another interrupt signal received, hard exit." msgstr "" -#: /home/micha/programming/sumo/src/sumo_main.cpp:52 +#: D:\Repos\sumo/src\sumo_main.cpp:52 msgid "Interrupt signal received, trying to exit gracefully." msgstr "" -#: /home/micha/programming/sumo/src/sumo_main.cpp:86 +#: D:\Repos\sumo/src\sumo_main.cpp:86 msgid "A microscopic, multi-modal traffic simulation." -msgstr "" +msgstr "Una simulazione microscopica e multimodale del traffico." -#: /home/micha/programming/sumo/src/sumo_main.cpp:114 -#: /home/micha/programming/sumo/src/sumo_main.cpp:123 +#: D:\Repos\sumo/src\sumo_main.cpp:114 D:\Repos\sumo/src\sumo_main.cpp:123 msgid "Quitting (on error)." -msgstr "" +msgstr "Uscendo (dopo un errore)." -#: /home/micha/programming/sumo/src/sumo_main.cpp:126 +#: D:\Repos\sumo/src\sumo_main.cpp:126 msgid "Quitting (on unknown error)." msgstr "" -#: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:76 +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:76 msgid "Unknown actor configuration '%' for vehicle '%'!" msgstr "" -#: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:94 +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:94 msgid "Motion state for unknown vehicle '%'!" msgstr "" -#: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:136 +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:136 msgid "Acceleration information is missing; try running with --compute-a." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:62 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:62 msgid "Computes emissions by driving a time line using SUMO's emission models." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:70 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:70 msgid "Defines the file to read the driving cycle from." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:74 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:74 msgid "Skips the first NUM lines." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:78 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:78 msgid "Defines the entry separator." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:83 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:83 msgid "" "Defines the netstate, route and trajectory files to read the driving cycles " "from." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:86 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:86 msgid "Load emission parameters (vTypes) from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:89 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:89 msgid "Defines for which emission class the emissions shall be generated. " msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:92 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:92 msgid "Defines the vehicle type to use for emission parameters." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:96 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:96 msgid "" "If set, the acceleration is computed instead of being read from the file. " msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:99 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:99 msgid "" "If set, the acceleration for time t is computed from v(t+1) - v(t) instead " "of v(t) - v(t-1). " msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:102 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:102 msgid "If set, the acceleration for time t is set to 0 if the speed is 0. " msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:105 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:105 msgid "If set, the first line of the read file is skipped." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:108 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:108 msgid "If set, the given speed is interpreted as being given in km/h." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:111 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:111 msgid "If set, the fourth column is read and used as slope (in deg)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:114 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:114 msgid "" "Sets a global slope (in deg) that is used if the file does not contain slope " "information." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:119 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:119 msgid "Defines the file to write the emission cycle results into." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:122 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:122 msgid "Defines the attributes to write." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:125 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:125 msgid "Save the emission values of each vehicle in XML" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:129 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:129 msgid "Save the aggregated and normed emission values of each vehicle in CSV" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:145 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:145 msgid "Defines the begin time in seconds;" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:148 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:148 msgid "Defines the end time in seconds;" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:152 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:152 msgid "Not writing anything." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:169 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:169 msgid "Either a timeline or a netstate / amitran file must be given." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:172 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:172 msgid "The output file must be given." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:185 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:185 #, c-format msgid "Unknown attribute '%' to write in output." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:213 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:213 msgid "" "Option --vtype requires option --additional-files for loading vehicle types" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:225 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:225 #, c-format msgid "Vehicle type '%' is not defined" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:245 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:245 msgid "Unreadable file '%'." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:276 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:276 msgid "Missing an entry in line '%'." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:278 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:278 msgid "Not numeric entry in line '%'." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:58 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:58 msgid "Writing map of '%' into '%'." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:62 -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:291 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:62 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:291 #, c-format msgid "Could not open file '%' for writing." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:86 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:86 msgid "Builds and writes an emissions map for SUMO's emission models." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:92 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:92 msgid "If set, maps for all available emissions are written." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:95 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:95 msgid "Defines the name of the emission class to generate the map for." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:98 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:98 msgid "Defines the minimum velocity boundary of the map to generate (in m/s)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:100 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:100 msgid "Defines the maximum velocity boundary of the map to generate (in m/s)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:102 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:102 msgid "Defines the velocity step size (in m/s)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:104 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:104 msgid "" "Defines the minimum acceleration boundary of the map to generate (in m/s^2)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:106 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:106 msgid "" "Defines the maximum acceleration boundary of the map to generate (in m/s^2)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:108 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:108 msgid "Defines the acceleration step size (in m/s^2)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:110 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:110 msgid "Defines the minimum slope boundary of the map to generate (in deg)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:112 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:112 msgid "Defines the maximum slope boundary of the map to generate (in deg)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:114 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:114 msgid "Defines the slope step size (in deg)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:119 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:119 msgid "" "Defines the file (or the path if --iterate was set) to write the map(s) into." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:159 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:159 msgid "The emission class (-e) must be given." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:162 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:162 msgid "The output file (-o) must be given." msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:314 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:314 msgid "Starting TraCI without using internal lanes!" msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:320 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:320 msgid "***Starting server on port % ***" msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:323 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:323 #, c-format msgid " waiting for % clients..." msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:347 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:347 msgid " client connected" msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:480 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:480 msgid "" "Execution order (libsumo::CMD_SETORDER) was not set for all TraCI clients in " "pre-execution phase." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/FileHelpers.cpp:73 +#: D:\Repos\sumo/src\utils\common\FileHelpers.cpp:73 msgid "Cannot get file attributes for file '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/FileHelpers.h:318 +#: D:\Repos\sumo/src\utils\common\FileHelpers.h:318 msgid "Invalid follower index in route '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/FileHelpers.h:328 +#: D:\Repos\sumo/src\utils\common\FileHelpers.h:328 #, c-format msgid "An edge within the route '%' is not known!" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:153 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:178 #, c-format msgid "done (%ms)." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:155 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:180 msgid "done." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:253 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:278 msgid "Could not set locale to '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:258 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:283 msgid "" "Environment variable SUMO_HOME is not set, could not find localized messages." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:264 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:289 msgid "Could not find localized messages." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:87 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:87 msgid "Invalid conversion from string to double (%)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:90 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:90 msgid "Invalid conversion from string to double (empty value)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:109 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:109 msgid "Invalid conversion from string to doubles (%)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:112 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:112 msgid "Invalid conversion from string to doubles (empty value)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:205 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:205 msgid "Invalid format of parameter (%)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:230 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:230 msgid "Invalid format of attribute '%'. Attribute must start with a letter" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:237 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:237 msgid "Invalid format of attribute (%)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/RandHelper.cpp:65 +#: D:\Repos\sumo/src\utils\common\RandHelper.cpp:65 msgid "Initialises the random number generator with the current system time" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/RandHelper.cpp:69 +#: D:\Repos\sumo/src\utils\common\RandHelper.cpp:69 msgid "Initialises the random number generator with the given value" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:187 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:187 msgid "Simultaneous specification of vClasses and exceptions is not allowed" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:191 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:191 msgid "StopOffset requires an offset value" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:341 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:341 #, c-format msgid "Unknown vehicle class '%' encountered." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:382 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:382 msgid "" "SVCPermissions must be specified either via 'allow' or 'disallow'. Ignoring " "'disallow'" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:408 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:408 #, c-format msgid "The vehicle class '%' is deprecated, use '%' instead." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:43 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:43 msgid "Loads the named config on startup" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:48 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:48 msgid "Saves current configuration into FILE" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:52 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:52 msgid "Enforce relative paths when saving the configuration" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:55 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:55 msgid "Saves a configuration template (empty) into FILE" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:58 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:58 msgid "Saves the configuration schema into FILE" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:62 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:62 msgid "Adds comments to saved template, configuration, or schema" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:71 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:71 msgid "Switches to verbose output" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:74 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:74 msgid "Prints option values before processing" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:77 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:77 msgid "Prints this screen or selected topics" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:80 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:80 msgid "Prints the current version" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:97 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:97 msgid "Disables output of warnings" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:100 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:100 msgid "Aggregate warnings of the same type whenever more than INT occur" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:104 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:104 msgid "Writes all messages to FILE (implies verbose)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:107 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:107 msgid "Writes all non-error messages to FILE (implies verbose)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:110 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:110 msgid "Writes all warnings and errors to FILE" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:113 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:113 msgid "Language to use in messages" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:116 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:116 msgid "Include license info into every output file" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:119 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:119 msgid "" "Prefix which is applied to all output files. The special string 'TIME' is " "replaced by the current time." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:122 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:122 msgid "Defines the number of digits after the comma for floating point output" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:125 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:125 msgid "Defines the number of digits after the comma for lon,lat output" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:128 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:128 msgid "" "Write time values as hour:minute:second or day:hour:minute:second rather " "than seconds" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:43 -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:184 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:43 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:184 msgid "Process Error" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:72 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:72 msgid "Empty Data" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:99 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:99 msgid "Invalid Number Format %" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:112 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:112 msgid "Invalid Time Format %" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:125 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:125 msgid "Invalid Bool Format %" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:137 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:137 msgid "Out Of Bounds" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:151 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:151 msgid "Unknown Element" msgstr "" -#: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:74 -#: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:76 -#: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:93 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:74 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:76 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:93 msgid "Invalid format of distribution parameterized" msgstr "" -#: /home/micha/programming/sumo/src/utils/emissions/EnergyParams.cpp:153 +#: D:\Repos\sumo/src\utils\emissions\EnergyParams.cpp:153 msgid "Vehicle device '%' doesn't have a valid value for parameter % (%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/emissions/HelpersEnergy.cpp:225 +#: D:\Repos\sumo/src\utils\emissions\HelpersEnergy.cpp:225 msgid "An acceleration given by the power was not found." msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:71 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:74 msgid "Add decal" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:71 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:74 msgid "Add decal." msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:151 -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:162 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:160 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:171 msgid "Invalid row or column" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:186 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:195 msgid "Invalid row" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:196 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:205 msgid "Invalid column" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:332 -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:790 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:341 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:798 msgid "Open decal" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:337 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:346 msgid "All files (*)" -msgstr "" +msgstr "Tutti i file (*)" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:790 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:798 msgid "Open decal." msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:798 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:806 msgid "Remove decal" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:798 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:806 msgid "Remove decal." msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:87 +#: D:\Repos\sumo/src\utils\foxtools\MFXTextFieldSearch.cpp:66 +msgid "Type to search..." +msgstr "" + +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:87 msgid "Ignoring geoidgrids and vgridshift in projection" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:232 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:232 msgid "Inverse projection works only with explicit proj parameters." msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:237 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:237 msgid "The projection method needs to be uniquely defined." msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:288 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:288 msgid "Uses a simple method for projection" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:291 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:291 msgid "Scaling factor for input coordinates" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:294 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:294 msgid "Rotation (clockwise degrees) for input coordinates" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:298 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:298 msgid "" "Determine the UTM zone (for a universal transversal mercator projection " "based on the WGS84 ellipsoid)" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:304 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:304 msgid "Uses STR as proj.4 definition for projection" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:307 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:307 msgid "Inverses projection" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:310 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:310 msgid "Convert from Gauss-Krueger to UTM" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:434 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:434 msgid "Could not transform (%,%)" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:578 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:578 #, c-format msgid "" "Ignoring loaded location attribute nr. % for tracking of original location" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeomHelper.cpp:238 +#: D:\Repos\sumo/src\utils\geom\GeomHelper.cpp:238 msgid "GeomHelper::makeCircle() requires nPoints>=3" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:607 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:607 msgid "Splitting vector close to end (pos: %, length: %)" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:1503 -#: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:1517 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:1503 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:1517 msgid "Trying to subtract PositionVectors of different lengths." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:960 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:963 msgid "'lane' and 'length' must be defined together in a lane area detector." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:965 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:968 msgid "'lanes' and 'endPos' must be defined together in a lane area detector." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1242 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1245 msgid "Calibrators need either an edge or a lane" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1289 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1292 msgid "" "CalibratorFlows need either the attribute vehsPerHour or speed or type (or " "any combination of these)" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1428 -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1454 -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1479 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1431 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1457 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1482 #, c-format msgid "Probability of % must be equal or greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1665 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1668 msgid "X and Y must be be defined together in POIs" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1671 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1674 msgid "lane and position must be be defined together in POIs" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1677 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1680 msgid "lon and lat must be be defined together in POIs" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1743 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1746 msgid "Parameters must be defined within an object." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1745 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:848 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1748 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:857 msgid "Parameters cannot be defined in the additional file's root." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1747 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:850 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1750 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:859 msgid "Parameters cannot be defined within another parameter." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1755 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1758 #, c-format msgid "Error parsing key from % generic parameter. Key cannot be empty." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1757 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1760 #, c-format msgid "" "Error parsing key from % generic parameter. Key contains invalid characters." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/DataHandler.cpp:111 +#: D:\Repos\sumo/src\utils\handlers\DataHandler.cpp:111 msgid "Data elements cannot load attributes as params" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/MeanDataHandler.cpp:54 +#: D:\Repos\sumo/src\utils\handlers\MeanDataHandler.cpp:54 msgid "MeanData elements cannot load attributes as params" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:370 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:373 msgid "" "Could not build % with ID '%' in netedit; ID contains invalid characters." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:420 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:423 msgid "" "a route must be defined either within a vehicle/flow or with an ID attribute" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:437 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:440 #, c-format msgid "cycleTime of % must be equal or greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:482 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:549 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:485 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:552 msgid "Attributes 'from' and 'fromJunction' cannot be defined together" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:484 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:551 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:487 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:554 msgid "Attributes 'to' and 'toJunction' cannot be defined together" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:515 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:518 msgid "trip definition needs either 'from/to' or 'fromJunction/toJunction'" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:846 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:855 msgid "Parameters must be defined within an object" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:858 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:867 #, c-format msgid "Error parsing key from % generic parameter. Key cannot be empty" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:860 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:869 #, c-format msgid "" "Error parsing key from % generic parameter. Key contains invalid characters" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:876 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:224 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:885 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:225 msgid "" "Defining car-following parameters in a nested element is deprecated in vType " "'%', use attributes instead!" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:884 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:886 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:227 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:229 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:893 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:895 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:228 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:230 msgid "Invalid parsing embedded VType" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:970 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:979 msgid "A stop must be defined either with an edge or with an lane, not both" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:984 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:995 msgid "A stop must be defined only in a StoppingPlace" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:987 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:998 msgid "A stop must be defined in an edge, a lane, or in a StoppingPlace" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/TemplateHandler.cpp:67 +#: D:\Repos\sumo/src\utils\handlers\TemplateHandler.cpp:67 msgid "Could not load template '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice.cpp:86 +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice.cpp:86 msgid "No port number given." msgstr "" -#: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice.cpp:161 +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice.cpp:161 msgid "Error on closing output devices." msgstr "" -#: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice_File.cpp:46 +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice_File.cpp:46 msgid "Could not redirect to NUL device (%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:315 +#: D:\Repos\sumo/src\utils\options\Option.cpp:352 #, c-format msgid "'%' is not a valid float." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:349 +#: D:\Repos\sumo/src\utils\options\Option.cpp:386 #, c-format msgid "'%' is not a valid bool." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:409 +#: D:\Repos\sumo/src\utils\options\Option.cpp:446 msgid "" "Please note that using ';' as list separator is deprecated and not accepted " "anymore." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:419 +#: D:\Repos\sumo/src\utils\options\Option.cpp:456 #, c-format msgid "'%' is not a valid integer vector." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:65 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:66 msgid "" "Copyright (C) 2001-2023 German Aerospace Center (DLR) and others; https://" "sumo.dlr.de" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:151 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:152 msgid "Internal request for unknown option '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:174 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:175 #, c-format msgid "No option with the name '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:191 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:192 #, c-format msgid "" "Please note that '%' is deprecated.\n" " Use '%' instead." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:387 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:388 #, c-format msgid "The file list for '%' is empty." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:393 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:394 msgid "File '%' is not accessible (%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:396 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:397 msgid "Empty file name given; ignoring." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:417 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:418 msgid "Option '%' needs option '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:616 -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:638 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:621 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:643 msgid " Build features: " msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:620 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:625 msgid "" " License EPL-2.0: Eclipse Public License Version 2 " msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:621 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:626 msgid " Use --help to get the list of options." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:669 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:674 msgid "Could not save configuration to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:673 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:678 msgid "Written configuration to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:686 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:691 msgid "Could not save template to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:690 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:695 msgid "Written template to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:702 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:707 msgid "Could not save schema to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:706 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:711 msgid "Written schema to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:88 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:135 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:88 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:135 msgid "Could not parse commandline options." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:103 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:103 msgid "Could not access configuration '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:107 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:107 msgid "Loading configuration" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:121 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:121 msgid "Could not load configuration '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsLoader.cpp:77 +#: D:\Repos\sumo/src\utils\options\OptionsLoader.cpp:77 msgid "Could not set option '%' (probably defined twice)." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:127 -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:134 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:127 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:134 msgid "Missing value for parameter '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:146 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:146 #, c-format msgid "" "The parameter '%' is not allowed in this context.\n" " Switch or parameter name expected." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:150 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:150 msgid "Mixed parameter syntax in '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:124 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:124 msgid "Could not load landmark-lookup-table from '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:138 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:138 #, c-format msgid "Duplicate edge '%' in landmark file." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:143 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:143 #, c-format msgid "Landmark edge '%' does not exist in the network." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:154 -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:167 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:154 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:167 #, c-format msgid "Unknown or unordered edge '%' in landmark file." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:164 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:164 msgid "Broken landmark file, unexpected number of entries (%) for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:187 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:187 msgid "Calculating new lookup table." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:194 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:194 msgid "No lookup table for landmark edge '%', recalculating." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:196 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:196 msgid "" "Not all network edges were found in the lookup table '%' for landmark edge " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:293 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:293 msgid "Saving new matrix to '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:295 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:295 #, c-format msgid "Edge '%' not found in intermodal network.'" msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:304 -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:338 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:304 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:338 #, c-format msgid "Depart edge '%' not found in intermodal network." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:350 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:350 #, c-format msgid "Arrival edge '%' not found in intermodal network." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:620 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:620 msgid "Ignoring unordered stop at '%' until % for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:632 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:632 msgid "Ignoring stop at '%' until % for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:637 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:637 #, c-format msgid "" "Not using public transport line '%' for routing persons. It has less than " "two usable stops." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalRouter.h:214 -#: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:125 +#: D:\Repos\sumo/src\utils\router\IntermodalRouter.h:220 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:125 msgid "Do not use this method" msgstr "" -#: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:87 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:87 #, c-format msgid "Departure edge '%' does not allow pedestrians." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:91 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:91 #, c-format msgid "Destination edge '%' does not allow pedestrians." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:84 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:84 msgid "Error parsing key from shape generic parameter. Key cannot be empty" msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:86 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:86 msgid "" "Error parsing key from shape generic parameter. Key contains invalid " "characters" msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:139 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:139 msgid "Invalid characters for PoI ID" msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:170 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:170 msgid "Either (x, y), (lon, lat) or (lane, pos) must be specified for PoI '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:173 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:173 msgid "" "(lon, lat) is specified for PoI '%' but no geo-conversion is specified for " "the network." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:185 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:185 msgid "Unable to project coordinates for PoI '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:191 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:191 #, c-format msgid "PoI '%' already exists." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:209 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:209 msgid "Invalid characters for Poly ID" msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:252 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:252 msgid "Polygon's shape cannot be empty." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:257 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:257 msgid "Polygon's lineWidth must be greater than 0." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:262 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:262 #, c-format msgid "Polygon '%' already exists." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:279 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:279 #, c-format msgid "Loading of shapes from % failed." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:44 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:44 #, c-format msgid "The node: '%' already exists." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:239 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:239 msgid "Index of renumbered node exceeded the reduced number of equations." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:250 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:250 msgid "Index of renumbered element exceeded the reduced number of equations." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:257 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:257 msgid "Structural error in reduced circuit matrix." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:288 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:288 msgid "Initial solution x used during solving DC circuit is out of bounds.\n" msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:312 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:456 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:312 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:456 msgid "wrongly assigned row of matrix A during solving the circuit" msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:354 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:479 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:354 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:479 msgid "The negative node of current source is not the groud." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:508 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:518 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:526 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:508 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:518 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:526 msgid "Results deployment during circuit evaluation was unsuccessful." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:576 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:576 msgid "" "Cannot assign unambigous electric current value to two voltage sources " "connected in parallel at the same node." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:798 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:798 msgid "" "Trying to add resistor element into the overhead wire circuit with " "resistance < 1e-6. " msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:800 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:800 msgid "" "Trying to add resistor element into the overhead wire circuit with " "resistance < 0. " msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:919 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:919 msgid "" "Circuit Voltage Source '%' is connected to less than two nodes, please " "adjust the definition of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:927 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:927 msgid "" "Circuit Element '%' is connected to less than two nodes, please adjust the " "definition of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:942 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:942 msgid "" "Circuit Node with id '-1' is not the grounded, please adjust the definition " "of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:966 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:966 msgid "" "A Circuit Resistor Element connects the ground, please adjust the definition " "of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:975 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:975 msgid "" "Circuit Node or Voltage Source with internal id '%' has been not visited " "during checking of the circuit. The circuit is disconnected, please adjust " "the definition of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Element.cpp:53 +#: D:\Repos\sumo/src\utils\traction_wire\Element.cpp:53 msgid "Undefined element type for '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:63 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:64 msgid "Route file should be sorted by departure time, ignoring '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParameter.cpp:653 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParameter.cpp:658 msgid "Invalid % % given for %. Using edge end instead." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParameter.cpp:703 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParameter.cpp:708 msgid "" "Value of stop attribute 'trigger' must be 'person', 'container', 'join' or a " "boolean" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:268 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:267 msgid "Undefined end for % '%', defaulting to 24hour duration." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:402 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:401 msgid "Invalid % id '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:404 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:403 msgid "Invalid % id '%'. Contains invalid characters." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:947 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:946 msgid "Lane change model 'JE2013' is deprecated. Using default model instead." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1139 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1138 msgid "maneuverAngleTimes format for vType '%' % contains an invalid triplet." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1148 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1147 #, c-format msgid "" "Triplet '%' for vType '%' maneuverAngleTimes cannot be parsed as 'int double " "double'" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1174 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1173 msgid "Unknown car-following model % when parsing vType '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1176 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1175 msgid "Unknown car-following model when parsing vType '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1209 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1225 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1208 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1224 msgid "Invalid Car-Following-Model Attribute %. Cannot be parsed to float" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1213 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1236 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1212 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1235 msgid "Invalid Car-Following-Model Attribute %. Must be greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1247 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1246 msgid "" "Invalid Car-Following-Model Attribute %. Only values between [0-1] are " "allowed" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1506 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1505 msgid "Invalid Lane-Change-Model Attribute %. Cannot be parsed to float" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1523 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1522 msgid "Invalid Lane-Change-Model Attribute %. Must be equal or greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1534 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1533 msgid "Invalid Lane-Change-Model Attribute %. Must be greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1545 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1544 msgid "Invalid Lane-Change-Model Attribute %. Must be between -1 and 1" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1591 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1576 msgid "Invalid Junction-Model Attribute %. Cannot be parsed to float" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1600 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1585 msgid "" "Invalid Junction-Model Attribute %. Only values between [0-1] are allowed" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1606 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1591 msgid "Invalid Junction-Model Attribute %. Must be equal or greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1636 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1621 msgid "The vehicle class '%' for % '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1654 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1639 msgid "The shape '%' for % '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:271 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:271 msgid "Undefined vehicleType parameter" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:281 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:281 msgid "Undefined vehicle parameter" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:291 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:291 msgid "Undefined stop parameter" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:513 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:513 msgid "Trying to get undefined % attribute '%' in SUMOBaseObject '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/GenericHandler.cpp:83 -#: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:105 +#: D:\Repos\sumo/src\utils\xml\GenericHandler.cpp:83 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:105 msgid "Found root element '%' in file '%' (expected '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:209 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:209 msgid " In file '" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:210 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:210 msgid " At line/column " msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SAXWeightsHandler.cpp:145 +#: D:\Repos\sumo/src\utils\xml\SAXWeightsHandler.cpp:145 msgid "Missing value '%' in edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:110 -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:136 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:110 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:136 msgid "Cannot read file '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:113 -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:139 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:113 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:139 #, c-format msgid "File '%' is a directory!" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:156 -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:165 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:156 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:165 msgid "The XML-parser was not initialized." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:191 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:191 msgid "The XML-parser could not be build." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:92 -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:98 -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:105 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:92 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:98 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:105 msgid "" "Environment variable SUMO_HOME is not set properly, disabling XML " "validation. Set 'auto' or 'always' for web lookups." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:111 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:111 msgid "" "Environment variable SUMO_HOME is not set properly, XML validation will fail " "or use slow website lookups." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:120 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:120 msgid "Cannot read local schema '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:167 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:167 msgid "" "Disabling XML validation for external file '%'. Use 'auto' or 'always' to " "enable." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:189 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:189 msgid "Runtime error: % while parsing '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:191 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:191 msgid "Error occurred: % while parsing '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:193 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:193 msgid "" "SAX error occured while parsing '%':\n" " %" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:195 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:195 msgid "Unspecified error occurred wile parsing '%'" msgstr "" diff -Nru sumo-1.17.0/data/po/tr_gui.po sumo-1.18.0/data/po/tr_gui.po --- sumo-1.17.0/data/po/tr_gui.po 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/po/tr_gui.po 2023-06-28 20:02:17.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: sumo\n" "Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" -"POT-Creation-Date: 2023-04-15 12:21+0200\n" +"POT-Creation-Date: 2023-06-15 09:59+0200\n" "PO-Revision-Date: 2023-03-15 09:30+0000\n" "Last-Translator: kyasin \n" "Language-Team: Turkish )" msgstr "Kesim içekini etkinleştir (()" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:328 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:334 msgid "Prefix for busStop naming" msgstr "Otobüs durağı adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:331 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:337 msgid "Prefix for trainStop naming" msgstr "Tren durağı adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:334 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:340 msgid "Prefix for containerStop naming" msgstr "Konteyner durağı adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:337 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:343 msgid "Prefix for chargingStation naming" msgstr "Şarj istasyonu adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:340 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:346 msgid "Prefix for parkingArea naming" msgstr "Park alanı adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:343 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:349 msgid "Prefix for e1Detector naming" msgstr "e1Dedektör adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:346 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:352 msgid "Prefix for e2Detector naming" msgstr "e2Dedektör adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:349 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:355 msgid "Prefix for e3Detector naming" msgstr "e3Dedektör adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:352 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:358 msgid "Prefix for e1InstantDetector naming" msgstr "e1InstantDetector adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:355 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:361 msgid "Prefix for rerouter naming" msgstr "Yeniden rotalayıcı adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:358 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:364 msgid "Prefix for calibrator naming" msgstr "Kalibratör adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:361 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:367 msgid "Prefix for routeProbe naming" msgstr "routeProbe adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:364 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:370 msgid "Prefix for variable speed sign naming" msgstr "Değişken hız işareti adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:367 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:373 msgid "prefix for traction substation naming" msgstr "cer trafo merkezi adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:370 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:376 msgid "Prefix for overhead wire naming" msgstr "Havai hat adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:373 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:379 msgid "Prefix for polygon naming" msgstr "Çokgen adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:376 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:382 msgid "Prefix for poi naming" msgstr "EN adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:381 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:387 msgid "Prefix for route naming" msgstr "Rota adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:384 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:390 msgid "Prefix for vType naming" msgstr "Araç Tipi adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:387 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:393 msgid "Prefix for vehicle naming" msgstr "Araç adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:390 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:396 msgid "Prefix for trip naming" msgstr "Yolculuk adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:393 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:399 msgid "Prefix for flow naming" msgstr "Akım adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:396 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:402 msgid "Prefix for person naming" msgstr "Yolcu adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:399 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:405 msgid "Prefix for personFlow naming" msgstr "personFlow adlandırması için önek (Yolcu Akımı)" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:402 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:408 msgid "Prefix for container naming" msgstr "Konteyner adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:405 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:411 msgid "Prefix for containerFlow naming" msgstr "containerFlow adlandırması için önek (Konteyner Akımı)" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:412 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:418 msgid "Prefix for meanDataEdge naming" msgstr "meanDataEdge adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:415 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:421 msgid "Prefix for meanDataLane naming" msgstr "meanDataLane adlandırması için önek" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:422 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:428 msgid "Disable icons of special lanes" msgstr "Özel şeritlerin simgelerini devre dışı bırak" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:425 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:431 msgid "Disable textures" msgstr "Dokuları devre dışı bırak" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:428 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:434 msgid "Load visualisation settings from FILE" msgstr "Görselleştirme ayarlarını Dosya'dan yükle" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:433 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:439 msgid "Load current viewport from registry" msgstr "Geçerli görünüm alanını kayıt defterinden yükle" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:436 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:442 msgid "Create initial window with the given x,y size" msgstr "Verilen x,y boyutuyla ilk pencereyi oluştur" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:439 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:445 msgid "Create initial window at the given x,y position" msgstr "Verilen x,y boyutunda ilk pencereyi oluştur" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:444 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:450 msgid "Enable overlay for screen recognition" msgstr "Ekran tanıma için yer paylaşımını etkinleştir" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:447 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:453 msgid "Enable output messages during GUI-Testing" msgstr "GUI-Test sırasında çıktı mesajlarını etkinleştir" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:450 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:456 msgid "Enable output messages during GUI-Testing specific of gl functions" msgstr "" "gl fonksiyonlarına özgü GUI-Test sırasında çıktı mesajlarını etkinleştir" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:453 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:459 msgid "Save gui settings in the given settings-output file" msgstr "Gui ayarlarını verilen ayarlar-çıktı dosyasına kaydet" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:460 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:466 msgid "Defines the begin time in seconds; The simulation starts at this time" msgstr "" "Başlangıç zamanını saniye cinsinden tanımlar; simülasyon bu zamanda başlar" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:463 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:469 msgid "Defines the end time in seconds; The simulation ends at this time" msgstr "" "Bitiş zamanını saniye cinsinden tanımlar; simülasyon bu zamanda sona erer" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:466 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:472 msgid "" "Length of the default interval length between action points for the car-" "following and lane-change models (in seconds). If not specified, the " @@ -3222,7 +3258,7 @@ "ayarlar varsayılanı geçersiz kılar. Simülasyon adım uzunluğunun katı " "olmalıdır." -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:469 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:475 msgid "" "Select default speed deviation. A negative value implies vClass specific " "defaults (0.1 for the default passenger class" @@ -3230,782 +3266,780 @@ "Varsayılan hız sapmasını seçin. Negatif bir değer Araç-Sınıfına özgü " "varsayılanlar anlamına gelir (varsayılan yolcu sınıfı için 0,1)" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:508 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:514 msgid "Failed to reset options." msgstr "Seçenekler sıfırlanamadı." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:370 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:370 msgid "delete junction" msgstr "kavşağı sil" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:412 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:412 msgid "delete edge" msgstr "kesimi sil" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:491 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:491 msgid "replace edge" msgstr "kesimi değiştir" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:553 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:553 msgid "delete lane" msgstr "şeridi sil" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:588 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:588 msgid "delete connection" msgstr "bağlantıyı sil" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:603 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:603 msgid "delete crossing" msgstr "geçidi sil" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:621 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:650 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:672 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:685 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:698 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:728 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:621 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:650 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:672 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:685 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:698 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:728 msgid "delete " msgstr "Sil " -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:644 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:644 msgid "Trying to delete a default Vehicle Type" msgstr "Varsayılan bir Araç Tipi silinmeye çalışılıyor" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:737 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2685 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:737 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2690 msgid "duplicate lane" msgstr "Şeridi yinele" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:856 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:856 msgid "split edge" msgstr "Kesimi böl" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:973 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:973 msgid "split edges" msgstr "Kesimleri böl" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:995 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:995 msgid "reverse edge" msgstr "Kesimi ters çevir" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1008 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1012 msgid "add reversed edge" msgstr "Ters kesim ekle" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1043 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1046 msgid "merge junctions" msgstr "kavşakları birleştir" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1079 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1082 msgid "select roundabout" msgstr "Dönel ada seç" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1095 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1098 msgid "create roundabout" msgstr "Dönel ada oluştur" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1273 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1276 msgid "Forced computing junctions with volatile options ..." msgstr "Hassas seçeneklerle kavşak hesaplama zorlaması..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1275 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1278 msgid "Forced computing junctions ..." msgstr "Kavşak hesaplama zorlaması..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1282 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1285 msgid "Computing junctions with volatile options ..." msgstr "Kavşaklar hassas seçeneklerle hesaplanıyor..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1284 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1287 msgid "Computing junctions ..." msgstr "Kavşaklar hesaplanıyor..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1347 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1350 msgid "Finished computing junctions." msgstr "Kavşak hesaplaması tamamlandı." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1353 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1356 msgid "Computing demand elements ..." msgstr "Talep elemanları hesaplanıyor..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1367 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1370 msgid "Finished computing demand elements." msgstr "Talep elemanlarının hesaplaması tamamlandı." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1373 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1376 msgid "Computing data elements ..." msgstr "Veri elemanları hesaplanıyor..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1380 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1383 msgid "Finished computing data elements." msgstr "Veri elemanlarının hesaplaması tamamlandı." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1459 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1462 msgid "Position of joined junction" msgstr "Birleştirilmiş kavşağın konumu" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1460 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1463 msgid "" "There is another unselected junction in the same position of joined junction." msgstr "" "Birleştirilmiş kavşağın aynı konumunda seçilmemiş başka bir kavşak var." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1461 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1464 msgid "It will be joined with the other selected junctions. Continue?" msgstr "Diğer seçilen kavşaklarla birleştirilecektir. Devam et?" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1582 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1592 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1585 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1595 msgid "Clear crossings" msgstr "Geçitleri temizle" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1583 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1586 msgid "There are no invalid crossings to remove." msgstr "Kaldırılması gereken geçersiz geçit yok." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1593 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1596 msgid "Crossings will be cleared. Continue?" msgstr "Geçitler temizlenecek. Devam et?" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1604 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1607 msgid "clear crossings" msgstr "Geçitleri temizle" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1617 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1620 msgid "clear junctions" msgstr "Kavşakları temizle" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1646 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1649 msgid "clear unused routes" msgstr "kullanılmayan rotaları temizle" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1701 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1704 msgid "merge routes" msgstr "rotaları birleştir" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1755 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1758 msgid "adjust person plans" msgstr "Yolcu planlarını ayarla" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1795 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1798 msgid "remove invalid demand elements" msgstr "geçersiz talep elemanlarını kaldır" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1810 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1813 msgid "replace junction by geometry" msgstr "Kavşakları geometriye göre değiştir" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1855 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1858 msgid "Junction isn't removable" msgstr "Kavşak kaldırılabilir değil" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1867 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1870 msgid "split junction" msgstr "Kavşağı böl" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1907 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1910 msgid "Could not rename split node to '%'" msgstr "Bölünmüş düğüm '%' olarak yeniden adlandırılamadı" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1946 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1949 msgid "clear junction connections" msgstr "Kavşak bağlantılarını temizle" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1958 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1961 msgid "reset junction connections" msgstr "Kavşak bağlantılarını sıfırla" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1969 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1972 msgid "clear additional elements" msgstr "Ek elemanları temizle" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1982 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1985 msgid "clear demand elements" msgstr "Talep elemanlarını temizle" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1995 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1998 msgid "clear data elements" msgstr "Veri elemanlarını temizle" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2006 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2009 msgid "clear meanData elements" msgstr "meanData elemanlarını temizle" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2326 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2403 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2331 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2413 msgid "Duplicated ID" msgstr "Yinelenmiş ID" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2689 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2689 msgid "Network size exceeds 1 Lightyear. Please reconsider your inputs." msgstr "" "Ağ boyutu 1 Işıkyılı'nı aşıyor. Lütfen girdilerinizi tekrar gözden geçirin." -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:1461 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:1468 msgid "Default vType doesn't exist" msgstr "Varsayılan vType mevcut değil (Araç Tipi)" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2478 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2486 msgid "Invalid meanData pointer" msgstr "Geçersiz meanData işaretçisi" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2739 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2747 msgid "Redo replace in TLS" msgstr "TIS'da değiştirmeyi yinele" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2753 msgid "Undo replace in TLS" msgstr "TIS'da değiştirmeyi geri al" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:332 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:334 msgid "Locate a junction within the network. (Shift+J)" msgstr "Ağ içinde bir kavşak belirle. (Shift+J)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:336 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:338 msgid "Locate an edge within the network. (Shift+E)" msgstr "Ağ içinde bir kesim bul. (Shift+E)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:340 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:342 msgid "Locate WalkingAreas" msgstr "Yürüyüş Alanlarını Bul" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:340 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:342 msgid "Locate a walkingArea within the network. (Shift+W)" msgstr "Ağ içinde bir yürüme alanı bul. (Shift+W)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:344 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:346 msgid "Locate a vehicle within the network. (Shift+V)" msgstr "Ağ içinde bir araç bul. (Shift+V)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:348 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:350 msgid "Locate a person within the network. (Shift+P)" msgstr "Ağdaki bir yolcuyu bul. (Shift+P)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:354 msgid "Locate Route" msgstr "Rotayı Bul" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:354 msgid "Locate a route within the network. (Shift+R)" msgstr "Ağ içinde bir rota bul. (Shift+R)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:358 msgid "Locate Stops" msgstr "Durakları Bul" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:358 msgid "Locate a stop within the network. (Shift+S)" msgstr "Ağ içinde bir durak bul. (Shift+S)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:367 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:369 msgid "Locate a tls within the network. (Shift+T)" msgstr "Ağ içinde bir TIS bul. (Shift+T)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:371 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:373 msgid "Locate an additional structure within the network. (Shift+A)" msgstr "Ağ içinde ek bir yapı bul. (Shift+A)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:375 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:377 msgid "Locate a PoI within the network. (Shift+O)" msgstr "Ağ içinde bir EN bul. (Shift+O)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:379 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:381 msgid "Locate a Polygon within the network. (Shift+L)" msgstr "Ağ içinde bir Çokgen bul. (Shift+L)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:453 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:455 msgid "Remove from Selected" msgstr "Seçilenlerden Kaldır" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:455 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:457 msgid "Add to Selected" msgstr "Seçilenlere Ekle" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:612 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:614 msgid "GUI-Settings cannot be saved in " msgstr "GUI-Ayarları dosyaya kaydedilemez: " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:805 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:807 msgid "Confirm Junction Merger" msgstr "Kavşak Birleştiriciyi Onayla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:806 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:808 msgid "Do you wish to merge junctions '" msgstr "Kavşakları birleştirmek istiyor musunuz '" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:807 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:205 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:809 msgid "' and '" msgstr "' ve '" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:808 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:810 msgid "' will be eliminated and its roads added to '" msgstr "' ortadan kaldırılacak ve yolları ' eklenecek" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:836 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:838 msgid " requires switch to network mode. Continue?" msgstr " Ağ moduna geçiş gerektirir. Devam et?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:838 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:840 msgid " requires switch to demand mode. Continue?" msgstr " Talep moduna geçiş gerektirir. Devam et?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:840 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:842 msgid " requires switch to data mode. Continue?" msgstr " Veri moduna geçiş gerektirir. Devam et?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:845 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:847 msgid "Confirm switch mode" msgstr "Değiştirme Modunu Onayla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1423 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1425 msgid "Cannot delete in this mode" msgstr "Bu modda silinemez" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1426 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1428 msgid "delete network inspected elements" msgstr "ağ ile incelenen elemanları sil" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1434 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1436 msgid "delete network selection" msgstr "ağ seçimini sil" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1442 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1444 msgid "delete demand inspected elements" msgstr "taleple incelenen elemanları sil" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1450 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1452 msgid "delete demand selection" msgstr "talep seçimini sil" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1458 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1460 msgid "delete data inspected elements" msgstr "veriyle incelenen elemanları sil" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1466 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1468 msgid "delete data selection" msgstr "veri seçimini sil" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2101 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2106 msgid "Reverse selected edges" msgstr "Seçilen kesimleri tersine çevir" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2108 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2113 msgid "Reverse edge" msgstr "Kesimi ters çevir" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2122 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2127 msgid "Add Reverse edge for selected edges" msgstr "Seçilen kesimlere ters kesim ekle" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2129 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2134 msgid "Add reverse edge" msgstr "Ters kesim ekle" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2143 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2148 msgid "Add Reverse disconnected edge for selected edges" msgstr "Seçilen kesimler için ters, bağlantısız kesim ekle" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2150 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2155 msgid "Add reverse disconnected edge" msgstr "Ters bağlantısız kesim ekle" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2179 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2184 msgid "reset geometry points" msgstr "geometri noktalarını sıfırla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2200 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2205 msgid "straighten selected edges" msgstr "seçili kesimleri düzelt" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2208 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2213 msgid "straighten edge" msgstr "kesimi düzelt" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2222 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2227 msgid "smooth selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2229 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2234 msgid "smooth edge" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2243 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2248 msgid "straighten elevation of selected edges" msgstr "seçili kesimlerin yüksekliğini düzelt" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2250 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2255 msgid "straighten edge elevation" msgstr "kesim yükseltisini düzelt" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2264 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2269 msgid "smooth elevation of selected edges" msgstr "seçili kesimlerin pürüzsüz yükseltilmesi" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2271 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2276 msgid "smooth edge elevation" msgstr "pürüzsüz kesim yükseltme" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2285 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2290 msgid "reset edge lengths" msgstr "kenar uzunluklarını sıfırla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2314 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2319 msgid "copy edge template" msgstr "kesim şablonunu kopyala" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2335 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2340 msgid "simplify shapes" msgstr "şekilleri basitleştir" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2377 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2382 msgid "close polygon shapes" msgstr "çokgen şekilleri kapat" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2408 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2413 msgid "open polygon shapes" msgstr "çokgen şekilleri aç" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2457 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2462 msgid "select within polygon boundary" msgstr "çokgen sınırı içinde seç" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2502 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2507 #, c-format msgid "No lanes around % to attach it" msgstr "% etrafında bağlanacak şerit yok" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2525 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2530 msgid "attach POI into lane" msgstr "EN'i şeride bağla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2538 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2543 msgid "release POI from lane" msgstr "EN'i şeritten serbest bırak" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2572 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2577 msgid "change edge Geometry Point position" msgstr "Kesim Geometri Noktası konumunu değiştir" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2604 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2609 msgid "change polygon Geometry Point position" msgstr "Çokgen Geometri Noktası konumunu değiştir" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2624 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2629 msgid "change TAZ Geometry Point position" msgstr "TAB Geometri Noktası konumunu değiştir" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2648 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2653 msgid "reset end points of selected edges" msgstr "seçilen kesimlerin bitiş noktalarını sıfırla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2659 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2664 msgid "reset end points of edge '" msgstr "' kesimin bitiş noktalarını sıfırla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2678 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2683 msgid "duplicate selected lanes" msgstr "Seçilen şeritleri yinele" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2715 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2720 msgid "reset custom lane shapes" msgstr "özel şerit şekillerini sıfırla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2722 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2727 msgid "reset custom lane shape" msgstr "özel şerit şekillerini sıfırla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2738 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2743 msgid "reset opposite lanes" msgstr "karşı şeritleri sıfırla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2750 msgid "reset opposite lane" msgstr "karşı şeridi sıfırla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2799 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2804 msgid "select lane reachability" msgstr "şerit erişilebilirliğini seçin" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2841 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2846 msgid "Multiple lane in the same edge selected" msgstr "Aynı kesimde birden fazla şerit seçildi" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2842 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2847 msgid "There are selected lanes that belong to the same edge." msgstr "Aynı kesime ait seçilmiş şeritler var." -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2843 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2848 msgid "Only one lane per edge will be restricted for " msgstr "Kesim başına yalnızca bir şerit dosyadakiler için kısıtlanacaktır " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2858 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2866 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2863 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2871 msgid "Set vclass for " msgstr "Şunlar için vclass ayarla " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2859 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2867 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2940 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2948 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2864 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2872 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2945 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2953 msgid " to selected lanes" msgstr " seçilen şeritlere" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2860 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2941 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2865 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2946 msgid "" "All lanes own already another lane in the same edge with a restriction for " msgstr "" "Tüm şeritler, zaten aynı kesimde ' için bir kısıtlama ile başka bir şeride " "sahip. " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2868 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2873 msgid " lanes will be restricted for " msgstr " şeritler şunun için kısıtlanacak " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2869 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2874 msgid ". Continue?" msgstr ". Devam et?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2896 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2901 msgid "restrict lane to " msgstr "şeridi şu şekilde kısıtla " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2939 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2947 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2944 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2952 msgid "Add vclass for " msgstr "Şunun için araç sınıfı ekle " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2949 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3044 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2954 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3049 msgid " restrictions for " msgstr " Şunun için kısıtlamalar " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2950 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2955 msgid " will be added. Continue?" msgstr " Eklenecektir. Devam et?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2967 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2972 msgid "add restrictions for " msgstr "Şunun için kısıtlamalar ekle " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2977 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2982 msgid "add vclass for " msgstr "Şunun için araç sınıfı ekle " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3034 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3042 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3072 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3039 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3047 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3077 msgid "Remove vclass for " msgstr "Şunun için araç sınıfını kaldır " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3035 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3040 msgid " from selected lanes" msgstr " seçilen şeritlerden" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3036 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3041 msgid "Selected lanes and edges haven't a restriction for " msgstr "Seçilen şerit ve kenarlarda şunun için bir kısıtlama yok " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3043 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3048 msgid " in selected lanes" msgstr " seçilen şeritlerde" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3045 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3050 msgid " will be removed. Continue?" msgstr " kaldırılacaktır. Devam et?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3214 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3219 msgid "reset edge endpoints" msgstr "Kesim bitiş noktalarını sıfırla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3259 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3526 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3561 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3584 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3264 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3531 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3566 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3589 msgid "Grid is still active, press ctrl+g to deactivate" msgstr "Izgara hala etkin, devre dışı bırakmak için ctrl+g tuşlarına basın" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3278 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3283 msgid "reset custom junction shapes" msgstr "özel kavşak şekillerini sıfırla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3285 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3290 msgid "reset custom junction shape" msgstr "özel kavşak şeklini sıfırla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3396 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3401 msgid "clear connections of selected junctions" msgstr "seçilen kavşakların bağlantılarını temizle" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3428 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3433 msgid "reset connections of selected junctions" msgstr "seçilen kavşakların bağlantılarını sıfırla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3452 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3479 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3457 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3484 msgid "add TLS in multiple junctions" msgstr "birden çok kavşağa TIS ekle" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:5564 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:5579 msgid "Shift + click to create two additionals in the same position" msgstr "Aynı konumda iki ek oluşturmak için Shift + tıklayın" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:5813 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:5828 msgid "Control + click to create two stop in the same position" msgstr "Aynı konumda iki durak oluşturmak için Control + tıklayın" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1467 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1488 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1467 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1488 msgid "moving selection" msgstr "Seçim kaydırılıyor" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1668 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1668 msgid "Selection width:" msgstr "Seçim genişliği:" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1669 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1669 msgid " height:" msgstr " yükseklik:" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1670 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1670 msgid " diagonal:" msgstr " köşegen:" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1834 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1834 msgid "selection using rectangle" msgstr "dikdörtgen kullanarak seçim" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1868 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1868 #, c-format msgid "Invalid windows size-format: %for option 'window-size'" msgstr "Geçersiz pencere boyutu biçimi: 'pencere boyutu' seçeneği için %" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1946 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1946 msgid "Save NETEDITConfig" msgstr "NETEDITConfig Kaydet" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1946 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1946 msgid "Save NETEDITConfig. (Ctrl+Shift+E)" msgstr "NETEDITConfig Kaydet (Ctrl+Shift+E)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1952 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1952 msgid "Save SumoConfig" msgstr "SumoConfig Kaydet" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1952 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1952 msgid "Save SumoConfig. (Ctrl+Shift+S)" msgstr "SumoConfig kaydet. (Ctrl+Shift+S)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1958 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1958 msgid "Save network" msgstr "Ağı kaydet" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1958 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1958 msgid "Save network. (Ctrl+S)" msgstr "Ağı kaydet. (Ctrl+S)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1966 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1966 msgid "Save individual files" msgstr "Dosyaları ayrık kaydet" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1966 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1966 msgid "Save individual files." msgstr "Dosyaları ayrık kaydet." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1972 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1972 msgid "Save additional elements" msgstr "Ek elemanları kaydet" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1972 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1972 msgid "Save additional elements. (Ctrl+Shift+A)" msgstr "Ek elemanları kaydet. (Ctrl+Shift+A)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1978 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1978 msgid "Save demand elements" msgstr "Talep elemanlarını kaydet" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1978 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1978 msgid "Save demand elements. (Ctrl+Shift+D)" msgstr "Talep elemanlarını kaydet. (Ctrl+Shift+D)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1984 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1984 msgid "Save data elements" msgstr "Veri elemanlarını kaydet" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1984 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1984 msgid "Save data elements. (Ctrl+Shift+B)" msgstr "Veri elemanlarını kaydet. (Ctrl+Shift+B)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1990 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1990 msgid "Save mean data elements" msgstr "meandata elemanlarını kaydet" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1990 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1990 msgid "Save mean data elements. (Ctrl+Shift+M)" msgstr "meandata elemanlarını kaydet. (Ctrl+Shift+M)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 msgid "Network" msgstr "Ağ" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 msgid "Edit network elements" msgstr "Ağ elemanlarını düzenle" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 msgid "Set mode for edit network elements. (F2)" msgstr "Ağ elemanlarını düzenlemek için mod ayarla. (F2)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2067 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2069 msgid "Demand" msgstr "Talep" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 msgid "Edit traffic demand elements" msgstr "Trafik talep elemanlarını düzenle" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 msgid "Set mode for edit traffic demand. (F3)" msgstr "Trafik talebini düzenlemek için mod ayarla. (F3)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2211 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2213 msgid "Data" msgstr "Veri" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 msgid "Edit data elements" msgstr "Veri elemanlarını düzenle" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 msgid "Set mode for edit data demand. (F4)" msgstr "Veri talebini düzenlemek için mod ayarla. (F4)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2065 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2065 msgid "Mode already selected" msgstr "Mod zaten seçili" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2150 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2150 msgid "Network mode already selected" msgstr "Ağ modu zaten seçili" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2155 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2155 msgid "Save modifications in TLS before change mode" msgstr "Mod değiştirmeden önce değişiklikleri TIS'a kaydet" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2200 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2200 msgid "Demand mode already selected" msgstr "Talep modu zaten seçili" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2235 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2235 msgid "Data mode already selected" msgstr "Veri modu zaten seçili" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2316 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2627 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2316 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2627 msgid "" "Show grid and restrict movement to the grid - define grid size in " "visualization options. (Ctrl+G)" @@ -4013,62 +4047,62 @@ "Izgarayı göster ve ızgaraya hareketi kısıtla - görselleştirme seçeneklerinde " "ızgara boyutunu tanımla. (Ctrl+G)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2324 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2635 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2922 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2324 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2635 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2922 msgid "Toggle hiding junction shape. (Ctrl+J)" msgstr "Kavşak şeklini gizlemeyi aç / kapat. (Ctrl+J)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2332 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2332 msgid "Draw vehicles spread in lane or depart position" msgstr "Yolda ya da başlangıç pozisyonunda yayılmış araçları çiz" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2332 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2643 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2332 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2643 msgid "Draw vehicles spread in lane or in depart position." msgstr "Yolda ya da başlangıç pozisyonunda yayılmış araçları çiz." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2340 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2944 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2340 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2944 msgid "Toggle show demand elements." msgstr "Talep öğelerini göstermeyi aç/kapa." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2348 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2348 msgid "Clicks target lanes" msgstr "Hedef şeritleri tıklar" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2348 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2348 msgid "" "Toggle whether clicking should inspect/select/delete lanes instead of edges." msgstr "" "Tıklamanın kenarlar yerine incele / seçme / silme işlemlerini şeritler için " "yapmasını aç/kapa." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2355 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2355 msgid "Toggle show connections over junctions." msgstr "Kavşaklar üzerindeki bağlantıların gösterimini aç/kapat." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2363 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2363 msgid "Toggle hide connections." msgstr "Bağlantıları gizlemeyi aç/kapat." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2371 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2371 msgid "Show additional sub-elements" msgstr "Ek alt elemanları göster" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2371 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2371 msgid "Toggle show additional sub-elements." msgstr "Ek alt öğeleri göstermeyi aç/kapat." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2379 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2379 msgid "Toggle show TAZ elements." msgstr "TAB elemanlarını göstermeyi aç/kapat." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2387 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2387 msgid "Automatic select junctions" msgstr "Kavşakları otomatik seç" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2387 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2387 msgid "" "Toggle whether selecting multiple edges should automatically select their " "junctions." @@ -4076,11 +4110,11 @@ "Birden fazla kesim seçildiğinde bunların birleşme noktalarının otomatik " "olarak seçilip seçilmeyeceğini değiştir." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2395 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2395 msgid "Apply state to all phases" msgstr "Evreyi tüm fazlara uygula" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2395 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2395 msgid "" "Toggle whether clicking should apply state changes to all phases of the " "current TLS plan." @@ -4088,556 +4122,557 @@ "Tıklandığında evre değişikliklerinin geçerli TIS planının tüm fazlarına " "uygulanıp uygulanmayacağını değiştir." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2403 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2403 msgid "Automatic merging junction" msgstr "Kavşakların otomatik birleştirilmesi" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2403 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2403 msgid "Toggle ask for confirmation before merging junction." msgstr "Kavşağı birleştirmeden önce onay istemeyi değiştir." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2410 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2410 msgid "Show bubbles" msgstr "Baloncukları göster" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2410 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2410 msgid "Toggle show bubbles over junctions shapes." msgstr "Kavşak şekilleri üzerinde baloncukları göstermeyi değiştir." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2418 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2418 msgid "Move elevation" msgstr "Yüksekliği taşı" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2418 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2418 msgid "Apply mouse movement to elevation instead of x,y position." msgstr "x,y pozisyonu vermek yerine yükseltmek için fare hareketini uygula." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2426 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2426 msgid "Edge chain mode" msgstr "Kesim zinciri modu" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2426 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2426 msgid "Create consecutive edges with a single click (hit ESC to cancel chain)." msgstr "" "Tek bir tıklamayla ardışık kesimler oluştur (zinciri iptal etmek için ESC'ye " "basın)." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2434 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2434 msgid "Edge opposite direction" msgstr "Kesim ters yön" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2434 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2434 msgid "Automatically create an edge in the opposite direction." msgstr "Otomatik olarak ters yönde bir kesim oluştur." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2651 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2937 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2651 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2937 msgid "Toggle show shapes (Polygons and POIs)." msgstr "Şekilleri (Çokgen ve EN'ler) göstermeyi aç/kapat." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2659 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2659 msgid "Toggle show all trips (requires updated demand - F5)." msgstr "" "Tüm seyahatleri göstermeyi aç/kapat (güncellenmiş talep gerektirir-F5)." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2667 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2667 msgid "Toggle show all person plans." msgstr "Tüm yolcu planlarını göstermeyi aç/kapat." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2675 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2675 msgid "Toggle lock selected person." msgstr "Seçili kişiyi kilitlemeyi aç / kapat." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2683 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2683 msgid "Show all containers plans" msgstr "Tüm konteyner planlarını göster" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2683 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2683 msgid "Toggle show all container plans." msgstr "Tüm konteyner planlarını göstermeyi aç/kapat." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2691 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2691 msgid "Toggle lock selected container." msgstr "Seçili konteyneri kilitlemeyi aç / kapat." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2699 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2699 msgid "Toggle show non-inspected demand elements." msgstr "İncelenmeyen talep elemanlarını göstermeyi aç/kapat." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2707 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2707 msgid "Toggle show number of overlapped routes." msgstr "Çakışan rotaların sayısını göstermeyi aç/kapat." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2930 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2930 msgid "Toggle show additionals." msgstr "Ekleri göstermeyi aç / kapat." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2951 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2951 msgid "Draw TAZREL drawing mode" msgstr "TABİlişkili çizim modunu çizin (TAZREL)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2951 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2951 msgid "Toggle draw TAZREL drawing mode." msgstr "TABİlişkili çizim modunu çizmeyi aç/kapat (TAZREL)." -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2958 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2958 msgid "Toggle draw TAZ fill" msgstr "TAZ dolgusu çizmeyi aç / kapat" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2965 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2965 msgid "Toggle draw TAZRel only from" msgstr "TABİlişkili yalnızca şuradan çizmeyi aç/kapat" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2972 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2972 msgid "Toggle draw TAZRel only to" msgstr "TABİlişkili yalnızca şuraya çizmeyi aç/kapat" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3471 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3471 msgid "Set inspect mode" msgstr "İnceleme modunu ayarla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3471 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3471 msgid "Mode for inspect elements and change their attributes. (I)" msgstr "Elemanları incelemek ve niteliklerini değiştirmek için mod. (I)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3477 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3477 msgid "Set delete mode" msgstr "Silme modunu ayarla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3477 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3477 msgid "Mode for delete elements. (D)" msgstr "Elemanları silmek için mod. (D)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3546 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3690 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3546 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3681 msgid "Set move mode" msgstr "Taşıma modunu ayarla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3546 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3690 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3546 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3681 msgid "Mode for move elements. (M)" msgstr "Elemanları taşımak için mod. (M)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3552 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3552 msgid "Set create edge mode" msgstr "Kesim oluşturma modunu ayarla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3552 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3552 msgid "Mode for creating junction and edges. (E)" msgstr "Kavşak ve kesim oluşturmak için mod. (E)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3558 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3558 msgid "Set connection mode" msgstr "Bağlantı modunu ayarla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3558 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3558 msgid "Mode for edit connections between lanes. (C)" msgstr "Şeritler arasındaki bağlantıları düzenlemek için mod. (C)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3564 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3564 msgid "Set prohibition mode" msgstr "Yasaklama modunu ayarla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3564 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3564 msgid "Mode for editing connection prohibitions. (H)" msgstr "Bağlantı yasaklarını düzenleme modu. (H)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3570 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3570 msgid "Set traffic light mode" msgstr "Trafik ışığı modunu ayarla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3570 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3570 msgid "Mode for edit traffic lights over junctions. (T)" msgstr "Kavşaklar üzerindeki trafik ışıklarını düzenleme modu. (T)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3576 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3576 msgid "Set additional mode" msgstr "Ek modu ayarla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3576 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3576 msgid "Mode for adding additional elements. (A)" msgstr "Ek elamanlar eklemek için mod. (A)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3582 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3582 msgid "Set crossing mode" msgstr "Geçit modunu ayarla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3582 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3582 msgid "Mode for creating crossings between edges. (R)" msgstr "Kesimler arasında geçitler oluşturmak için mod. (R)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3588 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3588 msgid "Set TAZ mode" msgstr "TAB modunu ayarla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3588 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3588 msgid "Mode for creating Traffic Assignment Zones. (Z)" msgstr "Trafik Atama Bölgeleri oluşturma modu. (Z)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3594 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3594 msgid "Set polygon mode" msgstr "Çokgen modunu ayarla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3594 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3594 msgid "Mode for creating polygons and POIs. (P)" msgstr "Çokgen ve EN'ler oluşturmak için mod. (P)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3600 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3600 msgid "Set wire mode" msgstr "Kablo modunu ayarla" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3600 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3600 msgid "Mode for editing wires. (W)" msgstr "Kabloları düzenlemek için mod. (W)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3696 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3687 msgid "Create route mode" msgstr "Rota oluşturma modu" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3696 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3687 msgid "Mode for creating routes. (R)" msgstr "Rota oluşturmak için mod. (R)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3702 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3693 msgid "Create vehicle mode" msgstr "Araç oluşturma modu" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3702 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3693 msgid "Mode for creating vehicles. (V)" msgstr "Araçlar oluşturmak için mod. (V)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3708 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3699 msgid "Create type mode" msgstr "Tip oluşturma modu" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3708 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3699 msgid "Mode for creating types (vehicles, person and containers). (T)" msgstr "Tip oluşturmak için mod (araç, yolcu ve konteynerler). (T)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3714 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3705 +msgid "Create type distribution mode" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3705 +msgid "Mode for creating type distribution. (U)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3711 msgid "Create stop mode" msgstr "Durak oluşturma modu" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3714 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3711 msgid "Mode for creating stops. (A)" msgstr "Durak oluşturmak için mod. (A)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3720 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3717 msgid "Create person mode" msgstr "Yaya oluşturma modu" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3720 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3717 msgid "Mode for creating persons. (P)" msgstr "Yolcuları oluşturmak için mod. (P)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3726 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3723 msgid "Create person plan mode" msgstr "Yolcu planı oluşturma modu" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3726 -msgid "Mode for creating person plans. (C)" -msgstr "Yolcu planları oluşturmak için mod. (C)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3723 +msgid "Mode for creating person plans. (L)" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3732 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3729 msgid "Create container mode" msgstr "Konteyner modu oluştur" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3732 -msgid "Mode for creating containers. (P)" -msgstr "Konteynerler oluşturmak için mod. (P)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3729 +msgid "Mode for creating containers. (C)" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3738 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3735 msgid "Create container plan mode" msgstr "Konteyner planı oluşturma modu" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3738 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3735 msgid "Mode for creating container plans. (H)" msgstr "Konteyner planları oluşturmak için mod. (H)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3815 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3816 msgid "Create edge data mode" msgstr "Kesim veri oluşturma modu" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3815 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3816 msgid "Mode for creating edge datas. (E)" msgstr "Kesim verileri oluşturmak için mod. (E)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3821 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3822 msgid "Create edge relation data mode" msgstr "Kesim ilişkili veri oluşturma modu" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3821 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3822 msgid "Mode for creating edge relation datas. (R)" msgstr "Kesim ilişkili veri oluşturmak için mod. (R)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3827 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3828 msgid "Create TAZ relation data mode" msgstr "TAB ilişkili veri oluşturma modu" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3827 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3828 msgid "Mode for creating TAZ relation datas. (Z)" msgstr "TAB ilişkili veri oluşturmak için mod. (Z)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3833 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3834 msgid "MeanData mode" msgstr "MeanData modu" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3833 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3834 msgid "Mode for MeanData elements. (M)" msgstr "MeanData elemanları için mod. (M)" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:102 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:103 msgid "Undo the last change. (Ctrl+Z)" msgstr "Son değişikliği geri al. (Ctrl+Z)" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:105 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:106 msgid "Redo the last change. (Ctrl+Y)" msgstr "Son değişikliği yinele. (Ctrl+Y)" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:113 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:114 msgid "Compute path manager" msgstr "Yol yöneticisini hesapla" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:113 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:114 msgid "Compute path manager." msgstr "Yol yöneticisini hesapla." -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:521 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:528 msgid "WalkingArea Chooser" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:590 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:597 msgid "Route Chooser" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:598 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:605 msgid "Stop Chooser" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:629 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:641 msgid "TLS Chooser" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:640 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:652 msgid "Additional Chooser" msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:669 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:681 msgid "Poly Chooser" msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:120 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:96 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:108 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:97 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:145 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:128 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:118 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:96 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:108 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:97 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:145 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:128 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:118 msgid "Undo create " msgstr "Oluşturmayı geri al " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:122 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:99 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:110 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:99 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:147 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:130 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:122 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:99 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:110 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:99 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:147 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:120 msgid "Undo delete " msgstr "Silmeyi geri al " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:130 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:118 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:107 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:155 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:138 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:128 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:118 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:107 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:155 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:138 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:128 msgid "Redo create " msgstr "Oluşturmayı yinele " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:132 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:120 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:109 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:157 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:140 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:132 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:109 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:157 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:140 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:130 msgid "Redo delete " msgstr "Silmeyi yinele " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Attribute.cpp:158 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Attribute.cpp:158 msgid "Undo change " msgstr "Değişikliği geri al " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Attribute.cpp:164 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Attribute.cpp:164 msgid "Redo change " msgstr "Değişikliği yinele " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:147 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:158 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:147 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:158 msgid "Undo moving up " msgstr "Yukarı taşımayı geri al " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:149 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:156 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:149 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:156 msgid "Undo moving down " msgstr "Aşağı taşımayı geri al " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:151 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:160 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:175 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:184 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:151 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:160 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:175 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:184 msgid "Invalid operation" msgstr "Geçersiz işlem" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:171 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:180 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:171 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:180 msgid "Redo moving front " msgstr "İleri taşımayı yinele " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:173 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:182 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:173 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:182 msgid "Redo moving back " msgstr "Geri taşımayı yinele " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:108 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:108 msgid "Redo create connection '" msgstr "' Bağlantı oluşturmayı yinele" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:111 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:111 msgid "Redo delete connection '" msgstr "' Bağlantı silmeyi yinele" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:163 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:163 msgid "Undo create crossing" msgstr "Geçit oluşturmayı geri al" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:165 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:165 msgid "Undo delete crossing" msgstr "Geçit silmeyi geri al" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:173 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:173 msgid "Redo create crossing" msgstr "Geçit oluşturmayı yinele" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:175 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:175 msgid "Redo delete crossing" msgstr "Geçit silmeyi yinele" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:136 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:136 msgid "Undo create edge '" msgstr "' Kesim oluşturmayı geri al" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:138 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:138 msgid "Undo delete edge '" msgstr "' Kesim silmeyi geri al" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:146 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:146 msgid "Redo create edge '" msgstr "' Kesim oluşturmayı yinele" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:148 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:148 msgid "Redo delete edge '" msgstr "' Kesim silmeyi yinele" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:111 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:111 msgid "Undo create edgeType '" msgstr "' Kesim Tipi oluşturmayı geri al" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:113 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:113 msgid "Undo delete edgeType '" msgstr "' Kesim tipi silmeyi geri al" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:121 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:121 msgid "Redo create edgeType '" msgstr "' Kesim tipi oluşturmayı yinele" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:123 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:123 msgid "Redo delete edgeType '" msgstr "' Kesim tipi silmeyi yinele" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:113 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:115 -msgid "Undo enable " -msgstr "Geri alma etkin " - -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:113 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:115 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:123 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:125 -msgid " attribute in '" -msgstr " şuradaki öznitelik '" - -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:123 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:125 -msgid "Redo enable " -msgstr "Yineleme etkin " +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:113 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:115 +msgid "Undo enable % attribute in '%'" +msgstr "" + +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:123 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:125 +msgid "Redo enable % attribute in '%'" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:109 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:109 msgid "Undo create junction '" msgstr "' Kavşak oluşturmayı geri al" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:111 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:111 msgid "Undo delete junction '" msgstr "' Kavşak silmeyi geri al" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:119 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:119 msgid "Redo create junction '" msgstr "' Kavşak oluşturmayı yinele" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:121 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:121 msgid "Redo delete junction '" msgstr "' Kavşak silmeyi yinele" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:158 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:158 msgid "Undo create lane '" msgstr "' Şerit oluşturmayı geri al" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:160 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:160 msgid "Undo delete lane '" msgstr "' Şerit silmeyi geri al" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:168 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:168 msgid "Redo create lane '" msgstr "' Şerit oluşturmayı yinele" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:170 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:170 msgid "Redo delete lane '" msgstr "' Şerit silmeyi yinele" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:172 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:172 msgid "Undo create TLS '" msgstr "' TIS oluşturmayı geri al" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:174 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:174 msgid "Undo delete TLS '" msgstr "' TIS silmeyi geri al" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:182 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:182 msgid "Redo create TLS '" msgstr "' TIS oluşturmayı yinele" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:184 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:184 msgid "Redo delete TLS '" msgstr "' TIS silmeyi yinele" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:38 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:38 msgid "About Eclipse SUMO netedit" msgstr "Eclipse SUMO Netedit Hakkında" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:53 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:53 msgid "Network editor for Eclipse SUMO, the Simulation of Urban MObility" msgstr "Eclipse SUMO, Kentsel Hareketlilik Simülasyonu için ağ editörü" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:54 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:54 msgid "Graphical editor for road networks and infrastructure." msgstr "Yol ağları ve altyapı için grafik düzenleyici." -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:66 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:66 msgid "This application is based on code provided by the Eclipse SUMO project." msgstr "" "Bu uygulama, Eclipse SUMO projesi tarafından sağlanan koda dayanmaktadır." -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:67 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:67 msgid "" "These core components are available under the conditions of the Eclipse " "Public License v2." @@ -4645,134 +4680,137 @@ "Bu çekirdek bileşenler Eclipse Kamu Lisansı v2 koşulları altında " "kullanılabilir." -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:923 msgid "Accept" msgstr "Kabul et" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:62 msgid "Close accepting changes" msgstr "Değişiklikleri kabul etmeyi kapat" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:94 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:93 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1368 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:377 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:925 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1396 msgid "Cancel" msgstr "İptal" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:63 msgid "Close discarding changes" msgstr "Değişiklikleri silmeyi kapat" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:64 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:93 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:378 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:97 msgid "Reset" msgstr "Sıfırla" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:64 msgid "Reset to previous values" msgstr "Önceki değerlere sıfırla" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:276 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:649 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:59 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:690 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:494 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:133 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:276 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:650 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:59 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:713 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:494 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:133 msgid "accept" msgstr "kabul et" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:276 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:277 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:278 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:415 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:649 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:650 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:651 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:411 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:690 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:691 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:692 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:408 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:494 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:495 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:234 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:247 -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:285 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:384 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:559 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:298 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:487 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:134 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:276 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:277 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:416 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:650 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:651 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:652 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:413 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:713 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:714 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:715 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:408 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:494 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:495 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:380 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:298 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:487 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:134 msgid "close" msgstr "Kapat" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:277 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:650 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:60 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:691 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:495 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:277 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:651 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:60 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:714 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:495 msgid "cancel" msgstr "İptal Et" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:278 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:651 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:692 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:652 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:715 msgid "reset" msgstr "Sıfırla" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNECalibratorDialog.cpp:237 +#: D:\Repos\sumo/src\netedit\dialogs\GNECalibratorDialog.cpp:237 msgid "routes cannot be empty" msgstr "rotalar boş olamaz" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNECalibratorDialog.cpp:472 +#: D:\Repos\sumo/src\netedit\dialogs\GNECalibratorDialog.cpp:472 msgid "No routes defined" msgstr "Herhangi Bir Rota Tanımlı Değil" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:71 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:638 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:389 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:71 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:638 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:389 msgid "&Accept" msgstr "Onayla" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:75 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:90 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:75 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:90 msgid "close accepting changes" msgstr "Kabul edilen değişiklikleri kapat" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:64 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:76 msgid "close discarding changes" msgstr "Kabul edilmeyen değişiklikleri kapat" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:65 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:65 msgid "&Reset" msgstr "Sıfırla" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:65 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:77 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:65 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:77 msgid "reset to previous values" msgstr "Önceki değerlere sıfırla" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDialogACChooser.cpp:111 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDialogACChooser.cpp:111 msgid "Invalid Junction" msgstr "Geçersiz Kavşak" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDialogACChooser.cpp:117 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDialogACChooser.cpp:117 msgid "Invalid number of TLSs" msgstr "Geçersiz TIS sayısı" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:257 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:333 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:457 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:257 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:333 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:457 msgid "Activate friendlyPos and save" msgstr "friendlyPos (Varsayılan Yerleşimi) Aktifleştir ve Kaydet" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:257 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:333 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:257 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:333 msgid "" "Friendly pos parameter will be activated in all stopping places and E2 " "detectors" @@ -4780,31 +4818,31 @@ "Friendly pos parametresi tüm durak yerlerinde ve E2 dedektörlerinde aktif " "olacak" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:259 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:460 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:259 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:460 msgid "Save invalid positions" msgstr "Geçersiz Pozisyonları Kaydet" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:259 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:259 msgid "Save stopping places and E2 detectors with invalid positions" msgstr "Durak yerlerini ve E2 dedektörlerini geçersiz konumlarla kaydet" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:263 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:335 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:466 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:263 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:335 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:466 msgid "Fix positions and save" msgstr "Pozisyonları Düzelt ve Kaydet" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:263 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:335 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:263 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:335 msgid "Position of stopping places and E2 detectors will be fixed" msgstr "Durak yerlerinin ve E2 dedektörlerinin pozisyonu sabitlenecek" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:265 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:265 msgid "Select invalid additionals" msgstr "Geçersiz ekleri seç" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:265 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:265 msgid "" "Cancel saving of additionals and select invalid stopping places and E2 " "detectors" @@ -4812,177 +4850,177 @@ "İlavelerin kaydedilmesini iptal et ve geçersiz durak yerleri ile E2 " "dedektörlerini seç" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:325 msgid "Build connections between lanes" msgstr "Şeritler arasında bağlantılar oluştur" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:325 msgid "New connections will be created between non-connected lanes" msgstr "Bağlantısız şeritler arasında yeni bağlantılar oluşturulacak" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:327 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:327 msgid "Remove invalid E2 detectors" msgstr "Geçersiz E2 dedektörlerini kaldır" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:327 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:327 msgid "Remove Multilane E2 Detectors with non-connected lanes" msgstr "Bağlantısız şeritlerde çok şeritli E2 Dedektörlerini Kaldır" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:202 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:189 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:202 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:189 msgid "Save list of conflicted items" msgstr "Çakışan Öğelerin Listesini Kaydet" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:240 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:240 msgid "Remove invalid routes" msgstr "Geçersiz Rotaları Kaldır" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:243 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:243 msgid "Save invalid routes" msgstr "Geçersiz Rotaları Kaydet" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:246 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:246 msgid "Select conflicted routes" msgstr "Çakışan Rotaları Seç" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:249 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:249 msgid "Remove stops out of route" msgstr "Rota Dışındaki Durakları Kaldır" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:351 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:351 msgid "Remove invalid vehicles" msgstr "Geçersiz Araçları Kaldır" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:354 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:354 msgid "Save invalid vehicles" msgstr "Geçersiz Araçları Kaydet" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:357 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:357 msgid "Select conflicted vehicle" msgstr "Çakışan Araçları Seç" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:360 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:360 msgid "Remove stops out of vehicle's route" msgstr "Araç Rotası Dışındaki Durakları Kaldır" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:463 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:463 msgid "Select conflicted Stops" msgstr "Çakışan Durakları Seç" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:557 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:557 msgid "Delete person plan" msgstr "Yolcu Planını Sil" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:560 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:560 msgid "Save invalid person plans" msgstr "Geçersiz Yolcu Planlarını Kaydet" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:563 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:563 msgid "Select conflicted person plans" msgstr "Çakışan Yolcu Planlarını Seç" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:52 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:52 msgid "Fix network elements problems" msgstr "Ağ Elemanları Sorunlarını Düzelt" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:206 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:206 msgid "Saving successfully" msgstr "Başarıyla Kaydediliyor" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:213 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:213 msgid "Saving list of conflicted items failed" msgstr "Çakışan Öğe Listesinin Kaydı Başarısız" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:227 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:227 msgid "Remove invalid edges" msgstr "Geçersiz Kesimleri Kaldır" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:230 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:230 msgid "Save invalid edges" msgstr "Geçersiz Kesimleri Kaydet" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:233 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:233 msgid "Select conflicted edges" msgstr "Çakışan Kesimleri Seç" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:308 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:308 msgid "Remove invalid crossings" msgstr "Geçersiz Geçitleri Kaldır" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:311 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:311 msgid "Save invalid crossings" msgstr "Geçersiz Geçitleri Kaydet" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:314 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:314 msgid "Select conflicted crossing" msgstr "Çakışan Geçitleri Seç" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:285 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:281 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:286 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:283 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:278 msgid "Sort" msgstr "Sırala" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:286 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:282 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:279 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:55 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:251 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:287 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:284 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:279 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:252 msgid "Clear" msgstr "Temizle" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:289 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:285 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:282 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:59 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:748 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:73 -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:318 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:113 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:420 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:60 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:83 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:37 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:39 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:222 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1194 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:290 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:287 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:756 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:318 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:109 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:37 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:39 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:223 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1191 msgid "Help" msgstr "Yardım" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:299 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:295 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:292 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:300 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:297 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:292 msgid "Open Parameter Template" msgstr "Parametre Şablonunu Aç" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:314 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:310 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:307 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:315 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:312 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:307 #, c-format msgid "Loading of Parameters From % failed." msgstr "Dosyadan % parametrelerin yüklenmesi başarısız oldu." -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:317 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:313 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:310 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:318 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:315 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:310 msgid "Loaded % Parameters." msgstr "Yüklenen % parametreler." -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:327 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:323 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:320 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:328 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:320 msgid "Save Parameter Template file" msgstr "Parametre Şablon Dosyası Kaydet" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:403 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:399 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:396 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:404 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:401 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:396 msgid "- Parameters are defined by a Key and a Value.\n" msgstr "- Parametreler Bir Anahtar ve Değere Göre Tanımlanmıştır.\n" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:404 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:400 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:397 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:405 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:402 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:397 msgid "" "- In Netedit can be defined using format key1=parameter1|" "key2=parameter2|...\n" @@ -4990,50 +5028,50 @@ "- Netedit'te Format Kullanılarak Tanımlanabilir key1=parameter1|" "key2=parameter2|...\n" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:405 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:401 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:398 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:406 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:403 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:398 msgid " - Duplicated and empty Keys aren't valid.\n" msgstr " - Tıpkılanmış ve Boş Anahtarlar Geçerli Değil.\n" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:406 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:402 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:399 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:407 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:404 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:399 msgid " - Whitespace and certain characters aren't allowed (@$%^&/|\\....)\n" msgstr " Boş Alan ve Bazı Karakterler Girilemez (@$%^&/|\\....)\n" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:448 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:447 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:444 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:449 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:449 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:444 msgid "Key of Parameter not defined" msgstr "Parametre Anahtarı Tanımlı Değil" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:450 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:449 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:446 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:451 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:451 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:446 msgid "Value of Parameter not defined" msgstr "Parametre Değeri Tanımlı Değil" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:458 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:457 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:454 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:454 msgid "Key of Parameter cannot be empty" msgstr "Parametre Anahtarı Boş Olamaz" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:460 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:459 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:456 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:461 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:461 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:456 #, c-format msgid "Key '%' of Parameter contains invalid characters" msgstr "Parametrenin '%' Anahtarı geçersiz karakterler içeriyor" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:463 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:462 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:464 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:464 #, c-format msgid "Key '%' already exist" msgstr "Anahtar '%' zaten mevcut" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:478 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:479 msgid "" "Only for\n" "existent keys" @@ -5041,321 +5079,406 @@ "Sadece\n" "Mevcut Anahtarlar" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:59 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:59 msgid "load elements" msgstr "Elemanları yükle" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:60 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:60 msgid "cancel loading of elements" msgstr "elemanların yüklenmesini iptal et" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:61 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:61 msgid "overwrite" msgstr "üzerine yaz" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:61 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:61 msgid "overwrite elements" msgstr "elemanların üzerine yaz" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:182 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:182 msgid "Rerouter has more than one edge" msgstr "Rerouter (Rotalayıcı) Birden Fazla Kesimde Var" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:321 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:321 msgid "There are no lanes in the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:341 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:361 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:341 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:361 msgid "There are no edges in the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:398 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:398 msgid "There are no parking areas in the network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEUndoListDialog.cpp:58 +#: D:\Repos\sumo/src\netedit\dialogs\GNEUndoListDialog.cpp:58 msgid "OK\tclose dialog" msgstr "Tamam\t\tİletişim Penceresini Kapat" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:459 #, c-format msgid "Key '%' already exists" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:446 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:753 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:446 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1159 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1168 msgid "Edit parameters" msgstr "Parametreleri Düzenle" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:466 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:466 msgid "Invalid row type" msgstr "Geçersiz satır türü" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:635 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:425 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:455 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1252 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:635 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:426 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:463 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1249 msgid "Color Dialog" msgstr "Renk İletişim Kutusu" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:660 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:660 msgid "Open Image" msgstr "Görsel Aç" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:687 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:687 msgid "Open OSG File" msgstr "OSG Dosyası Aç" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:266 +msgid "Could not load configuration '" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:271 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:169 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:173 +msgid "Could not load tool configuration '" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:275 +msgid "Loaded configuration." +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:295 +msgid "Save options" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:297 +msgid "Save configuration file" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:298 +msgid "Load options" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:300 +msgid "Load configuration file" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:301 +msgid "Default options" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:303 +msgid "Reset all options to default" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:311 +msgid "Topics" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:362 +msgid "Search" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:364 +msgid "Include description in search" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:81 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:138 +msgid "Reset value" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:226 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:238 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:251 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:272 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:734 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:746 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:760 +msgid "true" +msgstr "Doğru" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:229 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:241 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:254 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:275 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:737 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:749 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:766 +msgid "false" +msgstr "Yanlış" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:458 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:82 +msgid "Select filename" +msgstr "Dosya adı seç" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:63 msgid "Grid" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:64 msgid "Spider" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:65 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:65 msgid "Random grid" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:66 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:66 msgid "Random" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:82 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:232 -msgid "Select filename" -msgstr "Dosya adı seç" - -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:92 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:92 msgid "Advanced" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:92 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:92 msgid "open advance netgenerate dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:94 msgid "Close dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:71 -msgid "Save options" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:71 +msgid "Save toolcfg" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:73 -msgid "Load options" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:73 +msgid "Save file with tool configuration" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:74 +msgid "Load toolcfg" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:76 +msgid "Load file with tool configuration" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:75 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:77 msgid "Sorted by name" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:78 msgid "Grouped by categories" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:89 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:90 +msgid "Blue options are mandatory" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:93 msgid "run python tool" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:91 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:95 msgid "close tool dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:93 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:97 msgid "reset to default values" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:122 -msgid "Reset value" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:245 +#, c-format +msgid "Use current % file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:227 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:251 #, c-format -msgid "Use current % file" +msgid "Select % file" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:274 +msgid "Use current selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:253 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:349 msgid "network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:296 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:392 msgid "additional" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:339 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:435 msgid "route" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:382 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:478 msgid "data" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:556 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:568 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:582 -msgid "true" -msgstr "Doğru" - -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:559 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:571 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:585 -msgid "false" -msgstr "Yanlış" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:521 +msgid "sumo config" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:70 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:71 msgid "Save output" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:65 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:66 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:72 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:73 msgid "Console output" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:75 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:82 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:83 msgid "Abort" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:75 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:82 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:83 msgid "abort running" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:77 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:78 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:84 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:85 msgid "Rerun" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:77 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:78 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:84 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:85 msgid "rerun tool" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:79 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:80 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:86 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:87 msgid "Back" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:79 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:80 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:86 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:87 msgid "back to tool dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:87 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:88 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:95 msgid "close dialog" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:134 msgid "Nothing to enable, implement in Children" msgstr "Etkinleştirilecek bir şey yok, alt bileşenlerde uygulayın" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:141 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:141 msgid "Nothing to disable, implement in Children" msgstr "Devre dışı bırakılacak bir şey yok, alt bileşenlerde uygulayın" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:631 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:631 #, c-format msgid "TagProperty for tag '%' not defined" msgstr "'%' etiketi için TagProperty tanımlanmadı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:849 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:849 msgid "Nothing to toggle, implement in Children" msgstr "Değiştirilecek bir şey yok, alt bileşenlerde uygulayın" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:913 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:913 msgid "The id of the node" msgstr "Düğümün kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:918 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1903 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1909 msgid "The x-y-z position of the node on the plane in meters" msgstr "Düzlemdeki düğümün metre cinsinden x-y-z konumu" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:923 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:923 msgid "An optional type for the node" msgstr "Düğüm için isteğe bağlı bir tip" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:929 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:929 msgid "A custom shape for that node" msgstr "Bu düğüm için özel bir şekil" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:934 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:934 msgid "Optional turning radius (for all corners) for that node in meters" msgstr "" "Bu düğüm için metre cinsinden isteğe bağlı dönüş yarıçapı (tüm köşeler için)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:940 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:940 msgid "" "Whether the junction-blocking-heuristic should be activated at this node" msgstr "" "Kavşak engelleme sezgiselinin bu düğümde etkinleştirilip " "etkinleştirilmeyeceği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:946 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:946 msgid "How to compute right of way rules at this node" msgstr "Bu düğümde geçiş hakkı kuralları nasıl hesaplanır?" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:953 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:953 msgid "Whether this junction is at the fringe of the network" msgstr "Bu kavşağın ağın sınırında olup olmadığı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:960 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:960 msgid "Optional name of junction" msgstr "İsteğe bağlı kavşak adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:965 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:965 msgid "An optional type for the traffic light algorithm" msgstr "Trafik ışığı algoritması için isteğe bağlı bir tür" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:971 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:971 msgid "An optional layout for the traffic light plan" msgstr "Trafik ışığı planı için isteğe bağlı bir düzen" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:980 msgid "An optional id for the traffic light program" msgstr "Trafik ışığı programı için isteğe bağlı bir kimlik" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:993 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:993 msgid "The id of the edge" msgstr "Kesimin kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:998 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1116 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:998 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1116 msgid "The number of lanes of the edge" msgstr "Kesimin şerit sayısı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1004 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1104 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1004 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1104 msgid "The maximum speed allowed on the edge in m/s" msgstr "Kesimde m/s cinsinden izin verilen maksimum hız" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1010 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1064 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1127 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1230 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1446 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1064 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1230 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1446 msgid "" "Explicitly allows the given vehicle classes (not given will be not allowed)" msgstr "" "Verilen araç sınıflarına açıkça izin verir (verilmeyenlere izin verilmez)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1016 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1070 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1133 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1236 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1452 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1016 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1070 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1133 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1236 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1452 msgid "" "Explicitly disallows the given vehicle classes (not given will be allowed)" msgstr "" "Verilen araç sınıflarına açıkça izin verilmez (verilmeyenlere izin verilir)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1021 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1148 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1021 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1148 msgid "" "The spreadType defines how to compute the lane geometry from the edge " "geometry (used for visualization)" @@ -5363,57 +5486,57 @@ "spreadType, şerit geometrisinin kenar geometrisinden nasıl hesaplanacağını " "tanımlar (görselleştirme için kullanılır)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1028 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1110 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1110 msgid "The priority of the edge" msgstr "Kesimin önceliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1034 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1160 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1160 msgid "" "Lane width for all lanes of this edge in meters (used for visualization)" msgstr "" "Bu kesimin tüm şeritleri için metre cinsinden şerit genişliği " "(görselleştirme için kullanılır)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1040 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1040 msgid "The width of the sidewalk that should be added as an additional lane" msgstr "Ek şerit olarak eklenmesi gereken kaldırımın genişliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1045 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1045 msgid "The width of the bike lane that should be added as an additional lane" msgstr "Ek şerit olarak eklenmesi gereken bisiklet yolunun genişliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1058 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1058 msgid "The maximum speed allowed on the lane in m/s" msgstr "Kesimde m/s cinsinden izin verilen maksimum hız" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1075 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1075 msgid "" "Lane width for all lanes of this lane in meters (used for visualization)" msgstr "" "Bu şeridin tüm şeritleri için metre cinsinden şerit genişliği " "(görselleştirme için kullanılır)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1089 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2650 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2698 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1089 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2656 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2704 msgid "Edge ID" msgstr "Kesim Kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1094 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1094 msgid "The name of a node within the nodes-file the edge shall start at" msgstr "Kesimin başlayacağı düğüm dosyası içindeki bir düğümün adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1099 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1099 msgid "The name of a node within the nodes-file the edge shall end at" msgstr "Kesimin biteceği düğüm dosyası içindeki bir düğümün adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1122 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1122 msgid "The name of a type within the SUMO edge type file" msgstr "SUMO kesim tipi dosyası içindeki bir tipin adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1138 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1138 msgid "" "If the shape is given it should start and end with the positions of the from-" "node and to-node" @@ -5421,53 +5544,53 @@ "Şekil verilmişse, düğümden gelen ve düğüme giden konumlarıyla başlamalı ve " "bitmelidir" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1143 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1143 msgid "The length of the edge in meter" msgstr "Metre cinsinden kesim uzunluğu" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1155 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1155 msgid "street name (does not need to be unique, used for visualization)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1166 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1247 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1166 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1247 msgid "Move the stop line back from the intersection by the given amount" msgstr "Dur çizgisini kavşaktan verilen miktar kadar geriye taşı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1172 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1172 msgid "" "Custom position in which shape start (by default position of junction from)" msgstr "" "Şeklin başladığı özel konum (varsayılan olarak birleşme noktası konumu)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1177 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1177 msgid "" "Custom position in which shape end (by default position of junction from)" msgstr "Şeklin bittiği özel konum (varsayılan olarak birleşme noktası konumu)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1182 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1182 msgid "Show if edge is bidirectional" msgstr "Kesimin çift yönlü olup olmadığını göster" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1188 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1188 msgid "Distance" msgstr "Mesafe" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1194 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1288 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1194 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1288 msgid "The stop offset as positive value in meters" msgstr "Metre cinsinden pozitif değer olarak durak ötelemesi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1200 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1294 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1200 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1294 msgid "Specifies, for which vehicle classes the stopOffset does NOT apply." msgstr "stopOffset'in hangi araç sınıfları için geçerli OLMADIĞINI belirtir." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1214 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1214 msgid "Lane ID (Automatic, non editable)" msgstr "Şerit Kimliği (Otomatik, düzenlenemez)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1219 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1219 msgid "" "The enumeration index of the lane (0 is the rightmost lane, -1 " "is the leftmost one)" @@ -5475,49 +5598,49 @@ "Şeridin numaralandırma indeksi (0 en sağdaki şerittir, -1 en " "soldaki şerittir)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1224 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1224 msgid "Speed in meters per second" msgstr "Saniyede metre cinsinden hız" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1241 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1241 msgid "Width in meters (used for visualization)" msgstr "Metre cinsinden genişlik (görselleştirme için kullanılır)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1253 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1253 msgid "Enable or disable lane as acceleration lane" msgstr "Şeridi hızlanma şeridi olarak etkinleştirin veya devre dışı bırakın" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1259 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1259 msgid "If the shape is given it overrides the computation based on edge shape" msgstr "Şekil verilirse, kesim şekline dayalı hesaplamayı geçersiz kılar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1264 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1264 msgid "If given, this defines the opposite direction lane" msgstr "Verilirse, bu ters yön şeridini tanımlar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1269 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1474 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1269 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1474 msgid "Permit changing left only for to the given vehicle classes" msgstr "Sadece verilen araç sınıfları için sola geçişe izin ver" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1276 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1481 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1276 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1481 msgid "Permit changing right only for to the given vehicle classes" msgstr "Sadece verilen araç sınıfları için sağa geçişe izin ver" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1283 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1283 msgid "Lane type description (optional)" msgstr "Şerit tipi açıklaması (isteğe bağlı)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1308 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1308 msgid "Crossing ID" msgstr "Geçit Kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1313 msgid "The (road) edges which are crossed" msgstr "Kesişen (yol) kesimler" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1318 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1318 msgid "" "Whether the pedestrians have priority over the vehicles (automatically set " "to true at tls-controlled intersections)" @@ -5525,61 +5648,61 @@ "Yayaların araçlara göre önceliği olup olmadığı (tls kontrollü kavşaklarda " "otomatik olarak true olarak ayarlanır)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1324 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1324 msgid "The width of the crossings" msgstr "Geçitlerin genişliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1330 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1330 msgid "sets the tls-index for this crossing" msgstr "bu geçiş için tıs indeksini ayarlar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1336 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1336 msgid "sets the opposite-direction tls-index for this crossing" msgstr "bu geçiş için ters yöndeki tıs indeksini ayarlar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1342 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1342 msgid "Overrides default shape of pedestrian crossing" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1355 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1355 msgid "Walking Area ID" msgstr "Yürüyüş Alanı Kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1360 msgid "The width of the WalkingArea" msgstr "Yürüyüş Alanının genişliği (WalkingArea)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1366 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1366 msgid "The length of the WalkingArea in meter" msgstr "Yürüme Alanının metre cinsinden uzunluğu (WalkingArea)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1371 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1371 msgid "Overrides default shape of pedestrian sidewalk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1384 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1384 msgid "The ID of the edge the vehicles leave" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1389 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1389 msgid "The ID of the edge the vehicles may reach when leaving 'from'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1394 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1394 msgid "the lane index of the incoming lane (numbers starting with 0)" msgstr "gelen şeridin şerit indeksi (0 ile başlayan sayılar)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1399 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1399 msgid "the lane index of the outgoing lane (numbers starting with 0)" msgstr "giden şeridin şerit indeksi (0 ile başlayan sayılar)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1404 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1404 msgid "" "if set, vehicles which pass this (lane-2-lane) connection) will not wait" msgstr "" "ayarlanırsa, bu (şeritten şeride) bağlantıyı geçen araçlar beklemeyecektir" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1410 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1410 msgid "" "if set to false, vehicles which pass this (lane-2-lane) connection) will not " "worry about blocking the intersection" @@ -5587,7 +5710,7 @@ "false olarak ayarlanırsa, bu (şeritten şeride) bağlantıyı geçen araçlar " "kavşağı engelleme konusunda endişelenmeyecektir" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1416 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1416 msgid "" "If set to a more than 0 value, an internal junction will be built at this " "position (in m)/n from the start of the internal lane for this connection" @@ -5596,7 +5719,7 @@ "başlangıcından itibaren bu konumda (m)/n cinsinden bir dahili kavşak inşa " "edilecektir" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1422 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1422 msgid "" "If set to true, This connection will not be TLS-controlled despite its node " "being controlled" @@ -5604,15 +5727,15 @@ "true olarak ayarlanırsa, düğümü kontrol edilmesine rağmen bu bağlantı TLS " "kontrollü olmayacaktır" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1428 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1428 msgid "Vision distance between vehicles" msgstr "Araçlar arası görüş mesafesi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1434 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1434 msgid "sets index of this connection within the controlling traffic light" msgstr "Bu bağlantının dizinini kontrol eden trafik ışığı içinde ayarlar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1440 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1440 msgid "" "sets index for the internal junction of this connection within the " "controlling traffic light" @@ -5620,65 +5743,65 @@ "kontrol eden trafik ışığı içinde bu bağlantının dahili kavşağı için dizin " "ayarlar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1457 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1457 msgid "sets custom speed limit for the connection" msgstr "bağlantı için özel hız sınırını ayarlar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1463 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1463 msgid "sets custom length for the connection" msgstr "bağlantı için özel uzunluk ayarlar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1469 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1469 msgid "sets custom shape for the connection" msgstr "bağlantı için özel şekil ayarlar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1488 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1488 msgid "if set to true, vehicles will make a turn in 2 steps" msgstr "true olarak ayarlanırsa, araçlar 2 adımda dönüş yapacaktır" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1494 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1494 msgid "" "set a custom edge type (for applying vClass-specific speed restrictions)" msgstr "" "özel bir kesim tipi ayarla (Araç tipine özgü hız kısıtlamalarını uygulamak " "için)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1500 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1500 msgid "turning direction for this connection (computed)" msgstr "bu bağlantı için dönüş yönü (hesaplanmış)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1505 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1505 msgid "link state for this connection (computed)" msgstr "bu bağlantı için bağlantı durumu (hesaplanmış)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1535 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1535 msgid "The id of bus stop" msgstr "Otobüs durağının kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1540 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1540 msgid "The name of the lane the bus stop shall be located at" msgstr "Otobüs durağının bulunacağı şeridin adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1545 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1609 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1707 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1836 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3962 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4073 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1545 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1609 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1707 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3968 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4095 msgid "" "The begin position on the lane (the lower position on the lane) in meters" msgstr "" "Şerit üzerindeki başlangıç konumu (şerit üzerindeki alt konum) metre " "cinsinden" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1550 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1614 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1712 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1841 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3967 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4078 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4432 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4802 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1550 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1614 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1712 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1841 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3973 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4100 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4470 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4916 msgid "" "The end position on the lane (the higher position on the lane) in meters, " "must be larger than startPos by more than 0.1m" @@ -5686,63 +5809,63 @@ "Metre cinsinden şerit üzerindeki son konum (şerit üzerindeki en yüksek " "konum), startPos değerinden 0,1m daha büyük olmalıdır" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1555 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1555 msgid "Name of busStop" msgstr "Otobüs durağının adı (busStop)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1560 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1624 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1680 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1722 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1785 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1868 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1979 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2060 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2140 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2219 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2246 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2293 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2959 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3266 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3972 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4083 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4437 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4807 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1560 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1680 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1722 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1785 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1868 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1985 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2066 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2146 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2225 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2252 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2299 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2965 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3272 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3978 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4105 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4475 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4921 msgid "If set, no error will be reported if element is placed behind the lane." msgstr "Ayarlanırsa, eleman şeridin arkasına yerleştirilirse hata bildirilmez." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1561 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1561 msgid "" "Instead, it will be placed 0.1 meters from the lanes end or at position 0.1" msgstr "" "Bunun yerine, şerit sonundan 0,1 metre uzağa veya 0,1 konumuna " "yerleştirilecektir" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1562 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1626 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1682 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1724 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1787 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1870 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1981 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2062 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2142 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2221 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2248 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2295 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2961 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3268 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3974 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4085 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4439 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4809 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1562 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1626 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1682 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1724 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1787 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1870 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1987 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2148 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2227 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2254 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2301 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2967 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3274 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4477 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4923 msgid "" "if the position was negative and larger than the lanes length after " "multiplication with - 1" msgstr "" "konum negatifse ve - 1 ile çarpıldıktan sonra şerit uzunluğundan büyükse" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1568 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1568 msgid "" "Meant to be the names of the bus lines that stop at this bus stop. This is " "only used for visualization purposes" @@ -5750,60 +5873,60 @@ "Bu otobüs durağında duran otobüs hatlarının adları anlamına gelir. Bu sadece " "görselleştirme amacıyla kullanılır" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1573 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1637 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1573 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1637 msgid "" "Larger numbers of persons trying to enter will create an upstream jam on the " "sidewalk" msgstr "" "İçeri girmeye çalışan çok sayıda kişi kaldırımda sıkışıklık yaratacaktır" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1579 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1643 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1741 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1579 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1741 msgid "Optional space definition for vehicles that park at this stop" msgstr "Bu durağa park eden araçlar için isteğe bağlı alan tanımı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1585 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1585 msgid "The RGBA color with which the busStop shall be displayed" msgstr "Otobüs durağının görüntüleneceği RGBA rengi (busStop)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1599 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1599 msgid "The id of train stop" msgstr "Tren durağının kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1604 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1604 msgid "The name of the lane the train stop shall be located at" msgstr "Tren durağının bulunduğu şeridin adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1619 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1619 msgid "Name of trainStop" msgstr "Tren Durağının Adı (trainStop)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1625 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1681 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1723 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1786 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1869 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1980 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2061 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2141 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2220 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2247 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2294 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2960 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3267 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3973 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4084 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4438 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4808 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1625 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1681 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1723 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1786 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1869 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1986 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2147 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2226 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2253 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2300 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2966 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3273 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3979 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4106 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4476 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4922 msgid "" "Instead, it will be placed 0.1 meters from the lanes end or at position 0.1," msgstr "" "Bunun yerine, şerit sonundan 0,1 metre uzağa veya 0,1 konumuna " "yerleştirilecektir," -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1632 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1632 msgid "" "Meant to be the names of the train lines that stop at this train stop. This " "is only used for visualization purposes" @@ -5811,35 +5934,35 @@ "Bu tren durağında duran tren hatlarının adları anlamına gelir. Bu sadece " "görselleştirme amacıyla kullanılır" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1649 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1649 msgid "The RGBA color with which the trainStop shall be displayed" msgstr "Tren durağının görüntüleneceği RGBA rengi (trainStop)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1663 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1663 msgid "The name of the lane the stop access shall be located at" msgstr "Durak erişiminin bulunduğu şeridin adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1668 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1668 msgid "The position on the lane (the lower position on the lane) in meters" msgstr "Metre cinsinden şerit üzerindeki konum (şerit üzerindeki alt konum)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1674 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1674 msgid "The walking length of the access in meters" msgstr "Erişimin metre cinsinden yürüme uzunluğu" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1697 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1697 msgid "The id of container stop" msgstr "Konteyner durağının kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1702 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1702 msgid "The name of the lane the container stop shall be located at" msgstr "Konteyner durağının bulunacağı şeridin adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1717 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1717 msgid "Name of containerStop" msgstr "Konteyner durağının adı (containerStop)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1730 msgid "" "meant to be the names of the bus lines that stop at this container stop. " "This is only used for visualization purposes" @@ -5847,46 +5970,46 @@ "bu konteyner durağında duran otobüs hatlarının adları anlamına gelir. Bu " "sadece görselleştirme amacıyla kullanılır" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1735 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1735 msgid "" "Larger numbers of container trying to enter will create an upstream jam on " "the sidewalk" msgstr "" "Girmeye çalışan çok sayıda konteyner kaldırımda sıkışıklık yaratacaktır" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1747 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1747 msgid "The RGBA color with which the containerStop shall be displayed" msgstr "Konteyner durağının (containerStop) görüntüleneceği RGBA rengi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1760 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1760 msgid "The id of charging station" msgstr "Şarj istasyonunun kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1765 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1765 msgid "Lane of the charging station location" msgstr "Şarj istasyonu konumunun şeridi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1770 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1770 msgid "Begin position in the specified lane" msgstr "Belirtilen şeritte başlangıç konumu" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1775 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1775 msgid "End position in the specified lane" msgstr "Belirtilen şeritte bitiş pozisyonu" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1780 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1780 msgid "Name of chargingStation" msgstr "Şarj İstasyonunun Adı (chargingStation)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1793 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1793 msgid "Charging power in W" msgstr "W cinsinden şarj gücü" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1799 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1799 msgid "Charging efficiency [0,1]" msgstr "Şarj verimliliği [0,1]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1806 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1806 msgid "" "Enable or disable charge in transit, i.e. vehicle must or must not to stop " "for charging" @@ -5894,7 +6017,7 @@ "Geçiş sırasında şarjı etkinleştirin veya devre dışı bırakın, yani araç şarj " "için durmalı veya durmamalı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1812 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1812 msgid "" "Time delay after the vehicles has reached / stopped on the charging station, " "before the energy transfer (charging) begins" @@ -5902,39 +6025,39 @@ "Araçlar şarj istasyonuna ulaştıktan / durduktan sonra, enerji aktarımı " "(şarj) başlamadan önce zaman gecikmesi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1826 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1826 msgid "The id of ParkingArea" msgstr "Park alanının kimliği (ParkingArea)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1831 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1831 msgid "The name of the lane the Parking Area shall be located at" msgstr "Park Alanının yer alacağı şeridin adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1846 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1846 msgid "Lane position in that vehicle must depart when leaves parkingArea" msgstr "" "Park alanından (parkingArea) çıkarken aracın ayrılması gereken şerit konumu" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1851 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1851 msgid "Name of parkingArea" msgstr "Park alanının adı (parkingArea)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1856 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1856 msgid " The number of parking spaces for road-side parking" msgstr " Yol kenarı park için park yeri sayısı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1862 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1862 msgid "" "If set, vehicles will park on the road lane and thereby reducing capacity" msgstr "" "Ayarlanırsa, araçlar yol şeridine park edecek ve böylece kapasite azalacaktır" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1876 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1913 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1876 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1919 msgid "The width of the road-side parking spaces" msgstr "Yol kenarındaki park yerlerinin genişliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1882 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1882 msgid "" "The length of the road-side parking spaces. By default (endPos - startPos) / " "roadsideCapacity" @@ -5942,8 +6065,8 @@ "Yol kenarı park alanlarının uzunluğu. Varsayılan olarak (endPos - " "startPos) / roadsideCapacity" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1888 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1923 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1888 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1929 msgid "" "The angle of the road-side parking spaces relative to the lane angle, " "positive means clockwise" @@ -5951,27 +6074,31 @@ "Yol kenarındaki park yerlerinin şerit açısına göre açısı, pozitif saat " "yönünde anlamına gelir" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1908 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1894 +msgid "Enable or disable lefthand position" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1914 msgid "Name of parking space" msgstr "Park yerinin adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1924 msgid "The length of the road-side parking spaces" msgstr "Yol kenarındaki park yerlerinin uzunluğu" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1928 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1934 msgid "The slope of the road-side parking spaces" msgstr "Yol kenarındaki park yerlerinin eğimi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1943 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1949 msgid "The id of E1" msgstr "E1'in kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1948 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2000 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2209 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2236 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2268 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1954 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2006 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2215 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2242 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2274 msgid "" "The id of the lane the detector shall be laid on. The lane must be a part of " "the network used" @@ -5979,8 +6106,8 @@ "Dedektörün yerleştirileceği şeridin kimliği. Şerit, kullanılan ağın bir " "parçası olmalıdır" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1953 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2273 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1959 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2279 msgid "" "The position on the lane the detector shall be laid on in meters. The " "position must be a value between -1*lane's length and the lane's length" @@ -5988,61 +6115,61 @@ "Dedektörün şerit üzerinde metre cinsinden yerleştirileceği konum. Konum " "-1*şerit uzunluğu ile şerit uzunluğu arasında bir değer olmalıdır" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1958 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2016 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2096 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2168 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5770 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1964 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2022 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2102 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5916 msgid "" "The aggregation period the values the detector collects shall be summed up" msgstr "Dedektörün topladığı değerlerin toplanma periyodu özetlenecektir" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1964 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1970 msgid "Name of induction loop" msgstr "İndüksiyon (tetikleme) döngüsünün adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1969 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2032 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2112 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2179 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2283 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1975 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2038 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2118 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2289 msgid "The path to the output file" msgstr "Çıktı dosyasının yolu" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1974 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2037 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2117 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2184 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2288 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2043 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2123 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2190 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2294 msgid "Space separated list of vehicle type ids to consider" msgstr "Dikkate alınacak araç türü kimliklerinin boşlukla ayrılmış listesi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1995 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2001 msgid "The id of E2" msgstr "E2'nin kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2005 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2086 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2214 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2241 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2011 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2092 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2220 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2247 msgid "The position on the lane the detector shall be laid on in meters" msgstr "Dedektörün şerit üzerinde metre cinsinden yerleştirileceği konum" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2016 msgid "The length of the detector in meters" msgstr "Dedektörün metre cinsinden uzunluğu" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2102 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2108 msgid "The traffic light that triggers aggregation when switching" msgstr "Geçiş yaparken bütünleştirmeyi tetikleyen trafik ışığı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2027 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2033 msgid "Name of lane area detector" msgstr "Şerit alanı dedektörünün adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2042 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2122 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2048 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2128 msgid "" "The time-based threshold that describes how much time has to pass until a " "vehicle is recognized as halting)" @@ -6050,9 +6177,9 @@ "Bir aracın durduğunun algılanması için ne kadar zaman geçmesi gerektiğini " "tanımlayan zamana dayalı eşik" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2048 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2128 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2195 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2054 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2201 msgid "" "The speed-based threshold that describes how slow a vehicle has to be to be " "recognized as halting) in m/s" @@ -6060,8 +6187,8 @@ "Bir aracın durmuş olarak algılanması için ne kadar yavaş olması gerektiğini " "tanımlayan hıza dayalı eşik (m/s cinsinden)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2054 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2060 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2140 msgid "" "The minimum distance to the next standing vehicle in order to make this " "vehicle count as a participant to the jam) in m" @@ -6069,37 +6196,37 @@ "Bu aracın sıkışmaya katılmış sayılması için bir sonraki duran araca olan " "minimum mesafe) m cinsinden" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2076 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2082 msgid "The id of Multilane E2" msgstr "Çok Şeritli E2'nin kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2081 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2087 msgid "The sequence of lane ids in which the detector shall be laid on" msgstr "Dedektörün üzerine yerleştirileceği şerit kimliklerinin sırası" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2091 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2097 msgid "The end position on the lane the detector shall be laid on in meters" msgstr "Dedektörün metre olarak döşeneceği şeritteki son konum" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2113 msgid "Name of Multilane E2 detector" msgstr "Çok şeritli E2 dedektörünün adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2157 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2163 msgid "The id of E3" msgstr "E3'ün kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2162 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2354 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3213 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2168 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3219 msgid "X-Y position of detector in editor (Only used in netedit)" msgstr "Düzenleyicide dedektörün X-Y konumu (Yalnızca netedit'te kullanılır)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2180 msgid "Name of Entry Exit detector" msgstr "Giriş Çıkış dedektörünün adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2189 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2195 msgid "" "The time-based threshold that describes how much time has to pass until a " "vehicle is recognized as halting) in s" @@ -6107,51 +6234,51 @@ "Bir aracın durduğu kabul edilene kadar ne kadar zaman geçmesi gerektiğini " "tanımlayan zamana dayalı eşik (s)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2263 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2269 msgid "The id of Instant Induction Loop (E1Instant)" msgstr "Anlık İndüksiyon Döngüsünün kimliği (E1Instant)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2278 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2284 msgid "Name of instant induction loop" msgstr "Anlık indüksiyon döngüsünün adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2309 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2315 msgid "The id of RouteProbe" msgstr "RouteProbe kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2314 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2320 msgid "The id of an edge in the simulation network" msgstr "Simülasyon ağındaki bir kesimin kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2319 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2325 msgid "The frequency in which to report the distribution" msgstr "Dağıtımın rapor edileceği sıklık" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2325 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2331 msgid "Name of route probe" msgstr "Rota sorgulamasının adı (RouteProbe)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2330 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2336 msgid "The file for generated output" msgstr "Oluşturulan çıktı için dosya" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2335 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2341 msgid "The time at which to start generating output" msgstr "Çıktı üretmeye başlama zamanı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2349 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2355 msgid "The id of Variable Speed Signal" msgstr "Değişken Hız Sinyalinin Kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2366 msgid "List of Variable Speed Sign lanes" msgstr "Değişken Hız İşareti şeritlerinin listesi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2365 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2371 msgid "Name of Variable Speed Signal" msgstr "Değişken Hız Sinyalinin Adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2370 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2376 msgid "" "Space separated list of vehicle type ids to consider (empty to affect all " "types)" @@ -6159,28 +6286,28 @@ "Dikkate alınacak araç türü kimliklerinin boşlukla ayrılmış listesi (tüm " "türleri etkilemek için boş)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2396 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2402 msgid "Speed" msgstr "Hız" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2410 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2466 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2416 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2472 msgid "The id of Calibrator" msgstr "Kalibratörün kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2415 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3159 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3179 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2421 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3165 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3185 msgid "The id of edge in the simulation network" msgstr "Simülasyon ağındaki kesimin kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2420 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2476 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2426 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2482 msgid "The position of the calibrator on the specified lane" msgstr "Kalibratörün belirtilen şerit üzerindeki konumu" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2426 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2482 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2432 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2488 msgid "" "The aggregation interval in which to calibrate the flows. Default is step-" "length" @@ -6188,12 +6315,12 @@ "Akımların kalibre edileceği toplama aralığı. Varsayılan değer adım " "uzunluğudur" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2432 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2438 msgid "Name of Calibrator" msgstr "Kalibratörün Adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2437 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2493 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2443 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2499 msgid "" "The id of the routeProbe element from which to determine the route " "distribution for generated vehicles" @@ -6201,18 +6328,18 @@ "Oluşturulan araçlar için rota dağılımının belirleneceği routeProbe " "elemanının kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2442 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2498 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2504 msgid "The output file for writing calibrator information or NULL" msgstr "Kalibratör bilgilerini yazmak için çıktı dosyası veya NULL" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2447 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2503 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2453 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2509 msgid "A threshold value to detect and clear unexpected jamming" msgstr "Beklenmeyen sıkışmaları algılamak ve temizlemek için bir eşik değeri" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2453 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2509 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2459 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2515 msgid "" "space separated list of vehicle type ids to consider (empty to affect all " "types)" @@ -6220,63 +6347,63 @@ "dikkate alınması gereken araç türü kimliklerinin boşlukla ayrılmış listesi " "(tüm türleri etkileyecek şekilde boş)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2471 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2477 msgid "The id of lane in the simulation network" msgstr "Simülasyon ağındaki şeridin kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2488 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2494 msgid "Name of calibrator lane" msgstr "Kalibratör şeridinin adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2522 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2528 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3715 msgid "The id of the route the vehicle shall drive along" msgstr "Aracın gideceği güzergahın kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2527 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2533 msgid "First calibrator flow departure time" msgstr "İlk kalibratör akımı kalkış zamanı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2533 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4962 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2539 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5108 msgid "End of departure interval" msgstr "Kalkış aralığının sonu" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2543 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2549 msgid "The id of the vehicle type to use for this calibrator flow" msgstr "Bu kalibratör akımı için kullanılacak araç tipinin kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2555 msgid "Number of vehicles per hour, equally spaced" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2555 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2561 msgid "Vehicle's speed" msgstr "Aracın hızı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2576 msgid "The id of Rerouter" msgstr "Yönlendiricinin kimliği (Rerouter)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2581 msgid "An edge id or a list of edge ids where vehicles shall be rerouted" msgstr "" "Araçların yeniden yönlendirileceği bir kesim kimliği veya kesim kimlikleri " "listesi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2580 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2586 msgid "X,Y position in editor (Only used in netedit)" msgstr "Düzenleyicide X,Y konumu (Yalnızca netedit'te kullanılır)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2586 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2592 msgid "Name of Rerouter" msgstr "Yönlendiricinin Adı (Rerouter)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2591 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2597 msgid "The probability for vehicle rerouting (0-1)" msgstr "Aracın yeniden yönlendirilme olasılığı (0-1)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2597 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2603 msgid "" "The waiting time threshold (in s) that must be reached to activate rerouting " "(default -1 which disables the threshold)" @@ -6284,7 +6411,7 @@ "Yeniden yönlendirmeyi etkinleştirmek için ulaşılması gereken bekleme süresi " "eşiği (s cinsinden) (varsayılan -1 eşiği devre dışı bırakır)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2603 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2609 msgid "" "The list of vehicle types that shall be affected by this rerouter (empty to " "affect all types)" @@ -6292,264 +6419,264 @@ "Bu yeniden yönlendiriciden etkilenecek araç tiplerinin listesi (tüm tipleri " "etkilemek için boş)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2608 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2614 msgid "" "Whether the router should be inactive initially (and switched on in the gui)" msgstr "" "Yönlendiricinin başlangıçta devre dışı bırakılıp bırakılmayacağı (ve gui'de " "açılıp açılmayacağı)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2630 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2636 msgid "Begin" msgstr "Başla" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2636 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2642 msgid "End" msgstr "Son" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2656 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2680 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2662 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2686 msgid "allowed vehicles" msgstr "izin verilen araçlar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2661 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2685 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2667 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2691 msgid "disallowed vehicles" msgstr "izin verilmeyen araçlar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2674 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2680 msgid "Lane ID" msgstr "Şerit Kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2704 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2724 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2750 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2710 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2756 msgid "SUMO Probability" msgstr "SUMO Olasılığı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2718 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2724 msgid "ParkingArea ID" msgstr "Park Alanı Kimliği (ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2736 msgid "Enable or disable visibility for parking area reroutes" msgstr "" "Park alanı yeniden yönlendirmeleri için görünürlüğü etkinleştirme veya devre " "dışı bırakma" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2770 msgid "Edge in which vaporizer is placed" msgstr "Buharlaştırıcının yerleştirildiği kesim" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2769 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2775 msgid "Start Time" msgstr "Başlangıç Zamanı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2775 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2781 msgid "End Time" msgstr "Bitiş Zamanı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2781 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2787 msgid "Name of vaporizer" msgstr "Buharlaştırıcının adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2802 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2808 msgid "The id of the polygon" msgstr "Çokgenin kimliği (ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2807 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2813 msgid "The shape of the polygon" msgstr "Çokgenin şekli" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2812 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2818 msgid "The RGBA color with which the polygon shall be displayed" msgstr "Çokgenin görüntüleneceği RGBA rengi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2818 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2824 msgid "An information whether the polygon shall be filled" msgstr "Poligonun doldurulup doldurulmayacağına dair bir bilgi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2824 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2830 msgid "The default line width for drawing an unfilled polygon" msgstr "Doldurulmamış bir çokgen çizmek için varsayılan çizgi genişliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2830 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2836 msgid "The layer in which the polygon lies" msgstr "Çokgenin içinde bulunduğu katman" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2842 msgid "A typename for the polygon" msgstr "Çokgen için bir tip adı (typename)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2842 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2848 msgid "Polygon's name" msgstr "çokgenin adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2847 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2853 msgid "A bitmap to use for rendering this polygon" msgstr "Bu çokgeni işlemek için kullanılacak bir bitmap" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2853 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2924 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3014 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3091 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2859 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2930 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3020 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3097 msgid "Enable or disable use image file as a relative path" msgstr "" "Görüntü dosyasını göreli yol olarak kullanmayı etkinleştirin veya devre dışı " "bırakın" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2859 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2930 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3020 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3097 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2865 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2936 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3026 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3103 msgid "Angle of rendered image in degree" msgstr "İşlenen görüntünün derece cinsinden açısı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2873 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2944 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2879 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2950 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3040 msgid "The id of the POI" msgstr "EN'in kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2878 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2884 msgid "The position in view" msgstr "Görünümdeki konum" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2883 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2973 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3050 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2889 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2979 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3056 msgid "The color with which the POI shall be displayed" msgstr "EN'in görüntüleneceği renk" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2889 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2979 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3056 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2895 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2985 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3062 msgid "A typename for the POI" msgstr "EN için bir tip adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2895 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2985 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3062 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3146 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2901 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2991 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3152 msgid "Name of POI" msgstr "EN'in Adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2900 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2990 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2906 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2996 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3073 msgid "The layer of the POI for drawing and selecting" msgstr "Çizim ve seçim için EN katmanı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2906 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2996 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3073 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2912 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3002 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3079 msgid "Width of rendered image in meters" msgstr "İşlenen görüntünün metre cinsinden genişliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2912 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3002 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3079 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3008 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3085 msgid "Height of rendered image in meters" msgstr "İşlenen görüntünün metre cinsinden yüksekliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2918 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3008 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3085 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2924 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3014 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3091 msgid "A bitmap to use for rendering this POI" msgstr "Bu EN'i işlemek için kullanılacak bir bitmap" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2949 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2955 msgid "The name of the lane at which the POI is located at" msgstr "EN'in bulunduğu şeridin adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2954 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2960 msgid "" "The position on the named lane or in the net in meters at which the POI is " "located at" msgstr "" "Belirtilen şerit üzerinde veya ağda EN'in bulunduğu metre cinsinden konum" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2967 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2973 msgid "The lateral offset on the named lane at which the POI is located at" msgstr "EN'in bulunduğu adlandırılmış şeritteki yanal öteleme" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3040 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3046 msgid "The longitude position of the parking vehicle on the view" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3045 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3051 msgid "The latitude position of the parking vehicle on the view" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3119 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3125 msgid "The id of the TAZ" msgstr "TAB'ın kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3124 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3130 msgid "The shape of the TAZ" msgstr "TAB'ın şekli" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3129 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3135 msgid "TAZ center" msgstr "TAB merkezi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3140 msgid "An information whether the TAZ shall be filled" msgstr "TAB'ın doldurulup doldurulmayacağına dair bir bilgi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3140 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3146 msgid "The RGBA color with which the TAZ shall be displayed" msgstr "TAB'ın görüntüleneceği RGBA rengi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3165 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3171 msgid "Depart weight associated to this Edge" msgstr "Bu kesimle ilişkili kalkış ağırlığı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3185 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3191 msgid "Arrival weight associated to this Edget" msgstr "Bu kesim ile ilişkili varış ağırlığı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3208 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3214 msgid "Traction substation ID" msgstr "Cer trafo merkezi kimliği (ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3219 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3225 msgid "Voltage of at connection point for the overhead wire" msgstr "Havai hat için bağlantı noktasındaki gerilim" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3225 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3231 msgid "Current limit of the feeder line" msgstr "Besleme hattının akım limiti" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3239 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3245 msgid "Overhead wire segment ID" msgstr "Havai hat segment kimliği (ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3244 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3250 msgid "Substation to which the circuit is connected" msgstr "Devrenin bağlı olduğu trafo merkezi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3249 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3255 msgid "List of consecutive lanes of the circuit" msgstr "Devrenin ardışık şeritlerinin listesi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3254 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3260 msgid "Starting position in the specified lane" msgstr "Belirtilen şeritte başlangıç konumu" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3260 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3266 msgid "Ending position in the specified lane" msgstr "Belirtilen şeritteki bitiş konumu" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3274 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3280 msgid "Inner lanes, where placing of overhead wire is restricted" msgstr "Havai tel yerleştirmenin kısıtlı olduğu iç şeritler" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3287 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3293 msgid "Overhead wire clamp ID" msgstr "Havai kablo kelepçesi kimliği (ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3292 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3298 msgid "" "ID of the overhead wire segment, to the start of which the overhead wire " "clamp is connected" @@ -6557,11 +6684,11 @@ "Başlangıcına havai kablo kelepçesinin bağlı olduğu havai kablo segmentinin " "kimliği (ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3297 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3303 msgid "ID of the overhead wire segment lane of overheadWireIDStartClamp" msgstr "Havai kablo segmenti şeridinin kimliği (overheadWireIDStartClamp)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3302 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3308 msgid "" "ID of the overhead wire segment, to the end of which the overhead wire clamp " "is connected" @@ -6569,16 +6696,16 @@ "Havai kablo kelepçesinin ucuna bağlı olduğu havai kablo segmentinin kimliği " "(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3313 msgid "ID of the overhead wire segment lane of overheadWireIDEndClamp" msgstr "Havai kablo segmenti şeridinin kimliği (overheadWireIDStartClamp) (ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3330 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3336 msgid "The id of Route" msgstr "Rota'nın kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3335 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3367 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3341 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3373 msgid "" "The edges the vehicle shall drive along, given as their ids, separated using " "spaces" @@ -6586,18 +6713,18 @@ "Aracın üzerinde ilerleyeceği kesimler, boşluklarla ayrılmış kimlikleri " "olarak verilir" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3340 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3372 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3346 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3378 msgid "This route's color" msgstr "Bu rotanın rengi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3345 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3377 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3351 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3383 msgid "The number of times that the edges of this route shall be repeated" msgstr "Bu rotanın kesimlerinin tekrarlanma sayısı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3351 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3383 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3389 msgid "" "When defining a repeating route with stops and those stops use the until " "attribute," @@ -6605,74 +6732,74 @@ "Duraklar ve bu duraklarla birlikte tekrar eden bir rota tanımlarken until " "niteliğini kullanın," -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3352 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3384 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3358 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3390 msgid "the times will be shifted forward by 'cycleTime' on each repeat" msgstr "zamanlar her tekrarda 'cycleTime' kadar ileri kaydırılacaktır" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3399 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3405 msgid "The id of VehicleType distribution" msgstr "Araç tipi (VehicleType) dağılımının kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3421 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3427 msgid "The id of VehicleType" msgstr "Araç tipinin kimliği (VehicleType)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3426 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3432 msgid "Vehicle Type Distribution" msgstr "Araç Tipi Dağılımı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3431 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3437 msgid "An abstract vehicle class" msgstr "Soyut bir araç sınıfı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3438 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3444 msgid "This vehicle type's color" msgstr "Bu araç tipinin rengi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3443 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3449 msgid "The vehicle's netto-length (length) [m]" msgstr "Aracın net uzunluğu (uzunluk) [m]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3454 msgid "Empty space after leader [m]" msgstr "Liderden sonraki boşluk [m]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3453 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3459 msgid "The vehicle's maximum velocity [m/s]" msgstr "Aracın maksimum hızı [m/s]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3458 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3464 msgid "" "The vehicle's expected multiplicator for lane speed limits (or a " "distribution specifier)" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3463 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3469 msgid "The vehicle's desired maximum velocity (interacts with speedFactor)." msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3464 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3470 msgid "Applicable when no speed limit applies (bicycles, some motorways) [m/s]" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3469 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3475 msgid "An abstract emission class" msgstr "Soyut bir emisyon sınıfı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3475 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3481 msgid "How this vehicle is rendered" msgstr "Bu aracın nasıl işlendiği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3481 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3487 msgid "The vehicle's width [m] (only used for drawing)" msgstr "Aracın genişliği [m] (sadece çizim için kullanılır)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3487 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3493 msgid "The vehicle's height [m] (only used for drawing)" msgstr "Aracın yüksekliği [m] (sadece çizim için kullanılır)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3493 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3499 msgid "" "Image file for rendering vehicles of this type (should be grayscale to allow " "functional coloring)" @@ -6680,48 +6807,48 @@ "Bu tip araçların işlenmesi için görüntü dosyası (işlevsel renklendirmeye " "izin vermek için gri tonlamalı olmalıdır)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3498 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3504 msgid "The model used for changing lanes" msgstr "Şerit değiştirmek için kullanılan model" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3505 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3511 msgid "The model used for car-following" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3512 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3518 msgid "" "The number of persons (excluding an autonomous driver) the vehicle can " "transport" msgstr "Aracın taşıyabileceği kişi sayısı (otonom sürücü hariç)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3517 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3523 msgid "The number of containers the vehicle can transport" msgstr "Aracın taşıyabileceği konteyner sayısı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3522 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3528 msgid "The time required by a person to board the vehicle" msgstr "Bir kişinin araca binmesi için gereken süre" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3528 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3534 msgid "The time required to load a container onto the vehicle" msgstr "Bir konteynerin araca yüklenmesi için gereken süre" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3534 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3540 msgid "The preferred lateral alignment when using the sublane-model" msgstr "Alt şerit modeli kullanılırken tercih edilen yanal hizalama" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3541 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3547 msgid "" "The minimum lateral gap at a speed difference of 50km/h when using the " "sublane-model" msgstr "" "Alt şerit modeli kullanırken 50km/s hız farkındaki minimum yanal boşluk" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3547 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3553 msgid "The maximum lateral speed when using the sublane-model" msgstr "Alt şerit modelini kullanırken maksimum yanal hız" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3553 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3559 msgid "" "The interval length for which vehicle performs its decision logic " "(acceleration and lane-changing)" @@ -6729,317 +6856,331 @@ "Aracın karar mantığını gerçekleştirdiği aralık uzunluğu (hızlanma ve şerit " "değiştirme)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3559 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3565 msgid "" "The probability when being added to a distribution without an explicit " "probability" msgstr "Açık bir olasılık olmaksızın bir dağılıma eklendiğinde olasılık" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3565 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3571 msgid "3D model file for this class" msgstr "Bu sınıf için 3B model dosyası" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3576 msgid "Carriage lengths" msgstr "Taşıma uzunlukları" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3581 msgid "Locomotive lengths" msgstr "Lokomotif uzunlukları" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3580 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3586 msgid "Gap between carriages" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3613 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3619 msgid "The ID of trip" msgstr "Seyahatin kimliği (ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3618 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3663 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3669 msgid "The id of the vehicle type to use for this trip" msgstr "Bu yolculuk için kullanılacak araç türünün kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3630 msgid "The ID of the edge the trip starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3629 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3635 msgid "The ID of the edge the trip ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3634 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3640 msgid "List of intermediate edge ids which shall be part of the trip" msgstr "Seyahatin bir parçası olacak ara kesim kimliklerinin listesi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3642 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3682 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3648 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3688 msgid "" "The departure time of the (first) trip which is generated using this trip " "definition" msgstr "" "Bu seyahat tanımı kullanılarak oluşturulan (ilk) seyahatin kalkış saati" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3658 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3664 msgid "The id of trip" msgstr "Seyahatin kimliği (ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3669 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3675 msgid "The name of the junction the trip starts at" msgstr "Seyahatin başladığı kavşağın adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3674 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3680 msgid "The name of the junction the trip ends at" msgstr "Seyahatin bittiği kavşağın adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3698 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3743 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3704 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3749 msgid "The ID of the vehicle" msgstr "Aracın kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3703 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3748 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3754 msgid "The id of the vehicle type to use for this vehicle" msgstr "Bu araç için kullanılacak araç tipinin kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3714 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3754 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3720 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3760 msgid "The index of the edge within route the vehicle starts at" msgstr "Aracın başladığı rota içindeki kesimin dizini" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3719 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3759 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3725 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3765 msgid "The index of the edge within route the vehicle ends at" msgstr "Aracın sonlandığı rota içindeki kesimin dizini" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3727 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3767 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3733 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3773 msgid "The time step at which the vehicle shall enter the network" msgstr "Aracın ağa gireceği zaman adımı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3783 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3789 msgid "The ID of the flow" msgstr "Akımın kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3788 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3830 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3867 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3909 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3794 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3873 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3915 msgid "The id of the flow type to use for this flow" msgstr "Bu akım için kullanılacak akım türünün kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3794 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3800 msgid "The ID of the edge the flow starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3799 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3805 msgid "The ID of the edge the flow ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3804 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3810 msgid "List of intermediate edge ids which shall be part of the flow" msgstr "Akımın bir parçası olacak ara kesim kimliklerinin listesi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3825 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3862 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3831 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3868 msgid "The id of the flow" msgstr "Akımın kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3842 msgid "The name of the junction the flow starts at" msgstr "Akımın başladığı kavşağın adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3841 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3847 msgid "The name of the junction the flow ends at" msgstr "Akımın sona erdiği kavşağın adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3873 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3879 msgid "The id of the route the flow shall drive along" msgstr "Akımın ilerleyeceği rotanın kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3878 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3915 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3884 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3921 msgid "The index of the edge within route the flow starts at" msgstr "Akımın başladığı rota içindeki kesimin indeksi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3883 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3920 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3889 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3926 msgid "The index of the edge within route the flow ends at" msgstr "Akımın bittiği rota içindeki kesimin dizini" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3904 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3910 msgid "The name of the flow" msgstr "Akımın adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3957 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3963 msgid "The name of the lane the stop shall be located at" msgstr "Durağın bulunacağı şeridin adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3986 msgid "The lateral offset on the named lane at which the vehicle must stop" msgstr "Aracın durması gereken adlandırılmış şeritteki yanal öteleme" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3996 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4842 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4002 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4956 msgid "BusStop associated with this stop" msgstr "Bu durakla ilişkili otobüs durağı (BusStop)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4012 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4472 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4018 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4988 +msgid "TrainStop associated with this stop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4510 msgid "ContainerStop associated with this stop" msgstr "Bu durakla ilişkili konteyner durağı (ContainerStop)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4050 msgid "ChargingStation associated with this stop" msgstr "Bu durakla ilişkili şarj istasyonu (ChargingStation)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4044 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4066 msgid "ParkingArea associated with this stop" msgstr "Bu durakla ilişkili park alanı (ParkingArea)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4090 msgid "The name of the lane the waypoint shall be located at" msgstr "Yol ara noktasının bulunacağı şeridin adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4091 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4113 msgid "The lateral offset on the named lane at which the vehicle must waypoint" msgstr "" "Aracın yol ara noktası olması gereken, adlandırılmış şeritteki yanal sapma" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4129 msgid "BusWaypoint associated with this waypoint" msgstr "Bu ara nokta ile ilişkili otobüs ara noktası (BusWaypoint)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4123 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4145 +msgid "TrainWaypoint associated with this waypoint" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4161 msgid "ContainerWaypoint associated with this waypoint" msgstr "Bu ara nokta ile ilişkili konteyner ara noktası (ContainerWaypoint)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4139 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4177 msgid "ChargingStation associated with this waypoint" msgstr "Bu ara nokta ile ilişkili Şarj İstasyonu (ChargingStation)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4155 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4193 msgid "ParkingArea associated with this waypoint" msgstr "Bu ara nokta ile ilişkili Park Alanı (ParkingArea)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4183 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4221 msgid "The time step at which the person shall enter the network" msgstr "Yolcunun ağa gireceği zaman adımı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4223 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4261 msgid "The time step at which the container shall enter the network" msgstr "Konteynerin ağa gireceği zaman adımı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4259 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4289 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4297 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4327 msgid "The ID of the edge the transport starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4264 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4302 msgid "The ID of the edge the transport ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4269 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4337 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4521 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4637 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4744 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4559 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4834 msgid "arrival position on the destination edge" msgstr "hedef kesim üzerindeki varış konumu" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4275 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4299 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4337 msgid "list of vehicle alternatives to take for the transport" msgstr "Taşıma için alınacak araç alternatiflerinin listesi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4294 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4332 msgid "ID of the destination container stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4321 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4359 msgid "The ID of the edge the tranship starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4326 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4364 msgid "The ID of the edge the tranship ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4331 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4367 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4392 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4405 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4430 msgid "The position at which the tranship shall enter the net" msgstr "Aktarmanın ağa gireceği konum" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4343 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4373 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4404 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4381 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4411 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4442 msgid "speed of the container for this tranship in m/s" msgstr "Bu aktarma için konteynerin m/s cinsinden hızı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4395 msgid "The name of the edge the tranship starts at" msgstr "Aktarmanın başladığı kesimin adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4362 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4400 msgid "Id of the destination container stop" msgstr "Hedef konteyner durağının kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4387 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4669 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4425 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4759 msgid "id of the edges to walk" msgstr "yürünecek kesimlerin kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4398 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4674 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4693 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4436 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4783 msgid "Arrival position on the destination edge" msgstr "Hedef kesim üzerindeki varış konumu" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4427 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4797 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4465 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4911 msgid "The ID of the edge the stop shall be located at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4445 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4477 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4815 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4847 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4483 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4515 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4929 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4961 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4993 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5695 msgid "Minimum duration for stopping" msgstr "Minimum durma süresi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4452 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4484 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4822 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4854 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5556 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4490 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4522 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4936 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4968 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5000 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5702 msgid "The time step at which the route continues" msgstr "Rotanın devam ettiği zaman adımı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4458 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4490 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4496 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4528 msgid "Activity displayed for stopped container in GUI and output files " msgstr "" "GUI ve çıktı dosyalarında durdurulan konteyner için görüntülenen etkinlik " -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4511 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4551 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4589 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4623 msgid "The ID of the edge the person trip starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4516 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4554 msgid "The ID of the edge the person trip ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4527 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4561 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4595 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4565 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4599 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4633 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4667 msgid "List of possible vehicle types to take" msgstr "Alınabilecek olası araç tiplerinin listesi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4532 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4566 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4600 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4604 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4638 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4672 msgid "" "List of possible traffic modes. Walking is always possible regardless of " "this value" @@ -7047,101 +7188,118 @@ "Olası trafik modlarının listesi. Bu değerden bağımsız olarak yürüyüş her " "zaman mümkündür" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4537 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4571 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4605 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4609 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4677 msgid "list of vehicle alternatives to take for the person trip" msgstr "Yolcu seyahati̇ i̇çi̇n alınabi̇lecek araç alternati̇fleri̇ni̇n li̇stesi̇" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4556 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4594 msgid "Id of the destination busStop" msgstr "Hedef otobüs durağının kimliği (busStop)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4585 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4628 +msgid "Id of the destination trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4657 msgid "The name of the junction the person trip starts at" msgstr "Yolcu seyahatinin başladığı kavşağın adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4590 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4662 msgid "The name of the junction the person trip ends at" msgstr "Yolcu seyahatinin sona erdiği kavşağın adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4627 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4651 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4699 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4723 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4741 msgid "The ID of the edge the walk starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4632 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4704 msgid "The ID of the edge the walk ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4656 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4728 msgid "Id of the destination bus stop" msgstr "Hedef otobüs durağının kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4688 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4746 +msgid "Id of the destination train stop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4778 msgid "The id of the route to walk" msgstr "Yürünecek rotanın kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4708 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4798 msgid "The name of the junction the walk starts at" msgstr "Yürüyüşün başladığı kavşağın adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4713 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4803 msgid "The name of the junction the walk ends at" msgstr "Yürüyüşün bittiği kavşağın adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4734 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4824 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4854 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4878 msgid "The ID of the edge the ride starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4739 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4829 msgid "The ID of the edge the ride ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4750 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4774 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4840 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4864 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4888 msgid "list of vehicle alternatives to take for the ride" msgstr "yolculuk için alınacak araç alternatiflerinin listesi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4769 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4859 msgid "ID of the destination bus stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4828 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4860 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4883 +msgid "ID of the destination train stop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4942 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4974 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5006 msgid "Activity displayed for stopped person in GUI and output files " msgstr "GUI ve çıktı dosyalarında duran yolcu için görüntülenen etkinlik " -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4872 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5018 msgid "This vehicle's color" msgstr "Bu aracın rengi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4878 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5024 msgid "The lane on which thevehicle shall be inserted" msgstr "Aracın yerleştirileceği şerit" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4884 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5030 msgid "The position at which the vehicle shall enter the net" msgstr "Aracın ağa gireceği konum" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4890 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5036 msgid "The speed with which the vehicle shall enter the network" msgstr "Aracın ağa gireceği hız" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4896 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5042 msgid "The lane at which the vehicle shall leave the network" msgstr "Aracın ağdan ayrılacağı şerit" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4902 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5048 msgid "The position at which the vehicle shall leave the network" msgstr "Aracın ağdan ayrılacağı konum" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4908 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5054 msgid "The speed with which the vehicle shall leave the network" msgstr "Aracın ağdan ayrılacağı hız" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4914 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5060 msgid "" "A string specifying the id of a public transport line which can be used when " "specifying person rides" @@ -7149,175 +7307,175 @@ "Kişi yolculuklarını belirtirken kullanılabilecek bir toplu taşıma hattının " "kimliğini belirten bir dize" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4919 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5065 msgid "The number of occupied seats when the vehicle is inserted" msgstr "Araç yerleştirildiğinde dolu olan koltuk sayısı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4925 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5071 msgid "The number of occupied container places when the vehicle is inserted" msgstr "Araç yerleştirildiğinde dolu konteyner yerlerinin sayısı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4931 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5077 msgid "" "The lateral position on the departure lane at which the vehicle shall enter " "the net" msgstr "Aracın ağa gireceği kalkış şeridi üzerindeki yanal konum" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4937 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5083 msgid "" "The lateral position on the arrival lane at which the vehicle shall arrive" msgstr "Aracın ulaşacağı varış şeridi üzerindeki yanal konum" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4943 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5089 msgid "Insertion checks" msgstr "Yerleştirme kontrolleri" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4956 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5102 msgid "First flow departure time" msgstr "İlk akım kalkış zamanı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4968 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4989 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5114 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5135 msgid "probability for emitting a flow each second" msgstr "her saniye bir akım yayma olasılığı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4969 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5115 msgid "(not together with vehsPerHour or period)" msgstr "(vehsPerHour veya periyot ile birlikte değil)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4975 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5121 msgid "Number of flows per hour, equally spaced" msgstr "Saat başına akım sayısı, eşit aralıklı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4976 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5122 msgid "(not together with period or probability or poisson)" msgstr "(periyot veya olasılık veya poisson ile birlikte değil)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4982 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5128 msgid "Insert equally spaced flows at that period" msgstr "Bu dönemde eşit aralıklı akımlar ekleyin" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4983 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5129 msgid "(not together with vehsPerHour or probability or poisson)" msgstr "(vehsPerHour veya olasılık veya poisson ile birlikte değil)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4990 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5136 msgid "(not together with vehsPerHour or period or poisson)" msgstr "(vehsPerHour veya period veya poisson ile birlikte değil)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4996 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5142 msgid "" "Insert flow expected vehicles per second with poisson distributed insertion " "rate" msgstr "" "Poisson dağılımlı ekleme oranı ile saniyede beklenen araç akımını ekleyin" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4997 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5143 msgid "(not together with period or vehsPerHour or probability)" msgstr "(period veya vehsPerHour veya olasılık ile birlikte değil)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5156 msgid "The acceleration ability of vehicles of this type [m/s^2]" msgstr "Bu tip araçların ivmelenme kabiliyeti [m/s^2]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5016 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5162 msgid "The deceleration ability of vehicles of this type [m/s^2]" msgstr "Bu tip araçların yavaşlama kabiliyeti [m/s^2]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5022 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5168 msgid "" "The apparent deceleration of the vehicle as used by the standard model [m/" "s^2]" msgstr "" "Standart model tarafından kullanılan aracın görünür yavaşlaması [m/s^2]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5174 msgid "The maximal physically possible deceleration for the vehicle [m/s^2]" msgstr "Araç için fiziksel olarak mümkün olan azami yavaşlama [m/s^2]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5034 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5041 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5180 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5187 msgid "Car-following model parameter" msgstr "Araç takip modeli parametresi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5047 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5193 msgid "SKRAUSSX parameter 1" msgstr "SKRAUSSX parametre 1" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5052 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5198 msgid "SKRAUSSX parameter 2" msgstr "SKRAUSSX parametre 2" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5057 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5203 msgid "SKRAUSSX parameter 3" msgstr "SKRAUSSX parametre 3" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5062 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5208 msgid "SKRAUSSX parameter 4" msgstr "SKRAUSSX parametre 4" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5213 msgid "SKRAUSSX parameter 5" msgstr "SKRAUSSX parametre 5" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5072 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5218 msgid "EIDM Look ahead / preview parameter [s]" msgstr "EIDM İleri görüş / önizleme parametresi [s]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5078 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5224 msgid "EIDM AP Reaction Time parameter [s]" msgstr "EIDM AP Reaksiyon Süresi parametresi [s]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5084 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5230 msgid "EIDM Wiener Process parameter for the Driving Error [s]" msgstr "Sürüş Hatası için EIDM Wiener Süreci parametresi [s]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5090 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5236 msgid "EIDM Wiener Process parameter for the Estimation Error [s]" msgstr "Tahmin Hatası için EIDM Wiener Süreci parametresi [s]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5096 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5242 msgid "EIDM Coolness parameter of the Enhanced IDM [-]" msgstr "Geliştirilmiş IDM'nin EIDM Sakinlik parametresi [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5103 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5249 msgid "EIDM leader speed estimation error parameter [-]" msgstr "EIDM lider hız tahmini hata parametresi [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5109 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5255 msgid "EIDM gap estimation error parameter [-]" msgstr "EIDM boşluk tahmini hata parametresi [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5115 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5261 msgid "EIDM driving error parameter [-]" msgstr "EIDM sürüş hatası parametresi [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5121 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5267 msgid "EIDM maximal jerk parameter [m/s^3]" msgstr "EIDM maksimum sarsıntı parametresi [m/s^3]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5273 msgid "" "EIDM maximal negative acceleration between two Action Points (threshold) [m/" "s^2]" msgstr "EIDM iki Eylem Noktası arasındaki maksimum negatif ivme (eşik) [m/s^2]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5133 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5279 msgid "" "EIDM Time parameter until vehicle reaches amax after startup/driveoff [s]" msgstr "" "EIDM Araç başlangıç/kalkıştan sonra amax'a ulaşana kadar geçen süre " "parametresi [s]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5139 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5285 msgid "EIDM Flatness parameter of startup/driveoff curve [-]" msgstr "EIDM Başlangıç/kalkış eğrisinin düzlük parametresi [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5145 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5291 msgid "EIDM Shift parameter of startup/driveoff curve [-]" msgstr "EIDM Başlangıç/kalkış eğrisinin kaydırma parametresi [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5151 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5297 msgid "" "EIDM parameter if model shall include vehicle dynamics into the acceleration " "calculation [0/1]" @@ -7325,7 +7483,7 @@ "Modelin hızlanma hesabına araç dinamiklerini dahil etmesi gerekiyorsa EIDM " "parametresi [0/1]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5157 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5303 msgid "" "EIDM parameter how many vehicles are taken into the preview calculation of " "the driver (at least always 1!) [-]" @@ -7333,65 +7491,65 @@ "EIDM parametresi sürücünün ön izleme hesaplamasına kaç aracın alınacağı (en " "azından her zaman 1!) [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5163 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5169 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5309 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5315 msgid "Peter Wagner 2009 parameter" msgstr "Peter Wagner 2009 parametresi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5175 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5181 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5321 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5327 msgid "IDMM parameter" msgstr "IDMM parametresi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5187 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5193 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5199 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5205 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5211 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5217 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5223 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5229 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5235 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5333 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5339 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5345 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5351 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5363 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5381 msgid "W99 parameter" msgstr "W99 parametresi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5241 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5246 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5387 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5392 msgid "Wiedemann parameter" msgstr "Wiedemann parametresi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5251 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5397 msgid "MinGap factor parameter" msgstr "Min. Boşluk (MinGap) faktörü parametresi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5256 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5402 msgid "K parameter" msgstr "K parametresi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5261 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5407 msgid "Kerner Phi parameter" msgstr "Kerner Phi parametresi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5266 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5412 msgid "IDM Delta parameter" msgstr "IDM Delta parametresi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5271 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5417 msgid "IDM Stepping parameter" msgstr "IDM Adımlama parametresi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5276 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5422 msgid "Train Types" msgstr "Tren Tipleri" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5289 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5435 msgid "" "Minimum distance to pedestrians that are walking towards the conflict point " "with the ego vehicle." msgstr "" "Ego aracı ile çatışma noktasına doğru yürüyen yayalara olan minimum mesafe." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5295 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5441 msgid "" "The accumulated waiting time after which a vehicle will drive onto an " "intersection even though this might cause jamming." @@ -7399,7 +7557,7 @@ "Sıkışmaya neden olsa bile bir aracın bir kavşağa gireceği birikmiş bekleme " "süresi." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5301 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5447 msgid "" "This value causes vehicles to violate a yellow light if the duration of the " "yellow phase is lower than the given threshold." @@ -7407,7 +7565,7 @@ "Bu değer, sarı fazın süresi verilen eşikten düşükse araçların sarı ışığı " "ihlal etmesine neden olur." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5453 msgid "" "This value causes vehicles to violate a red light if the duration of the red " "phase is lower than the given threshold." @@ -7415,7 +7573,7 @@ "Bu değer, kırmızı fazın süresi verilen eşikten düşükse araçların kırmızı " "ışık ihlali yapmasına neden olur." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5459 msgid "" "This value causes vehicles affected by jmDriveAfterRedTime to slow down when " "violating a red light." @@ -7423,7 +7581,7 @@ "Bu değer, jmDriveAfterRedTime tarafından etkilenen araçların kırmızı ışık " "ihlali yaparken yavaşlamasına neden olur." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5319 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5465 msgid "" "This value causes vehicles to ignore foe vehicles that have right-of-way " "with the given probability." @@ -7431,18 +7589,18 @@ "Bu değer, araçların verilen olasılıkla geçiş hakkına sahip olan rakip " "araçları göz ardı etmesine neden olur." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5325 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5471 msgid "This value is used in conjunction with jmIgnoreFoeProb." msgstr "Bu değer jmIgnoreFoeProb ile birlikte kullanılır." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5326 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5472 msgid "" "Only vehicles with a speed below or equal to the given value may be ignored." msgstr "" "Yalnızca hızı verilen değerin altında veya bu değere eşit olan araçlar göz " "ardı edilebilir." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5332 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5478 msgid "" "This value configures driving imperfection (dawdling) while passing a minor " "link." @@ -7450,7 +7608,7 @@ "Bu değer, küçük bir bağlantıyı geçerken sürüş kusurunu (oyalanma) " "yapılandırır." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5338 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5484 msgid "" "This value defines the minimum time gap when passing ahead of a prioritized " "vehicle. " @@ -7458,11 +7616,11 @@ "Bu değer, öncelikli bir aracın önünden geçerken minimum zaman aralığını " "tanımlar. " -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5344 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5490 msgid "Willingess of drivers to impede vehicles with higher priority" msgstr "Sürücülerin daha yüksek önceliğe sahip araçları engelleme istekliliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5503 msgid "" "The eagerness for performing strategic lane changing. Higher values result " "in earlier lane-changing." @@ -7470,7 +7628,7 @@ "Stratejik şerit değiştirme gerçekleştirme isteği. Daha yüksek değerler daha " "erken şerit değiştirmeye neden olur." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5363 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5509 msgid "" "The willingness for performing cooperative lane changing. Lower values " "result in reduced cooperation." @@ -7478,7 +7636,7 @@ "İşbirliğine dayalı şerit değiştirme gerçekleştirme istekliliği. Düşük " "değerler işbirliğinin azalmasına neden olur." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5515 msgid "" "The eagerness for performing lane changing to gain speed. Higher values " "result in more lane-changing." @@ -7486,7 +7644,7 @@ "Hız kazanmak için şerit değiştirme yapma isteği. Daha yüksek değerler daha " "fazla şerit değiştirmeye neden olur." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5521 msgid "" "The eagerness for following the obligation to keep right. Higher values " "result in earlier lane-changing." @@ -7494,12 +7652,12 @@ "Sağda kalma zorunluluğunu takip etme isteği. Daha yüksek değerler daha erken " "şerit değiştirmeye neden olur." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5381 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5527 msgid "" "The eagerness for using the configured lateral alignment within the lane." msgstr "Şerit içinde yapılandırılmış yanal hizalamayı kullanma isteği." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5382 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5528 msgid "" "Higher values result in increased willingness to sacrifice speed for " "alignment." @@ -7507,7 +7665,7 @@ "Daha yüksek değerler, hizalama için hızdan ödün verme isteğinin artmasına " "neden olur." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5388 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5534 msgid "" "The eagerness for overtaking through the opposite-direction lane. Higher " "values result in more lane-changing." @@ -7515,11 +7673,11 @@ "Karşı yön şeridinden sollama yapma isteği. Daha yüksek değerler daha fazla " "şerit değiştirmeye neden olur." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5394 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5540 msgid "Willingness to encroach laterally on other drivers." msgstr "Diğer sürücüleri yanlamasına gasp etme isteği." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5400 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5546 msgid "" "Minimum lateral gap when encroaching laterally on other drives (alternative " "way to define lcPushy)" @@ -7527,15 +7685,15 @@ "Diğer sürücüleri yanal olarak gasp ederken minimum yanal boşluk (lcPushy'yi " "tanımlamanın alternatif yolu)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5406 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5552 msgid "Willingness to accept lower front and rear gaps on the target lane." msgstr "Hedef şeritte alt ön ve arka boşlukları kabul etme isteği." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5412 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5558 msgid "Dynamic factor for modifying lcAssertive and lcPushy." msgstr "lcAssertive ve lcPushy'yi değiştirmek için dinamik faktör." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5418 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5564 msgid "" "Time to reach maximum impatience (of 1). Impatience grows whenever a lane-" "change manoeuvre is blocked." @@ -7543,11 +7701,11 @@ "Maksimum sabırsızlığa ulaşma süresi (1'in). Bir şerit değiştirme manevrası " "engellendiğinde sabırsızlık artar." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5424 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5570 msgid "Maximum lateral acceleration per second." msgstr "Saniye başına maksimum yanal ivme." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5430 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5576 msgid "" "Factor for configuring the strategic lookahead distance when a change to the " "left is necessary (relative to right lookahead)." @@ -7555,7 +7713,7 @@ "Sola doğru bir değişiklik gerektiğinde (sağ önden görüşe göre) stratejik " "önden bakış mesafesini yapılandırma faktörü." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5436 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5582 msgid "" "Factor for configuring the threshold asymmetry when changing to the left or " "to the right for speed gain." @@ -7563,11 +7721,11 @@ "Hız artışı için sola veya sağa geçerken eşik asimetrisini yapılandırma " "faktörü." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5442 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5588 msgid "Upper bound on lateral speed when standing." msgstr "Durgunken yanal hızda üst sınır." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5594 msgid "" "Upper bound on lateral speed while moving computed as lcMaxSpeedLatStanding " "+ lcMaxSpeedLatFactor * getSpeed()" @@ -7575,25 +7733,25 @@ "Hareket halindeyken yanal hızın üst sınırı lcMaxSpeedLatStanding + " "lcMaxSpeedLatFactor * getSpeed() olarak hesaplanır" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5454 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5600 msgid "" "Distance to an upcoming turn on the vehicles route, below which the alignment" msgstr "" "Araç güzergahında, hizalamanın altında kalan yaklaşan bir dönüşe olan mesafe" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5455 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5601 msgid "should be dynamically adapted to match the turn direction." msgstr "dönüş yönüne uyacak şekilde dinamik olarak uyarlanmalıdır." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5461 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5607 msgid "The probability for violating rules gainst overtaking on the right." msgstr "Sağdan sollamaya karşı kuralları ihlal etme olasılığı." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5467 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5613 msgid "Time threshold for the willingness to change right." msgstr "Sağ şeride değişim isteği için zaman eşiği." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5473 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5619 msgid "" "Speed difference factor for the eagerness of overtaking a neighbor vehicle " "before changing lanes (threshold = factor*speedlimit)." @@ -7601,35 +7759,35 @@ "Şerit değiştirmeden önce komşu bir aracı sollama isteği için hız farkı " "faktörü (eşik = faktör*hız sınırı)." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5495 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5641 msgid "The name of the person" msgstr "Yolcunun adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5500 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5646 msgid "The id of the person type to use for this person" msgstr "Bu yolcu için kullanılacak yolcu türünün kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5506 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5652 msgid "This person's color" msgstr "Bu yolcunun rengi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5512 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5658 msgid "The position at which the person shall enter the net" msgstr "Yolcunun ağa gireceği pozisyon" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5525 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5671 msgid "The name of the container" msgstr "Konteynerin adı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5530 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5676 msgid "The id of the container type to use for this container" msgstr "Bu konteyner için kullanılacak konteyner tipinin kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5536 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5682 msgid "This container's color" msgstr "Bu konteynerin rengi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5562 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5708 msgid "" "If set to a non-negative time value, then the stop duration can be extended " "at most by the extension value in seconds" @@ -7637,29 +7795,29 @@ "Negatif olmayan bir zaman değerine ayarlanırsa, durdurma süresi en fazla " "saniye cinsinden uzatma değeri kadar uzatılabilir" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5568 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5714 msgid "Whether a person or container or bth may end the stop" msgstr "" "Bir kişinin veya konteynerin veya bth'nin durmayı sonlandırıp " "sonlandıramayacağı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5721 msgid "List of elements that must board the vehicle before it may continue" msgstr "Devam etmeden önce araca binmesi gereken elemanların listesi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5580 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5726 msgid "List of elements that can board the vehicle before it may continue" msgstr "Devam etmeden önce araca binebilecek elemanların listesi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5585 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5731 msgid "Whether the vehicle stops on the road or beside" msgstr "Aracın yolda mı yoksa yol kenarında mı durduğu" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5592 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5738 msgid "Activity displayed for stopped person in GUI and output files" msgstr "GUI ve çıktı dosyalarında duran yolcu için görüntülenen etkinlik" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5597 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5743 msgid "" "Parameter to be applied to the vehicle to track the trip id within a " "cyclical public transport route" @@ -7667,7 +7825,7 @@ "Döngüsel bir toplu taşıma rotası içinde yolculuk kimliğini izlemek için " "araca uygulanacak parametre" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5602 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5748 msgid "" "New line attribute to be set on the vehicle when reaching this stop (for " "cyclical public transport route)" @@ -7675,79 +7833,79 @@ "Bu durağa ulaşıldığında araçta ayarlanacak yeni hat niteliği (döngüsel toplu " "taşıma rotası için)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5608 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5754 msgid "Speed to be kept while driving between startPos and endPos" msgstr "StartPos ve endPos arasında sürüş sırasında korunacak hız" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5614 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5760 msgid "" "Whether the stop may be skipped if no passengers wants to embark or disembark" msgstr "" "Hiçbir yolcunun binmek veya inmek istememesi durumunda durağın atlanıp " "atlanamayacağı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5621 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5767 msgid "" "transfer time if there shall be a jump from this stop to the next route edge" msgstr "Bu duraktan bir sonraki rota kesimine atlama olacaksa transfer süresi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5789 msgid "Data set ID" msgstr "Veri seti kimliği (ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5659 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5805 msgid "Interval ID" msgstr "Aralık Kimliği (ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5665 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5811 msgid "Data interval begin time" msgstr "Veri aralığı başlangıç zamanı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5671 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5817 msgid "Data interval end time" msgstr "Veri aralığı bitiş zamanı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5687 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5833 msgid "edge ID" msgstr "Kesim Kimliği (ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5701 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5847 msgid "The ID of the edge the edgeRel starts at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5706 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5852 msgid "The ID of the edge the edgeRel ends at" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5720 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5866 msgid "The name of the TAZ the TAZRel starts at" msgstr "TABİlişkili'nin başladığı TAB'ın adı (TAZRel, TAZ)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5725 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5871 msgid "The name of the TAZ the TAZRel ends at" msgstr "TABİlişkili'nin bittiği TAB'ın adı (TAZRel, TAB)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5760 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5906 msgid "The id of this set of measurements" msgstr "Bu ölçüm setinin kimliği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5765 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5911 msgid "The path to the output file. The path may be relative" msgstr "Çıktı dosyasının yolu. Yol göreceli olabilir" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5775 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5921 msgid "" "The time to start writing. If not given, the simulation's begin is used." msgstr "" "Yazmaya başlama zamanı. Verilmediği takdirde, simülasyonun başlangıcı " "kullanılır." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5780 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5926 msgid "The time to end writing. If not given the simulation's end is used." msgstr "" "Yazmayı bitirme zamanı. Verilmediği takdirde simülasyonun sonu kullanılır." -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5785 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5931 msgid "" "If set to true, edges/lanes which were not use by a vehicle during this " "period will not be written" @@ -7755,32 +7913,32 @@ "Doğru olarak ayarlanırsa, bu süre zarfında bir araç tarafından kullanılmayan " "kesimler/şeritler yazılmayacaktır" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5792 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5938 msgid "If set, junction internal edges/lanes will be written as well" msgstr "Ayarlanırsa, kavşak iç kesimleri/şeritleri de yazılacaktır" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5798 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5944 msgid "" "The maximum travel time in seconds to write if only very small movements " "occur" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5804 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5950 msgid "" "Consider an edge/lane unused if it has at most this many sampled seconds" msgstr "" "En fazla şu kadar örneklenmiş saniyesi olan bir kesimi/şeridi kullanılmamış " "kabul et" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5810 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5956 msgid "The maximum speed to consider a vehicle halting;" msgstr "Bir aracın durduğunu dikkate almak için maksimum hız;" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5816 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5962 msgid "space separated list of vehicle type ids to consider" msgstr "Dikkate alınacak araç türü kimliklerinin boşlukla ayrılmış listesi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5821 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5967 msgid "" "whether aggregation should be performed over all vehicles that entered the " "edge/lane in the aggregation interval" @@ -7788,7 +7946,7 @@ "birleştirme işleminin, birleştirme aralığında kesime/şeride giren tüm " "araçlar üzerinden gerçekleştirilip gerçekleştirilmeyeceği" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5827 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5973 msgid "" "Whether pedestrians shall be recorded instead of vehicles. Allowed value is " "walk" @@ -7796,30 +7954,30 @@ "Araçlar yerine yayaların kaydedilip kaydedilmeyeceği. İzin verilen değer " "yürümektir" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5832 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5978 msgid "List of attribute names that shall be written" msgstr "Yazılacak öznitelik adlarının listesi" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5837 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5983 msgid "Restrict output to the given list of edge ids" msgstr "Çıktıyı verilen kesim kimlikleri listesiyle kısıtlar" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5842 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5988 msgid "Restrict output to the given the list of edges given in file" msgstr "Çıktıyı dosyada verilen kesimlerin listesiyle kısıtlayın" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5847 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5993 msgid "" "Whether the traffic statistic of all edges shall be aggregated into a single " "value" msgstr "" "Tüm kesimlerin trafik istatistiğinin tek bir değerde toplanıp toplanmayacağı" -#: /home/micha/programming/sumo/src/netedit/elements/GNEHierarchicalElement.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\GNEHierarchicalElement.cpp:421 msgid "Some child meanData were lost during sorting" msgstr "Sıralama sırasında bazı alt ortalama veriler kayboldu (meanData)" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:96 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:96 msgid "" "element must be at least networkElement, additional, TAZ, demandElement, " "dataElement or meanData" @@ -7827,7 +7985,7 @@ "Eleman en az networkElement, additional, TAZ, demandElement, dataElement " "veya meanData olmalıdır" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:100 msgid "" "element can be only a networkElement, additional, demandElement, dataElement " "or meanData at the same time" @@ -7835,11 +7993,11 @@ "eleman aynı anda sadece bir networkElement, additional, demandElement, " "dataElement veya meanData olabilir" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:104 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:104 msgid "element can be only a shape, TAZ or wire element at the same time" msgstr "eleman aynı anda sadece bir şekil, TAB veya kablo elemanı olabilir" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:108 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:108 msgid "" "If attributes mask the start and end position, both attributes have to be " "defined" @@ -7847,121 +8005,111 @@ "Öznitelikler başlangıç ve bitiş konumunu maskeliyorsa, her iki özniteliğin " "de tanımlanması gerekir" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:134 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:134 msgid "Attributes aren't combinables" msgstr "Öznitelikler birleştirilemez" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:136 msgid "allow need a disallow attribute in the same tag" msgstr "izin verme aynı etikette bir izin vermeme niteliğine ihtiyaç duyar" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:138 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:138 msgid "disallow need an allow attribute in the same tag" msgstr "" "izin vermeme aynı etiket içinde bir izin verme niteliğine ihtiyaç duyar" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:152 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:152 #, c-format msgid "attribute '%' doesn't have a default value" msgstr "'%' özniteliğinin varsayılan bir değeri yoktur" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:158 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:158 #, c-format msgid "Attribute '%' not defined" msgstr "'%' özniteliği tanımlanmadı" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:165 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:165 #, c-format msgid "Maximum number of attributes for tag % exceeded" msgstr "% etiketi için maksimum öznitelik sayısı aşıldı" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:170 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:170 #, c-format msgid "Attribute '%' already inserted" msgstr "Öznitelik '%' zaten eklendi" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:207 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:207 #, c-format msgid "Attribute '%' doesn't exist" msgstr "Öznitelik '%' mevcut değil" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAccess.cpp:173 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEEntryExitDetector.cpp:97 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEInductionLoopDetector.cpp:115 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEInstantInductionLoopDetector.cpp:111 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:174 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:190 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:197 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:136 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:143 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:201 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:132 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:137 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAccess.cpp:173 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEEntryExitDetector.cpp:97 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEInductionLoopDetector.cpp:115 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEInstantInductionLoopDetector.cpp:111 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:174 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:190 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:197 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:143 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:201 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:132 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:137 msgid " > lanes's length" msgstr " > şeritlerin uzunluğu" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:148 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:149 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:146 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:128 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:129 -msgid "Copy " -msgstr "Kopyala " - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:148 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:146 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:128 -msgid " name to clipboard" -msgstr " panoya ad" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:149 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:129 -msgid " typed name to clipboard" -msgstr " panoya yazılan ad" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZSourceSink.cpp:146 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:128 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:129 +#, c-format +msgid "Copy % name to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:148 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZSourceSink.cpp:147 +msgid "Copy % typed name to clipboard" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:156 msgid "Open " msgstr "Açık " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:156 msgid " Dialog" msgstr " İletişim" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:164 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:174 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:164 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:174 msgid "Cursor position over additional shape: " msgstr "Ek şekil üzerinde imleç konumu: " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:168 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:168 msgid "Cursor position over lane: " msgstr "Şerit üzerinde imleç konumu: " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:178 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:178 msgid "Mouse position over edge: " msgstr "Kesim üzerinde fare konumu: " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:181 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:139 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:181 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:139 msgid "Cursor position in view: " msgstr "Görünümdeki imleç konumu: " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:398 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:398 msgid "Invalid number of edges" msgstr "Geçersiz kesim sayısı" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:104 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:104 msgid "add bus stop '" msgstr "otobüs durağı ekle '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:148 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:148 msgid "add train stop '" msgstr "tren durağı ekle '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:186 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:186 msgid "" "Could not build access in netedit; busStop parent already owns an access in " "the edge '" @@ -7969,39 +8117,36 @@ "Netedit'te erişim oluşturulamadı; busStop üst öğesi zaten kesimde bir " "erişime sahip '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:188 -msgid "Could not build access in netedit; The lane '" -msgstr "netedit'te erişim oluşturulamadı; Şerit '" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:188 -msgid "' doesn't support pedestrians" -msgstr "' yayaları desteklemiyor" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:188 +#, c-format +msgid "" +"Could not build access in netedit; The lane '%' doesn't support pedestrians" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:194 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:194 msgid "add access in '" msgstr "erişim ekle '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:235 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:235 msgid "add container stop '" msgstr "konteyner durağı ekle '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:279 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:279 msgid "add charging station '" msgstr "şarj istasyonu ekle '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:322 -msgid "Could not build parking area with ID '" -msgstr "Kimlikle (ID) park alanı oluşturulamadı '" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:322 -msgid "' in netedit; Invalid departPos over lane." -msgstr "' netedit'te; Şerit üzerinde geçersiz kalkış pozisyonu (departPos)" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:323 +#, c-format +msgid "" +"Could not build parking area with ID '%' in netedit; Invalid departPos over " +"lane." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:330 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:331 msgid "add parking area '" msgstr "park alanı ekle '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:352 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:353 msgid "" "Could not build parking space in netedit; attribute width cannot be parse to " "float." @@ -8009,7 +8154,7 @@ "Netedit'te park yeri oluşturulamadı; öznitelik genişliği ondalıklı olarak " "ayrıştırılamıyor." -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:354 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:355 msgid "" "Could not build parking space in netedit; attribute length cannot be parse " "to float." @@ -8017,7 +8162,7 @@ "Netedit'te park yeri oluşturulamadı; öznitelik uzunluğu ondalıklı olarak " "ayrıştırılamıyor." -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:356 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:357 msgid "" "Could not build parking space in netedit; attribute angle cannot be parse to " "float." @@ -8025,1313 +8170,1483 @@ "Netedit'te park yeri oluşturulamadı; öznitelik açısı ondalıklı olarak " "ayrıştırılamıyor." -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:377 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:378 msgid "add parking space in '" msgstr "' içine park yeri ekle" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:422 msgid "add induction loop '" msgstr "indüksiyon döngüsü ekle '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:461 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:519 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:528 -msgid "Could not build lane area detector with ID '" -msgstr "' Kimliği (ID) ile şerit alanı dedektörü oluşturulamadı" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:461 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:528 -msgid "' in netedit; invalid traffic light ID." -msgstr "netedit'te; geçersiz trafik ışığı kimliği (ID)." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:462 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:529 +#, c-format +msgid "" +"Could not build lane area detector with ID '%' in netedit; invalid traffic " +"light ID." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:486 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:547 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:487 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:548 msgid "add lane area detector '" msgstr "şerit alanı dedektörü ekle '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:519 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1543 -msgid "' in netedit; Lanes aren't consecutives." -msgstr "' netedit'te; Şeritler ardışık değildir." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:520 +#, c-format +msgid "" +"Could not build lane area detector with ID '%' in netedit; Lanes aren't " +"consecutives." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:592 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:593 msgid "add entry-exit detector '" msgstr "giriş-çıkış dedektörü ekle'" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:627 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:628 msgid "add entry detector in '" msgstr "' içine giriş dedektörü ekleyin" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:662 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:663 msgid "add exit detector in '" msgstr "' içine çıkış dedektörü ekleyin" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:699 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:700 msgid "add instant induction loop '" msgstr "anlık indüksiyon döngüsü ekle '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:749 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:750 msgid "add lane calibrator '" msgstr "şerit kalibratörü ekle '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:803 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:804 msgid "add calibrator '" msgstr "kali̇bratör ekle '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:844 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:845 msgid "add calibrator flow in '" msgstr "' içine kalibratör akımı ekleyin" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:900 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:901 msgid "add rerouter '" msgstr "yeniden yönlendirici ekle '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:939 -msgid "Could not build interval with ID '" -msgstr "' Kimlik (ID) ile aralık oluşturulamadı" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:939 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1244 -msgid "' in netedit; begin is greather than end." -msgstr "' netedit'te; başlangıç bitişten daha büyüktür." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:940 +#, c-format +msgid "" +"Could not build interval with ID '%' in netedit; begin is greather than end." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:947 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:948 msgid "add rerouter interval in '" msgstr "' içine yeniden yönlendirici aralığı ekleyin" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "Could not build interval with begin '" -msgstr "' Başlangıç ile aralık oluşturulamadı" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "' in '" -msgstr "' içinde '" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "' due overlapping." -msgstr "' ifadesinin örtüşmesi nedeniyle." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:957 +#, c-format +msgid "" +"Could not build interval with begin '%' and end '%' in '%' due overlapping." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:978 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:979 msgid "add closing lane reroute in '" msgstr "' içine kapanış şeridi yeniden yönlendirmesi ekle" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1006 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1007 msgid "add closing reroute in '" msgstr "' içine kapanış yeniden yönlendirme ekle" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1033 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1034 msgid "add dest prob reroute in '" msgstr "' içine hedef inceleme yeniden yönlendirmesi ekle" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1061 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1062 msgid "add parking area reroute in '" msgstr "' içine park alanı yeniden yönlendirmesi ekle" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1089 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1090 msgid "add route prob reroute in '" msgstr "' içine rota inceleme yeniden yönlendirmesi ekle" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1126 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1127 msgid "add route probe '" msgstr "rota sorgulama ekle '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1172 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1173 msgid "add Variable Speed Sign '" msgstr "Değişken Hız İşareti ekle '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1213 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1214 msgid "add VSS Step in '" msgstr "' içine VSS Adımı ekle" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1244 -msgid "Could not build Vaporizer with ID '" -msgstr "' Kimlik (ID) ile Buharlaştırıcı oluşturulamadı" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1245 +#, c-format +msgid "" +"Could not build Vaporizer with ID '%' in netedit; begin is greather than end." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1250 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1251 msgid "add vaporizer in '" msgstr "' içine buharlaştırıcı ekle" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1305 -msgid "Could not build TAZ with ID '" -msgstr "' Kimlik ile TAB oluşturulamadı" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1305 -msgid "' in netedit; Invalid Shape." -msgstr "' netedit'te; Geçersiz Şekil." +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1306 +#, c-format +msgid "Could not build TAZ with ID '%' in netedit; Invalid Shape." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1316 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1317 msgid "add TAZ '" msgstr "TAB ekle '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1377 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1471 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1378 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1472 msgid "add TAZ Sink in '" msgstr "' içine TAB Alıcı ekle" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1400 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1449 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1401 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1450 msgid "add TAZ Source in '" msgstr "' içine TAB kaynağı ekle" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1411 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1412 msgid "update TAZ Source in '" msgstr "' içinde TAB kaynağını güncelle" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1482 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1483 msgid "update TAZ Sink in '" msgstr "' içinde TAB alıcısını güncelle" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1511 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1512 msgid "add taction substation '" msgstr "cer trafo merkezi̇ ekle '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1543 -msgid "Could not build overhead wire with ID '" -msgstr "' kimliğine (ID) sahip havai hat oluşturulamadı" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1544 +#, c-format +msgid "" +"Could not build overhead wire with ID '%' in netedit; Lanes aren't " +"consecutives." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1555 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1556 msgid "add overhead wire '" msgstr "havai hat ekle '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1604 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1605 msgid "add polygon '" msgstr "çokgen ekle '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1637 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1680 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1719 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1638 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1681 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1720 msgid "add POI '" msgstr "EN ekle '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1711 -msgid "Could not build POI with ID '" -msgstr "' Kimlik (ID) ile EN oluşturulamadı" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1711 -msgid "' in netedit; Network requires a geo projection." -msgstr "' netedit'te; Ağ coğrafi projeksiyon gerektirir." - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1925 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:116 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -msgid "Could not build " -msgstr "Oluşturulamadı " - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -msgid " with ID '" -msgstr " ' Kimlik (ID) ile" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -msgid "' in netedit; ID contains invalid characters." -msgstr "' netedit'te; Kimlik (ID) geçersiz karakterler içeriyor." - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -msgid "' in netedit; Invalid position over lane." -msgstr "' netedit'te; Şerit üzerinde geçersiz konum." - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -msgid "' in netedit; declared twice." -msgstr "' netedit'te; iki kez bildirilmiştir." - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1925 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -msgid " doesn't exist." -msgstr " yok." - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -msgid "' in netedit; attribute " -msgstr "' netedit'te; Öznitelik " - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -msgid " cannot be negative." -msgstr " negatif olamaz." - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -msgid "' in netedit; list of VTypes isn't valid." -msgstr "' netedit'te; Araç Tipi (VTypes) listesi geçerli değil." - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -msgid "' in netedit; filename is invalid." -msgstr "' netedit'te; dosya adı geçersiz." - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -msgid "' in netedit; list of lanes isn't valid." -msgstr "' netedit'te; şeritlerin listesi geçerli değil." - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -msgid " in netedit; " -msgstr " netedit'te; " +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1712 +#, c-format +msgid "Could not build POI with ID '%' in netedit" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1712 +msgid "Network requires a geo projection." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1908 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1914 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1920 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1932 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1938 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1944 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1950 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:245 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:257 +msgid "Could not build % with ID '%' in netedit" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1908 +msgid "ID contains invalid characters." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1914 +msgid "Invalid position over lane." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1920 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:245 +msgid "Declared twice." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1926 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2005 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2023 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:251 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:116 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:132 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2198 +#, c-format +msgid "Could not build % in netedit" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1926 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2005 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2023 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:251 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:257 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2198 +#, c-format +msgid "% doesn't exist." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1932 +#, c-format +msgid "Attribute % cannot be negative." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1938 +msgid "List of VTypes isn't valid." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1944 +msgid "Filename is invalid." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1950 +msgid "List of lanes isn't valid." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:194 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:194 msgid "Both edges and lanes aren't defined" msgstr "Hem kesimler hem de şeritler tanımlı değil" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:238 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:480 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:238 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:480 msgid "Both myEdge and myLane aren't defined" msgstr "Hem Kesimlerim (myEdge) hem de Şeritlerim (myLane) tanımlanmamış" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibratorFlow.cpp:94 -msgid "calibratorFlow of calibrator '" -msgstr "' Kalibratörün kalibratör akımı (calibratorFlow)" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibratorFlow.cpp:95 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibratorFlow.cpp:94 +#, c-format msgid "" -"' cannot be written. Either type or vehsPerHour or speed must be enabled" -msgstr "' yazılamaz. Tür veya saat başına araç veya hız etkinleştirilmelidir" +"calibratorFlow of calibrator '%' cannot be written. Either type or " +"vehsPerHour or speed must be enabled" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:179 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:125 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:179 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:125 msgid "lanes aren't consecutives" msgstr "şeritler ardışık değil" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:183 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:129 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:183 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:129 msgid "lanes aren't connected" msgstr "şeritler bağlı değil" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:202 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:141 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:202 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:141 msgid " and " msgstr " ve " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:115 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:115 msgid "' needs at least one entry and one exit" msgstr "' en az bir giriş ve bir çıkışa ihtiyaç duyar" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:317 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:317 msgid "An entry-exit detector needs at least one entry detector" msgstr "Bir giriş-çıkış dedektörü en az bir giriş dedektörüne ihtiyaç duyar" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:320 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:320 msgid "An entry-exit detector needs at least one exit detector" msgstr "Bir giriş-çıkış dedektörü en az bir çıkış dedektörüne ihtiyaç duyar" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:319 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:319 msgid "Release from lane" msgstr "Şeritten ayrılma" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:323 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:323 msgid "Attach to nearest lane" msgstr "En yakın şeride ekle" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:214 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:214 msgid "Simplify Shape" msgstr "Şekli Basitleştir" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:214 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:214 msgid "Replace current shape with a rectangle" msgstr "Geçerli şekli bir dikdörtgenle değiştir" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:220 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:220 msgid "Open shape" msgstr "Şekli aç" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:220 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:220 msgid "Open polygon's shape" msgstr "Çokgenin şeklini aç" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:222 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:65 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:222 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:66 msgid "Close shape" msgstr "şekli kapat" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:222 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:222 msgid "Close polygon's shape" msgstr "Çokgenin şeklini kapat" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:224 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:224 msgid "Select elements within polygon" msgstr "Çokgen içindeki elemanları seç" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:224 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:224 msgid "Select elements within polygon boundary" msgstr "Çokgen sınırı içindeki elemanları seç" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:234 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:234 msgid "Remove geometry point" msgstr "Geometri noktasını kaldır" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:234 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:234 msgid "Remove geometry point under mouse" msgstr "Farenin altındaki geometri noktasını kaldır" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:235 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:235 msgid "Set first geometry point" msgstr "İlk geometri noktasını ayarla" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:447 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:447 msgid "Number of remaining points insufficient" msgstr "Kalan nokta sayısı yetersiz" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:474 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:474 msgid "Polygon already opened" msgstr "Çokgen zaten açıldı" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:495 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:495 msgid "Polygon already closed" msgstr "Çokgen zaten kapandı" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:506 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:506 msgid "Selected point must be different of the first point" msgstr "Seçilen nokta ilk noktadan farklı olmalıdır" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:571 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:571 msgid "Polygon already simplified" msgstr "Poligon zaten basitleştirilmiş" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZ.cpp:282 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZ.cpp:282 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:715 msgid "Set custom Geometry Point" msgstr "Özel Geometri Noktası ayarla" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:62 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:62 msgid "add data set" msgstr "veri seti ekle" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:87 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:87 msgid "add data set and data interval" msgstr "veri seti ve veri aralığı ekle" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:102 msgid "add data interval" msgstr "veri aralığı ekle" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:128 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:165 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:130 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:167 msgid "add edge rel" msgstr "kesim ilişkisi ekle" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:205 -msgid "There is already a TAZ rel defined between '" -msgstr "' arasında tanımlanmış bir TAB ilişkisi zaten var" - -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:207 -msgid "There is already a TAZ rel defined in '" -msgstr "' içinde tanımlanmış bir TAB ilişkisi zaten var" +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:207 +msgid "There is already a TAZ rel defined between '%' and '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:209 +msgid "There is already a TAZ rel defined in '%'." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:211 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:222 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:213 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:224 msgid "add TAZ rel" msgstr "TAB ilişkisi ekle" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1511 -msgid "' doesn't exist." -msgstr "' yok." - -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataInterval.cpp:173 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataInterval.cpp:173 msgid "GenericData was already inserted" msgstr "GenericData zaten eklendi" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataInterval.cpp:199 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataInterval.cpp:199 msgid "GenericData wasn't previously inserted" msgstr "GenericData daha önce eklenmemiş" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:214 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:214 msgid "DataInterval was already inserted" msgstr "DataInterval zaten eklendi" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:231 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:255 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:231 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:255 msgid "DataInterval wasn't previously inserted" msgstr "DataInterval daha önce eklenmedi" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:316 -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdgeType.cpp:155 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:136 +msgid "Open % Dialog" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:316 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdgeType.cpp:155 msgid "Invalid index" msgstr "Geçersiz dizin" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:64 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:64 msgid "Could not build meanDataEdge; " msgstr "MeanDataEdge oluşturulamadı; " -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:64 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:93 -msgid " already exists" +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:64 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:93 +#, c-format +msgid "% already exists" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:70 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:70 msgid "add meanDataEdge" msgstr "meanDataEdge ekle" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:93 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:93 msgid "Could not build meanDataLane; " msgstr "meanDataLane oluşturulamadı; " -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:99 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:99 msgid "add meanDataLane" msgstr "meanDataLane ekle" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:116 -msgid " in netedit; edge doesn't exist." -msgstr " netedit'te; kesim mevcut değil." - -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -msgid " in netedit; attribute '" -msgstr " netedit'te; öznitelik '" +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:116 +msgid "Edge doesn't exist." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:132 +#, c-format +msgid "Attribute '%' doesn't exist." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEPersonTrip.cpp:306 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEPersonTrip.cpp:317 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEPersonTrip.cpp:312 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEPersonTrip.cpp:323 msgid "This personTrip use junctions" msgstr "Bu Yolcu Seyahati (personTrip) kavşakları kullanır" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:71 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:100 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1499 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1523 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1535 -msgid "There is another " -msgstr "Başka bir tane daha var " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:71 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:100 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1499 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1523 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1535 -msgid " with the same ID='" -msgstr " aynı kimliğe sahip (ID)='" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:76 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:126 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:161 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:206 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:258 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:299 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:345 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:389 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:436 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:480 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:516 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:547 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:593 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:609 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:625 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:677 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:694 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:709 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:725 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:741 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:778 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:794 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:827 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:858 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:893 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:909 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:949 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:966 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:982 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1107 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1122 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1142 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:71 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1608 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1632 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1644 +msgid "There is another % with the same ID='%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:76 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:126 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:152 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:197 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:250 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:291 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:337 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:381 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:428 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:472 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:508 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:539 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:591 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:607 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:623 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:639 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:697 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:714 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:729 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:745 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:761 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:777 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:820 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:836 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:852 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:885 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:916 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:951 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:967 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1007 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1024 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1040 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1189 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1209 msgid "add " msgstr "ekle " -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:102 -msgid " need at least one " -msgstr " en az bir tane gerekir " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:108 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:118 -msgid " with id '" -msgstr " ' Kimlik (ID) ile" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:108 -msgid "' doesn't exist in " -msgstr "' içinde yok " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:115 -msgid "Invalid definition for " -msgstr "için geçersiz tanım " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:115 -msgid " in " -msgstr " içinde " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:118 -msgid "' cannot be created in " -msgstr "' içinde oluşturulamaz " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:192 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:244 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:285 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:333 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:377 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:424 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:468 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:508 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:539 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:819 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:850 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:102 +msgid "% needs at least one %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:108 +msgid "% with id '%' doesn't exist in % '%'" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:115 +msgid "Invalid definition for % in % '%'" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:118 +msgid "% with id '%' cannot be created in % '%'" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:183 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:236 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:277 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:325 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:369 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:416 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:460 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:500 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:531 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:877 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:908 msgid "VType distributions currently unsupported in netedit" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:194 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:246 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:335 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:379 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:426 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:470 -msgid "Invalid vehicle type '" -msgstr "Geçersiz araç tipi '" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:194 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:246 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:290 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:335 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:379 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:426 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:470 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:510 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:541 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:821 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:852 -msgid "' used in " -msgstr "' içinde kullanılan " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:197 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:199 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:251 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:253 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:338 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:340 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:382 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:384 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:429 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:431 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:473 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:475 -msgid " used in " -msgstr " içinde kullanılan " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:238 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:279 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:327 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:371 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:418 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:462 +msgid "Invalid vehicle type '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:188 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:243 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:284 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:330 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:374 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:465 +msgid "Invalid % used in % '%'. % is greater than number of lanes" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:190 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:245 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:286 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:332 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:376 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:423 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:467 +msgid "Invalid % used in % '%'. % is greater than vType %" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:231 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:223 msgid "netedit doesn't support route distributions" msgstr "netedit rota dağıtımlarını desteklemiyor" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:290 -msgid "Invalid route '" -msgstr "Geçersiz rota'" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:251 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:253 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:338 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:340 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:382 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:384 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:429 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:431 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:473 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:475 -msgid "Invalid " -msgstr "Geçersiz " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -msgid " is greater than number of lanes" -msgstr " şerit sayısından daha büyük" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -msgid " is greater than vType" -msgstr " Araç Tipi'nden (vType) daha büyük" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:510 -msgid "Invalid person type '" -msgstr "Geçersiz yolcu tipi '" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:541 -msgid "Invalid personFlow type '" -msgstr "Geçersiz yolcu akımı (personFlow) türü '" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1039 -msgid "Containers don't support stops at busStops" -msgstr "Konteynerler otobüs duraklarındaki durakları desteklemez" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:241 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:282 +msgid "Invalid route '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:502 +msgid "Invalid person type '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:533 +msgid "Invalid personFlow type '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:879 +msgid "Invalid container type '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:910 +msgid "Invalid containerFlow type '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1102 +msgid "Containers don't support stops at busStops or trainStops" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1047 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1110 msgid "Persons don't support stops at containerStops" msgstr "Yolcular konteyner duraklarındaki durakları desteklemez" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1055 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1118 msgid "Persons don't support stops at chargingStations" msgstr "Yolcular şarj istasyonlarındaki durakları desteklemez" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1058 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1121 msgid "Containers don't support stops at chargingStations" msgstr "Konteynerler şarj istasyonlarındaki durakları desteklemez" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1066 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1129 msgid "Persons don't support stops at parkingAreas" msgstr "Yolcular park alanlarındaki durakları desteklemez" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1069 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1132 msgid "Containers don't support stops at parkingAreas" msgstr "Konteynerler park alanlarındaki durakları desteklemez" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1079 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1142 msgid "vehicles don't support stops at edges" msgstr "araçlar kesimlerdeki durakları desteklemez" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1092 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1155 msgid "A stop must be defined either over a stoppingPlace, a edge or a lane" msgstr "" "Bir durak ya bir durak yeri (stoppingPlace), bir kesim ya da bir şerit " "üzerinde tanımlanmalıdır" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1094 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1157 msgid "A stop requires only a stoppingPlace, edge or lane" msgstr "" "Bir durak sadece bir durak yeri (stoppingPlace), kesim veya şerit gerektirir" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1214 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1282 msgid "A person trip from edge to edge needs two edges edge" msgstr "Kesimden kesime yolculuk yapan bir kişi iki kesime ihtiyaç duyar" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1224 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1292 msgid "A person trip from edge to busStop needs one edge and one busStop" msgstr "" "Kesimden otobüs durağına giden bir kişi bir kesime ve bir otobüs durağına " "ihtiyaç duyar" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1234 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1302 +msgid "A person trip from edge to trainStop needs one edge and one trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1312 msgid "A person trip from junction to junction needs two junctions junction" msgstr "Kavşaktan kavşağa seyahat eden bir kişi iki kavşağa ihtiyaç duyar" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1245 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1404 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1425 -msgid "A ride from busStop to edge needs a busStop and an edge" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1323 +msgid "A walk to edge needs a busStop and an edge" msgstr "" -"Otobüs durağından (busStop) kesime yolculuk için bir Otobüs durağı (busStop) " -"ve bir kesim gerekir" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1255 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1414 -msgid "A transport from busStop to busStop needs two busStops" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1333 +msgid "A walk to busStop needs two busStops" msgstr "" -"Otobüs durağından (busStop) otobüs durağına (busStop) ulaşım için iki otobüs " -"durağı (busStop) gerekir" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1265 -msgid "A transport with edges attribute needs a list of edges" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1343 +msgid "A walk to trainStop needs two trainStops" msgstr "" -"Kesimler özelliğine sahip bir taşıma, kesimlerin bir listesine ihtiyaç duyar" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1275 -msgid "A route transport needs a route" -msgstr "Bir rota taşımacılığının bir rotaya ihtiyacı vardır" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1353 +msgid "A walk with edges needs a list of edges" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1363 +msgid "A route walk needs a route" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1285 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1373 msgid "A ride from busStop to junction needs a busStop and an junction" msgstr "" "Otobüs durağından (busStop) kavşağa bir yolculuk için bir otobüs durağı " "(busStop) ve bir kavşak gerekir" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1296 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1384 msgid "A ride from edge to edge needs two edges edge" msgstr "Kesimden kesime bir yolculuk için iki kesime ihtiyaç vardır" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1306 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1394 msgid "A ride from edge to busStop needs one edge and one busStop" msgstr "" "Kesimden otobüs durağına (busStop) bir yolculuk için bir kesim ve bir otobüs " "durağı (busStop) gerekir" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1320 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1459 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1404 +msgid "A ride from edge to trainStop needs one edge and one trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1418 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1568 msgid "A stop has to be placed over an edge" msgstr "Bir durak kesimin üzerine yerleştirilmelidir" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1331 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1470 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1429 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1579 msgid "A stop has to be placed over a busStop" msgstr "Bir durak, bir otobüs durağı (busStop) üzerine yerleştirilmelidir" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1435 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1440 +msgid "A stop has to be placed over a trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1513 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1534 +msgid "A ride from busStop to edge needs a busStop and an edge" +msgstr "" +"Otobüs durağından (busStop) kesime yolculuk için bir Otobüs durağı (busStop) " +"ve bir kesim gerekir" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1523 +msgid "A transport from busStop to busStop needs two busStops" +msgstr "" +"Otobüs durağından (busStop) otobüs durağına (busStop) ulaşım için iki otobüs " +"durağı (busStop) gerekir" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1544 msgid "A tranship from busStop to busStop needs two busStops" msgstr "" "Otobüs durağından (busStop) otobüs durağına aktarma için iki otobüs durağı " "(busStop) gerekir" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1445 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1554 msgid "A tranship with edges attribute needs a list of edges" msgstr "" "Kesimler özelliğine sahip bir aktarma, kesimlerin bir listesine ihtiyaç duyar" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1511 -msgid "Via edge '" -msgstr "Kesim üzerinden '" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1620 +#, c-format +msgid "Via edge '%' doesn't exist." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEStop.cpp:443 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEStop.cpp:446 msgid "Invalid Stop parent" msgstr "Geçersiz Durak ebeveyni" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEStop.cpp:458 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEStop.cpp:461 msgid "Invalid parent" msgstr "Geçersiz ebeveyn" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEVehicle.cpp:645 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEVehicle.cpp:645 msgid "Invalid vehicle tag" msgstr "Geçersiz araç etiketi" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEWalk.cpp:331 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEWalk.cpp:346 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEWalk.cpp:336 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEWalk.cpp:351 msgid "This walk use junctions" msgstr "Bu yürüyüş kavşakları kullanır" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEConnection.cpp:679 +#: D:\Repos\sumo/src\netedit\elements\network\GNEConnection.cpp:679 msgid "Could not set attribute '%' (tls is broken)" msgstr "'%' özniteliği ayarlanamadı (tıs bozuk)" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdge.cpp:2180 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdge.cpp:2180 msgid "Could not compute smooth shape for edge '%'" msgstr "'%' kesimi için pürüzsüz şekil hesaplanamadı" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdge.cpp:2198 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdge.cpp:2198 msgid "Could not compute smooth elevation for edge '%'" msgstr "'%' kesimi için pürüzsüz yükseklik hesaplanamadı" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEInternalLane.cpp:241 +#: D:\Repos\sumo/src\netedit\elements\network\GNEInternalLane.cpp:241 msgid "invalid link state='%'" msgstr "geçersiz bağlantı durumu='%'" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEJunction.cpp:335 +#: D:\Repos\sumo/src\netedit\elements\network\GNEJunction.cpp:335 msgid "Reset junction shapes" msgstr "Kavşak şekillerini sıfırla" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:470 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:471 msgid "Unexpected LinkState '%'" msgstr "Beklenmeyen Bağlantı Durumu '%'" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:810 -msgid "Lane Parametric Length cannot be never 0" -msgstr "Şerit Parametrik Uzunluğu asla 0 olamaz" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:672 +msgid "Copy parent edge name to clipboard" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:972 -msgid "Opposite lane '%' does not connect the same nodes as edge '%'!" -msgstr "Karşıt şerit '%', '%' kesimi ile aynı düğümleri bağlamıyor!" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:681 +msgid "Remove Lane From Selected" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:49 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:738 -msgid "Internal attributes" -msgstr "Dahili Öznitelikler" +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:683 +msgid "Add Lane To Selected" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:175 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:177 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:687 +msgid "Remove Edge From Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:689 +msgid "Add Edge To Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:706 +msgid "Reset edge end points" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:733 +msgid "Select state for all links from this edge:" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:743 +msgid "Additional options available in 'Inspect Mode'" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:758 +msgid "Shape pos: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:759 +msgid "Length pos: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:761 +msgid "Distance: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:763 +msgid "Height: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:764 +msgid "Angle: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:811 +msgid "Lane Parametric Length cannot be never 0" +msgstr "Şerit Parametrik Uzunluğu asla 0 olamaz" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:973 +msgid "Opposite lane '%' does not connect the same nodes as edge '%'!" +msgstr "Karşıt şerit '%', '%' kesimi ile aynı düğümleri bağlamıyor!" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1846 +#, c-format +msgid "Edge operations (% selected)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1848 +msgid "Edge operations" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1851 +msgid "Split edge here" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1852 +msgid "Split edge in both directions here (no simmetric opposite edge)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1857 +msgid "Split edge in both directions here (no opposite edge)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1864 +msgid "Split edge in both directions here" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1868 +msgid "Set geometry endpoint here (shift-click)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1872 +msgid "Restore both geometry endpoints" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1874 +msgid "Restore geometry endpoints of all selected edges" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1877 +msgid "Restore geometry endpoint (shift-click)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1879 +msgid "Reverse %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1880 +msgid "Add reverse direction for %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1884 +msgid "Add reverse disconnected direction for %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1885 +msgid "Reset lengths for %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1886 +msgid "Straighten %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1887 +msgid "Smooth %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1888 +msgid "Straighten elevation of %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1889 +msgid "Smooth elevation of %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1936 +#, c-format +msgid "Lane operations (% selected)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1938 +msgid "Lane operations" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1940 +msgid "Duplicate lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1941 +msgid "Set custom lane shape" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1942 +msgid "Reset custom shape" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1946 +msgid "Reset opposite lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1958 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1969 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1978 +msgid "Sidewalk" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1959 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1971 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1979 +msgid "Bike lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1960 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1973 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1980 +msgid "Bus lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1963 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1975 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1981 +msgid "Green verge" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1965 +msgid "Green verge (front)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1966 +msgid "Green verge (back)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1983 +msgid "Add restricted %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1984 +msgid "Remove restricted %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1985 +msgid "Transform to restricted %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2026 +#, c-format +msgid "Template operations (% selected)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2028 +msgid "Template operations" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2031 +msgid "Use edge as template" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2032 +msgid "Apply template" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2047 +msgid "Select reachable" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2052 +msgid "Select reachable (compute junctions)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:746 +msgid "Internal attributes" +msgstr "Dahili Öznitelikler" + +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:176 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:178 msgid "Invalid input parameter of " msgstr "Geçersiz giriş parametresi " -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:60 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:61 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:63 msgid "name" msgstr "Ad" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:64 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:65 msgid "button" msgstr "Buton" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:70 msgid "Disabled" msgstr "Devre Dışı" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:476 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:477 msgid "Unsupported additional ID" msgstr "Desteklenmeyen ek kimlik (ID)" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:55 msgid "Consecutive lane selector" msgstr "Ardışık Şerit Seçici" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:59 -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:411 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:59 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:411 msgid "No lanes selected" msgstr "Herhangi Bir Şerit Seçilmedi" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:61 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:61 msgid "Finish path creation" msgstr "Güzergah Oluşturmayı Bitir" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:64 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:64 msgid "Abort path creation" msgstr "Güzergah Oluşturmayı İptal Et" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:67 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:67 msgid "Remove last lane" msgstr "Son Şeridi Kaldır" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:70 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:70 msgid "Show candidate lanes" msgstr "Aday Şeritleri Göster" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:73 msgid "-BACKSPACE: undo click" msgstr "-GERİ AL: tıklamayı geri al" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:73 msgid "-ESC: Abort path creation" msgstr "-ESC: Güzergah oluşturmayı iptal et" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:134 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:134 msgid "Invalid lane" msgstr "Geçersiz Şerit" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:151 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:151 msgid "Lane path needs at least two lanes" msgstr "Şerit Güzergahı İçin En Az İki Şerit Gerekir" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:171 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:393 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:469 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:482 msgid "route creation" msgstr "rota oluşturma" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:406 msgid "- Selected lanes: " msgstr "- Seçilen Şeritler: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:407 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:943 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:407 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:959 msgid "- Length: " msgstr "- Uzunluk: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:48 msgid "Parent " msgstr "Ebeveyn " -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:65 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:65 msgid "Parent element" msgstr "Kaynak Eleman" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:108 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:108 msgid "select item..." msgstr "öğe seç..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:110 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:110 msgid "-Select an item in the list or" msgstr "-Listeden bir öğe seçin veya" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:110 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:110 msgid "click over an element in view" msgstr "görünümdeki bir öğenin üzerine tıklayın" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:133 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:133 msgid "select sub-item..." msgstr "alt öğe seç..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:136 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:136 msgid "-Clicked over multiple" msgstr "-Birden fazla tıklandı" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:137 msgid "elements" msgstr "Elemanlar" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:138 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:138 msgid " - Select an item in the" msgstr " - İçinden bir öğe seçin" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:139 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:139 msgid " list or click over an" msgstr " listeleyin veya üzerine tıklayın" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:140 msgid " element in view" msgstr " görünümdeki eleman" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:333 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:337 msgid "Selected item '" msgstr "Seçilen öğe '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:333 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:337 msgid "' in DemandElementSelector" msgstr "' içinde Talep Eleman Seçici" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:346 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:350 msgid "Selected invalid item in DemandElementSelector" msgstr "Talep eleman seçicide geçersiz öğe seçildi" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:49 msgid "Drawing" msgstr "Çizim" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:52 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:53 msgid "Start drawing" msgstr "Çizime Başla" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:53 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:54 msgid "Stop drawing" msgstr "Çizimi Durdur" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:54 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:55 msgid "Abort drawing" msgstr "Çizimi İptal Et" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:58 -msgid "- 'Start drawing' or ENTER" -msgstr "- 'Çizime başla' veya ENTER" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:59 -msgid " to create shape." -msgstr " şekil oluşturmak için." - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:60 -msgid "- 'Stop drawing' or ENTER to" -msgstr "- 'Çizimi durdur' veya ENTER" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:61 -msgid " finish shape creation." -msgstr " şekil oluşturmayı bitir." - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:62 -msgid "- 'Abort drawing' or ESC to" -msgstr "- 'Çizimi iptal et' veya ESC" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:63 -msgid " abort shape creation." -msgstr " şekil oluşturmayı iptal et." - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:64 -msgid "- 'Shift + Click' to remove" -msgstr "- Kaldırmak için 'Shift + Tıkla'" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:65 -msgid " last inserted point." -msgstr " Son eklenen nokta." +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:59 +msgid "'Start drawing' or ENTER to create a shape." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:60 +msgid "'Stop drawing' or ENTER to finish shape creation." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:61 +msgid "'Abort drawing' or ESC to abort shape creation." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:62 +msgid "'Shift + Click' to remove the last inserted point." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:134 msgid "A new point cannot be added if drawing wasn't started" msgstr "Çizim başlatılmadıysa yeni bir nokta eklenemez" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:34 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:34 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:614 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1402 -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:101 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:339 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:619 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:535 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:85 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:34 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:34 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:614 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1406 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:101 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:323 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:621 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:536 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:85 msgid "Information" msgstr "Bilgi" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:38 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:38 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:38 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:38 msgid " edge candidate" msgstr " kesim adayı" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:42 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:42 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:42 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:42 msgid " last edge selected" msgstr " seçilen son kesim" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:45 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:45 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:45 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:45 msgid " edge selected" msgstr " seçilen kesim" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:48 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:51 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:51 msgid " edge disconnected" msgstr " kesim bağlantısı kesildi" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:62 msgid "Hierarchy" msgstr "Hiyerarşi" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:211 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:211 #, c-format msgid "Default Vehicle Type '%' cannot be removed" msgstr "Varsayılan Araç Türü '%' kaldırılamaz" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:316 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:84 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:316 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:276 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:84 msgid "Center" msgstr "Merkez" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:323 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:1252 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:323 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:1089 msgid "Inspect" msgstr "İncele" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:324 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:259 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:96 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:440 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1356 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:324 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:98 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:442 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1384 msgid "Delete" msgstr "Sil" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:397 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:416 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:477 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:397 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:477 msgid " origin" msgstr " köken" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:398 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:417 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:478 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:398 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:417 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:478 msgid " destination" msgstr " Hedef" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:506 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:632 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:706 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:506 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:632 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:706 msgid " additionals..." msgstr " ekler..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:520 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:583 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:646 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:720 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:520 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:583 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:646 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:720 msgid " demand elements..." msgstr " talep elemanları..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:534 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:597 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:660 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:738 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:597 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:660 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:738 msgid " edges..." msgstr " kesimler..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:548 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:611 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:674 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:756 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:548 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:611 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:674 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:756 msgid " lanes..." msgstr " şeritler..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:569 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:569 msgid " TAZElements..." msgstr " TAB Elemanları..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:815 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:815 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:911 msgid "Data elements" msgstr "Veri Elemanları" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:841 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:841 msgid "Incomings" msgstr "Gelenler" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:851 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:851 msgid "Outgoing" msgstr "Gidenler" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:890 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:65 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1325 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:890 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:65 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1322 msgid "Edges" msgstr "Kesimler" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:890 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:890 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:71 msgid "Lanes" msgstr "Şeritler" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:51 msgid "Flow attributes" msgstr "Akım Öznitelikleri" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:170 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:469 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:596 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:470 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:597 msgid "rate" msgstr "Oran" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:343 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:344 msgid "change multiple flow attributes" msgstr "çoklu akım özniteliklerini değiştir" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:369 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:370 msgid "enable multiple flow attributes" msgstr "çoklu akım özniteliklerini etkinleştir" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:385 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:386 msgid "disable multiple flow attributes" msgstr "çoklu akım özniteliklerini devre dışı bırak" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:540 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:568 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:541 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:569 msgid "different: " msgstr "farklı: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:185 msgid "Parameters of " msgstr "Parametreleri " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:195 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:195 msgid "Attribute" msgstr "Öznitelik" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:196 msgid "Description" msgstr "Açıklama" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:197 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:197 msgid "Definition" msgstr "Tanım" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 msgid "Opening HelpAttributes dialog for tag '" msgstr "Etiket için HelpAttributes iletişim kutusu açılıyor '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 msgid "' showing " msgstr "' gösteriliyor " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 msgid " attributes" msgstr " Öznitelikler" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:247 msgid "Closing HelpAttributes dialog for tag '" msgstr "Etiket için HelpAttributes iletişim kutusu kapatılıyor '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:319 -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:417 -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:494 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:319 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:418 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:495 msgid "Scale: Min -> Max" msgstr "Ölçek: Min -> Maks" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:159 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:160 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:168 msgid "Inspect vehicle " msgstr "Aracı incele " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:171 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:172 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:180 msgid "Open dialog for editing color" msgstr "Renk düzenleme için iletişim kutusunu aç" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:176 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:177 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:248 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:249 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:184 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:256 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:257 msgid "Open dialog for editing allowed vClasses" msgstr "" "İzin verilen araç sınıflarını (vClasses) düzenlemek için iletişim kutusunu aç" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:472 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:491 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:607 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:480 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:499 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:615 msgid "change multiple attributes" msgstr "birden çok özniteliği değiştir" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:610 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:618 msgid "change " msgstr "değiştir " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:610 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:618 msgid " attribute" msgstr " öznitelik" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid "Value '" msgstr "Değer '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid "' for attribute " msgstr "' öznitelik için " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid " of " msgstr " . " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid " isn't valid" msgstr " geçerli değil" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:681 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:689 msgid "enable attribute '" msgstr "' özniteliği etkinleştir" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:689 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:697 msgid "disable attribute '" msgstr "' özniteliği devre dışı bırak" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:963 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:971 msgid "Extended attributes" msgstr "Genişletilmiş Öznitelikler" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:966 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:974 msgid "Open attributes editor" msgstr "Öznitelik Düzenleyicisini Aç" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:997 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1005 msgid "Attributes" msgstr "Öznitelikler" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:1001 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1009 msgid "Edit attributes" msgstr "Öznitelikleri Düzenle" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:49 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:97 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1155 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1164 +msgid "Parameters" +msgstr "Parametreler" + +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:93 msgid "Netedit attributes" msgstr "Netedit Öznitelikleri" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:55 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:195 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:196 msgid "reference left" msgstr "sol referans" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:56 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:201 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:57 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:201 msgid "reference right" msgstr "sağ referans" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:57 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:206 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:206 msgid "reference center" msgstr "referans merkezi̇" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:70 msgid "Center view" msgstr "Merkez görünüm" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:138 msgid "Current selected reference point isn't valid" msgstr "Seçilen mevcut referans noktası geçerli değil" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:231 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:231 msgid "- Reference point: Mark the initial position of the additional element." msgstr "- Referans Noktası: Ek Elemanın Başlangıç Pozisyonunu İşaretle." -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:232 msgid "" " Example: If you want to create a busStop with a length of 30 in the point " "100 of the lane:" @@ -9339,21 +9654,21 @@ " Örnek: Şeridin 100 Noktasında 30 Uzunluğunda Bir Otobüs Durağı Oluşturmak " "İstiyorsanız:" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:233 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:233 msgid " - Reference Left will create it with startPos = 70 and endPos = 100." msgstr " - Sol Referans, startPos = 70 ve endPos = 100 ile oluşturacaktır." -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:234 msgid "" " - Reference Right will create it with startPos = 100 and endPos = 130." msgstr " - Sağ Referans, startPos = 100 ve endPos = 130 ile oluşturacaktır." -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:235 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:235 msgid "" " - Reference Center will create it with startPos = 85 and endPos = 115." msgstr " - Referans Merkezi startPos = 85 ve endPos = 115 ile oluşturacaktır." -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:236 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:236 msgid "" "- Block movement: if is enabled, the created additional element will be " "blocked. i.e. cannot be moved with" @@ -9361,372 +9676,388 @@ "- Hareketi engelle: etkinleştirilirse, oluşturulan ek eleman engellenir. " "yani şununla taşınamaz" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:237 msgid " the mouse. This option can be modified inspecting element." msgstr " fare. Bu seçenek eleman incelenerek değiştirilebilir." -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:238 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:238 msgid "- Center view: if is enabled, view will be center over created element." msgstr "" "- Merkez Görünüm: Eğer Aktifse, Görünüm Oluşturulmuş Elemanları Ortalayacak." -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:49 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:49 msgid "NetworkElements" msgstr "Ağ Elemanları" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:56 msgid "Use selected" msgstr "Seçimi Kullan" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:63 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:63 msgid "-Click over an edge to select" msgstr "-Seçmek için bir kesimin üzerine tıkla" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:69 msgid "-Click over an lane to select" msgstr "-Seçmek için bir şeridin üzerine tıkla" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:74 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:183 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:183 msgid "Invalid NetworkElementType" msgstr "Geçersiz ağ eleman türü" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:52 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:52 msgid "Overlapped elements" msgstr "Çakışık Elemanlar" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:62 msgid "Overlapped " msgstr "Çakışık " -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:275 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:275 msgid "GEO attributes Help" msgstr "GEO öznitelikleri Yardım" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:278 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:278 msgid " - Click in the same position" msgstr " - Aynı pozisyona tıkla" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:279 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:279 msgid " for inspect next element" msgstr " Sonraki Elemanın İncelenmesi İçin" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:280 msgid " - Shift + Click in the same" msgstr " - Aynı şekilde Shift + Tıklama" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:281 msgid " position for inspect" msgstr " İnceleme İçin Pozisyon" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:282 msgid " previous element" msgstr " Önceki Eleman" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:145 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:145 msgid "Route creator" msgstr "Rota Oluşturucu" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:152 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:948 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1156 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:964 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1153 msgid "No edges selected" msgstr "Herhangi Bir Kesim Seçilmedi" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:154 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:154 msgid "Use last route" msgstr "Son Rotayı Kullan" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:157 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:157 msgid "Finish route creation" msgstr "Rota Oluşturmayı Tamamla" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:160 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:160 msgid "Abort route creation" msgstr "Rota Oluşturmayı İptal Et" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:163 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:163 msgid "Remove last edge" msgstr "Son Kesimi Kaldır" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:166 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:166 msgid "Show candidate edges" msgstr "Aday Kesimleri Göster" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:374 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:387 msgid "Double junctions aren't allowed" msgstr "Çifte Kavşaklar İzinli Değil" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:382 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:395 msgid "Only two junctions are allowed" msgstr "Sadece İki Kavşak İzinli" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:421 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:434 msgid "Double edges aren't allowed" msgstr "Çifte Kesime İzin Verilmiyor" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:431 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:444 msgid "Only consecutives edges are allowed" msgstr "Sadece Ardışık Kesimler İzinli" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:440 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:453 msgid "Only two edges are allowed" msgstr "Sadece İki Kesim İzinli" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:449 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:462 msgid "Invalid edge (SHIFT + click to add an invalid vClass edge)" msgstr "" "Geçersiz kesim (geçersiz bir araç sınıfı (vClass) kesimi eklemek için SHIFT " "+ tıklayın)" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:456 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:469 msgid "Invalid edge (CONTROL + click to add a disconnected edge)" msgstr "" "Geçersiz kesim (bağlantısı kesilmiş bir kesim eklemek için CONTROL + " "tıklayın)" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:531 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:547 msgid "first select an edge" msgstr "Önce Bir Kesim Seçin" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:941 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:957 msgid "- Selected edges: " msgstr "- Seçilen Kesimler: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:942 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:958 msgid "- Path edges: " msgstr "- Güzergah Kesimleri: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:944 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:960 msgid "- Average speed: " msgstr "- Ortalama Hız: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:48 msgid " edge conflict (vClass)" msgstr " kesim çatışması (araç sınıfı (vClass))" -#: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:36 +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:36 msgid "Parent selector" msgstr "Kaynak Seçici" -#: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:39 +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:39 msgid "No element selected" msgstr "Seçili eleman yok" -#: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:82 +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:82 msgid "Parent type: " msgstr "Ebeveyn türü: " -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:219 -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:230 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:219 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:230 msgid "Invalid row or column" msgstr "Geçersiz satır veya sütun" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:254 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:254 msgid "Invalid row" msgstr "Geçersiz satır" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:264 -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:264 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:274 msgid "Invalid column" msgstr "Geçersiz sütun" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:609 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:609 msgid "Accumulated: " msgstr "Birikmiş: " -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:679 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:679 msgid "Add phase" msgstr "Faz ekle" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:679 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:679 msgid "Add new phase." msgstr "Yeni faz ekle." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:684 msgid "Default phase" msgstr "Varsayılan faz" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:684 msgid "Add default phase." msgstr "Varsayılan faz ekle." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:689 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:689 msgid "Duplicate phase" msgstr "Fazı yinele" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:689 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:689 msgid "Duplicate this phase." msgstr "Bu fazı yinele." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:694 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:694 msgid "Red phase" msgstr "Kırmızı faz" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:694 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:694 msgid "Add red phase." msgstr "Kırmızı faz ekle." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:699 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:699 msgid "Yellow phase" msgstr "Sarı faz" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:699 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:699 msgid "Add yellow phase." msgstr "Sarı faz ekle." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:704 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:704 msgid "Green phase" msgstr "Yeşil faz" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:704 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:704 msgid "Add green phase." msgstr "Yeşil faz ekle." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:709 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:709 msgid "Green priority phase" msgstr "Yeşil öncelikli faz" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:709 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:709 msgid "Add green priority phase." msgstr "Yeşil öncelikli faz ekle." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:910 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:910 msgid "Cannot be parsed to double" msgstr "Çift olarak ayrıştırılamaz" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:922 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:922 msgid "Tooltips only for TextFields" msgstr "Sadece metin alanları için ipuçları" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1252 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1252 msgid "Delete phase" msgstr "Fazı sil" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1252 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1252 msgid "Delete this phase." msgstr "Bu fazı sil." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1261 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1261 msgid "Move phase up" msgstr "Fazı yukarı taşı" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1261 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1261 msgid "Move this phase up." msgstr "Bu fazı yukarı taşı." -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1270 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1270 msgid "Move phase down" msgstr "Fazı aşağı taşı" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1270 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1270 msgid "Move this phase down." msgstr "Bu fazı aşağı taşı." -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:89 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:89 msgid "Element" msgstr "Elemanlar" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:152 msgid "network elements" msgstr "Ağ Elemanları" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:155 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:155 msgid "Additional elements" msgstr "Ek Elemanlar" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:158 msgid "Shape elements" msgstr "Şekil Elemanları" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:161 msgid "TAZ elements" msgstr "TAB Elemanları" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:164 msgid "Wire elements" msgstr "Enerji Hattı Elemanları" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:167 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1833 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:167 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1835 msgid "Vehicles" msgstr "Araçlar" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:170 msgid "Stops" msgstr "Duraklar" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:173 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1916 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:173 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1918 msgid "Persons" msgstr "Yolcular" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:176 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:176 msgid "Person plans" msgstr "Yolcu Planları" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:182 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:182 msgid "Container plans" msgstr "Konteyner Planları" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:185 msgid "Person trips" msgstr "Yolcu Seyahatleri" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:188 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:188 msgid "Walks" msgstr "Yürümeler" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:191 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:191 msgid "Rides" msgstr "Binişler" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:194 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:194 msgid "Person stops" msgstr "Yolcu Durakları" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:64 msgid "Delete geometry points" msgstr "Geometri noktalarını sil" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:230 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:238 msgid "Protect Elements" msgstr "Elemanları Koru" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:240 +msgid "Protect all" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:240 +msgid "Protect all elements" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:242 +msgid "Unprotect all" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:242 +msgid "Unprotect all elements" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:244 msgid "Protect additional elements" msgstr "Ek elemanları koru" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:235 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:247 msgid "Protect TAZ elements" msgstr "TAB elemanlarını koru" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:238 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:250 msgid "Protect demand elements" msgstr "Talep elemanlarını koru" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:241 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:253 msgid "Protect data elements" msgstr "Veri elemanlarını koru" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEElementSet.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\common\GNEElementSet.cpp:48 msgid "Element Set" msgstr "Eleman Seti" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEElementSet.cpp:75 +#: D:\Repos\sumo/src\netedit\frames\common\GNEElementSet.cpp:75 msgid "Invalid supermode" msgstr "Geçersiz süper mod" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:100 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:96 msgid "Mark as front element" msgstr "Ön eleman olarak işaretle" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:181 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:310 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:177 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:306 msgid "Set new parent" msgstr "Yeni ebeveyn ayarla" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:372 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:368 msgid "" "- Mark as front element: Mark element as front element (Will be drawn over " "all other elements)\n" @@ -9734,11 +10065,11 @@ "- Ön eleman olarak işaretle: Elemanı ön eleman olarak işaretle (Diğer tüm " "elemanların üzerine çizilecektir)\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:373 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:369 msgid "- Block movement: disable movement in move mode\n" msgstr "- Hareketi engelle: hareket modunda hareketi devre dışı bırak\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:374 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:370 msgid "" "- Block shape: Disable moving of shape's vertices and edges. Entire shape " "can be moved'.\n" @@ -9746,7 +10077,7 @@ "- Şekli kısıtla: Şeklin köşelerinin ve kenarlarının taşınmasını devre dışı " "bırakın. Tüm şekil hareket ettirilebilir'.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:375 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:371 msgid "" "- Close shape: Add or remove the last vertex with the same position of first " "edge'." @@ -9754,20 +10085,20 @@ "- Şekli kapat: İlk kesimin aynı konumuna sahip son köşeyi ekleyin veya " "kaldırın." -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:402 msgid "GEO Attributes" msgstr "GEO Öznitelikleri" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:470 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:90 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:466 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:91 msgid "No geo-conversion defined" msgstr "Tanımlanmış coğrafi dönüşüm yok" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:551 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:547 msgid " SUMO uses the World Geodetic System 84 (WGS84/UTM).\n" msgstr " SUMO, Dünya Jeodezik Sistemi 84'ü (WGS84/UTM) kullanır.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:552 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:548 msgid "" " For a GEO-referenced network, geo coordinates are represented as pairs of " "Longitude and Latitude\n" @@ -9775,79 +10106,75 @@ " GEO referanslı bir ağ için, coğrafi koordinatlar Boylam ve Enlem çiftleri " "olarak temsil edilir.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:553 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:549 msgid " in decimal degrees without extra symbols. (N,W..)\n" msgstr " ekstra semboller olmadan ondalık derece cinsinden. (N,W..)\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:554 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:550 msgid " - Longitude: East-west position of a point on the Earth's surface.\n" msgstr " - Boylam: Dünya yüzeyindeki bir noktanın doğu-batı konumu.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:551 msgid " - Latitude: North-south position of a point on the Earth's surface.\n" msgstr " - Enlem: Dünya yüzeyindeki bir noktanın kuzey-güney konumu.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:556 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:552 msgid "" " - CheckBox 'geo' enables or disables saving position in GEO coordinates\n" msgstr "" " - CheckBox 'geo', GEO koordinatlarında kaydetme konumunu etkinleştirir veya " "devre dışı bırakır\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:570 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:566 msgid "Templates" msgstr "Şablonlar" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:574 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:570 msgid "Set as Template" msgstr "Şablon Olarak Ayarla" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:578 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:574 msgid "clear Edge Template" msgstr "Kesim Şablonunu temizle" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:673 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:669 msgid "Only one edge must be inspected" msgstr "Sadece bir kesim incelenmelidir" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:737 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:733 msgid "No edge Template Set" msgstr "Kesim Şablon Seti Yok" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:749 -msgid "Parameters" -msgstr "Parametreler" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:908 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:745 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:748 msgid "Additional dialog" msgstr "Ek iletişim kutusu" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:927 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:764 msgid "Open rerouter dialog" msgstr "Yeniden yönlendirici iletişim kutusunu aç" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:933 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:770 msgid "Open calibrator dialog" msgstr "Kalibratör iletişim kutusunu aç" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:939 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:776 msgid "Open calibrator lane dialog" msgstr "Kalibratör şeridi iletişim kutusunu aç" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:945 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:782 msgid "Open VSS dialog" msgstr "VSS iletişim kutusunu aç" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:58 msgid "Apply selection" msgstr "Seçimi uygula" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:112 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:112 msgid "Unknown set" msgstr "Bilinmeyen set" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:270 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:270 msgid "" "- The 'Match Attribute' controls allow to specify a set of objects which are " "then applied to the current selection\n" @@ -9855,23 +10182,23 @@ "- 'Eşleştirme Özelliği' kontrolleri, daha sonra geçerli seçime uygulanacak " "bir dizi nesnenin belirlenmesine olanak tanır\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:271 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:460 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:271 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:460 msgid " according to the current 'Modification Mode'.\n" msgstr " mevcut 'Modifikasyon Modu'na göre.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:272 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:461 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:272 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:461 msgid " 1. Select an object type from the first input box\n" msgstr " 1. İlk giriş kutusundan bir nesne türü seçin\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:273 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:462 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:273 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:462 msgid " 2. Select an attribute from the second input box\n" msgstr " 2. İkinci giriş kutusundan bir öznitelik seçin\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:274 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:463 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:463 msgid "" " 3. Enter a 'match expression' in the third input box and press " "\n" @@ -9879,13 +10206,13 @@ " 3. Üçüncü giriş kutusuna bir 'eşleşme ifadesi' girin ve tuşuna " "basın\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:276 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:465 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:276 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:465 msgid "- The empty expression matches all objects\n" msgstr "- Boş ifade tüm nesnelerle eşleşir\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:277 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:466 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:277 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:466 msgid "" "- For numerical attributes the match expression must consist of a comparison " "operator ('<', '>', '=') and a number.\n" @@ -9893,8 +10220,8 @@ "- Sayısal öznitelikler için eşleşme ifadesi bir karşılaştırma operatörü " "('<', '>', '=') ve bir sayıdan oluşmalıdır.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:278 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:467 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:278 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:467 msgid "" "- An object matches if the comparison between its attribute and the given " "number by the given operator evaluates to 'true'\n" @@ -9902,8 +10229,8 @@ "- Bir nesne, özniteliği ile verilen sayı arasında verilen işleç tarafından " "yapılan karşılaştırma 'doğru' olarak değerlendirilirse eşleşir\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:280 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:469 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:469 msgid "" "- For string attributes the match expression must consist of a comparison " "operator ('', '=', '!', '^') and a string.\n" @@ -9911,8 +10238,8 @@ "- Dize öznitelikleri için eşleşme ifadesi bir karşılaştırma operatörü ('', " "'=', '!', '^') ve bir dizeden oluşmalıdır.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:281 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:470 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:470 msgid "" " '' (no operator) matches if string is a substring of that object'ts " "attribute.\n" @@ -9920,36 +10247,36 @@ " '' (operatör yok), dize bu nesnenin özniteliğinin bir alt dizesiyse " "eşleşir.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:282 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:471 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:471 msgid " '=' matches if string is an exact match.\n" msgstr " '=', dize tam eşleşme ise eşleşir.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:283 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:472 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:283 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:472 msgid " '!' matches if string is not a substring.\n" msgstr " '!' dizesi bir alt dize değilse eşleşir.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:284 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:473 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:284 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:473 msgid " '^' matches if string is not an exact match.\n" msgstr " '^', dize tam eşleşme değilse eşleşir.\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:286 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:475 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:286 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:475 msgid "- Examples:\n" msgstr "- Örnekler:\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:287 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:476 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:287 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:476 msgid "" " junction; id; 'foo' -> match all junctions that have 'foo' in their id\n" msgstr "" " Kavşak; Kimliği; 'foo' -> kimliklerinde 'foo' bulunan tüm kavşaklarla " "eşleşir\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:288 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:477 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:288 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:477 msgid "" " junction; type; '=priority' -> match all junctions of type 'priority', " "but not of type 'priority_stop'\n" @@ -9957,17 +10284,17 @@ " Kavşak; tür; '=priority' -> 'priority' türündeki tüm kavşaklarla " "eşleşir, ancak 'priority_stop' türündeki tüm kavşaklarla eşleşmezse eşleşir\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:289 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:478 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:289 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:478 msgid " edge; speed; '>10' -> match all edges with a speed above 10\n" msgstr "" " edge; speed; '>10' -> hızı 10'un üzerinde olan tüm kesimlerle eşleşir\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:87 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:87 msgid "speed" msgstr "Hız" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:459 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:459 msgid "" "- The 'MatchGenericData Attribute' controls allow to specify a set of " "objects which are then applied to the current selection\n" @@ -9975,685 +10302,639 @@ "- 'MatchGenericData Attribute' kontrolleri, daha sonra geçerli seçime " "uygulanacak olan bir dizi nesnenin belirtilmesine izin verir\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:64 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:65 msgid "Common move options" msgstr "Yaygın taşıma seçenekleri" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:66 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:67 msgid "Allow change lanes" msgstr "Şerit değiştirmeye izin ver" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:70 msgid "Merge geometry points" msgstr "Geometri noktalarını birleştir" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:93 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:94 msgid "Network move options" msgstr "Ağ taşıma seçenekleri" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:96 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:97 msgid "Move whole polygons" msgstr "Tüm çokgenleri taşı" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:132 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:133 msgid "Demand move options" msgstr "Talep taşıma seçenekleri" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:135 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:136 msgid "Leave stopPersons connected" msgstr "StopPersons seçeneğini bağlı bırak" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:172 msgid "Shift selected edges geometry" msgstr "Seçili kesim geometrisini kaydır" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:180 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:181 msgid "Apply shift value" msgstr "Kaydırma değerini uygula" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:180 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:181 msgid "" "Shift edge geometry orthogonally to driving direction for all selected edges" msgstr "" "Seçilen tüm kesimler için kesim geometrisini sürüş yönüne dikey olarak kaydır" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:251 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:252 msgid "Change Z in selection" msgstr "Seçimde Z'yi değiştir" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:261 msgid "Absolute value" msgstr "Mutlak değer" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:261 msgid "Set Z value as absolute" msgstr "Z değerini mutlak olarak ayarla" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:262 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:263 msgid "Relative value" msgstr "Göreceli değer" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:262 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:263 msgid "Set Z value as relative" msgstr "Z değerini göreli olarak ayarla" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:265 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:266 msgid "Apply Z value" msgstr "Z değerini uygula" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:265 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:266 msgid "Apply Z value to all selected junctions" msgstr "Z değerini seçilen tüm kavşaklara uygula" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:518 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:518 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:534 msgid "Shift shape geometry" msgstr "Şekil geometrisini kaydır" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:534 msgid "" "Shift shape geometry orthogonally to driving direction for all selected " "shapes" msgstr "" "Seçilen tüm şekiller için şekil geometrisini sürüş yönüne dikey olarak kaydır" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:619 -msgid "-Click over edge to" -msgstr "-için kesimin üzerine tıkla" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:620 -msgid " create or edit" -msgstr " oluştur veya düzenle" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:621 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:624 -msgid " geometry point." -msgstr " geometri noktası." - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:622 -msgid "-Shift+click over edge" -msgstr "-Shift+kesim üzerine tıkla" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:623 -msgid " to edit start or end" -msgstr " başlangıcı veya sonu düzenlemek için" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:616 +msgid "Click over edge to create or edit geometry point." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:616 +msgid "Shift+click over edge to edit start or end geometry point." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:628 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:618 msgid "-Move geometry point" msgstr "-Geometri noktasını taşı" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:631 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:621 msgid "-Merge geometry point" msgstr "-Geometri noktasını birleştir" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:78 msgid "Selection information" msgstr "Seçim bilgileri" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:149 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:150 msgid "Modification Mode" msgstr "Değişiklik Modu" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:153 msgid "add" msgstr "ekle" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:153 msgid "Selected objects are added to the previous selection" msgstr "Seçilen nesneler önceki seçime eklendi" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:154 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:155 msgid "remove" msgstr "Kaldır" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:154 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:155 msgid "Selected objects are removed from the previous selection" msgstr "Seçilen nesneler önceki seçimden çıkarıldı" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:156 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:662 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:157 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:661 msgid "keep" msgstr "tut" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:156 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:157 msgid "Restrict previous selection by the current selection" msgstr "Önceki seçimi geçerli seçimle kısıtla" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:159 msgid "replace" msgstr "değiştir" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:159 msgid "Replace previous selection by the current selection" msgstr "Önceki seçimi geçerli seçimle değiştir" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:213 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:214 msgid "Visual Scaling" msgstr "Görsel Ölçeklendirme" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:243 msgid "Selection operations" msgstr "Seçim işlemleri" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:251 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:252 msgid "Deselect all objects (hotkey: ESC)" msgstr "Tüm nesnelerin seçimini kaldır (kısayol tuşu: ESC)" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:253 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:254 msgid "Invert" msgstr "Ters çevir" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:253 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:254 msgid "Invert selection status of all objects" msgstr "Tüm nesnelerin seçim durumunu tersine çevir" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:255 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:256 msgid "Save ids of currently selected objects to a file." msgstr "Seçili nesnelerin kimliklerini bir dosyaya kaydet." -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:257 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:258 msgid "Load ids from a file according to the current modification mode." msgstr "Geçerli değişiklik moduna göre kimlikleri bir dosyadan yükle." -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:259 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:260 msgid "Delete all selected objects (hotkey: DEL)" msgstr "Seçilen tüm nesneleri sil (kısayol tuşu: DEL)" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:261 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:262 msgid "Reduce" msgstr "Azalt" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:261 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:262 msgid "Reduce network to current selection." msgstr "Ağı mevcut seçime indirgeyin." -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:275 msgid "Could not open '%'." msgstr "'%' açılamadı." -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:320 -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:125 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:324 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:125 msgid "Open List of Selected Items" msgstr "Seçili Öğelerin Listesini Aç" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:338 -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:148 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:342 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:148 msgid "Save List of selected Items" msgstr "Seçilen Öğelerin Listesini Kaydet" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1120 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1124 msgid "Hierarchy operations" msgstr "Hiyerarşi işlemleri" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1131 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1141 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1135 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1145 msgid "Select" msgstr "Seç" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1133 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1143 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1137 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1147 msgid "Unselect" msgstr "Seçimi Kaldır" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEEdgeDataFrame.cpp:51 +#: D:\Repos\sumo/src\netedit\frames\data\GNEEdgeDataFrame.cpp:51 msgid "There is already a % in edge '%'" msgstr "'%' kesiminde zaten bir % var" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:69 msgid "DataSet" msgstr "Veri Seti" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:72 msgid "Create new dataSet" msgstr "Yeni bir veri seti oluştur" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:83 msgid "Create dataSet" msgstr "Veri seti oluştur" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:140 msgid "Invalid dataSet ID" msgstr "Geçersiz veri seti kimliği (ID)" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:142 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:142 msgid "Invalid empty dataSet ID" msgstr "Geçersiz boş veri seti kimliği (ID)" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:144 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:144 msgid "Invalid duplicated dataSet ID" msgstr "Geçersiz çoğaltılmış veri seti kimliği (ID)" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:198 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:198 msgid "Interval" msgstr "Aralık" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:201 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:201 msgid "Create new interval" msgstr "Yeni aralık oluştur" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:219 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:219 msgid "create interval" msgstr "aralık oluştur" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:392 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:393 msgid "Data attributes" msgstr "Veri öznitelikleri" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:68 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:68 msgid "MeanData Type" msgstr "OrtalamaVeri (MeanData) Türü" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:161 msgid "MeanData Editor" msgstr "OrtalamaVeri (MeanData) Düzenleyici" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:164 msgid "Create MeanData" msgstr "OrtalamaVeri (MeanData) Oluştur" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:167 msgid "Delete MeanData" msgstr "OrtalamaVeri'yi (MeanData) sil" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:170 msgid "Copy MeanData" msgstr "OrtalamaVeri'yi (MeanData) kopyala" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:276 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:276 msgid "Current MeanData" msgstr "Geçerli OrtalamaVeri (MeanData)" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:54 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:54 msgid "Confirm TAZRelation" msgstr "TABİlişkili'yi onayla" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:56 msgid "Create TAZRelation" msgstr "TABİlişkili oluştur" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:56 msgid "Click fromTaz and toTaz (confirm hotkey )" msgstr "TAB'dan ve TAB'a seçeneklerine tıklayın (onaylama kısayolu )" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:58 msgid "Clear selection" msgstr "Seçimi temizle" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:58 msgid "Clear selected TAZs (hotkey )" msgstr "Seçili TAB'ları temizle (kısayol tuşu )" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:122 msgid "From TAZ" msgstr "TAB'dan" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:128 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:128 msgid "To TAZ" msgstr "TAB'a" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:177 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:177 #, c-format msgid "A % must be defined within an interval." msgstr "Bir aralık içinde bir % tanımlanmalıdır." -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:179 msgid "There is already a % defined in TAZ'%'." msgstr "TAB '%' içinde zaten tanımlanmış bir % var." -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:181 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:181 msgid "There is already a % defined between TAZ'%' and '%'." msgstr "TAB '%' ve '%' arasında zaten tanımlanmış bir % var." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:117 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerPlanFrame.cpp:114 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerPlanFrame.cpp:114 msgid "Current selected container isn't valid." msgstr "Mevcut seçili konteyner geçerli değil." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:122 msgid "Current selected container type isn't valid." msgstr "Mevcut seçili konteyner tipi geçerli değil." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:127 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerPlanFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:127 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerPlanFrame.cpp:119 msgid "Current selected container plan isn't valid." msgstr "Mevcut seçili konteyner planı geçerli değil." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:242 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:275 msgid "VType with vClass == 'pedestrian' is oriented to pedestrians" msgstr "vClass == 'pedestrian' araç türü (VType) yayalara yöneliktir" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:244 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:244 msgid "VType with vClass != 'ignoring' is not oriented to containers" msgstr "" "vClass != 'ignoring' içeren araç tipi (VType) konteynerlere yönelik değildir" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:267 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:267 msgid "Invalid container parameters." msgstr "Geçersiz konteyner parametreleri." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:117 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonPlanFrame.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonPlanFrame.cpp:140 msgid "Current selected person isn't valid." msgstr "Mevcut seçilen yolcu geçerli değil." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:122 msgid "Current selected person type isn't valid." msgstr "Mevcut seçili yolcu tipi geçerli değil." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:127 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonPlanFrame.cpp:146 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:127 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonPlanFrame.cpp:146 msgid "Current selected person plan isn't valid." msgstr "Geçerli seçili yolcu planı geçerli değil." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:250 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:287 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:250 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:277 msgid "VType with vClass == 'ignoring' is oriented to containers" msgstr "vClass == 'ignoring' içeren araç tipi (VType) konteynerlere yöneliktir" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:252 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:252 msgid "VType with vClass != 'pedestrian' is not oriented to persons" msgstr "" "vClass != 'pedestrian' içiren araç tipi (VType) yolculara yönelik değildir" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:275 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:275 msgid "Invalid person parameters." msgstr "Geçersiz yolcu parametreleri." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNERouteFrame.cpp:52 +#: D:\Repos\sumo/src\netedit\frames\demand\GNERouteFrame.cpp:52 msgid "Route mode" msgstr "Rota modu" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:78 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:85 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:92 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:99 -msgid "- Shift+Click to select parent\n" -msgstr "- Ebeveyn seçmek için Shift+Tıkla\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:72 -msgid "- Click over a bus stop to\n" -msgstr "- Bir otobüs durağının üzerine tıklayarak\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:73 -msgid " create a stop." -msgstr " bir durak oluştur." - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:79 -msgid "- Click over a container stop\n" -msgstr "- Bir konteyner durağının üzerine tıkla\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:80 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:87 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:94 -msgid " to create a stop." -msgstr " bir durak oluşturmak için." - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:86 -msgid "- Click over a charging station\n" -msgstr "- Bir şarj istasyonunun üzerine tıklayın\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:93 -msgid "- Click over a parking area\n" -msgstr "- Bir park alanının üzerine tıklayın\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:100 -msgid "- Click over a lane to create\n" -msgstr "- Oluşturmak için bir şeridin üzerine tıklayın\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:101 -msgid " a stop." -msgstr " Bir durak." - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:105 -msgid "- No stop parents in current\n" -msgstr "- Mevcut durumda durak ebeveynleri yok\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:106 -msgid " network." -msgstr " Ağ." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:89 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:101 +msgid "Shift+Click to select parent" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:72 +msgid "Click over a bus stop to create a stop." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:78 +msgid "Click over a train stop to create a stop." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:84 +msgid "Click over a container stop to create a stop." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:90 +msgid "Click over a charging station to create a stop." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:96 +msgid "Click over a parking area to create a stop." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:102 +msgid "Click over a lane to create a stop." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:106 +msgid "No stop parents in current network." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:189 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:189 msgid "Selected Stop type isn't valid." msgstr "Seçilen Durak tipi geçerli değil." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:197 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:197 msgid "Selected % '%' as stop parent." msgstr "Durak ebeveyni olarak % '%' seçili." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:200 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:200 msgid "Selected Stop parent isn't valid." msgstr "Seçili Durak üst öğesi geçerli değil." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:206 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:206 msgid "Current selected Stop parent isn't valid." msgstr "Mevcut seçili Durak ebeveyni geçerli değil." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:237 msgid "Current selected Stop type isn't valid." msgstr "Mevcut seçili Durak tipi geçerli değil." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:336 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:352 msgid "Stop must be placed over a route's edge" msgstr "Durak bir güzergahın kesimine yerleştirilmelidir" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:349 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:365 msgid "Stop must be placed over an embedded route's edge" msgstr "Durak, gömülü bir güzergahın kesimi üzerine yerleştirilmelidir" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:68 -msgid "Current Type" -msgstr "Mevcut Tip" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:225 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:63 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:218 msgid "Type Editor" msgstr "Tür Düzenleyici" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:228 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:66 +msgid "Create type distribution" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:68 +msgid "Delete type distribution" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:62 +msgid "Current Type" +msgstr "Mevcut Tip" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:221 msgid "Create Type" msgstr "Tür Oluştur" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:230 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:275 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:223 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:268 msgid "Delete Type" msgstr "Türü Sil" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:225 msgid "Copy Type" msgstr "Türü Kopyala" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:263 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:256 msgid "Reset Type" msgstr "Türü Sıfırla" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:420 -msgid "VType Distributions" -msgstr "Araç Türü (VType) Dağılımları" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:423 -msgid "Show VType Distributions" -msgstr "Araç Türü (VType) Dağılımlarını Göster" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:93 -msgid "- Click over a route to\n" -msgstr "- Bir rotanın üzerine tıklayarak\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:72 -msgid " create a vehicle." -msgstr " bir araç oluştur." - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:76 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:81 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:98 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:103 -msgid "- Select two edges to\n" -msgstr "- İki kesim seçmek için\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:77 -msgid " create a Trip." -msgstr " Bir seyahat oluştur." - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:82 -msgid " create a vehicle with\n" -msgstr " ile bir araç oluştur\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:83 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:105 -msgid " embedded route." -msgstr " gömülü rota." - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:87 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:109 -msgid "- Select two junctions\n" -msgstr "- İki kavşak seç\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:88 -msgid " to create a Trip." -msgstr " Seyahat oluşturmak için." - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:94 -msgid " create a routeFlow." -msgstr " Bir rota akımı oluştur." - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:99 -msgid " create a flow." -msgstr " Bir akım oluştur." - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:104 -msgid " create a flow with\n" -msgstr " ile bir akım oluştur\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:110 -msgid " to create a flow." -msgstr " bir akım oluşturmak için." +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:71 +msgid "Click over a route to create a vehicle." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:75 +msgid "Select two edges to create a trip." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:191 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:79 +msgid "Select two edges to create a vehicle with embedded route." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:83 +msgid "Select two junctions to create a trip." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:88 +msgid "Click over a route to create a routeFlow." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:92 +msgid "Select two edges to create a flow." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:96 +msgid "Select two edges to create a flow with embedded route." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:100 +msgid "Select two junctions to create a flow." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:181 msgid "Current selected vehicle isn't valid." msgstr "Mevcut seçilen araç geçerli değil." -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:186 msgid "Current selected vehicle type isn't valid." msgstr "Mevcut seçili araç türü geçerli değil." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:87 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:87 msgid "Current selected additional isn't valid." msgstr "Mevcut seçilen ek geçerli değil." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:156 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:156 msgid "E2 multilane detectors need at least two consecutive lanes" msgstr "E2 çok şeritli dedektörler en az iki ardışık şeride ihtiyaç duyar" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:282 msgid " must be selected before insertion of " msgstr " eklenmeden önce seçilmelidir. " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:312 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:312 msgid "Attribute '" msgstr "Öznitelik '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:312 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:312 msgid "' cannot be greater than attribute '" msgstr "' öznitelikten büyük olamaz'" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:329 -msgid "List ofe dges cannot be empty" -msgstr "Kesim listesi boş olamaz" +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:329 +msgid "List of edges cannot be empty" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:339 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:339 msgid "List of lanes cannot be empty" msgstr "Şerit listesi boş olamaz" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:439 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:439 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:232 msgid "Currently unsupported. Create rerouter elements using rerouter dialog" msgstr "" "Şu anda desteklenmiyor. Yeniden yönlendirici iletişim kutusunu kullanarak " "yeniden yönlendirici öğeleri oluşturun" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:444 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:444 msgid "Currently unsupported. Create VSS steps using VSS dialog" msgstr "" "Şu anda desteklenmiyor. VSS iletişim kutusunu kullanarak VSS adımları " "oluşturun" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:449 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:449 msgid "Currently unsupported. Create calibratorFlows using calibrator dialog" msgstr "" "Şu anda desteklenmiyor. Kalibratör iletişim kutusunu kullanarak " "calibratorFlows oluşturun" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:66 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:67 msgid "Lane" msgstr "Şerit" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:68 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:78 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:79 msgid "No lane selected" msgstr "Herhangi Bir Şerit Seçilmedi" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:80 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:81 msgid "Current Lane: " msgstr "Mevcut şerit: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:89 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:395 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:90 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:396 msgid "Modifications" msgstr "Değişiklikler" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:93 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:94 msgid "Discard connection modifications (Esc)" msgstr "Bağlantı değişikliklerini iptal et (Esc)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:96 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:97 msgid "Save connection modifications (Enter)" msgstr "Bağlantı değişikliklerini kaydet (Enter)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:100 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:101 msgid "Protect routes" msgstr "Rotaları koru" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:112 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:113 msgid "Changes reverted" msgstr "Değişiklikler geri alındı" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:129 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:130 msgid "Error saving connection operations" msgstr "Bağlantı işlemlerini kaydetme hatası" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:130 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:131 msgid "Connection edition cannot be saved because route '" msgstr "Route ' nedeniyle bağlantı sürümü kaydedilemiyor" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:130 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:131 msgid "' is broken." msgstr "' bozuk." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:138 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:139 msgid "Changes accepted" msgstr "Değişiklikler kabul edildi" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:151 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:152 msgid "Operations" msgstr "İşlemler" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:155 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:156 msgid "Select Dead Ends" msgstr "Çıkmaz Uçları Seç" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:155 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:156 msgid "" "Selects all lanes that have no outgoing connection (clears previous " "selection)" msgstr "" "Sonraki bağlantısı olmayan tüm şeritleri seçer (önceki seçimi temizler)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:159 msgid "Select Dead Starts" msgstr "Ölü Başlangıçları Seç" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:159 msgid "" "Selects all lanes that have no incoming connection (clears previous " "selection)" @@ -10661,11 +10942,11 @@ "Önceki bağlantıya sahip olmayan tüm şeritleri seçin ( önceki seçimleri " "temizleyin)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:162 msgid "Select Conflicts" msgstr "Çatışmaları Seç" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:162 msgid "" "Selects all lanes with more than one incoming connection from the same edge " "(clears previous selection)" @@ -10673,306 +10954,277 @@ "Aynı kesimden birden fazla önceki bağlantıya sahip tüm şeritleri seçer " "(önceki seçimi temizler)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:165 msgid "Select Passing" msgstr "Geçen'i seçin" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:165 msgid "" "Selects all lanes with a connection that has has the 'pass' attribute set" msgstr "'Geçiş' özelliği ayarlanmış bir bağlantıya sahip tüm şeritleri seçer" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:168 msgid "Clear Selected" msgstr "Seçileni Temizle" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:168 msgid "Clears all connections of all selected objects" msgstr "Seçilen tüm nesnelerin tüm bağlantılarını temizler" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:171 msgid "Reset Selected" msgstr "Seçimi Sıfırla" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:171 msgid "Recomputes connections at all selected junctions" msgstr "Seçilen tüm kavşaklardaki bağlantıları yeniden hesaplar" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:262 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:263 msgid "clear connections from selected lanes, edges and junctions" msgstr "seçilen şeritlerden, kenarlardan ve kavşaklardan bağlantıları sıfırla" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:289 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:290 msgid "reset connections from selected lanes" msgstr "seçilen şeritlerden bağlantıları sıfırla" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:308 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:168 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2174 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:309 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:168 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2176 msgid "Selection" msgstr "Seçim" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:313 -msgid "-Hold while" -msgstr " tuşunu basılı tutarken" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:314 -msgid " clicking to create" -msgstr " oluşturmak için tıkla" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:315 -msgid " unyielding connections" -msgstr " Yol vermeyen bağlantılar" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:316 -msgid " (pass=true)." -msgstr " (pass=true)." - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:321 -msgid "-Hold while" -msgstr " tuşunu basılı tutarken" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:322 -msgid " clicking to create " -msgstr " oluşturmak için tıklayın " - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:323 -msgid " conflicting connections" -msgstr " çatışan bağlantılar" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:324 -msgid " (i.e. at zipper nodes" -msgstr " (örneğin fermuar düğümlerinde" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:325 -msgid " or with incompatible" -msgstr " veya uyumsuz" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:326 -msgid " permissions" -msgstr " izinler" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:311 +msgid "" +"Hold while clicking to create unyielding connections (pass=true)." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:342 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:312 +msgid "" +"Hold while clicking to create conflicting connections (i.e. at zipper " +"nodes or with incompatible permissions" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:326 msgid "Possible Target" msgstr "Olası Hedef" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:347 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:331 msgid "Source lane" msgstr "Kaynak şerit" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:351 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:335 msgid "Target lane" msgstr "Hedef şerit" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:355 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:339 msgid "Target (pass)" msgstr "Hedef (pass)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:359 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:343 msgid "Conflict" msgstr "Çatışma" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:371 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:355 msgid "Edit Connections" msgstr "Bağlantıları Düzenle" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:437 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:421 msgid "modify connections" msgstr "bağlantıları değiştir" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:488 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:472 msgid "Pedestrian connections are generated automatically" msgstr "Yaya bağlantıları otomatik olarak üretilir" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:490 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:474 msgid "Incompatible vehicle class permissions" msgstr "Uyumsuz araç sınıfı izinleri" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:492 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:476 msgid "Another lane from the same edge already connects to that lane" msgstr "Aynı kesimden gelen başka bir şerit zaten bu şeride bağlanıyor" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:500 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:484 msgid "Invalid target for connection" msgstr "Bağlantı için geçersiz hedef" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:74 msgid "Template selector" msgstr "Şablon seçici" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:79 msgid "Create default edge" msgstr "Varsayılan kesim oluştur" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:80 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:82 msgid "Disallow for pedestrians" msgstr "Yayalara izin verme" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:82 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:84 msgid "Add sidewalk" msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:85 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:87 msgid "Use edgeType/template" msgstr "Kesim Tipi/Şablonu kullan" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:93 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:437 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1245 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1310 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:439 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1247 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1312 msgid "Add" msgstr "Ekle" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:93 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:95 msgid "Add edge type" msgstr "Kesim tipi ekle" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:96 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:98 msgid "Delete edge type" msgstr "Kesim tipini sil" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:99 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:101 msgid "Create from template" msgstr "Şablondan oluştur" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:99 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:101 msgid "Create edgeType from template" msgstr "Şablondan Kesim Tipi oluştur" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:318 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:367 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:320 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:369 msgid "create new edge type" msgstr "yeni kesim tipi oluştur" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:340 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:342 msgid "delete edge type" msgstr "Kesim tipini sil" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:405 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:407 msgid "template: " msgstr "şablon: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:429 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:431 msgid "LaneType selector" msgstr "Şerit Tipi seçici" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:437 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:439 msgid "Add lane type" msgstr "Şerit türü ekle" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:440 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:442 msgid "Delete lane type" msgstr "Şerit tipini sil" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:537 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:539 msgid "add laneType" msgstr "Şerit tipi ekle" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:574 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:576 msgid "remove laneType" msgstr "Şerit tipini kaldır" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:623 -msgid "- ESC:" -msgstr "- ESC:" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:624 -msgid " Deselect origin" -msgstr " Kaynak seçimini kaldır" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:625 -msgid "- Control+Click:" -msgstr "- Kontrol+Tıkla:" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:626 -msgid " Move view" -msgstr " Görünümü taşı" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:627 -msgid "- Shift+Click:" -msgstr "- Shift+Tıkla:" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:628 -msgid " Splits edge in both directions" -msgstr " Kesimi her iki yönde de böler" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:629 -msgid "- Alt+Shift+Click:" -msgstr "- Alt+Shift+Tıkla:" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:630 -msgid " Splits edge in one direction" -msgstr " Kesimi tek yönde böler" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:625 +msgid "ESC:" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:626 +msgid "Deselect origin" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:643 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:627 +msgid "Control+Click:" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:628 +msgid "Move view" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:629 +msgid "Shift+Click:" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:630 +msgid "Splits edge in both directions" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:631 +msgid "Alt+Shift+Click:" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:632 +msgid "Splits edge in one direction" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:645 msgid "Create Edge" msgstr "Kesim Oluştur" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:667 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:669 msgid "Select either default edgeType or a custom edgeType or template" msgstr "Varsayılan Kesim Tipi veya özel bir Kesim Tipi ya da şablon seçin" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:669 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:671 msgid "Invalid edge attributes" msgstr "Geçersiz kesim öznitelikleri" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:671 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:673 msgid "Invalid lane attributes" msgstr "Geçersiz şerit öznitelikleri" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:682 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:747 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:749 msgid "create new edge" msgstr "yeni kesim oluştur" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:752 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:754 msgid "An edge with the same geometry already exists!" msgstr "Aynı geometriye sahip bir kesim zaten mevcut!" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:755 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:757 msgid "Start- and endpoint for an edge must be distinct!" msgstr "Bir kesim için başlangıç ve bitiş noktaları farklı olmalıdır!" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:70 msgid "Junction" msgstr "Kavşak" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:97 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:98 msgid "selection of edges" msgstr "kesimlerin seçimi" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:102 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:505 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:560 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:566 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:654 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:658 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:103 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:506 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:560 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:566 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:653 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:657 msgid "Use selected edges" msgstr "Seçili kesimleri kullan" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:105 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:106 msgid "Clear edges" msgstr "Kesimleri temizle" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:108 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:109 msgid "Invert edges" msgstr "Kesimleri ters çevir" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:197 msgid "Crossing parameters" msgstr "Geçit parametreleri" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:484 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1580 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1584 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:485 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1608 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1612 msgid "Create" msgstr "Oluştur" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:487 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:488 msgid "Create crossing" msgstr "Geçit oluştur" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:514 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:515 msgid "" "There is already another crossing with the same edges in the junction; " "Duplicated crossing aren't allowed." @@ -10980,478 +11232,465 @@ "Kavşakta aynı kesimlere sahip başka bir geçit zaten var; Yinelenen geçitlere " "izin verilmez." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:540 -msgid "-Click over junction to" -msgstr "-için kavşak üzerine tıklayın" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:541 -msgid " mark candidate edges." -msgstr " aday kesimleri işaretle." - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:542 -msgid "-Click over candidate" -msgstr "-Adayın üzerine tıkla" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:543 -msgid " edges for selecting." -msgstr " seçim için kesimler." +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:539 +msgid "Click over junction to mark candidate edges." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:539 +msgid "Click over candidate edges for selecting." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:547 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:541 msgid " Candidate" msgstr " Aday" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:551 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:545 msgid " Selected" msgstr " Seçilmiş" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:554 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:548 msgid " Invalid" msgstr " Geçersiz" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:567 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:561 msgid "Crossings" msgstr "Geçitler" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:55 msgid "Selected connection" msgstr "Seçilen bağlantı" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:71 msgid "No Connection selected\n" msgstr "Seçilen Bağlantı Yok\n" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:74 msgid "- Junction: " msgstr "- Kavşak: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:75 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:75 msgid "- From lane: " msgstr "- Şeritten: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:76 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:76 msgid "- To lane: " msgstr "- Şeride: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:94 msgid "Selected" msgstr "Seçilmiş" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:95 msgid "Current selected connection" msgstr "Mevcut seçili bağlantı" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:101 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:101 msgid "No conflict" msgstr "Çatışma yok" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:102 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:102 msgid "No conflict with the selected connection" msgstr "Seçilen bağlantı ile çatışma yok" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:107 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:107 msgid "Yields" msgstr "Yol verir" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:108 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:108 msgid "Connection yields the selected connection" msgstr "Bağlantı, seçilen bağlantıya yol verir" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:113 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:113 msgid "Has right of way" msgstr "Geçiş hakkına sahiptir" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:114 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:114 msgid "Connection has right of way with the selected connection" msgstr "Bağlantı, seçilen bağlantı ile geçiş hakkına sahiptir" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:119 msgid "Unregulated conflict" msgstr "Düzenlenmemiş çatışma" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:120 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:120 msgid "Connection has a unregulated conflict with the selected connection" msgstr "Bağlantı, seçilen bağlantı ile düzensiz bir çatışmaya sahip" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:125 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:125 msgid "Mutual conflict" msgstr "Karşılıklı çatışma" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:126 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:126 msgid "Connection has a mutual conflict with the selected connection" msgstr "Bağlantı, seçilen bağlantı ile karşılıklı bir çatışmaya sahip" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:175 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:175 msgid "Save prohibition modifications (Enter)" msgstr "Yasaklama değişikliklerini kaydet (Enter)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:179 msgid "Unselect connection" msgstr "Bağlantı seçimini kaldır" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:181 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:181 msgid "Unselect connection (Esc)" msgstr "Bağlantı seçimini kaldır (Esc)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:229 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:229 msgid "Prohibitions" msgstr "Yasaklar" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:57 msgid "GEO POI Creator" msgstr "GEO EN Oluşturucu" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:59 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:60 msgid "Format: Lon-Lat" msgstr "Biçim: Boylam-Enlem" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:61 msgid "Format: Lat-Lon" msgstr "Biçim: Enlem-Boylam" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:66 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:67 msgid "Center View after creation" msgstr "Oluşturulduktan sonra Merkez Görünümü" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:68 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:121 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:178 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:179 msgid "Create GEO POI (clipboard)" msgstr "GEO EN oluştur (pano)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:136 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:141 msgid "Cartesian equivalence:" msgstr "Kartezyen eşdeğerlik:" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:72 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:141 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:142 msgid "- X = give valid longitude" msgstr "- X = geçerli boylamı verin" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:73 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:142 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:143 msgid "- Y = give valid latitude" msgstr "- Y = geçerli enlemi verin" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:120 msgid "Create GEO POI" msgstr "GEO EN Oluştur" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:172 msgid "Using clipboard" msgstr "Panoyu kullanma" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:330 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:228 +msgid "Shapes" +msgstr "Şekiller" + +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:331 msgid "POILane can be only placed over lanes" msgstr "ENŞeridi sadece şeritlerin üzerine yerleştirilebilir" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:374 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:375 msgid "Current selected shape isn't valid." msgstr "Mevcut seçili şekil geçerli değil." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:422 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:423 msgid "Polygon shape cannot be empty" msgstr "Çokgen şekli boş olamaz" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:153 msgid "TAZ" msgstr "TAB" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:160 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:204 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:205 msgid "No TAZ selected" msgstr "TAB seçilmedi" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:173 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:174 msgid "Current TAZ: " msgstr "Mevcut TAB: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:336 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:337 msgid "Invalid TAZ Child" msgstr "Geçersiz TAB Alt Öğesi" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:345 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:346 msgid "TAZ Statistics" msgstr "TAB İstatistikleri" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:348 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:891 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:349 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:888 msgid "Statistics" msgstr "İstatistikler" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:375 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1132 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:376 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1129 msgid "- Number of edges: " msgstr "- Kesim sayısı: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:376 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1137 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:377 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1134 msgid "- Min source: " msgstr "- Minimum kaynak: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:377 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1138 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:378 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1135 msgid "- Max source: " msgstr "- Maksimum kaynak: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:378 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1139 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:379 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1136 msgid "- Average source: " msgstr "- Ortalama kaynak: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:380 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1141 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:381 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1138 msgid "- Min sink: " msgstr "- Minimum batma: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:381 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1142 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:382 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1139 msgid "- Max sink: " msgstr "- Maksimum batma: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:382 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1143 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:383 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1140 msgid "- Average sink: " msgstr "- Ortalama batma: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:386 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:387 msgid "No TAZ Selected" msgstr "TAB seçilmedi" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:398 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:399 msgid "Confirm changes" msgstr "Değişiklikleri onayla" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:401 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:402 msgid "Cancel changes" msgstr "Değişiklikleri iptal et" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:431 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:432 msgid "TAZ changes" msgstr "TAB değişiklikleri" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:484 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:485 msgid "TAZ Sources/Sinks" msgstr "TAB Kaynakları/Alıcıları" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:490 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:491 msgid "Membership" msgstr "Üyelik" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:491 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:492 msgid "Toggle" msgstr "Değiştir" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:496 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:497 msgid "New source" msgstr "Yeni kaynak" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:501 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:502 msgid "New sink" msgstr "Yeni Alıcı" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:507 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:508 msgid "Set zero fringe prob." msgstr "Sıfır sınır sorgulaması ayarlayın." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:511 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:646 -msgid "- Toggle Membership:" -msgstr "- Üyeliği Değiştir:" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:512 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:647 -msgid " Create new Sources/Sinks" -msgstr " Yeni Kaynaklar/Alıcılar oluştur" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:513 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:648 -msgid " with given weights." -msgstr " verilen ağırlıklar ile." +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:512 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:646 +msgid "Toggle Membership:" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:513 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:647 +msgid "Create new Sources/Sinks with given weights." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:563 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:656 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:655 msgid "Remove all edges" msgstr "Tüm kesimleri kaldır" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:582 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:582 msgid "Remove all edges from selection" msgstr "Seçimden tüm kesimleri kaldır" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:584 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:584 msgid "Add all edges to selection" msgstr "Tüm kesimleri seçime ekle" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:588 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:588 msgid "Remove edge from selection" msgstr "Seçimden kesimi kaldır" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:590 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:590 msgid "Add edge to selection" msgstr "Seçime kesim ekle" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:601 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:601 msgid "Remove " msgstr "Kaldır " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:601 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:601 msgid " edges from to selection" msgstr " seçimden seçime kesimler" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:603 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:603 msgid "Add " msgstr "Ekle " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:603 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:603 msgid " edges to selection" msgstr " seçime kesimler" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:639 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:639 msgid "toggle" msgstr "Değiştir" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:669 -msgid "- Keep Membership:" -msgstr "- Üyeliği Sürdür:" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:668 +msgid "Keep Membership:" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:670 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:668 msgid " Select Sources/Sinks." msgstr " Kaynaklar/Alıcıları seç." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:671 -msgid "- Press ESC to clear" -msgstr "- Temizlemek için ESC tuşuna basın" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:672 -msgid " current selection." -msgstr " Mevcut seçim." +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:669 +msgid "Press ESC to clear the current selection." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:849 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:846 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:849 msgid "Set weight 0 in " msgstr "Ağırlığı 0 olarak ayarla " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:849 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:846 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:849 msgid " sources and " msgstr " kaynaklar ve " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:850 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:847 msgid " sinks from TAZ '" msgstr " ' TAB'dan alıcılar" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:853 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:850 msgid " sinks from " msgstr " dosyadan alıcılar " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:853 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:850 msgid " TAZs?" msgstr " TAB'lar?" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:855 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:868 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:865 msgid "Set zero fringe probabilities" msgstr "Sıfır sınır olasılıkları ayarla" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:857 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:854 msgid "set zero fringe probabilities" msgstr "Sıfır sınır olasılıkları ayarla" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:868 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:865 msgid "No source/sinks to update." msgstr "Güncellenecek kaynak/alıcı yok." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:878 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:875 msgid "Selection Statistics" msgstr "Seçim İstatistikleri" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:882 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:879 msgid "Source" msgstr "Kaynak" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:887 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:884 msgid "Sink" msgstr "Alıcı" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:919 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:916 msgid "TAZEdgeColor already selected" msgstr "TABKesimRengi zaten seçili" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:951 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:948 msgid "edge wasn't found" msgstr "kesim bulunamadı" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:953 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:950 msgid "Invalid edge" msgstr "Geçersiz kesim" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1130 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1127 msgid "- Edge ID: " msgstr "- Kesim kimliği (ID): " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1165 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1162 msgid "TAZ parameters" msgstr "TAB parametreleri" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1190 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1187 msgid "Edges within" msgstr "İçindeki kesimler" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1191 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1298 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1188 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1295 msgid "use" msgstr "kullan" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1300 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1297 msgid "not use" msgstr "kullanma" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1330 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1327 msgid "Non TAZ Edge" msgstr "TAB Kesim Olmayan" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1334 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1331 msgid "Selected TAZ Edge" msgstr "Seçilen TAB Kesim" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1339 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1336 msgid "Color by Source" msgstr "Kaynağa Göre Renk" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1341 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1338 msgid "Color by Sink" msgstr "Alıcıya göre renk" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1343 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1340 msgid "Color by Source + Sink" msgstr "Kaynak + Alıcıya göre renk" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1345 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1342 msgid "Color by Source - Sink" msgstr "Kaynak - Alıcıya göre renk" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1448 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1445 msgid "TAZs" msgstr "TABlar" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1614 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1611 msgid "TAZ shape needs at least three points" msgstr "TAB şekli en az üç noktaya ihtiyaç duyar" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:121 msgid "Edit Traffic Light" msgstr "Trafik Işığını Düzenle" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:183 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:185 msgid "Click over a junction to edit a TLS" msgstr "Bir TIS'ı düzenlemek için bir kavşağa tıklayın" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:195 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:197 msgid "Save TLS Changes" msgstr "TIS Değişikliklerini Kaydet" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:198 msgid "" "There is unsaved changes in current edited traffic light.\n" "Do you want to save it before changing mode?" @@ -11459,137 +11698,145 @@ "Mevcut düzenlenmiş trafik ışığında kaydedilmemiş değişiklikler var.\n" "Modu değiştirmeden önce kaydetmek istiyor musunuz?" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:244 msgid "tlLogic '%', program '%' could not be built" msgstr "tlLogic '%', '%' programı oluşturulamadı" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:255 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2935 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:257 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2963 msgid "Loaded " msgstr "Yüklendi " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:255 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:257 msgid " programs" msgstr " programlar" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:418 msgid "Invalid phase index" msgstr "Geçersiz faz dizini" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:512 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:514 msgid "modifying TLS definition" msgstr "TIS tanımının değiştirilmesi" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:526 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:528 msgid "Unsaved modifications. Abort or Save" msgstr "Kaydedilmemiş değişiklikler. İptal Et veya Kaydet" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:546 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:548 msgid "Traffic light Attributes" msgstr "Trafik ışığı Özellikleri" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:557 msgid "parameters" msgstr "parametreler" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 msgid "Assign E1 detectors" msgstr "E1 dedektörlerini ata" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 msgid "Enable assign E1 mode" msgstr "E1 modu atamayı etkinleştir" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 msgid "Assign E1 detectors to the current TLS" msgstr "E1 dedektörlerini geçerli TIS'a ata" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 msgid "Disable assign E1 mode" msgstr "E1 modunu atamayı devre dışı bırak" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:879 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:881 msgid "Traffic Light" msgstr "Trafik Işığı" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:884 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:945 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:886 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:955 msgid "Junction ID" msgstr "Kavşak Kimliği (ID)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:891 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:893 msgid "TLS ID" msgstr "TIS Kimliği (ID)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 msgid "Join" msgstr "Birleştir" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 msgid "Enable join mode" msgstr "Birleştirme modunu etkinleştir" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 msgid "Join TLS and junctions in the current junction." msgstr "Geçerli kavşakta TIS ve kavşakları birleştir." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 msgid "Disable join mode" msgstr "Birleştirme modunu devre dışı bırak" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 msgid "Disjoin" msgstr "Ayır" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 msgid "Disjoin current TLS" msgstr "Mevcut TIS'ı ayır" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 msgid "Disjoin current TLS." msgstr "Mevcut TIS'ı ayır." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:952 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:923 +msgid "Finish join." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:925 +msgid "Cancel Join." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:962 msgid "no junction selected" msgstr "seçili kavşak yok" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:974 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:984 msgid "Junction IDs" msgstr "Kavşak Kimlikleri (IDs)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1061 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1064 msgid "rename TLS" msgstr "TLS'yi yeniden adlandır" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1140 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1143 msgid "change TLS type" msgstr "TIS türünü değiştir" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1216 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1227 msgid "join TLS" msgstr "TIS Birleştir" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1278 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1289 msgid "disjoin TLS" msgstr "TIS Ayır" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1340 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1368 msgid "Traffic Light Programs" msgstr "Trafik Işığı Programları" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1353 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1381 msgid "Create TLS" msgstr "TIS oluştur" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1353 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1381 msgid "Create a new traffic light program." msgstr "Yeni bir trafik ışığı programı oluştur." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1356 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1384 msgid "" "Delete a traffic light program. If all programs are deleted the junction " "turns into a priority junction." @@ -11597,108 +11844,108 @@ "Bir trafik ışığı programını sil. Tüm programlar silinirse kavşak öncelikli " "kavşağa dönüşür." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1359 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1387 msgid "Reset single" msgstr "Tekli sıfırla" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1359 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1387 msgid "Reset current TLS program." msgstr "Mevcut TIS programını sıfırla." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1362 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1390 msgid "Reset all" msgstr "Tümünü Sıfırla" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1362 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1390 msgid "Reset all TLS programs." msgstr "Tüm TIS programlarını sıfırla." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1365 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1393 msgid "Save program modifications. (Enter)" msgstr "Program değişikliklerini kaydet. (Enter)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1368 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1396 msgid "Discard program modifications. (Esc)" msgstr "Program değişikliklerini çıkar. (Esc)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1463 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1491 msgid "TLSDefinition cannot be found" msgstr "TIS Tanımı bulunamadı" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1505 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1518 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1537 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1533 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1546 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1565 msgid "TLS cannot be created" msgstr "TIS oluşturulamaz" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1506 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1534 msgid "Traffic Light cannot be created because junction must have" msgstr "Kavşak olması gerektiğinden Trafik Işığı oluşturulamıyor" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1507 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1535 msgid "at least one incoming edge and one outgoing edge." msgstr "en az bir giriş ve bir çıkış kesimi." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1519 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1538 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1547 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1566 msgid "Traffic Light cannot be created because junction" msgstr "Kavşak nedeniyle Trafik Işığı oluşturulamıyor" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1520 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1548 msgid "must have at least one connection." msgstr "en az bir bağlantıya sahip olmalıdır." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1539 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1567 msgid "must have at least one controlled connection." msgstr "en az bir kontrollü bağlantıya sahip olmalıdır." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1582 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1610 msgid "Duplicate" msgstr "Yinele" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1622 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1650 msgid "reset current program" msgstr "geçerli programı sıfırla" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1661 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1689 msgid "reset TLS" msgstr "TIS'ı sıfırla" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1822 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1850 msgid "duplicate program '%' of traffic light '%'" msgstr "'%' trafik ışığının '%' programını yinele" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1868 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1896 msgid "Traffic light does not control any links" msgstr "Trafik ışığı herhangi bir bağlantıyı kontrol etmiyor" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1880 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1908 msgid "Phases" msgstr "Fazlar" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1891 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1919 msgid "Clean States" msgstr "Evreleri Temizle" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1892 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1920 msgid "Clean unused states from all phase" msgstr "Kullanılmayan evreleri tüm fazlardan temizle" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1893 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1921 msgid "Clean unused states from all phase. (Not allowed for multiple programs)" msgstr "" "Kullanılmayan evreleri tüm fazlardan temizle. (Birden fazla program için " "izin verilmez)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1897 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1925 msgid "Add States" msgstr "Evre Ekle" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1898 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1926 msgid "Extend the state vector for all phases by one entry" msgstr "Tüm fazlar için evre vektörünü bir girişle genişlet" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1899 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1927 msgid "" "Extend the state vector for all phases by one entry. (Unused until a " "connection or crossing is assigned to the new index)" @@ -11706,11 +11953,11 @@ "Tüm fazlar için evre vektörünü bir girişle genişlet. (Yeni dizine bir " "bağlantı veya geçit atanana kadar kullanılmaz)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1903 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1931 msgid "Group Sig." msgstr "Grup Sin." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1904 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1932 msgid "" "Shorten state definition by letting connections with the same signal states " "use the same index" @@ -11718,7 +11965,7 @@ "Aynı sinyal evrelerine sahip bağlantıların aynı dizini kullanmasına izin " "vererek evre tanımını kısaltın" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1905 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1933 msgid "" "Shorten state definition by letting connections with the same signal states " "use the same index. (Not allowed for multiple programs)" @@ -11726,16 +11973,16 @@ "Aynı sinyal evrelerine sahip bağlantıların aynı dizini kullanmasına izin " "vererek evre tanımını kısaltın. (Birden fazla program için izin verilmez)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1909 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1937 msgid "Ungroup Sig." msgstr "Sin. Çöz" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1910 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1938 msgid "Let every connection use a distinct index (reverse state grouping)" msgstr "" "Her bağlantının ayrı bir dizin kullanmasına izin ver (ters evre gruplaması)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1939 msgid "" "Let every connection use a distinct index (reverse state grouping). (Not " "allowed for multiple programs)" @@ -11743,1166 +11990,1595 @@ "Her bağlantının ayrı bir dizin kullanmasına izin verin (ters evre " "gruplaması). (Çoklu programlar için izin verilmez)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2039 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2067 msgid "invalid column" msgstr "Geçersiz sütun" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2598 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2626 msgid "Error deleting phase '" msgstr "Faz silinirken hata oluştu '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2870 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2898 msgid "TLS Program File" msgstr "TIS Program Dosyası" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2874 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2902 msgid "Load TLS program from additional file" msgstr "TIS programını ek dosyadan yükle" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2876 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2904 msgid "Save TLS program to additional file" msgstr "TIS programını ek dosyaya kaydet" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2935 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2963 msgid " new programs for tlLogic '" msgstr " tlLogic için yeni programlar '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2940 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2968 msgid "Updated program '" msgstr "Güncellenmiş program '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2940 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2968 msgid "' for tlLogic '" msgstr "' tlLogic için '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2944 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2972 msgid "No programs found for traffic light '" msgstr "Trafik ışığı için program bulunamadı '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2963 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2991 msgid "Save TLS Program as" msgstr "TIS Programını Farklı Kaydet" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:75 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:75 msgid "Current selected wire isn't valid." msgstr "Mevcut seçilen kablo geçerli değil." -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:117 #, c-format msgid "A % needs at least two lane positions" msgstr "Bir % en az iki şerit pozisyonuna ihtiyaç duyar" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:237 msgid "Currently unsupported. Create VSS steps elements using VSS dialog" msgstr "" "Şu anda desteklenmiyor. VSS iletişim kutusunu kullanarak VSS adımları " "öğeleri oluşturun" -#: /home/micha/programming/sumo/src/netedit/netedit_main.cpp:49 +#: D:\Repos\sumo/src\netedit\netedit_main.cpp:49 msgid "" "Graphical editor for SUMO networks, demand and additional infrastructure." msgstr "SUMO Ağları Talep ve Ek Altyapılar için Grafiksel Düzenleyici." -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:126 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:127 msgid "Original network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:129 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:130 msgid "Modified network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:132 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:133 msgid "Output prefix network" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:136 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:137 msgid "Select modified elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:139 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:140 msgid "Select added elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:142 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:143 msgid "Select deleted elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:146 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:147 msgid "Load shapes for elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:149 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:150 msgid "Load shapes for added" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:152 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:153 msgid "Load shapes for deleted elements" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:165 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:166 msgid "load shapes from '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:169 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:170 msgid "Loading of shape file failed: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:172 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:173 msgid "Loading of shape file sucessfully: " msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:42 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:43 msgid "Execute python tool '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:153 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:177 #, c-format msgid "Loaded % configuration." msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:182 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:206 #, c-format msgid "Saved % configuration." msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:71 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:55 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:76 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:60 msgid "cancelled by user\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:102 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:86 -msgid "popen() failed!" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:114 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:98 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:119 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:103 msgid "starting process...\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:124 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:108 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:137 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:121 msgid "error processing command\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:136 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:120 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:152 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:136 msgid "process finished\n" msgstr "" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:142 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:125 -msgid "starting process silently...\n" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:75 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:75 msgid "&Load selection" msgstr "Seçimi yükle" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:77 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:77 msgid "&Save selection" msgstr "Seçimi kaydet" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:81 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:81 msgid "&Deselect chosen" msgstr "Seçimi bırak" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:83 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:83 msgid "&Clear selection" msgstr "Seçimi temizle" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:87 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:87 msgid "Cl&ose" msgstr "Kapat" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:137 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:137 msgid "Errors while loading Selection" msgstr "Seçim yüklenirken oluşan hatalar" -#: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:116 +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:116 msgid "Unknown object in GUISelectedStorage::select (id=%)." msgstr "GUISelectedStorage::select (id=%) içinde bilinmeyen nesne." -#: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:133 +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:133 msgid "Unknown object in GUISelectedStorage::deselect (id=%)." msgstr "GUISelectedStorage::deselect (id=%) içinde bilinmeyen nesne." -#: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:150 +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:150 msgid "Unknown object in GUISelectedStorage::toggleSelection (id=%)." msgstr "GUISelectedStorage::toggleSelection (id=%) içinde bilinmeyen nesne." -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:74 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:74 msgid "Unknown format!" msgstr "Bilinmeyen format!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:91 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:91 msgid "Unknown codec, falling back to HEVC!" msgstr "Bilinmeyen kodek, HEVC'ye geri dönüyor!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:95 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:95 msgid "Unknown codec!" msgstr "Bilinmeyen kodek!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:100 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:100 msgid "Could not allocate video codec context!" msgstr "Video kodek bağlamı tahsis edilemedi!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:136 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:136 msgid "Could not open codec!" msgstr "Kodek açılamadı!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:142 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:142 msgid "Could not allocate video frame!" msgstr "Video karesi tahsis edilemedi!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:148 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:148 msgid "Could not allocate the video frame data!" msgstr "Video kare verileri tahsis edilemedi!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:155 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:155 msgid "Failed to open output file!" msgstr "Çıktı dosyası açılamadı!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:160 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:160 msgid "Failed to write file header!" msgstr "Dosya başlığı yazılamadı!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:165 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:165 msgid "Could not allocate video packet!" msgstr "Video paketi tahsis edilemedi!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:175 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:175 msgid "Error sending final frame!" msgstr "Son kare gönderilirken hata oluştu!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:183 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:183 msgid "Error during final encoding step!" msgstr "Son kodlama adımı sırasında hata!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:214 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:214 msgid "Error sending frame for encoding!" msgstr "Kodlama için kare gönderilirken hata oluştu!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:222 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:222 msgid "Error during encoding!" msgstr "Kodlama sırasında hata oluştu!" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUIGLObjectPopupMenu.cpp:170 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGLObjectPopupMenu.cpp:170 msgid "Object must be a lane" msgstr "Nesne bir şerit olmalıdır" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:87 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:285 +msgid "Copy name to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:286 +msgid "Copy typed name to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:296 +msgid "Remove From Selected" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:298 +msgid "Add To Selected" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:308 +msgid "Show Parameter" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:317 +msgid "Show Type Parameter" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:326 +msgid "Copy cursor position to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:328 +msgid "Copy cursor geo-position to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:332 +msgid "Show cursor geo-position in " +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:350 +msgid "Open Manipulator..." +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:389 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:412 +msgid "type: %" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:87 msgid "&Save changes" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:88 +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:88 msgid "&Don't save" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:89 +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:89 msgid "&Abort" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUIShapeContainer.cpp:56 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIShapeContainer.cpp:56 msgid "Replacing POI '%'" msgstr "EN '%' değiştiriliyor" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUIShapeContainer.cpp:81 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIShapeContainer.cpp:81 msgid "Replacing polygon '%'" msgstr "'%' çokgeni değiştiriliyor" -#: /home/micha/programming/sumo/src/utils/gui/images/GUIIconSubSys.cpp:981 +#: D:\Repos\sumo/src\utils\gui\images\GUIIconSubSys.cpp:989 msgid "Instance was previously created" msgstr "Örnek daha önce oluşturuldu" -#: /home/micha/programming/sumo/src/utils/gui/images/GUITextureSubSys.cpp:223 +#: D:\Repos\sumo/src\utils\gui\images\GUITextureSubSys.cpp:223 msgid "Undefined texture" msgstr "Tanımsız doku" -#: /home/micha/programming/sumo/src/utils/gui/images/VClassIcons.cpp:91 +#: D:\Repos\sumo/src\utils\gui\images\VClassIcons.cpp:91 msgid "Invalid vClass" msgstr "Geçersiz Araç Sınıfı (vClass)" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:77 +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:77 msgid "The 'value' attribute is deprecated for breakpoints. Please use 'time'." msgstr "" "'value' niteliği kesme noktaları için kullanımdan kaldırılmıştır. Lütfen " "'time' kullanın." -#: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:383 +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:383 msgid "The 'filename' attribute is deprecated for decals. Please use 'file'." msgstr "" "'filename' niteliği çıkartmalar için kullanımdan kaldırılmıştır. Lütfen " "'file' kullanın." -#: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:559 +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:559 msgid " Could not decode breakpoint '%'" msgstr " Kesme noktası '%' kodu çözülemedi" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUIVisualizationSettings.cpp:2348 +#: D:\Repos\sumo/src\utils\gui\settings\GUIVisualizationSettings.cpp:2348 msgid "No color defined for LinkState '%'" msgstr "LinkState '%' için renk tanımlanmadı" -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:116 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:116 msgid "Save the data..." msgstr "Verileri kaydet..." -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:131 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:131 msgid "Multiplot" msgstr "çoklu çizim" -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:219 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:219 msgid "Save Data" msgstr "Veri Kaydet" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:85 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:85 msgid "Track" msgstr "Takip Et" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:92 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:92 msgid "&Hide Unselected" msgstr "&Seçilmemişleri Gizle" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:93 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:93 msgid "By &Name" msgstr "Ad ile" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:93 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:93 msgid "Locate item by name" msgstr "Öğeyi adına göre bul" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:94 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:94 msgid "&Select/deselect" msgstr "&Seç/seçimi kaldır" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:94 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:94 msgid "Select/deselect current object" msgstr "Geçerli nesneyi seç/seçimi kaldır" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:95 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:95 msgid "&Filter substring" msgstr "&Alt dizeyi filtrele" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:96 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:96 msgid "Select &all" msgstr "Tümünü seç" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:96 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:96 msgid "Select all items in list" msgstr "Listedeki tüm öğeleri seç" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:97 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:97 msgid "&Deselect all" msgstr "Tümünün seçimini kaldır" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:97 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:97 msgid "Deselect all items in list" msgstr "Listedeki tüm öğelerin seçimini kaldır" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:98 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:98 msgid "&Update" msgstr "Güncelle" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:98 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:98 msgid "Reload all ids" msgstr "Tüm kimlikleri yeniden yükle" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:102 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:102 msgid "case-sensitive search" msgstr "büyük/küçük harfe duyarlı arama" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:104 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:104 msgid "auto-center" msgstr "oto-merkez" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:329 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:329 #, c-format msgid "% objects" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:65 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:65 msgid "Load viewport from file" msgstr "Görünüm alanını dosyadan yükle" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:67 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:67 msgid "Save viewport to file" msgstr "Görünüm alanını dosyaya kaydet" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:210 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:210 msgid "Load Viewport" msgstr "Görünüm Alanını Yükle" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:229 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:229 msgid "Save Viewport" msgstr "Görünüm Alanını Kaydet" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:277 -msgid "Run tool" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:278 -msgid "Cancel tool" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:280 -msgid "Accept settings" -msgstr "Ayarları kabul et" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:87 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:87 msgid "View Settings" msgstr "Ayarları Görüntüle" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:989 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:989 msgid "Enter a name" msgstr "Bir ad girin" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:991 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:991 msgid "Please enter an alphanumeric name: " msgstr "Lütfen alfanümerik bir ad girin: " -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1070 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1070 msgid "Export view settings" msgstr "Görünüm ayarlarını dışa aktar" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1121 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1121 msgid "Import view settings" msgstr "Görünüm ayarlarını içe aktar" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1138 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1155 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1138 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1155 msgid "Load Decals" msgstr "Etiketleri Yükle" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1172 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1172 msgid "Save Decals" msgstr "Etiketleri Kaydet" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1242 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1307 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1244 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1309 msgid "No Data" msgstr "Veri Yok" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1246 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1311 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1248 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1313 msgid "Remove" msgstr "Kaldır" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1569 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1614 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1571 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1616 msgid "Only for selected" msgstr "Sadece seçilenler için" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1571 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1573 msgid "constant text size" msgstr "sabit metin boyutu" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1574 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1576 msgid "Size" msgstr "Boyut" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1579 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1692 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1730 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1851 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1933 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1973 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1999 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2119 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2154 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2217 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1581 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1694 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1732 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1853 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1935 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1975 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2001 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2121 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2156 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2219 msgid "Color" msgstr "Renk" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1581 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1687 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1583 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1689 msgid "Background" msgstr "Arka plan" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1612 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1614 msgid "Draw with constant size when zoomed out" msgstr "Uzaklaştırıldığında sabit boyutta çizim yapın" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1617 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1619 msgid "Minimum Size" msgstr "Minimum Boyut" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1621 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1623 msgid "Exaggerate by" msgstr "Tarafından büyütülen" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1667 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1669 msgid "Save the setting to registry" msgstr "Ayarı kayıt defterine kaydedin" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1668 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1670 msgid "Remove the setting from registry" msgstr "Ayarı kayıt defterinden kaldırın" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1669 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1671 msgid "Export setting to file" msgstr "Ayarı dosyaya aktar" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1670 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1672 msgid "Load setting from file" msgstr "Ayarı dosyadan yükle" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1673 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1675 msgid "Export includes:" msgstr "Dışa aktarma şunları içerir:" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1674 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1676 msgid "Viewport" msgstr "Görünüm Alanı" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1675 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1677 msgid "Delay" msgstr "Gecikme" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1676 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1678 msgid "Decals" msgstr "Etiketler" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1677 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1679 msgid "Breakpoints" msgstr "Kesim Noktaları" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1696 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1698 msgid "Decals:" msgstr "Etiketler:" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1699 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1701 msgid "&Load XML Decals" msgstr "&XML Etiketlerini Yükle" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1700 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1702 msgid "&Save XML Decals" msgstr "&XML Etiketlerini Kaydet" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1701 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1703 msgid "&Clear Decals" msgstr "Etiketleri Temizle" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1706 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1708 msgid "Toggle grid" msgstr "Izgarayı aç/kapat" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1710 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1712 msgid "x-spacing" msgstr "x-boşluğu" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1715 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1717 msgid "y-spacing" msgstr "y-boşluğu" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1724 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1726 msgid "Streets" msgstr "Sokaklar" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1732 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1761 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1855 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1868 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1937 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1977 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2003 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2123 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2158 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2219 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1734 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1763 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1857 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1870 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1939 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1979 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2005 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2125 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2160 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2221 msgid "Interpolate" msgstr "enterpolasyon" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1744 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2006 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2229 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1746 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2008 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2231 msgid "Recalibrate Rainbow" msgstr "Rainbow'u Yeniden Kalibre Et" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1746 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1748 msgid "hide below" msgstr "aşağıya sakla" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1750 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1752 msgid "hide above" msgstr "yukarıya sakla" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1759 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1761 msgid "Scale width" msgstr "Ölçek genişliği" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1782 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1784 msgid "Show bike markings" msgstr "Bisiklet işaretlerini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1784 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1786 msgid "Show turning arrows" msgstr "Dönüş oklarını göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1787 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1789 msgid "Show right-of-way rules" msgstr "Geçiş hakkı kurallarını göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1789 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1791 msgid "Realistic stop line colors" msgstr "Gerçekçi durak çizgisi renkleri" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1792 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1794 msgid "Show lane borders" msgstr "Şerit sınırlarını göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1794 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1796 msgid "Show lane direction" msgstr "Şerit yönünü göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1797 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1799 msgid "Hide macro connectors" msgstr "Makro bağlantıları gizle" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1799 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1801 msgid "Show sublanes" msgstr "Alt şeritleri göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1802 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1804 msgid "Show rails" msgstr "Rayları göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1804 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1806 msgid "Spread bidirectional railways/roads" msgstr "Çift yönlü demiryollarını/yolları yay" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1804 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1806 msgid "" "Make both directional edges for a bidirectional railways or roads visible" msgstr "" "Çift yönlü demiryolları veya yollar için her iki yön kesimini de görünür " "hale getir" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1807 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1809 msgid "Secondary shape" msgstr "İkincil şekil" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1812 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1814 msgid "Exaggerate width by" msgstr "Genişliği şuna göre genişlet" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1818 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1820 msgid "Minimum size" msgstr "Minimum boyut" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1824 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1826 msgid "Show edge id" msgstr "Kesim kimliğini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1825 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1827 msgid "Show street name" msgstr "Sokak adını göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1826 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1828 msgid "Show edge color value" msgstr "Kesim rengi değerini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1827 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1829 msgid "Show edge scale value" msgstr "Kesim ölçeği değerini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1838 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1921 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1961 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1840 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1923 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1963 msgid "Show As" msgstr "Farklı Göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1840 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1923 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1963 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1842 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1925 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1965 msgid "'triangles'" msgstr "'üçgenler'" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1841 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1964 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1843 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1966 msgid "'boxes'" msgstr "'kutular'" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1842 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1925 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1965 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1844 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1927 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1967 msgid "'simple shapes'" msgstr "'basit şekiller'" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1843 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1926 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1966 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1845 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1928 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1968 msgid "'raster images'" msgstr "'raster görüntüler'" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1844 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1924 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1846 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1926 msgid "'circles'" msgstr "'daireler'" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1866 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1868 msgid "Scale size" msgstr "Ölçek boyutu" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1875 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1877 msgid "Show vehicle id" msgstr "Araç kimliğini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1876 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1878 msgid "Show vehicle color value" msgstr "Araç renk değerini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1877 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1879 msgid "Show vehicle scale value" msgstr "Araç ölçek değerini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1878 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1880 msgid "Show vehicle text param" msgstr "Araç metin parametresini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1885 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1887 msgid "Show blinker / brake lights" msgstr "Sinyal / fren lambalarını göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1887 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1889 msgid "Show minimum gap" msgstr "Minimum boşluğu göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1889 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1891 msgid "Show brake gap" msgstr "Fren boşluğunu göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1891 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1893 msgid "Show Bluetooth range" msgstr "Bluetooth aralığını göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1893 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1895 msgid "Show route index" msgstr "Rota dizinini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1895 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1897 msgid "Scale length with geometry" msgstr "Geometri ile uzunluğu ölçeklendirin" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1897 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1899 msgid "Show parking info" msgstr "Park bilgilerini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1899 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1901 msgid "Draw reversed vehicles in reverse" msgstr "Ters dönmüş araçları ters çizin" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1944 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1946 msgid "Show person id" msgstr "Yolcu kimliğini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1945 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1947 msgid "Show person color value" msgstr "Yolcu renk değerini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1956 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1958 msgid "Containers" msgstr "Konteynerler" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1984 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1986 msgid "Show container id" msgstr "Konteyner kimliğini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1995 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1997 msgid "Junctions" msgstr "Kavşaklar" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2012 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2014 msgid "Draw junction shape" msgstr "Kavşak şekli çiz" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2014 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2016 msgid "Draw crossings/walkingareas" msgstr "Yaya geçitleri/yürüyüş alanları çizin" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2016 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2018 msgid "Show lane to lane connections" msgstr "Şeritten şeride bağlantıları göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2020 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2022 msgid "Show link tls index" msgstr "Bağlantı TIS dizinini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2021 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2023 msgid "Show link junction index" msgstr "Bağlantı kavşak dizinini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2022 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2024 msgid "Show junction id" msgstr "Kavşak kimliğini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2023 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2025 msgid "Show internal junction id" msgstr "Dahili kavşak kimliğini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2024 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2026 msgid "Show internal edge id" msgstr "Dahili kesim kimliğini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2025 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2027 msgid "Show crossing and walkingarea id" msgstr "Geçit ve yürüme alanı kimliğini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2026 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2028 msgid "Show traffic light phase index" msgstr "Trafik ışığı faz dizinini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2027 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2029 msgid "Show traffic light phase name" msgstr "Trafik ışığı faz adını göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2028 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2030 msgid "Show junction name" msgstr "Kavşak adını göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2034 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2036 msgid "Additional" msgstr "Ek" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2039 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2041 msgid "Show object id" msgstr "Nesne kimliğini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2040 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2042 msgid "Show full name" msgstr "Tam adı göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2047 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2049 msgid "StoppingPlace" msgstr "Duraklama Yeri" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2048 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2050 msgid "body" msgstr "gövde" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2049 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2051 msgid "sign" msgstr "işaret" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2072 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2074 msgid "element" msgstr "eleman" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2073 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2075 msgid "color" msgstr "renk" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2074 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2076 msgid "width" msgstr "genişlik" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2114 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2116 msgid "POIs" msgstr "EN'ler" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2130 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2132 msgid "POI detail" msgstr "EN Detayı" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2135 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2137 msgid "Show poi id" msgstr "EN kimliğini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2136 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2138 msgid "Show poi type" msgstr "EN tipini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2137 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2139 msgid "Show poi text param" msgstr "EN metin parametresini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2149 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2151 msgid "Polygons" msgstr "Çokgenler" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2164 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2166 msgid "Show polygon id" msgstr "Çokgen kimliğini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2165 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2167 msgid "Show polygon types" msgstr "Çokgen türlerini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2179 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2181 msgid "Default Selection Color" msgstr "Varsayılan Seçim Rengi" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2182 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2184 msgid "Miscellaneous" msgstr "Çeşitli" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2231 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2233 msgid "hide below threshold" msgstr "eşiğin altında gizle" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2238 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2240 msgid "Exaggerate edgeRelation width by" msgstr "Kesimİlişkili genişliğini şuna göre genişlet" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2243 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2245 msgid "Exaggerate tazRelation width by" msgstr "TABİlişkili genişliğini şuna göre genişlet" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2249 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2251 msgid "Show data color value" msgstr "Veri rengi değerini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2255 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2257 msgid "Legend" msgstr "Gösterge" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2260 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2262 msgid "Show Size Legend" msgstr "Gösterge Boyutunu Göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2263 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2265 msgid "Show Edge Color Legend" msgstr "Kesim Rengi Göstergesini Göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2266 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2268 msgid "Show Vehicle Color Legend" msgstr "Araç Renk Göstergesini Göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2279 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2281 msgid "Dither" msgstr "Titreşim" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2285 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2287 msgid "Draw boundaries" msgstr "Sınırları çiz" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2288 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2290 msgid "Force draw for position selection" msgstr "Pozisyon seçimi için çizimi zorla" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2291 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2293 msgid "Force draw for rectangle selection" msgstr "Dikdörtgen seçimi için çizimi zorla" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2294 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2296 msgid "Disable dotted contours during selection/deletion" msgstr "Seçim/silme sırasında noktalı konturları devre dışı bırak" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2297 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2299 msgid "Recalculate boundaries" msgstr "Sınırları yeniden hesapla" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2300 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2302 msgid "Show geometry point indices" msgstr "Geometri nokta belirteçlerini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2306 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2308 msgid "3D view" msgstr "3B görünüm" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2311 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2313 msgid "Show TLS link markers" msgstr "TIS bağlantı işaretleyicilerini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2314 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2316 msgid "Show domes around TLS models from decals" msgstr "Etiketlerden TIS modellerinin etrafındaki tepeleri göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2317 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2319 msgid "Show auto-generated TLS models" msgstr "Otomatik oluşturulan TIS modellerini göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2319 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2321 msgid "Show head-up display" msgstr "Baş üstü ekranı göster" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2325 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2327 msgid "Sun brightness" msgstr "Güneş parlaklığı" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2337 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2339 msgid "Sky color" msgstr "Gökyüzü rengi" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:120 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:120 msgid "Recenter View" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:120 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:120 msgid "Recenter view to the simulated area." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:124 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:124 msgid "Opens a menu which lets you edit the viewport. (Ctrl+I)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:128 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:128 msgid "Toggle Zooming Style" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:128 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:128 msgid "" "Toggles whether zooming is based at cursor position or at the center of the " "view." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:135 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:135 msgid "Locate Structures" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:135 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:135 msgid "Locate structures within the network." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:139 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:139 msgid "Toggle View Tooltips" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:139 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:139 msgid "Toggles whether tooltips in the view shall be shown." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:145 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:145 msgid "Toggle Menu Tooltips" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:145 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:145 msgid "Toggles whether tooltips in the menu shall be shown." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:161 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:161 msgid "Edit Coloring Schemes" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:161 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:161 msgid "Opens a menu which lets you edit the coloring schemes. (F9)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:172 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:172 msgid "Make Snapshot" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:172 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:172 msgid "Makes a snapshot of the view." msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:294 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:294 msgid "option window-size requires INT,INT" msgstr "seçenek pencere boyutu INT, INT gerektirir" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:311 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:311 msgid "option window-pos requires INT,INT" msgstr "seçenek pencere boyutu INT, INT gerektirir" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:340 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:340 msgid "Langua&ge" msgstr "Dil" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:342 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:342 msgid "Change language to english. (en)" msgstr "Dili İngilizce olarak değiştirin. (en)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:344 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:344 msgid "Change language to german. (de)" msgstr "Dili almanca olarak değiştirin. (de)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:346 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:346 msgid "Change language to spanish. (es)" msgstr "Dili ispanyolca olarak değiştirin. (es)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:348 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:348 msgid "Change language to french. (fr)" msgstr "Dili Fransızca olarak değiştirin. (fr)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:350 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:350 msgid "Change language to italian. (it)" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:352 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:352 msgid "简体中文 (zh)" msgstr "简体中文 (zh)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:354 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:354 msgid "繁體中文 (zh-Hant)" msgstr "繁體中文 (zh-Hant)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:356 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:356 msgid "Change language to turkish. (tr)" msgstr "Dili Türkçe olarak değiştirin. (tr)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:358 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:358 msgid "Change language to hungarian. (hu)" msgstr "Dili Macarca olarak değiştirin. (hu)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:372 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:372 msgid "german" msgstr "Almanca" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:376 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:376 msgid "spanish" msgstr "İspanyolca" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:380 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:380 msgid "french" msgstr "Fransızca" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:384 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:384 msgid "italian" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:388 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:388 msgid "chinese" msgstr "Çince" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:392 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:392 msgid "chinese simplified" msgstr "Basitleştirilmiş Çince" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:396 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:396 msgid "turkish" msgstr "Türkçe" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:400 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:400 msgid "hungarian" msgstr "Macarca" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:404 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:404 msgid "english" msgstr "İngilizce" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:412 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:412 msgid "Language changed to " msgstr "Dil şu şekilde değiştirildi: " -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:414 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:414 msgid "Restart needed" msgstr "Yeniden başlatma gerekiyor" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:415 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:415 msgid "Changing display language needs restart to take effect." msgstr "" "Ekran dilinin değiştirilmesinin etkili olması için yeniden başlatılması " "gerekir." -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:418 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:418 msgid "" "For the Debug build you might also need to set the LANG environment variable." msgstr "" "Hata Ayıklama derlemesi için LANG ortam değişkenini de ayarlamanız " "gerekebilir." -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:421 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:421 msgid "Under development. You can help to improve the translation at:" msgstr "" "Geliştirme aşamasında. Çevirinin geliştirilmesine şu adresten yardımcı " "olabilirsiniz:" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:254 +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:254 msgid " (No projection defined)" msgstr " (Projeksiyon tanımlanmadı)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:1738 +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:1747 msgid "Could not convert coordinates in %." msgstr "Koordinatlar % cinsinden dönüştürülemedi." +#~ msgid "Mode for creating person plans. (C)" +#~ msgstr "Yolcu planları oluşturmak için mod. (C)" + +#~ msgid "Mode for creating containers. (P)" +#~ msgstr "Konteynerler oluşturmak için mod. (P)" + +#~ msgid "Undo enable " +#~ msgstr "Geri alma etkin " + +#~ msgid " attribute in '" +#~ msgstr " şuradaki öznitelik '" + +#~ msgid "Redo enable " +#~ msgstr "Yineleme etkin " + +#~ msgid "Copy " +#~ msgstr "Kopyala " + +#~ msgid " name to clipboard" +#~ msgstr " panoya ad" + +#~ msgid " typed name to clipboard" +#~ msgstr " panoya yazılan ad" + +#~ msgid "Could not build access in netedit; The lane '" +#~ msgstr "netedit'te erişim oluşturulamadı; Şerit '" + +#~ msgid "' doesn't support pedestrians" +#~ msgstr "' yayaları desteklemiyor" + +#~ msgid "Could not build parking area with ID '" +#~ msgstr "Kimlikle (ID) park alanı oluşturulamadı '" + +#~ msgid "' in netedit; Invalid departPos over lane." +#~ msgstr "' netedit'te; Şerit üzerinde geçersiz kalkış pozisyonu (departPos)" + +#~ msgid "Could not build lane area detector with ID '" +#~ msgstr "' Kimliği (ID) ile şerit alanı dedektörü oluşturulamadı" + +#~ msgid "' in netedit; invalid traffic light ID." +#~ msgstr "netedit'te; geçersiz trafik ışığı kimliği (ID)." + +#~ msgid "' in netedit; Lanes aren't consecutives." +#~ msgstr "' netedit'te; Şeritler ardışık değildir." + +#~ msgid "Could not build interval with ID '" +#~ msgstr "' Kimlik (ID) ile aralık oluşturulamadı" + +#~ msgid "' in netedit; begin is greather than end." +#~ msgstr "' netedit'te; başlangıç bitişten daha büyüktür." + +#~ msgid "Could not build interval with begin '" +#~ msgstr "' Başlangıç ile aralık oluşturulamadı" + +#~ msgid "' in '" +#~ msgstr "' içinde '" + +#~ msgid "' due overlapping." +#~ msgstr "' ifadesinin örtüşmesi nedeniyle." + +#~ msgid "Could not build Vaporizer with ID '" +#~ msgstr "' Kimlik (ID) ile Buharlaştırıcı oluşturulamadı" + +#~ msgid "Could not build TAZ with ID '" +#~ msgstr "' Kimlik ile TAB oluşturulamadı" + +#~ msgid "' in netedit; Invalid Shape." +#~ msgstr "' netedit'te; Geçersiz Şekil." + +#~ msgid "Could not build overhead wire with ID '" +#~ msgstr "' kimliğine (ID) sahip havai hat oluşturulamadı" + +#~ msgid "Could not build POI with ID '" +#~ msgstr "' Kimlik (ID) ile EN oluşturulamadı" + +#~ msgid "' in netedit; Network requires a geo projection." +#~ msgstr "' netedit'te; Ağ coğrafi projeksiyon gerektirir." + +#~ msgid "Could not build " +#~ msgstr "Oluşturulamadı " + +#~ msgid " with ID '" +#~ msgstr " ' Kimlik (ID) ile" + +#~ msgid "' in netedit; ID contains invalid characters." +#~ msgstr "' netedit'te; Kimlik (ID) geçersiz karakterler içeriyor." + +#~ msgid "' in netedit; Invalid position over lane." +#~ msgstr "' netedit'te; Şerit üzerinde geçersiz konum." + +#~ msgid "' in netedit; declared twice." +#~ msgstr "' netedit'te; iki kez bildirilmiştir." + +#~ msgid " doesn't exist." +#~ msgstr " yok." + +#~ msgid "' in netedit; attribute " +#~ msgstr "' netedit'te; Öznitelik " + +#~ msgid " cannot be negative." +#~ msgstr " negatif olamaz." + +#~ msgid "' in netedit; list of VTypes isn't valid." +#~ msgstr "' netedit'te; Araç Tipi (VTypes) listesi geçerli değil." + +#~ msgid "' in netedit; filename is invalid." +#~ msgstr "' netedit'te; dosya adı geçersiz." + +#~ msgid "' in netedit; list of lanes isn't valid." +#~ msgstr "' netedit'te; şeritlerin listesi geçerli değil." + +#~ msgid " in netedit; " +#~ msgstr " netedit'te; " + +#~ msgid "calibratorFlow of calibrator '" +#~ msgstr "' Kalibratörün kalibratör akımı (calibratorFlow)" + +#~ msgid "" +#~ "' cannot be written. Either type or vehsPerHour or speed must be enabled" +#~ msgstr "" +#~ "' yazılamaz. Tür veya saat başına araç veya hız etkinleştirilmelidir" + +#~ msgid "There is already a TAZ rel defined between '" +#~ msgstr "' arasında tanımlanmış bir TAB ilişkisi zaten var" + +#~ msgid "There is already a TAZ rel defined in '" +#~ msgstr "' içinde tanımlanmış bir TAB ilişkisi zaten var" + +#~ msgid "' doesn't exist." +#~ msgstr "' yok." + +#~ msgid " in netedit; edge doesn't exist." +#~ msgstr " netedit'te; kesim mevcut değil." + +#~ msgid " in netedit; attribute '" +#~ msgstr " netedit'te; öznitelik '" + +#~ msgid "There is another " +#~ msgstr "Başka bir tane daha var " + +#~ msgid " with the same ID='" +#~ msgstr " aynı kimliğe sahip (ID)='" + +#~ msgid " need at least one " +#~ msgstr " en az bir tane gerekir " + +#~ msgid " with id '" +#~ msgstr " ' Kimlik (ID) ile" + +#~ msgid "' doesn't exist in " +#~ msgstr "' içinde yok " + +#~ msgid "Invalid definition for " +#~ msgstr "için geçersiz tanım " + +#~ msgid " in " +#~ msgstr " içinde " + +#~ msgid "' cannot be created in " +#~ msgstr "' içinde oluşturulamaz " + +#~ msgid "Invalid vehicle type '" +#~ msgstr "Geçersiz araç tipi '" + +#~ msgid "' used in " +#~ msgstr "' içinde kullanılan " + +#~ msgid " used in " +#~ msgstr " içinde kullanılan " + +#~ msgid "Invalid route '" +#~ msgstr "Geçersiz rota'" + +#~ msgid "Invalid " +#~ msgstr "Geçersiz " + +#~ msgid " is greater than number of lanes" +#~ msgstr " şerit sayısından daha büyük" + +#~ msgid " is greater than vType" +#~ msgstr " Araç Tipi'nden (vType) daha büyük" + +#~ msgid "Invalid person type '" +#~ msgstr "Geçersiz yolcu tipi '" + +#~ msgid "Invalid personFlow type '" +#~ msgstr "Geçersiz yolcu akımı (personFlow) türü '" + +#~ msgid "Containers don't support stops at busStops" +#~ msgstr "Konteynerler otobüs duraklarındaki durakları desteklemez" + +#~ msgid "A transport with edges attribute needs a list of edges" +#~ msgstr "" +#~ "Kesimler özelliğine sahip bir taşıma, kesimlerin bir listesine ihtiyaç " +#~ "duyar" + +#~ msgid "A route transport needs a route" +#~ msgstr "Bir rota taşımacılığının bir rotaya ihtiyacı vardır" + +#~ msgid "Via edge '" +#~ msgstr "Kesim üzerinden '" + +#~ msgid "- 'Start drawing' or ENTER" +#~ msgstr "- 'Çizime başla' veya ENTER" + +#~ msgid " to create shape." +#~ msgstr " şekil oluşturmak için." + +#~ msgid "- 'Stop drawing' or ENTER to" +#~ msgstr "- 'Çizimi durdur' veya ENTER" + +#~ msgid " finish shape creation." +#~ msgstr " şekil oluşturmayı bitir." + +#~ msgid "- 'Abort drawing' or ESC to" +#~ msgstr "- 'Çizimi iptal et' veya ESC" + +#~ msgid " abort shape creation." +#~ msgstr " şekil oluşturmayı iptal et." + +#~ msgid "- 'Shift + Click' to remove" +#~ msgstr "- Kaldırmak için 'Shift + Tıkla'" + +#~ msgid " last inserted point." +#~ msgstr " Son eklenen nokta." + +#~ msgid "-Click over edge to" +#~ msgstr "-için kesimin üzerine tıkla" + +#~ msgid " create or edit" +#~ msgstr " oluştur veya düzenle" + +#~ msgid " geometry point." +#~ msgstr " geometri noktası." + +#~ msgid "-Shift+click over edge" +#~ msgstr "-Shift+kesim üzerine tıkla" + +#~ msgid " to edit start or end" +#~ msgstr " başlangıcı veya sonu düzenlemek için" + +#~ msgid "- Shift+Click to select parent\n" +#~ msgstr "- Ebeveyn seçmek için Shift+Tıkla\n" + +#~ msgid "- Click over a bus stop to\n" +#~ msgstr "- Bir otobüs durağının üzerine tıklayarak\n" + +#~ msgid " create a stop." +#~ msgstr " bir durak oluştur." + +#~ msgid "- Click over a container stop\n" +#~ msgstr "- Bir konteyner durağının üzerine tıkla\n" + +#~ msgid " to create a stop." +#~ msgstr " bir durak oluşturmak için." + +#~ msgid "- Click over a charging station\n" +#~ msgstr "- Bir şarj istasyonunun üzerine tıklayın\n" + +#~ msgid "- Click over a parking area\n" +#~ msgstr "- Bir park alanının üzerine tıklayın\n" + +#~ msgid "- Click over a lane to create\n" +#~ msgstr "- Oluşturmak için bir şeridin üzerine tıklayın\n" + +#~ msgid " a stop." +#~ msgstr " Bir durak." + +#~ msgid "- No stop parents in current\n" +#~ msgstr "- Mevcut durumda durak ebeveynleri yok\n" + +#~ msgid " network." +#~ msgstr " Ağ." + +#~ msgid "VType Distributions" +#~ msgstr "Araç Türü (VType) Dağılımları" + +#~ msgid "Show VType Distributions" +#~ msgstr "Araç Türü (VType) Dağılımlarını Göster" + +#~ msgid "- Click over a route to\n" +#~ msgstr "- Bir rotanın üzerine tıklayarak\n" + +#~ msgid " create a vehicle." +#~ msgstr " bir araç oluştur." + +#~ msgid "- Select two edges to\n" +#~ msgstr "- İki kesim seçmek için\n" + +#~ msgid " create a Trip." +#~ msgstr " Bir seyahat oluştur." + +#~ msgid " create a vehicle with\n" +#~ msgstr " ile bir araç oluştur\n" + +#~ msgid " embedded route." +#~ msgstr " gömülü rota." + +#~ msgid "- Select two junctions\n" +#~ msgstr "- İki kavşak seç\n" + +#~ msgid " to create a Trip." +#~ msgstr " Seyahat oluşturmak için." + +#~ msgid " create a routeFlow." +#~ msgstr " Bir rota akımı oluştur." + +#~ msgid " create a flow." +#~ msgstr " Bir akım oluştur." + +#~ msgid " create a flow with\n" +#~ msgstr " ile bir akım oluştur\n" + +#~ msgid " to create a flow." +#~ msgstr " bir akım oluşturmak için." + +#~ msgid "List ofe dges cannot be empty" +#~ msgstr "Kesim listesi boş olamaz" + +#~ msgid "-Hold while" +#~ msgstr " tuşunu basılı tutarken" + +#~ msgid " clicking to create" +#~ msgstr " oluşturmak için tıkla" + +#~ msgid " unyielding connections" +#~ msgstr " Yol vermeyen bağlantılar" + +#~ msgid " (pass=true)." +#~ msgstr " (pass=true)." + +#~ msgid "-Hold while" +#~ msgstr " tuşunu basılı tutarken" + +#~ msgid " clicking to create " +#~ msgstr " oluşturmak için tıklayın " + +#~ msgid " conflicting connections" +#~ msgstr " çatışan bağlantılar" + +#~ msgid " (i.e. at zipper nodes" +#~ msgstr " (örneğin fermuar düğümlerinde" + +#~ msgid " or with incompatible" +#~ msgstr " veya uyumsuz" + +#~ msgid " permissions" +#~ msgstr " izinler" + +#~ msgid "- ESC:" +#~ msgstr "- ESC:" + +#~ msgid " Deselect origin" +#~ msgstr " Kaynak seçimini kaldır" + +#~ msgid "- Control+Click:" +#~ msgstr "- Kontrol+Tıkla:" + +#~ msgid " Move view" +#~ msgstr " Görünümü taşı" + +#~ msgid "- Shift+Click:" +#~ msgstr "- Shift+Tıkla:" + +#~ msgid " Splits edge in both directions" +#~ msgstr " Kesimi her iki yönde de böler" + +#~ msgid "- Alt+Shift+Click:" +#~ msgstr "- Alt+Shift+Tıkla:" + +#~ msgid " Splits edge in one direction" +#~ msgstr " Kesimi tek yönde böler" + +#~ msgid "-Click over junction to" +#~ msgstr "-için kavşak üzerine tıklayın" + +#~ msgid " mark candidate edges." +#~ msgstr " aday kesimleri işaretle." + +#~ msgid "-Click over candidate" +#~ msgstr "-Adayın üzerine tıkla" + +#~ msgid " edges for selecting." +#~ msgstr " seçim için kesimler." + +#~ msgid "- Toggle Membership:" +#~ msgstr "- Üyeliği Değiştir:" + +#~ msgid " Create new Sources/Sinks" +#~ msgstr " Yeni Kaynaklar/Alıcılar oluştur" + +#~ msgid " with given weights." +#~ msgstr " verilen ağırlıklar ile." + +#~ msgid "- Keep Membership:" +#~ msgstr "- Üyeliği Sürdür:" + +#~ msgid "- Press ESC to clear" +#~ msgstr "- Temizlemek için ESC tuşuna basın" + +#~ msgid " current selection." +#~ msgstr " Mevcut seçim." + +#~ msgid "Accept settings" +#~ msgstr "Ayarları kabul et" + #~ msgid "Configure Options" #~ msgstr "Yapılandırma Seçenekleri" diff -Nru sumo-1.17.0/data/po/tr_py.po sumo-1.18.0/data/po/tr_py.po --- sumo-1.17.0/data/po/tr_py.po 1970-01-01 00:00:00.000000000 +0000 +++ sumo-1.18.0/data/po/tr_py.po 2023-06-28 20:02:17.000000000 +0000 @@ -0,0 +1,134 @@ +# Turkish translations for sumo package. +# Copyright (C) 2023 THE sumo'S COPYRIGHT HOLDER +# This file is distributed under the same license as the sumo package. +# Automatically generated, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: sumo\n" +"Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" +"POT-Creation-Date: 2023-05-26 14:09+0200\n" +"PO-Revision-Date: 2023-05-11 18:10+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: D:\Repos\sumo/tools/game\runner.py:63 +msgid "Interactive Traffic Light" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:64 +msgid "Research intersection Ingolstadt" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:65 +msgid "Simple Junction" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:66 +msgid "Simple Junction (Demo)" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:67 +msgid "Four Junctions" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:68 +msgid "Six Junctions" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:69 +msgid "Prof. Kühne" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:70 +msgid "3D Junction Virtual World" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:71 +msgid "3D Junction OpenStreetMap" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:72 +msgid "Highway Ramp" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:73 +msgid "Combined Highway On and Off Ramp" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:74 +msgid "Corridor" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:75 +msgid "Highway Ramp A10" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:76 +msgid "Demand Responsive Transport (new)" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:77 +msgid "DRT - Advanced (new)" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:78 +msgid "DRT - Demo" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:79 D:\Repos\sumo/tools/game\runner.py:89 +msgid "Highscore" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:80 +msgid "Reset Highscore" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:81 +msgid "German" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:82 +msgid "English" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:83 +msgid "Italian" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:84 +msgid "Spanish" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:85 +msgid "French" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:86 +msgid "Chinese (simplified)" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:87 +msgid "Chinese (traditional)" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:88 +msgid "Quit" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:90 +msgid "Congratulations!" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:91 +msgid "Your Score" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:92 +msgid "Continue" +msgstr "" diff -Nru sumo-1.17.0/data/po/tr_sumo.po sumo-1.18.0/data/po/tr_sumo.po --- sumo-1.17.0/data/po/tr_sumo.po 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/po/tr_sumo.po 2023-06-28 20:02:17.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: sumo\n" "Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" -"POT-Creation-Date: 2023-04-15 12:21+0200\n" +"POT-Creation-Date: 2023-06-15 09:59+0200\n" "PO-Revision-Date: 2023-03-20 14:25+0000\n" "Last-Translator: Necip Güzel \n" "Language-Team: Turkish )." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:76 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:76 #, fuzzy msgid "Could not open detector file '%'" msgstr "Sinyal '%' İçin Kesim '%' Bulunamadı." -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:88 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:88 msgid "No detectors found." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:103 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:103 #, fuzzy, c-format msgid "The measure-file '%' can not be opened." msgstr "'%' Kesimi Trafik Işığı Bulunamadı." -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:124 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:124 msgid "Removing empty detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:128 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:128 msgid "Scanning for empty detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:143 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:143 msgid "No source detectors found." msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:147 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:147 msgid "Computing routes" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:158 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:158 msgid "The detector types are not defined; use in combination with a network" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:162 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:162 msgid "The emitters have no routes; use in combination with a network" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:193 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:193 msgid "Rechecking loaded flows" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:198 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:198 msgid "Writing emitters" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:210 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:210 msgid "Writing emitter pois" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:217 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:217 msgid "Writing speed triggers" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:224 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:224 msgid "Writing validation detectors" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:231 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:231 msgid "Writing highway end rerouter" msgstr "" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:251 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:251 msgid "Builds vehicle routes for SUMO using detector values." msgstr "Dedektör Değerlerini Kullanarak SUMO İçin Araç Rotaları Oluşturur." -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:69 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:69 msgid "Write generated route alternatives to FILE" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:72 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:72 msgid "Write edge splits and connectivity to FILE" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:75 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:75 msgid "Write intermodal edges with lengths and travel times to FILE" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:78 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:78 msgid "Write trips instead of vehicles (for validating trip input)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:81 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:81 msgid "Write trips with geo-coordinates" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:84 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:84 msgid "Write trips with fromJunction and toJunction" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:87 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:87 msgid "Include the cost attribute in route output" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:92 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:559 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:92 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:565 msgid "" "Edge weights for routing are dynamically disturbed by a random factor drawn " "uniformly from [1,FLOAT)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:95 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:118 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:95 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:118 msgid "" "Aggregation period for the given weight files; triggers rebuilding of " "Contraction Hierarchy" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:98 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:112 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:568 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:98 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:112 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:574 msgid "" "Consider edge priorities in addition to travel times, weighted by factor" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:101 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:574 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:101 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:580 msgid "" "Initialize lookup table for astar from the given file (generated by marouter " "--all-pairs-output)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:104 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:577 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:104 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:583 msgid "Initialize lookup table for astar ALT-variant from the given file" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:107 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:107 msgid "Save lookup table for astar ALT-variant to the given file" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:117 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:206 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:117 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:206 msgid "Use FLOAT as Gawron's beta" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:121 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:210 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:121 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:210 msgid "Use FLOAT as Gawron's a" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:124 -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:62 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:213 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:124 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:62 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:213 msgid "Write exit times (weights) for each edge" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:127 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:251 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:127 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:251 msgid "Include total route length in the output" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:130 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:216 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:130 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:216 msgid "Save routes with near zero probability" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:133 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:219 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:133 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:219 msgid "Only reuse routes from input, do not calculate new ones" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:136 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:136 msgid "The probability of keeping the old route" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:139 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:139 msgid "Route all public transport input" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:142 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:202 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:142 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:202 msgid "Choose a route choice method: gawron, logit, or lohse" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:145 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:145 msgid "Use c-logit model (deprecated in favor of --route-choice-method logit)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:149 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:149 msgid "Use FLOAT as logit's beta" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:153 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:153 msgid "Use FLOAT as logit's gamma" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:157 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:157 msgid "Use FLOAT as logit's theta (negative values mean auto-estimation)" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:160 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:580 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:160 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:586 msgid "" "Use FLOAT as a factor on pedestrian maximum speed during intermodal routing" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:163 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:583 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:163 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:589 msgid "" "Use FLOAT as a factor on walking speed against vehicle traffic direction" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:170 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:590 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:170 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:596 msgid "Where taxis can drop off customers ('allJunctions, 'ptStops')" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:173 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:593 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:173 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:599 msgid "Where taxis can pick up customers ('allJunctions, 'ptStops')" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:176 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:599 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:176 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:605 msgid "Estimated time for taxi pickup" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:179 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:602 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:179 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:608 msgid "" "Use FLOAT as a maximum train length when initializing the railway router" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:216 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:216 msgid "Routing algorithm '%' does not support weight-attribute '%'." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:220 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:220 #, c-format msgid "Routing algorithm '%' does not support bulk routing." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:228 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:243 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:228 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:243 #, fuzzy msgid "Invalid route choice method '%'." msgstr "Araç '%' İçin Geçersiz Rota Değişimi. %" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:232 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:232 msgid "" "The --logit option is deprecated, please use --route-choice-method logit." msgstr "" "--logit Seçeneği Kullanımdan Kaldırıldı, Lütfen --route-choice-method " "Mantığını Kullanın." -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:244 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:244 msgid "Cannot derive file name for alternatives output, skipping it." msgstr "Alternatifler Çıktısı İçin Dosya Adı Türetilemiyor, Geçiliyor." -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:251 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:251 msgid "" "Option --write-trips.junctions takes no affect when --write-trips is " "disabled." @@ -737,22 +742,22 @@ "--write-trips.junctions Seçeneği, --write-trips Devre Dışı Bırakıldığında " "Hiçbir Etki Oluşturmaz." -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:107 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:107 #, c-format msgid "Routing algorithm '%' does not support restriction-params" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:151 -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:180 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:151 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:180 msgid "Unknown routing Algorithm '%'!" msgstr "" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:178 -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:210 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:178 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:210 msgid "No weight data was loaded for attribute '%'." msgstr "" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:238 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:238 msgid "" "Shortest path router and DUE computer for the microscopic, multi-modal " "traffic simulation SUMO." @@ -760,104 +765,104 @@ "Mikroskopik, Çok Modlu Trafik Simülasyonu SUMO İçin En Kısa Yol Rotalayıcı " "ve DUE Hesaplayıcı." -#: /home/micha/programming/sumo/src/jtrrouter/ROJTREdge.cpp:64 +#: D:\Repos\sumo/src\jtrrouter\ROJTREdge.cpp:64 #, c-format msgid "The edges '%' and '%' are not connected." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:59 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:59 msgid "Read turning ratios from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:69 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:69 msgid "Use STR[] as default turn definition" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:73 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:73 msgid "Use STR[] as list of sink edges" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:76 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:76 msgid "Whether all edges are allowed as sink edges" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:79 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:79 msgid "Ignore road restrictions based on vehicle class" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:82 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:82 msgid "Allow to re-use a road" msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:85 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:85 msgid "Use all source edges as sink edges." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:88 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:88 msgid "" "Subtract upstream flow when inserting a new flow. When option --sources-are-" "sinks is set, the upstream flow is limited to the value of the source flow " "and the remaining part terminates." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:68 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:68 msgid "" "The turn-file format with elements %, % is deprecated, please use % instead." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:87 -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:143 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:87 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:143 #, c-format msgid "The edge '%' declared as a sink is not known." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:116 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:116 msgid "Ignoring flow '%' without 'from'" msgstr "'%' Akımı 'Başlangıcı' Olmadan Yok Sayılıyor" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:128 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:128 #, fuzzy, c-format msgid "The edge '%' declared as a source is not known." msgstr "Akım Kaynağının Negatif Düğümü Toprak Değildir." -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:152 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:152 #, fuzzy, c-format msgid "" "The edge '%' is not known within the network (within a 'from-edge' tag)." msgstr "Hedef Kesim '%', '%' ile Bağlantılı Değil; Bağlantı Sıfırlanamaz." -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:172 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:172 #, c-format msgid "The edge '%' is not known within the network (within a 'to-edge' tag)." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:178 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:178 msgid "'probability' must be positive (in definition of to-edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:201 -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:206 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1302 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1400 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:201 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:206 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1302 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1400 #, fuzzy, c-format msgid "The edge '%' is not known." msgstr "Kesim '%' Hiçbir Şeride Sahip Değil." -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:210 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:210 msgid "'probability' must be positive (in edgeRelation from '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:94 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:94 msgid "" "The defaults for turnings must be a tuple of at least two numbers divided by " "','." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:101 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:101 msgid "A turn default is not numeric." msgstr "" -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:182 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:182 msgid "" "Router for the microscopic, multi-modal traffic simulation SUMO based on " "junction turning ratios." @@ -865,11 +870,11 @@ "Mikroskopik, Çok Modlu Trafik Simülasyonu SUMO İçin Kavşak Dönüş Oranları " "Bazlı Rotalayıcı." -#: /home/micha/programming/sumo/src/libsumo/GUI.cpp:330 +#: D:\Repos\sumo/src\libsumo\GUI.cpp:332 msgid "This system has no OpenGL support. Exiting." msgstr "Bu sistemin OpenGL desteği yoktur. Çıkılıyor." -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:904 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:904 #, c-format msgid "" "Ignoring veh '%' no-opposite subscription filter for geographic range object " @@ -878,7 +883,7 @@ "Araç '%' Yok Sayılıyor. Coğrafi Aralık Nesne Koleksiyonu İçin Karşıt Olmayan " "Abonelik Filtresi. 'Şeritler' Filtresini Kullanmayı Dikkate Alın." -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1067 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1067 msgid "" "Lanes filter is only feasible for context domain 'vehicle' (current is '%'), " "ignoring filter..." @@ -886,7 +891,7 @@ "Şerit Filtresi Yalnızca 'Araç' Bağlam Alanı İçin Uygundur (Geçerli Olan " "'%'), Filtre Yok Sayılıyor..." -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1164 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1164 msgid "" "Turn filter is only feasible for context domain 'vehicle' (current is '%'), " "ignoring filter..." @@ -894,7 +899,7 @@ "Dönüş Filtresi Yalnızca Bağlam Alanı 'Araç' (Geçerli Olan '%') İçin " "Uygundur, Filtre Yok Sayılıyor..." -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1229 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1229 msgid "" "Field of vision opening angle ('%') should be within interval (0, 360), " "ignoring filter..." @@ -902,82 +907,83 @@ "Görüş Alanı Açılma Açısı ('%') (0, 360) Aralığında Olmalıdır, Filtre Yok " "Sayılıyor..." -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1341 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1341 msgid "" "addSubscriptionFilterLateralDistance could not determine shape of lane '%' " "with a lateral shift of %." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1399 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1399 msgid "Vehicle '%' was removed though being controlled by TraCI" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1408 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1408 msgid "Person '%' was removed though being controlled by TraCI" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/MeanData.cpp:83 +#: D:\Repos\sumo/src\libsumo\MeanData.cpp:83 msgid "Found % meanData definitions with id '%'." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Person.cpp:530 +#: D:\Repos\sumo/src\libsumo\Person.cpp:535 #, c-format msgid "" "Departure time=% for person '%' is in the past; using current time=% instead." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Person.cpp:929 -msgid "Could not determine position on lane '% at lateral position %." +#: D:\Repos\sumo/src\libsumo\Person.cpp:934 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1741 +msgid "Could not determine position on lane '%' at lateral position %." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Simulation.cpp:105 +#: D:\Repos\sumo/src\libsumo\Simulation.cpp:105 msgid "Simulation version % started via libsumo with time: %." msgstr "Simülasyon Versiyonu % libsumo Kanalıyla % Sürede Başlatıldı." -#: /home/micha/programming/sumo/src/libsumo/Simulation.cpp:699 +#: D:\Repos\sumo/src\libsumo\Simulation.cpp:699 msgid "" "Ignoring vehicle type '%' when performing intermodal routing because it is " "not allowed on the start edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/TrafficLight.cpp:697 +#: D:\Repos\sumo/src\libsumo\TrafficLight.cpp:697 #, c-format msgid "" "Cannot check for all deadlocks on swapConstraints because the route for " "vehicle '%' is not computed yet" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1122 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1133 msgid "" "Stop replacement parameter 'teleport=%' ignored for vehicle '%' when only " "removing stop." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1231 -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1354 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1246 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1374 msgid "Unsupported parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1306 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1326 msgid "Waypoint (speed = %) at index % does not support triggers" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1340 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1360 msgid "" "Triggered stop at index % cannot be changed into a waypoint by setting speed " "to %" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1457 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1477 #, c-format msgid "Ignoring changeLaneRelative for vehicle '%' that isn't on the road" msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1459 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1479 msgid "Ignoring indexOffset % for vehicle '%' on laneIndex %." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1551 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1575 #, fuzzy, c-format msgid "" "Departure time for vehicle '%' is in the past; using current time instead." @@ -985,189 +991,185 @@ "'%' Aracı İçin Geçersiz % departPos Verildi. Bunun Yerine Şerit Sonuna " "Ekleniyor." -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1717 -msgid "Could not determine position on lane '%' at lateral position %." -msgstr "" - -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1914 -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:422 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1938 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:422 msgid "Invalid route replacement for vehicle '%'. %" msgstr "Araç '%' İçin Geçersiz Rota Değişimi. %" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:2597 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:2634 msgid "" "Ignoring lane change subscription filter with non-neighboring lane offset " "direction=%." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/VehicleType.cpp:289 +#: D:\Repos\sumo/src\libsumo\VehicleType.cpp:322 #, c-format msgid "Automatically setting emergencyDecel to % for vType '%' to match decel." msgstr "" -#: /home/micha/programming/sumo/src/libsumo/VehicleType.cpp:301 +#: D:\Repos\sumo/src\libsumo\VehicleType.cpp:334 msgid "New value of emergencyDecel (%) is lower than decel (%)" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAAssignments.cpp:190 +#: D:\Repos\sumo/src\marouter\ROMAAssignments.cpp:190 #, fuzzy msgid "Unknown origin '%'." msgstr "Bilinmeyen '%' Otobüs Durağı." -#: /home/micha/programming/sumo/src/marouter/ROMAAssignments.cpp:194 +#: D:\Repos\sumo/src\marouter\ROMAAssignments.cpp:194 #, fuzzy msgid "Unknown destination '%'." msgstr "Bilinmeyen '%' Otobüs Durağı." -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:71 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:121 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:71 +#: D:\Repos\sumo/src\od2trips_main.cpp:121 msgid "Does not save vtype information" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:74 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:74 msgid "Writes edge loads and final costs into FILE" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:77 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:77 msgid "Writes complete distance matrix into FILE" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:81 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:85 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:81 +#: D:\Repos\sumo/src\od2trips_main.cpp:85 msgid "Loads O/D-files from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:86 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:90 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:86 +#: D:\Repos\sumo/src\od2trips_main.cpp:90 msgid "Loads O/D-matrix in Amitran format from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:89 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:93 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:89 +#: D:\Repos\sumo/src\od2trips_main.cpp:93 msgid "Loads O/D-matrix in tazRelation format from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:93 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:97 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:93 +#: D:\Repos\sumo/src\od2trips_main.cpp:97 msgid "Define data attribute for loading counts (default 'count')" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:96 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:96 msgid "The travel time influence of prior intervals" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:99 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:99 msgid "Parameter key(s) defining source (and sink) taz" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:102 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:102 msgid "Ignore attributes 'fromTaz' and 'toTaz'" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:106 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:106 msgid "" "Defines the time interval when aggregating single vehicle input; Defaults to " "one hour" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:109 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:109 msgid "Ignore edge priorities when calculating capacities and restraints" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:115 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:115 msgid "" "Aggregate routing queries with the same origin for different vehicle types" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:153 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:137 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:153 +#: D:\Repos\sumo/src\od2trips_main.cpp:137 msgid "Scales the loaded flows by FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:156 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:146 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:156 +#: D:\Repos\sumo/src\od2trips_main.cpp:146 msgid "Defines the name of the vehicle type to use" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:159 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:159 msgid "Defines the prefix for vehicle flow names" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:162 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:152 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:162 +#: D:\Repos\sumo/src\od2trips_main.cpp:152 msgid "Uses STR[] as a timeline definition" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:165 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:155 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:165 +#: D:\Repos\sumo/src\od2trips_main.cpp:155 msgid "Uses STR as a 24h-timeline definition" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:168 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:168 msgid "Keep traffic flows of all time slots in the net" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:172 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:172 msgid "Choose a assignment method: incremental, UE or SUE" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:175 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:175 msgid "Use FLOAT as tolerance when checking for SUE stability" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:178 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:178 msgid "" "Use left-turn penalty FLOAT to calculate link travel time when searching " "routes" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:181 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:181 msgid "" "Use INTEGER as the number of paths needed to be searched for each OD pair at " "each iteration" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:184 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:184 msgid "Penalize existing routes with FLOAT to find secondary routes" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:188 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:188 msgid "Use FLOAT as the upper bound to determine auxiliary link cost" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:192 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:192 msgid "Use FLOAT as the lower bound to determine auxiliary link cost" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:195 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:195 msgid "" "maximal number of iterations for new route searching in incremental and " "stochastic user assignment" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:198 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:198 msgid "" "maximal number of inner iterations for user equilibrium calculation in the " "stochastic user assignment" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:223 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:223 msgid "Use FLOAT as (c-)logit's beta for the commonality factor" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:227 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:227 msgid "Use FLOAT as (c-)logit's gamma for the commonality factor" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:231 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:231 msgid "Use FLOAT as (c-)logit's theta" msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:239 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:239 msgid "Invalid assignment method '%'." msgstr "" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:247 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:247 msgid "" "Contraction hierarchies do not work with k shortest path search (please use " "a different routing algorithm)!" @@ -1175,11 +1177,11 @@ "Daraltma Hiyerarşileri En Kısa Yol Araması ile Çalışmaz (Lütfen Başka Bir " "Rotalama Algoritması Kullanın)!" -#: /home/micha/programming/sumo/src/marouter/ROMARouteHandler.cpp:87 +#: D:\Repos\sumo/src\marouter\ROMARouteHandler.cpp:87 msgid "No origin or no destination given, ignoring '%'!" msgstr "" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:239 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:239 msgid "" "Deterministic user equilibrium ('UE') is not implemented yet, using " "stochastic method ('SUE')." @@ -1187,13 +1189,13 @@ "Deterministik Kullanıcı Dengesi ('UE') Henüz Uygulanmadı, Stokastik Metot " "('SUE') Kullanılıyor." -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:323 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:315 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:323 +#: D:\Repos\sumo/src\od2trips_main.cpp:315 #, fuzzy msgid "No output file given." msgstr "Herhangi Bir Çıktı Belirlenmemiş." -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:340 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:340 msgid "" "Import O/D-matrices for macroscopic traffic assignment to generate SUMO " "routes." @@ -1201,37 +1203,37 @@ "Makroskopik Trafik Atamaları ile SUMO Rotaları Oluşturmak İçin B/V " "Matrislerini İçeri Aktarın." -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:376 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:376 msgid "No districts loaded, will use edge ids!" msgstr "Herhangi Bir Bölge Yüklenmedi, Kesim No'ları Kullanılacak." -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:387 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:387 msgid "No valid vehicles loaded." msgstr "" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:390 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:285 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:390 +#: D:\Repos\sumo/src\od2trips_main.cpp:285 #, fuzzy msgid "Loading failed." msgstr "Yükleme Tamamlandı." -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:89 -#: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:66 -#: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:184 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:89 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:66 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:185 msgid "Vehicle '%' teleports beyond arrival edge '%', time=%." msgstr "Araç '%', '%' Varış Sınırının Ötesine Işınlanır, Zaman=%." -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:109 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:109 msgid "Vehicle '%' ends teleporting on edge '%':%, time=%." msgstr "Araç '%', '%' Kenarında Işınlanmayı Bitirir: %, Zaman=%." -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:167 -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:197 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:167 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:197 msgid "Teleporting vehicle '%'; waited too long, from edge '%':%, time=%." msgstr "" "Işınlanan Araç '%'; '%' Giriş Kesiminde Çok Uzun Süre Bekledi: %, Zaman=%." -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:187 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:187 msgid "" "Teleporting vehicle '%'; waited too long, from edge '%':% to edge '%':%, " "time=%." @@ -1239,32 +1241,32 @@ "Işınlanan Araç '%'; '%':% Kesiminden '%':% Kesimine Kadar Çok Uzun Süre " "Bekledi, Zaman=%." -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:137 -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:603 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:137 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:603 msgid "Clearing jam at calibrator '%' at time=%." msgstr "% Zamanında '%' Kalibratöründeki Sıkışıklık Gideriliyor." -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:145 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:145 msgid "Could not clear jam at calibrator '%' at time=%." msgstr "% Zamanında '%' Kalibratöründeki Sıkışıklık Giderilemedi." -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:177 -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:414 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:177 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:414 msgid "No valid routes in calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:181 -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:418 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:181 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:418 msgid "Route '%' in calibrator '%' does not contain edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:220 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:220 msgid "Join stops are not available in meso yet (vehicle '%', segment '%')." msgstr "" "Birleştirme Durakları Henüz Bölgesel Ölçekte Mevcut Değil (Araç '%', Segment " "'%')." -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:247 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:247 msgid "" "Vehicle '%' has multiple stops on segment '%', time=% (stop-output will be " "merged)." @@ -1272,99 +1274,93 @@ "'%' Aracının '%' Segmentinde Birden Fazla Durağı Var, Zaman=% (stop-output " "Birleştirilecek)." -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:370 -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1669 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:370 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1656 #, c-format msgid "" "Vehicle '%' ignores triggered stop on lane '%' due to capacity constraints." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:387 -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1684 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:387 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1671 #, c-format msgid "" "Vehicle '%' ignores container triggered stop on lane '%' due to capacity " "constraints." msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:554 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:554 msgid "Error: Invalid vehicles in state (may be a micro state)!" msgstr "" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.h:188 -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.h:194 -#, fuzzy -msgid "parkingZoneReroute not implemented for meso" -msgstr "resume Bölgesel Ölçek İçin Henüz Uygulanmadı" - -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:172 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:172 msgid "Changing a vehicle ID is not permitted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:289 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:289 msgid "Vehicle '%' is not allowed on any lane of via edge '%'." msgstr "'%' Aracına '%' Kanal Kesiminin Herhangi Bir Şeridinde İzin Verilmez." -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:317 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:317 msgid "Vehicle '%' has no valid route from edge '%' to stop edge '%'." msgstr "" "Araç '%', '%' Kesiminden '%' Durak Kesimine Kadar Geçerli Bir Rotaya Sahip " "Değil." -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:361 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:361 #, c-format msgid "Vehicle '%' has no valid route." msgstr "'%' Aracının Geçerli Bir Rotası Yok." -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:363 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:363 msgid "Removing vehicle '%' which has no valid route." msgstr "Geçerli Rotası Olmayan '%' Aracı Kaldırılıyor." -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:377 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:377 #, c-format msgid "No route for vehicle '%' found." msgstr "'%' Aracı İçin Rota Bulunamadı." -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:447 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:447 #, c-format msgid "current edge '%' not found in new route" msgstr "Geçerli Kesim '%' Yeni Rotada Bulunamadı" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:460 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:460 msgid "Vehicle is on junction-internal edge leading elsewhere" msgstr "Araç Başka Bir Yere Yönlenen Kavşağın İç Kenarında" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:473 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:473 msgid "" "Vehicle is moving past junction and committed to move to another successor " "edge" msgstr "Araç Kavşaktan Hareket Ediyor ve Başka Bir Ardıl Kesime Geçmeye İşli" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:543 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:543 msgid "Vehicle '%' could not assign stop '%' after rerouting (%) at time=%." msgstr "" "Araç '%', % Zamanda Yeniden Rota Belirlendikten (%) Sonra '%' Durağını " "Atayamadı." -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:683 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:683 msgid "No connection between edge '%' and edge '%'." msgstr "'%' Kesimi ve '%' Kesimi Arasında Bağlantı Yok." -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:692 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:692 #, c-format msgid "Edge '%' prohibits." msgstr "Kesim '%' Yasaklar." -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:706 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:706 #, c-format msgid "Vehicle '%' is not allowed to depart on its first edge." msgstr "'%' Aracının İlk Kesiminden Ayrılmasına İzin Verilmez." -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:736 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:736 msgid "Vehicle '%' has no valid route. %" msgstr "'%' Aracının Geçerli Bir Rotası Yok. %" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:799 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:799 msgid "" "Vehicle '%' ignores attribute arrivalEdge=% after rerouting at time=% " "(routeLength=%)" @@ -1372,39 +1368,39 @@ "'%' Aracı % Zamanda Yeniden Rotalama Yapıldıktan Sonra arrivalEdge=% " "Özniteliğini Yok Sayar (routeLength=%)" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:813 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:813 msgid "Vehicle '%' will not be able to arrive at the given position!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:833 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:833 msgid "Vehicle '%' will not be able to arrive at the given lane '%_%'!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:845 -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:857 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:845 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:857 msgid "Vehicle '%' has no usable arrivalLane on edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:869 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:869 #, fuzzy msgid "Vehicle '%' will not be able to arrive with the given speed!" msgstr "'%' Aracının İlk Kesiminden Ayrılmasına İzin Verilmez." -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:885 -msgid "Ignoring departEdge % for vehicle '% with % route edges" +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:885 +msgid "Ignoring departEdge % for vehicle '%' with % route edges" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.h:879 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.h:909 #, fuzzy msgid "getLeader not yet implemented for meso" msgstr "setSpeed Bölgesel Ölçek İçin Henüz Uygulanmadı" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.h:893 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.h:923 #, fuzzy msgid "getFollower not yet implemented for meso" msgstr "getStopState Bölgesel Ölçek İçin Henüz Uygulanmadı" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:660 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:660 msgid "" "Choosing new speed factor % for vehicle '%' to match departure speed % (max " "%)." @@ -1412,610 +1408,622 @@ "'%' Aracının % Kalkış Hızına (Maksimum %) Uyması İçin Yeni Hız Faktörü % " "Seçiliyor." -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1264 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1264 #, fuzzy, c-format msgid "Bidi-edge '%' does not exist" msgstr "Kesim '%' Hiçbir Şeride Sahip Değil." -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1277 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1277 msgid "Ambiguous superposable edges between junction '%' and '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1308 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1308 #, c-format msgid "Edge '%s' and bidi edge '%s' have no matching bidi lanes" msgstr "" "Kesim '%s' ve Çift Yönlü Kesim '%s' Eşleşen Çift Yönlü Şeritlere Sahip Değil" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:78 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:78 msgid "Load road network description from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:83 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:83 msgid "Load routes descriptions from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:87 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:87 msgid "Load further descriptions from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:91 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:91 msgid "Load edge/lane weights for online rerouting from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:94 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:108 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:94 +#: D:\Repos\sumo/src\router\ROFrame.cpp:108 msgid "Name of the xml attribute which gives the edge weight" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:97 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:97 msgid "Loads a network state from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:99 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:99 msgid "Shifts all times loaded from a saved state by the given offset" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:101 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:101 msgid "Removes vehicles with the given IDs from the loaded state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:104 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:134 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:104 +#: D:\Repos\sumo/src\router\ROFrame.cpp:134 msgid "" "Initialize a TAZ for every junction to use attributes toJunction and " "fromJunction" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:114 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:114 msgid "Save complete network states into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:119 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:119 msgid "Write also empty edges completely when dumping" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:124 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:124 msgid "Write positions and speeds with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:128 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:128 msgid "Save the emission values of each vehicle" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:130 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:130 msgid "Write emission values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:132 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:132 msgid "Save the positions in emission output using geo-coordinates (lon/lat)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:135 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:135 msgid "" "Write emission values scaled to the step length rather than as per-second " "values" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:138 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:138 msgid "Save the battery values of each vehicle" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:140 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:140 msgid "Write battery values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:143 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:143 msgid "Save the elecHybrid values of each vehicle" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:145 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:145 msgid "Write elecHybrid values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:147 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:147 msgid "Write elecHybrid values into one aggregated file" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:150 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:150 msgid "Write data of charging stations" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:153 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:153 msgid "Write data of overhead wire segments" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:156 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:156 msgid "Write data of electrical substation stations" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:158 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:158 msgid "Write substation values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:161 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:161 msgid "Save the Floating Car Data" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:163 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:163 msgid "Save the Floating Car Data using geo-coordinates (lon/lat)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:165 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:165 msgid "Add the vehicle signal state to the FCD output (brake lights etc.)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:167 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:167 msgid "Add kilometrage to the FCD output (linear referencing)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:169 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:169 msgid "Add acceleration to the FCD output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:171 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:171 msgid "" "Add leader vehicle information to the FCD output (within the given distance)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:173 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:173 msgid "Add generic parameter values to the FCD output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:175 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:175 msgid "Restrict fcd output to the edge selection from the given input file" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:177 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:177 msgid "List attributes that should be included in the FCD output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:179 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:179 msgid "List shape names that should be used to filter the FCD output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:182 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:182 msgid "" "Restrict SSM device output to the edge selection from the given input file" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:185 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:185 msgid "Save a lot of information for each timestep (very redundant)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:188 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:188 msgid "Save the vehicle queues at the junctions (experimental)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:190 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:190 msgid "Save vehicle queues with the given period" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:193 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:193 msgid "" "Save complete vehicle positions inclusive speed values in the VTK Format " "(usage: /path/out will produce /path/out_$TIMESTEP$.vtp files)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:195 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:195 msgid "Save the vehicle trajectories in the Amitran format" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:200 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:200 msgid "Save aggregated vehicle departure info into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:203 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:203 msgid "Save summary-output with the given period" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:206 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:206 msgid "Save aggregated person counts into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:210 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:210 msgid "Save single vehicle trip info into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:213 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:213 msgid "" "Write tripinfo output for vehicles which have not arrived at simulation end" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:216 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:216 msgid "" "Write tripinfo output for vehicles which have not departed at simulation end " "because of depart delay" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:220 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:220 msgid "Save personinfo and containerinfo to separate FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:224 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:224 msgid "Save single vehicle route info into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:228 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:228 msgid "Write the exit times for all edges" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:232 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:232 msgid "Write the last route only" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:236 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:236 msgid "Sorts the output by departure time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:240 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:240 msgid "Write the output in the duarouter alternatives style" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:243 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:243 msgid "Write costs for all routes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:247 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:247 msgid "Write the output with the intended instead of the real departure time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:254 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:254 msgid "" "Write vehroute output for vehicles which have not arrived at simulation end" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:257 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:257 msgid "Skip vehroute output for public transport vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:260 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:260 msgid "Include invalid routes and route stubs in vehroute output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:263 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:263 msgid "Include information about edges between stops" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:266 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:266 msgid "" "Write the vehicle speedFactor (defaults to 'true' if departSpeed is written)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:269 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:269 msgid "Include internal edges in the output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:273 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:273 msgid "Save person and container routes to separate FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:276 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:276 msgid "Save links states into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:279 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:279 msgid "Save railsignal-blocks into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:282 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:282 msgid "" "Save bluetooth visibilities into FILE (in conjunction with device.btreceiver " "and device.btsender)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:285 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:285 msgid "Record lane changes and their motivations for all vehicles into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:288 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:288 msgid "Record start of lane change manoeuvres" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:291 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:291 msgid "Record end of lane change manoeuvres" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:294 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:294 msgid "Record coordinates of lane change manoeuvres" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:297 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:297 msgid "" "Record stops and loading/unloading of passenger and containers for all " "vehicles into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:299 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:299 msgid "Write stop output for stops which have not ended at simulation end" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:302 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:302 msgid "Write collision information into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:305 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:305 msgid "Write aggregated traffic statistics for all edges into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:307 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:307 msgid "Write aggregated traffic statistics for all lanes into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:311 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:311 msgid "Write overall statistics into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:315 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:315 msgid "Save movereminder states of selected vehicles into FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:317 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:317 msgid "List of vehicle ids which shall save their movereminder states" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:321 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:321 msgid "Use TIME[] as times at which a network state written" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:323 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:323 msgid "save state repeatedly after TIME period" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:325 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:325 msgid "Keep only the last INT periodic state files" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:327 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:327 msgid "Prefix for network states" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:329 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:329 msgid "Suffix for network states (.xml.gz or .xml)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:331 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:331 msgid "Files for network states" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:333 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:333 msgid "Save random number generator states" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:335 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:335 msgid "Save person and container states (experimental)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:337 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:337 msgid "Save rail signal constraints" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:339 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:339 msgid "Write internal state values with the given precision (default 2)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:343 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:343 msgid "Defines the begin time in seconds; The simulation starts at this time" msgstr "" "Başlangıç zamanını saniye cinsinden tanımlar; simülasyon bu zamanda başlar" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:346 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:346 msgid "Defines the end time in seconds; The simulation ends at this time" msgstr "" "Bitiş zamanını saniye cinsinden tanımlar; simülasyon bu zamanda sona erer" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:349 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:349 msgid "Defines the step duration in seconds" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:352 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:352 msgid "" "Whether to use ballistic method for the positional update of vehicles " "(default is a semi-implicit Euler method)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:355 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:355 msgid "" "Whether vehicles that depart between simulation steps should extrapolate the " "depart position" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:358 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:358 msgid "Defines the number of threads for parallel simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:361 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:361 msgid "" "Defines the resolution in m when handling lateral positioning within a lane " "(with -1 all vehicles drive at the center of their lane" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:365 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:142 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:365 +#: D:\Repos\sumo/src\router\ROFrame.cpp:142 msgid "Load routes for the next number of seconds ahead" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:368 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:145 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:368 +#: D:\Repos\sumo/src\router\ROFrame.cpp:145 msgid "Disable (junction) internal links" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:371 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:371 msgid "" "Ignore vehicles which block the junction after they have been standing for " "SECONDS (-1 means never ignore)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:374 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:374 msgid "Do not check whether routes are connected" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:377 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:377 msgid "Do not check whether accidents occur" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:380 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:380 msgid "How to deal with collisions: [none,warn,teleport,remove]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:383 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:383 +msgid "" +"How to deal with collisions between vehicle and pedestrian: [none,warn," +"teleport,remove]" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:386 msgid "" "Let vehicle stop for TIME before performing collision.action (except for " "action 'none')" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:386 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:389 +msgid "" +"Let vehicle stop for TIME before performing intermodal-collision.action " +"(except for action 'none')" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:392 msgid "Enables collisions checks on junctions" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:389 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:395 msgid "Increase or decrease sensitivity for junction collision check" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:392 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:398 msgid "" "Sets the fraction of minGap that must be maintained to avoid collision " "detection. If a negative value is given, the carFollowModel parameter is used" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:395 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:401 msgid "Delay vehicle insertion to stay within the given maximum number" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:398 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:404 msgid "" "Abort the simulation if the given maximum number of teleports is exceeded" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:401 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:407 msgid "" "Scale demand by the given factor (by discarding or duplicating vehicles)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:404 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:410 msgid "Suffix to be added when creating ids for cloned vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:407 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:413 msgid "" "Specify how long a vehicle may wait until being teleported, defaults to 300, " "non-positive values disable teleporting" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:410 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:416 msgid "" "The waiting time after which vehicles on a fast road (speed > 69km/h) are " "teleported if they are on a non-continuing lane" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:413 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:419 msgid "" "The waiting time after which vehicles on a fast road (default: speed > 69km/" "h) are teleported if they are on a non-continuing lane" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:416 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:422 msgid "" "The waiting time after which vehicles with a disconnected route are " "teleported. Negative values disable teleporting" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:419 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:425 msgid "" "Whether vehicles shall be removed after waiting too long instead of being " "teleported" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:422 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:428 msgid "" "The waiting time after which persons / containers waiting for a pickup are " "teleported. Negative values disable teleporting" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:425 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:431 msgid "" "The waiting time after which vehicles on bidirectional edges are teleported" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:428 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:434 msgid "" "Length of time interval, over which accumulated waiting time is taken into " "account (default is 100s.)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:431 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:437 msgid "Minimum consecutive waiting time before applying startupDelay" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:434 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:440 msgid "" "How long vehicles wait for departure before being skipped, defaults to -1 " "which means vehicles are never skipped" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:437 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:443 msgid "" "Whether insertion on an edge shall not be repeated in same step once failed" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:440 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:446 msgid "Whether each vehicle is checked separately for insertion on an edge" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:443 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:449 msgid "" "Allow inserting a vehicle in a situation which requires emergency braking" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:446 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:452 msgid "" "Each vehicle receives a random offset to its depart value drawn uniformly " "from [0, TIME]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:449 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:455 msgid "Duration of a lane change maneuver (default 0)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:452 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:458 msgid "Whether overtaking on the right on motorways is permitted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:455 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:461 msgid "Switches off all traffic lights." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:458 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:464 msgid "Sets default visibility for actuation detectors" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:461 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:467 msgid "Sets default jam-threshold parameter for all actuation detectors" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:464 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:470 msgid "Sets default detector length parameter for all actuation detectors" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:467 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:473 msgid "Sets default range for detecting delayed vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:470 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:476 msgid "Minimum deceleration when braking at yellow" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:473 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:479 msgid "Let railsignals operate in moving-block mode by default" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:476 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:482 msgid "" "Specify how long a vehicle may wait until impatience grows from 0 to 1, " "defaults to 300, non-positive values disable impatience growth" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:479 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:485 msgid "" "Length of the default interval length between action points for the car-" "following and lane-change models (in seconds). If not specified, the " @@ -2029,11 +2037,11 @@ "ayarlar varsayılanı geçersiz kılar. Simülasyon adım uzunluğunun katı " "olmalıdır." -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:482 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:488 msgid "Select default car following model (Krauss, IDM, ...)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:486 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:492 msgid "" "Select default speed deviation. A negative value implies vClass specific " "defaults (0.1 for the default passenger class" @@ -2041,368 +2049,368 @@ "Varsayılan hız sapmasını seçin. Negatif bir değer Araç-Sınıfına özgü " "varsayılanlar anlamına gelir (varsayılan yolcu sınıfı için 0,1)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:489 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:495 msgid "" "Select default emergencyDecel value among ('decel', 'default', FLOAT) which " "sets the value either to the same as the deceleration value, a vClass-class " "specific default or the given FLOAT in m/s^2" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:492 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:498 msgid "Use Kirchhoff's laws for solving overhead wire circuit" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:495 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:501 msgid "" "Enable recuperation from the vehicle equipped with elecHybrid device into " "the overhead wire." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:498 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:504 msgid "" "Enable current limits of traction substation during solving the overhead " "wire electrical circuit." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:501 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:507 msgid "" "Sets the fraction of emergency decel capability that must be used to trigger " "a warning." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:504 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:510 msgid "" "Whether parking simulation includes maneuvering time and associated lane " "blocking" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:507 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:513 msgid "Override stop until times with stop ended times when given" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:510 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:516 msgid "Override stop arrival times with stop started times when given" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:514 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:520 msgid "Select among pedestrian models ['nonInteracting', 'striping', 'remote']" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:517 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:523 msgid "" "Width of parallel stripes for segmenting a sidewalk (meters) for use with " "model 'striping'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:520 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:526 msgid "Factor for random slow-downs [0,1] for use with model 'striping'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:523 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:529 msgid "" "Minimal gap / safety buffer (in meters) from a pedestrian to another vehicle " "for use with model 'striping'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:526 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:532 msgid "" "Time in seconds after which pedestrians start squeezing through a jam when " "using model 'striping' (non-positive values disable squeezing)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:528 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:534 msgid "" "Time in seconds after which pedestrians start squeezing through a jam while " "on a pedestrian crossing when using model 'striping' (non-positive values " "disable squeezing)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:530 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:536 msgid "" "Time in seconds after which pedestrians start squeezing through a jam while " "on a narrow lane when using model 'striping'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:533 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:539 msgid "Fraction of stripes to reserve for oncoming pedestrians" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:536 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:542 msgid "" "Fraction of stripes to reserve for oncoming pedestrians on crossings and " "walkingareas" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:539 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:545 msgid "Maximum width in m to reserve for oncoming pedestrians" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:542 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:548 msgid "Interpret departPosLat for walks in legacy style" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:545 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:551 msgid "" "Generate INT intermediate points to smooth out lanes within the walkingarea" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:548 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:554 msgid "The address (host:port) of the external simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:551 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:557 msgid "" "Tolerance to apply when matching pedestrian and vehicle positions on " "boarding at individual stops" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:562 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:568 msgid "" "Apply the given time penalty when computing minimum routing costs for minor-" "link internal lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:565 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:571 msgid "" "Apply scaled travel time penalties based on green split when computing " "minimum routing costs for internal lanes at traffic lights" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:571 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:577 msgid "" "Distinguish travel time by turn direction and shift a fraction of the " "estimated time loss ahead of the intersection onto the internal edges" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:596 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:602 msgid "" "When set, trips between the same origin and destination will share a taxi by " "default" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:605 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:611 msgid "Replay exact rerouting sequence from vehroute-output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:610 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:59 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:133 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:123 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:616 +#: D:\Repos\sumo/src\router\ROFrame.cpp:59 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:133 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:123 msgid "Return fuel consumption values in (legacy) unit l instead of mg" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:613 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:90 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:136 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:126 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:619 +#: D:\Repos\sumo/src\router\ROFrame.cpp:90 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:136 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:126 msgid "Determines where to load PHEMlight definitions from" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:616 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:93 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:139 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:129 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:622 +#: D:\Repos\sumo/src\router\ROFrame.cpp:93 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:139 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:129 msgid "Enable fleet age modelling with the given reference year in PHEMlight5" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:619 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:96 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:142 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:132 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:625 +#: D:\Repos\sumo/src\router\ROFrame.cpp:96 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:142 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:132 msgid "Set ambient temperature to correct NOx emissions in PHEMlight5" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:628 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:634 msgid "Disable performance reports for individual simulation steps" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:631 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:637 msgid "Enable statistics on vehicle trips" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:634 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:640 msgid "Disable console output of current simulation step" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:637 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:643 msgid "Number of simulation steps between step-log outputs" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:642 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:648 msgid "Enables TraCI Server if set" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:644 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:650 msgid "Expected number of connecting clients" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:648 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:654 msgid "Enables mesoscopic simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:650 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:656 msgid "Length of an edge segment in mesoscopic simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:652 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:658 msgid "Factor for calculating the net free-free headway time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:654 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:660 msgid "Factor for calculating the net free-jam headway time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:656 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:662 msgid "Factor for calculating the jam-free headway time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:658 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:664 msgid "Factor for calculating the jam-jam headway time" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:663 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:669 msgid "Enable multiple queues at edge ends" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:665 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:671 msgid "Enable separate queues for every lane" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:667 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:673 msgid "" "Do not build queues (or reduce capacity) for lanes allowing only the given " "vclasses" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:670 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:676 msgid "Enable mesoscopic traffic light and priority junction handling" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:684 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:690 msgid "Enable mesoscopic overtaking" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:686 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:692 msgid "" "Time interval for rechecking insertion into the next segment after failure" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:698 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:704 msgid "Load visualisation settings from FILE" msgstr "Görselleştirme ayarlarını Dosya'dan yükle" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:701 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:707 msgid "Quits the GUI when the simulation stops" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:704 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:710 msgid "Start the GUI in gaming mode" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:707 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:713 msgid "Select the game type ('tls', 'drt')" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:710 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:716 msgid "Start the simulation after loading" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:713 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:719 msgid "Use FLOAT in ms as delay between simulation steps" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:716 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:722 msgid "Use TIME[] as times when the simulation should halt" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:720 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:726 msgid "Load edge/lane weights for visualization from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:723 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:729 msgid "Load a secondary road network for abstract visualization from FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:726 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:732 msgid "Restart the simulation after ending (demo mode)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:729 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:735 msgid "Do not load background pictures" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:732 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:738 msgid "Load current viewport from registry" msgstr "Geçerli görünüm alanını kayıt defterinden yükle" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:735 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:741 msgid "Create initial window with the given x,y size" msgstr "Verilen x,y boyutuyla ilk pencereyi oluştur" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:738 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:744 msgid "Create initial window at the given x,y position" msgstr "Verilen x,y boyutunda ilk pencereyi oluştur" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:741 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:747 msgid "The aggregation period for value tracker windows" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:745 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:751 msgid "Start with an OpenSceneGraph view instead of the regular 2D view" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:750 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:756 msgid "Enable overlay for screen recognition" msgstr "Ekran tanıma için yer paylaşımını etkinleştir" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:754 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:760 msgid "Enable output messages during GUI-Testing" msgstr "GUI-Test sırasında çıktı mesajlarını etkinleştir" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:758 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:764 msgid "Save gui settings in the given settings output file" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:809 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:815 msgid "No network file (-n) specified." msgstr "Ağ Dosyası (-n) Belirtilmedi." -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:813 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:819 msgid "Invalid scaling factor." msgstr "Geçersiz Ölçeklendirme Faktörü." -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:817 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:823 msgid "A vehroute-output file is needed for exit times." msgstr "Çıkış Zamanları İçin vehroute-output Dosyası Gereklidir." -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:829 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:835 msgid "You can either restart or quit on end." msgstr "Sonda Yeniden Başlatabilir ya da Çıkabilirsiniz." -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:834 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:840 msgid "" "The option 'meso-junction-control.limited' implies 'meso-junction-control'." msgstr "" "'meso-junction-control.limited' Seçeneği 'meso-junction-control' Seçeneğini " "İfade Eder." -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:852 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:858 msgid "The begin time should not be negative." msgstr "Başlangıç Zamanı Negatif Olmamalıdır." -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:862 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:868 msgid "The end time should be after the begin time." msgstr "Bitiş Zamanı Başlangıç Zamanından Sonra Olmalıdır." -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:867 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:873 msgid "the minimum step-length is 0.001" msgstr "Minimum step-length /Adım Uzunluğu) 0.001" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:882 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:888 msgid "The save-state time=% will not be used before simulation end at %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:894 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:900 msgid "" "option movereminder-output.vehicles requires option movereminder-output to " "be set" @@ -2410,7 +2418,7 @@ "movereminder-output.vehicles Seçeneği, movereminder-output Seçeneğinin " "Ayarlanmasını Gerektirir" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:899 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:905 msgid "" "The option 'sloppy-insert' is deprecated, because it is now activated by " "default, see the new option 'eager-insert'." @@ -2418,7 +2426,7 @@ "'sloppy-insert' Seçeneği Kullanımdan Kaldırılmıştır Çünkü Artık Varsayılan " "Olarak Etkinleştirilmiştir, Yeni 'eager-insert' Seçeneğine Bakın." -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:902 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:908 msgid "" "Only one of the options 'lanechange.duration' or 'lateral-resolution' may be " "given." @@ -2426,11 +2434,11 @@ "'lanechange.duration' ya da 'lateral-resolution' Seçeneklerinden Sadece " "Birisi Verilebilir." -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:906 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:912 msgid "Sublane dynamics are not supported by mesoscopic simulation" msgstr "Alt Şerit Dinamikleri Bölgesel Simülasyon Tarafından Desteklenmez" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:910 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:916 msgid "" "The option 'ignore-accidents' is deprecated. Use 'collision.action none' " "instead." @@ -2438,7 +2446,7 @@ "'ignore-accidents' Seçeneği Kullanımdan Kaldırıldı. Onun Yerine 'collision." "action none' Kullanın." -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:923 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:929 msgid "" "The option tripinfo-output.write-undeparted implies tripinfo-output.write-" "unfinished." @@ -2446,31 +2454,31 @@ "tripinfo-output.write-undeparted Seçeneği tripinfo-output.write-unfinished " "Anlamına Gelir." -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:945 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:951 #, c-format msgid "Unknown model '%' for option 'carfollow.model'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:954 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:960 #, c-format msgid "" "Invalid value '%' for option 'default.emergencydecel'. Must be a FLOAT or " "'default' or 'decel'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:960 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:966 msgid "You need a non-negative delay." msgstr "Negatif Olmayan Bir Gecikmeye İhtiyacınız Var." -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:973 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:979 msgid "Parallel simulation is only possible when compiled with Fox." msgstr "Paralel Simülasyon Ancak Fox ile Derlendiğinde Mümkündür." -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:978 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:984 msgid "You need at least one thread." msgstr "En Az Bir İş Parçacığına İhtiyacınız Var." -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:982 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:988 msgid "" "Number of threads exceeds number of thread-rngs. Simulation runs with the " "same seed may produce different results" @@ -2478,17 +2486,17 @@ "İş Parçacığı Sayısı thread-rngs Sayısını Aşıyor. Aynı Çekirdek ile Yapılan " "Simülasyon Çalışmaları Farklı Sonuçlar Verebilir" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:985 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:991 msgid "game.mode must be one of ['tls', 'drt']" msgstr "game.mode ['tls', 'drt'] Seçeneklerinden Birisi Olmalıdır" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:992 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:998 msgid "" "Invalid transfer option '%'. Must be one of 'parkingAreas', 'ptStops' and " "'allJunctions'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:1051 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:1057 msgid "" "Integration method was set to 'ballistic', since a default action step " "length was specified." @@ -2496,78 +2504,95 @@ "Varsayılan Eylem Adımı Uzunluğu Belirtildiği İçin Entegrasyon Yöntemi " "'ballistic' Olarak Ayarlandı." -#: /home/micha/programming/sumo/src/microsim/MSInsertionControl.cpp:276 -#: /home/micha/programming/sumo/src/router/RONet.cpp:481 +#: D:\Repos\sumo/src\microsim\MSInsertionControl.cpp:276 +#: D:\Repos\sumo/src\router\RONet.cpp:481 #, c-format msgid "Another vehicle with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSInternalJunction.cpp:55 +#: D:\Repos\sumo/src\microsim\MSInternalJunction.cpp:55 #, c-format msgid "Internal junction % has no incoming lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:312 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:314 msgid "Unequal lengths of neigh lane '%' and lane '%' (% != %)." msgstr "Eşit Olmayan Komşu Şerit '%' ve Şerit '%' (% != %)." -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:321 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:323 msgid "Unequal lengths of bidi lane '%' and lane '%' (% != %)." msgstr "" "Çift Yönlü Şerit '%' ve Şerit '%' (% != %) Arasında Eşit Olmayan Uzunluklar." -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:758 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:760 #, c-format msgid "Vehicle '%' is inserted in emergency situation." msgstr "Araç '%' Acil Durumda Eklenir." -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:764 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:766 msgid "Vehicle '%' will not be able to depart using the given velocity (%)!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:780 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:782 msgid "" "Invalid departPos % given for vehicle '%'. Inserting at lane end instead." msgstr "" "'%' Aracı İçin Geçersiz % departPos Verildi. Bunun Yerine Şerit Sonuna " "Ekleniyor." -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1025 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:1027 msgid "" "Vehicle '%' is inserted too fast and will violate the speed limit on a lane " "'%'." msgstr "" "'%' Aracı Çok Hızlı Eklendi ve '%' Şeridindeki Hız Sınırını İhlal Edecek." -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1029 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:1031 msgid "" "Vehicle '%' will not be able to depart using the given velocity (slow lane " "ahead)!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1658 -msgid "" -"Vehicle '%' collision with person '%', lane='%', gap=%, time=%, stage=%." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2059 +msgid "Vehicle '%'" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2088 +#, c-format +msgid "Teleporting vehicle '%' after" msgstr "" -"'%' Araç ve '%' Yolcu ile Çarpışma, Şerit='%', Aralık=%, Zaman=%, Evre=%." -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1800 -msgid "Vehicle '%' collision with person '%', lane='%', time=%, stage=%." -msgstr "'%' Araç ve '%' Yolcu ile Çarpışma, Şerit='%', Zaman=%, Evre=%." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2093 +#, c-format +msgid "Removing vehicle '%' after" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2097 +#, c-format +msgid "Keeping remote-controlled vehicle '%' after" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2110 +msgid " collision with person '%', lane='%', gap=%, time=%, stage=%." +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2113 +msgid " collision with person '%', lane='%', time=%, stage=%." +msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2101 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2179 msgid "Teleporting vehicle '%'; beyond end of lane, target lane='%', time=%." msgstr "Işınlanan Araç '%'; Şerit Sonunun Ötesinde, Hedef Şerit='%', Zaman=%." -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2108 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2186 msgid "Removing vehicle '%' after earlier collision, lane='%', time=%." msgstr "Önceki Çarpışmadan Sonra Araç '%' Kaldırılıyor, Şerit='%', Zaman=%." -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2113 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2191 msgid "Teleporting vehicle '%' after earlier collision, lane='%', time=%." msgstr "Önceki Çarpışmadan Sonra Araç '%' Işınlanıyor, Şerit='%', Zaman=%." -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2585 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2663 msgid "" "Lane '%' is approached multiple times from edge '%'. This may cause " "collisions." @@ -2575,168 +2600,167 @@ "Şerit '%', '%' Kesiminden Birçok Kez Yakınlaşıldı. Bu, Çarpışmalara Neden " "Olabilir." -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:4184 -#, fuzzy -msgid "Invalid collision.action '%'." -msgstr "Geçersiz Ölçeklendirme Faktörü." +#: D:\Repos\sumo/src\microsim\MSLane.cpp:4268 +msgid "Invalid % '%'." +msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:4314 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:4405 msgid "" "State was saved with more than % threads. Change the number of threads or do " "not load RNG state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:169 -#: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:232 -#: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:239 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:169 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:232 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:239 msgid "Method not supported" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:187 -#: /home/micha/programming/sumo/src/router/RONet.cpp:60 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:187 +#: D:\Repos\sumo/src\router\RONet.cpp:60 msgid "A network was not yet constructed." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:221 -#: /home/micha/programming/sumo/src/router/RONet.cpp:83 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:221 +#: D:\Repos\sumo/src\router\RONet.cpp:83 msgid "A network was already constructed." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:286 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:286 msgid "" "Option weights.separate-turns is only supported when simulating with " "internal lanes" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:388 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:388 msgid "Simulation version % started with time: %." msgstr "Simülasyon Versiyonu %, Zaman ile Başladı: %." -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1459 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1463 msgid "" "TraCI and Triggers cannot use routing algorithm '%'. using 'astar' instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1629 -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:427 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:235 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:221 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1633 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:427 +#: D:\Repos\sumo/src\router\ROLoader.cpp:235 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:221 #, c-format msgid "Loading of % failed." msgstr "% Yüklemesi Başarısız." -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1649 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1653 #, c-format msgid "Loading state from '%' failed." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:103 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:108 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:103 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:108 msgid "Taz usage was requested but no taz present in % '%'!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:262 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:262 #, c-format msgid "Vehicle type distribution '%' is empty." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:266 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:910 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:266 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:910 #, c-format msgid "Another vehicle type (or distribution) with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:316 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:287 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:316 #, fuzzy msgid "Ids of internal routes are ignored (vehicle '%')." msgstr "Araç '%' İçin Geçersiz Rota Değişimi. %" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:306 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:306 msgid "Invalid reference to route '%' in route %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:317 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:317 msgid "Attribute 'period' is deprecated for route. Use 'cycleTime' instead." msgstr "" "Rota İçin 'period' Özelliği Kullanımdan Kaldırılmıştır. Bunun Yerine " "'cycleTime' Kullanın." -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:330 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:330 msgid "Disconnected route % when repeating." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:336 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:336 #, fuzzy msgid "Invalid cost for route '%'." msgstr "PoI ID İçin Geçersiz Karakterler" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:393 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:393 #, fuzzy, c-format msgid "Route '%' has no edges." msgstr "Kesim '%' Hiçbir Şeride Sahip Değil." -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:411 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:446 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:411 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:446 msgid "" "Cannot repeat stops with 'until' in route % because no cycleTime is defined." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:420 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:420 msgid "" "Cannot repeat stops with 'arrival' in route % because no cycleTime is " "defined." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:443 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:443 #, fuzzy, c-format msgid "A vehicle with id '%' already exists." msgstr "'%' Kimliğine Sahip Bir TAB Var. TAB Kavşağı Yapılandırılamıyor." -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:446 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:520 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:446 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:520 #, c-format msgid "Another route (or distribution) with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:524 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:524 #, c-format msgid "Route distribution '%' is empty." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:564 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:559 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:564 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:559 msgid "" "Vehicle type '%' with vClass=pedestrian should only be used for persons and " "not for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:573 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:573 msgid "" "Ignoring child element 'route' for vehicle '%' because attribute 'route' is " "set." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:582 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:582 #, fuzzy, c-format msgid "Vehicle '%' has no route." msgstr "'%' Aracının Geçerli Bir Rotası Yok." -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:724 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:724 msgid "" "Could not merge vehicle stops for vehicle '%' into implicitly defined route " "'%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:755 -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:327 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:755 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:327 msgid "" "Person '%' receives type '%' which implicitly uses unsuitable vClass '%'." msgstr "" "Yolcu '%', Dolaylı Olarak Uygun Olmayan vClass '%' Kullanan '%' Tipini " "Alıyor." -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:891 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:891 msgid "" "There exists a person and a container with the same id '%'. Starting with " "SUMO 1.9.0 this is an error." @@ -2744,42 +2768,42 @@ "Aynı '%' Kimliğe Sahip Bir Yolcu ve Bir Konteyner Var. SUMO 1.9.0'dan " "İtibaren Bu Bir Hatadır." -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:986 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:986 #, c-format msgid "Another flow with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1127 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1127 msgid "The busStop '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1133 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1133 msgid "The containerStop '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1139 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1139 msgid "The parkingArea '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1146 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1146 msgid "The chargingStation '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1153 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1153 msgid "The overhead wire segment '%' is not known%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1157 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1157 msgid "Invalid stop definition%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1305 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1309 msgid "Stop edge '%' missing in attribute 'via' for % '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1324 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1198 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1316 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1329 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1203 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1321 msgid "" "The attribute departPos is no longer supported for walks, please use the " "person attribute, the arrivalPos of the previous step or explicit stops." @@ -2788,124 +2812,124 @@ "Özelliğini, Önceki Adımdaki arrivalPos Özelliğini veya Açık Durakları " "Kullanın." -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1350 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1355 msgid "Ignoring arrivalPos for % because it is outside the given stop '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1356 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1219 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1361 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1224 msgid "No destination edge for %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1385 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1239 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1390 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1244 #, fuzzy msgid "Start edge not defined for person '%'." msgstr "'%' parkingArea İçin Kesim Bulunamadı." -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1395 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1460 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1250 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1307 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1400 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1465 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1255 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1312 msgid "Non-positive walking duration for '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1422 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1466 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1311 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1427 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1471 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1316 msgid "Non-positive walking speed for '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1491 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1496 msgid "No edges to walk for person '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1528 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1533 msgid "" "Could not find departure lane for walk of person '%' when interpreting " "departPosLat" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1600 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1605 #, fuzzy msgid "Could not read tranship speed for container '%'." msgstr "'%' Bağlantısı İçin Özel Şekil Kullanılamadı." -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1608 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1613 msgid "Non-positive tranship speed for container '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1634 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1639 #, fuzzy, c-format msgid "The start edge for container '%' is not known." msgstr "Başvurulan Geometri Bilgisi (ref='%') Bilinmiyor" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1653 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1658 msgid "" "Inconsistent tranship for container '%', only one option is allowed: " "'edges', 'to', 'containerStop'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1659 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1664 msgid "No edges to tranship container '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:76 -#: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:64 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:164 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteLoader.cpp:36 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:76 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:64 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:164 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteLoader.cpp:36 msgid "Can not read XML-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:87 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:87 #, fuzzy msgid "Could not parse time from state file '%'" msgstr "'%' ile '%' Arasındaki Bağlantı Ayarlanamadı." -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:184 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:184 msgid "State was written with sumo version % (present: %)!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:229 -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:285 -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignalConstraint.cpp:144 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:229 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:285 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignalConstraint.cpp:144 #, fuzzy, c-format msgid "Unknown lane '%' in loaded state." msgstr "Bilinmeyen Takipçi Şeridi '%' Yüklü Durumda." -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:389 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:389 #, c-format msgid "Ignoring program '%' for traffic light '%' in loaded state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:424 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:424 msgid "Could not load vehicle control state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:433 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:433 msgid "Removed % vehicles while loading state." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:459 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:459 #, fuzzy, c-format msgid "Could not load vehicle '%' from state" msgstr "Sinyal '%' İçin Kesim '%' Bulunamadı." -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:319 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:319 msgid "No gap control available for meso." msgstr "Bölgesel Ölçek İçin Aralık Kontrolü Yok." -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:714 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:714 msgid "" "Lane change model did not provide a reason for changing (state=%, time=%\n" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:755 -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:171 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:755 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:171 msgid "should not happen" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:944 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:944 msgid "" "Vehicle '%' moved by TraCI from % to % (dist %) with implied speed of % " "(exceeding maximum speed %). time=%." @@ -2913,35 +2937,35 @@ "Araç '%', TraCI Tarafından %'den %'ye (Mesafe %) % Örtük Hızla Taşındı (% " "Maksimum Hızı Aşıyor). Zaman=%." -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1701 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1688 msgid "Vehicle '%' aborts joining after extension of %s at time %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1846 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1833 msgid "Vehicle '%' to split from vehicle '%' is not known. time=%." msgstr "'%' Aracının '%' Aracından Ayrılacağı Bilinmiyor. Zaman=%." -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:2741 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:2769 msgid "Suspicious right_before_left junction '%'." msgstr "Şüpheli right_before_left junction '%'." -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4375 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4487 msgid " for unknown reasons" msgstr " Bilinmeyen Nedenlerle" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4383 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4495 msgid "" -"Vehicle '%' performs emergency stop at the end of lane '%'% (decel=%, " -"offset=%), time=%." +"Vehicle '%' performs emergency stop at the end of lane '%'% (decel=%, offset=" +"%), time=%." msgstr "" "Araç '%', Şerit '%'% (Negatif İvme=%, Öteleme=%) Sonunda Acil Durdurma " "Gerçekleştirir, süre=% ." -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4458 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4570 msgid "Unexpected end of opposite lane for vehicle '%' at lane '%', time=%." msgstr "'%' Aracı İçin Karşı Şeridin '%' Şeridinde Beklenmeyen Son, Zaman=%." -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4576 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4688 msgid "" "Vehicle '%' performs emergency braking on lane '%' with decel=%, wished=%, " "severity=%, time=%." @@ -2949,37 +2973,41 @@ "'%' Araç '%' şeridinde Negatif İvme=%, Arzu Edilen=%, Şiddet=%, Zaman=% ile " "Acil Frenleme Geçrkleştirir." -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:5427 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:5571 #, fuzzy, c-format msgid "Vehicle '%' aborts stop." msgstr "'%' Aracının Geçerli Bir Rotası Yok." -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:7213 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:7408 msgid "Error: Invalid vehicles in state (may be a meso state)!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleControl.cpp:449 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:7439 +msgid "Action steps are out of sync for loaded vehicle '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSVehicleControl.cpp:469 #, c-format msgid "Vehicle '%' aborted waiting for a % that will never come." msgstr "Araç '%', Hiç Gelmeyecek Bir % Beklerken Durduruldu." -#: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:169 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:170 msgid "Vehicle '%' ends teleporting on edge '%', time=%." msgstr "Araç '%', '%' Kesiminde Işınlanmayı Bitirir, Zaman=%." -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:308 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:318 msgid "" "Value of 'emergencyDecel' (%) should be higher than 'decel' (%) for vType " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:311 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:321 msgid "" "Value of 'emergencyDecel' (%) is lower than 'apparentDecel' (%) for vType " "'%' may cause collisions." msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:433 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:443 #, c-format msgid "" "Value of tau=% in vehicle type '%' lower than simulation step size may cause " @@ -2988,7 +3016,7 @@ "'%' Araç Tipinde tau=% Değeri, Simülasyon Adım Boyutundan Daha Düşük " "Çarpışmalara Neden Olabilir." -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:439 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:449 #, c-format msgid "" "Vehicle class '%' of vType '%' is set as ignored by option --meso-ignore-" @@ -3000,27 +3028,27 @@ "Ayarlandı. Bölgesel Simülasyon İçin --meso-lane-queue for multi-modal " "Seçeneğini Ayarlayın" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_CC.cpp:66 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_CC.cpp:66 msgid "" "The number of lanes needs to be specified in the attributes of carFollowing-" "CC with the \"lanesCount\" attribute" msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Daniel1.cpp:61 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Daniel1.cpp:61 msgid "" "Maximum speed of vehicle '%' is lower than the minimum speed (min: %, max: " "%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Krauss.cpp:58 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Krauss.cpp:58 msgid "Rounding 'sigmaStep' to % for vType '%'" msgstr "vType '%' İçin 'sigmaStep' Değeri % Değerine Yuvarlanıyor" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Rail.cpp:50 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Rail.cpp:50 msgid "Unknown train type: %. Exiting!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Rail.cpp:252 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Rail.cpp:252 msgid "" "Anything else than semi implicit euler update is not yet implemented. " "Exiting!" @@ -3028,303 +3056,303 @@ "Yarı Dolaylı euler Güncellemesinden Başka Herhangi Bir Şey Henüz " "Uygulanmadı. Çıkılıyor!" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:161 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:165 #, c-format msgid "Device '%' cannot save state" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:201 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:205 msgid "Invalid float value '%'for parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:214 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:218 msgid "Invalid bool value '%'for parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:227 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:231 msgid "Invalid time value '%'for parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:65 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:65 msgid "The range of the bt receiver" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:68 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:68 msgid "Whether all recognition point shall be written" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:71 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:71 msgid "The offtime used for calculating detection probability (in seconds)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:295 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:295 msgid "" "The vehicle '%' cannot be in the range of vehicle '%', leave, and enter it " "in one step." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:421 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:436 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:421 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:436 msgid "" "btreceiver: Can not update position of vehicle '%' which is not on the road." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTsender.cpp:120 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTsender.cpp:134 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTsender.cpp:120 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTsender.cpp:134 msgid "" "btsender: Can not update position of vehicle '%' which is not on the road." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:52 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:52 msgid "Track fuel consumption for non-electric vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:109 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:122 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:128 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:113 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:126 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:132 msgid "" "Battery builder: Vehicle '%' doesn't have a valid value for parameter % (%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:199 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:203 #, c-format msgid "Battery of vehicle '%' is depleted." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:309 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:319 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:329 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:313 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:323 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:333 msgid "Trying to set into the battery device of vehicle '%' an invalid % (%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Bluelight.cpp:59 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Bluelight.cpp:59 msgid "" "Set the distance at which other drivers react to the blue light and siren " "sound" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Bluelight.cpp:68 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Bluelight.cpp:68 msgid "" "bluelight device is not compatible with mesosim (ignored for vehicle '%')" msgstr "" "bluelight Cihazı Bölgesel Sim. ile Uyumlu Değil (Draç '%' İçin Yok Sayılır)" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:66 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:66 msgid "Initial value assigned to the driver's awareness." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:68 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:68 msgid "Time scale for the error process." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:70 msgid "Noise intensity driving the error process." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:72 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:72 msgid "" "General scaling coefficient for applying the error to the perceived speed " "difference (error also scales with distance)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:74 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:74 msgid "" "General scaling coefficient for applying the error to the perceived distance " "(error also scales with distance)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:76 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:76 msgid "" "General scaling coefficient for applying the error to the vehicle's own " "speed when driving without a leader (error also scales with own speed)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:78 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:78 msgid "" "Base threshold for recognizing changes in the speed difference (threshold " "also scales with distance)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:80 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:80 msgid "" "Base threshold for recognizing changes in the headway (threshold also scales " "with distance)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:82 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:82 msgid "Minimal admissible value for the driver's awareness." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:84 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:84 msgid "" "Maximal reaction time (~action step length) induced by decreased awareness " "level (reached for awareness=minAwareness)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:102 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:116 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:116 msgid "Invalid value '%'for vType parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:166 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:179 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:166 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:179 msgid "" "ElecHybrid builder: Vehicle '%' doesn't have a valid value for parameter % " "(%)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:374 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:374 #, c-format msgid "" "The resistivity of overhead wire segment connected to vehicle % is < 0. Set " "to 1e-6." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:432 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:528 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:711 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:848 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:432 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:528 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:711 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:848 msgid "" "Overhead wire solver is on, but the Eigen library has not been compiled in!" msgstr "Havai Hat Çözücü Açık Ancak Eigen Kitaplığı Derlenmedi!" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:648 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:883 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:648 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:883 msgid "The element or node with the last Id was not found in the circuit!" msgstr "Son No'ya Sahip Eleman veya Düğüm Devrede Bulunamadı!" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Emissions.cpp:47 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Emissions.cpp:47 msgid "Recording begin time for emission-data" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Emissions.cpp:50 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Emissions.cpp:50 msgid "Recording period for emission-output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:48 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:48 msgid "" "An exemplary parameter which can be used by all instances of the example " "device" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:63 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:63 #, c-format msgid "Invalid value '%'for vehicle parameter 'example'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:75 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:75 #, fuzzy, c-format msgid "Invalid value '%'for vType parameter 'example'" msgstr "" "'%' Trafik Işığının 'device.glosa.range' Parametresi İçin Geçersiz Değer '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:67 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:67 msgid "Recording begin time for FCD-data" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:70 -#: /home/micha/programming/sumo/src/microsim/devices/MSTransportableDevice_FCD.cpp:49 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSTransportableDevice_FCD.cpp:49 msgid "Recording period for FCD-data" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:73 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:73 msgid "Record objects in a radius around equipped vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:123 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:123 #, c-format msgid "Specified shape '%' for filtering fcd-output could not be found." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:148 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:148 msgid "Could not load names of edges for filtering fcd-output from '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:167 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:167 #, c-format msgid "Unknown attribute '%' to write in fcd output." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Friction.cpp:48 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Friction.cpp:48 msgid "" "The measurement noise parameter which can be applied to the friction device" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Friction.cpp:50 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Friction.cpp:50 msgid "" "The measurement offset parameter which can be applied to the friction device " "-> e.g. to force false measurements" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:49 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:49 msgid "The communication range to the traffic light" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:52 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:52 msgid "The maximum speed factor when approaching a green light" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:55 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:55 msgid "Minimum speed when coasting towards a red light" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:171 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:171 msgid "" "Invalid value '%' for parameter 'device.glosa.range' of traffic light '%'" msgstr "" "'%' Trafik Işığının 'device.glosa.range' Parametresi İçin Geçersiz Değer '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:54 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:54 msgid "The period with which the vehicle shall be rerouted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:58 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:58 msgid "The rerouting period before depart" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:62 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:62 msgid "The weight of prior edge weights for exponential moving average" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:66 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:66 msgid "The number of steps for moving average weight of prior edge weights" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:70 msgid "The interval for updating the edge weights" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:75 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:75 msgid "Use zones (districts) as routing start- and endpoints" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:78 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:78 msgid "" "Use weight files given with option --weight-files for initializing edge " "weights" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:82 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:82 msgid "The number of parallel execution threads used for rerouting" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:85 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:85 msgid "Let rerouting happen at the same time for all vehicles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:88 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:88 msgid "Allow rerouting triggered by rail signals." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:91 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:91 msgid "Compute separate average speeds for bicycles" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:94 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:94 msgid "Save adapting weights to FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:102 msgid "" "Only one of the options 'device.rerouting.adaptation-steps' or 'device." "rerouting.adaptation-weight' may be given." @@ -3332,87 +3360,99 @@ "'device.rerouting.adaptation-steps' ya da 'device.rerouting.adaptation-" "weight' Seçeneklerinden Sadece Birisi Verilebilir." -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:106 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:106 msgid "weights.random-factor cannot be less than 1" msgstr "weights.random-factor 1'den Küçük Olamaz" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:110 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:110 msgid "Negative value for device.rerouting.adaptation-interval!" msgstr "device.rerouting.adaptation-interval İçin Negatif Değer!" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:115 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:115 msgid "" "The value for device.rerouting.adaptation-weight must be between 0 and 1!" msgstr "device.rerouting.adaptation-weight Değeri 0-1 Arasında Olmalıdır!" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:120 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:243 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:120 +#: D:\Repos\sumo/src\router\ROFrame.cpp:243 msgid "Parallel routing is only possible when compiled with Fox." msgstr "Paralel Rotalama Sadece Fox ile Derlendiğinde Mümkündür." -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:125 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:125 msgid "Adapting number of routing threads to number of simulation threads." msgstr "" "Yönlendirme İş Parçacığı Sayısı Simülasyon İş Parçacığı Sayısına Uyarlanıyor." -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:220 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:234 msgid "" "Specifies which measures will be logged (as a space or comma-separated " -"sequence of IDs in ('TTC', 'DRAC', 'PET'))" +"sequence of IDs in ('TTC', 'DRAC', 'PET', 'PPET','MDRAC'))" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:222 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:236 msgid "" "Specifies space or comma-separated thresholds corresponding to the specified " "measures (see documentation and watch the order!). Only events exceeding the " "thresholds will be logged." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:224 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:238 msgid "" "Specifies whether trajectories will be logged (if false, only the extremal " "values and times are reported)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:226 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:240 msgid "" "Specifies the detection range in meters. For vehicles below this distance " "from the equipped vehicle, SSM values are traced." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:228 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:242 msgid "" "Specifies the time in seconds to be logged after a conflict is over. " "Required >0 if PET is to be calculated for crossing conflicts." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:230 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:244 +msgid "Specifies the perception reaction time for MDRAC computation." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:246 msgid "Give a global default filename for the SSM output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:232 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:248 msgid "Whether to use coordinates of the original reference system in output" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:234 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:250 msgid "Whether to write positions (coordinates) for each timestep" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:236 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:252 msgid "Whether to write lanes and their positions for each timestep" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:247 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:254 +msgid "" +"Which conflicts will be excluded from the log according to the conflict type " +"they have been classified (combination of values in 'ego', 'foe' , '', any " +"numerical valid conflict type code). An empty value will log all and " +"'ego'/'foe' refer to a certain conflict type subset." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:265 msgid "Could not load names of edges for filtering SSM device output from '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:1057 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:1119 msgid "" "SSM device of vehicle '%' detected collision with vehicle '%' at time=%." msgstr "" "'%' Aracının SSM Cihazı, Zaman=% Değerinde '%' Aracıyla Çarpışma Algıladı." -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2188 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2331 msgid "" "Cannot classify SSM encounter between ego vehicle % and foe vehicle % at " "time=%\n" @@ -3420,8 +3460,8 @@ "% Ego Araç Yüzdesi ile Çatışan Araç Yüzdesi Arasındaki SSM Karşılaşması, " "Zaman=% Olarak Sınıflandırılamıyor\n" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2366 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2390 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2509 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2533 msgid "" "Cannot compute SSM due to bad internal lane geometry at junction '%'. " "Crossing point between traffic from links % and % not found." @@ -3429,200 +3469,280 @@ "'%' Kavşağında Kötü Dahili Şerit Geometrisi Nedeniyle SSM Hesaplanamıyor. % " "ve % Bağlantılarından Gelen Trafik Arasında Geçiş Noktası Bulunamadı." -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3497 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3699 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3703 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3984 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.measures'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3503 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3705 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3709 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3990 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.measures'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3508 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3714 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.file'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3531 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3737 #, fuzzy, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.geo'." msgstr "" "'%' Trafik Işığının 'device.glosa.range' Parametresi İçin Geçersiz Değer '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3537 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3743 #, fuzzy, c-format msgid "Invalid value '%'for vType parameter 'ssm.geo'." msgstr "" "'%' Trafik Işığının 'device.glosa.range' Parametresi İçin Geçersiz Değer '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3542 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3748 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.geo'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3558 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3764 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.write-positions'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3564 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3770 #, fuzzy, c-format msgid "Invalid value '%'for vType parameter 'ssm.write-positions'." msgstr "" "'%' Trafik Işığının 'device.glosa.range' Parametresi İçin Geçersiz Değer '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3569 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3596 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3775 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3802 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.write-positions'. " "Using default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3585 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3791 #, fuzzy, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.write-lane-positions'." msgstr "" "'%' Trafik Işığının 'device.glosa.range' Parametresi İçin Geçersiz Değer '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3591 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3797 #, fuzzy, c-format msgid "Invalid value '%'for vType parameter 'ssm.write-lane-positions'." msgstr "" "'%' Trafik Işığının 'device.glosa.range' Parametresi İçin Geçersiz Değer '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3612 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3819 +#, c-format +msgid "Invalid value '%' for vehicle parameter 'ssm.conflict-order'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3827 +#, c-format +msgid "Invalid value '%' for vType parameter 'ssm.conflict-order'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3833 +msgid "" +"Vehicle '%' does not supply vehicle parameter 'device.ssm.exclude-conflict-" +"types'. Using default of '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3851 +msgid "" +"SSM order filter '%' is not supported. Aborting construction of SSM device " +"'%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3868 #, fuzzy, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.range'." msgstr "" "'%' Trafik Işığının 'device.glosa.range' Parametresi İçin Geçersiz Değer '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3618 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3874 #, fuzzy, c-format msgid "Invalid value '%'for vType parameter 'ssm.range'." msgstr "" "'%' Trafik Işığının 'device.glosa.range' Parametresi İçin Geçersiz Değer '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3623 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3879 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.range'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3639 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3895 +#, c-format +msgid "Invalid value '%'for vehicle parameter 'ssm.mdrac.prt'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3901 +#, c-format +msgid "Invalid value '%'for vType parameter 'ssm.mdrac.prt'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3906 +msgid "" +"Vehicle '%' does not supply vehicle parameter 'device.ssm.mdrac.prt'. Using " +"default of '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3924 #, fuzzy, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.extratime'." msgstr "" "'%' Trafik Işığının 'device.glosa.range' Parametresi İçin Geçersiz Değer '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3645 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3930 #, fuzzy, c-format msgid "Invalid value '%'for vType parameter 'ssm.extratime'." msgstr "" "'%' Trafik Işığının 'device.glosa.range' Parametresi İçin Geçersiz Değer '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3650 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3935 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.extratime'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3656 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3941 #, c-format msgid "" "Negative (or no) value encountered for vehicle parameter 'device.ssm." "extratime' in vehicle '%' using default value % instead." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3670 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3955 #, fuzzy, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.trajectories'." msgstr "" "'%' Trafik Işığının 'device.glosa.range' Parametresi İçin Geçersiz Değer '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3676 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3961 #, fuzzy, c-format msgid "Invalid value '%'for vType parameter 'ssm.trajectories'." msgstr "" "'%' Trafik Işığının 'device.glosa.range' Parametresi İçin Geçersiz Değer '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3681 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3966 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.trajectories'. " "Using default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3710 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3995 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.measures'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3727 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4012 msgid "" "SSM identifier '%' is not supported. Aborting construction of SSM device '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3738 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4023 #, fuzzy, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.thresholds'." msgstr "" "'%' Trafik Işığının 'device.glosa.range' Parametresi İçin Geçersiz Değer '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3744 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4029 #, fuzzy, c-format msgid "Invalid value '%'for vType parameter 'ssm.thresholds'." msgstr "" "'%' Trafik Işığının 'device.glosa.range' Parametresi İçin Geçersiz Değer '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3749 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4034 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.thresholds'. Using " "default of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3764 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4049 msgid "" "Given list of thresholds ('%') is not of the same size as the list of " "measures ('%').\n" "Please specify exactly one threshold for each measure." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:82 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:46 +msgid "" +"Time to wait for a rescue vehicle on the road side when the battery is empty" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:48 +msgid "" +"Additional battery buffer for unexpected traffic situation when estimating " +"the battery need" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:50 +msgid "Battery percentage to go into rescue mode" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:52 +msgid "Search radius in travel time seconds" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:54 +msgid "When to trigger a new search if no station has been found" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:56 +msgid "The maximum charging speed of the vehicle battery" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:58 +msgid "Type of energy transfer" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:60 +msgid "" +"After this waiting time vehicle searches for a new station when the initial " +"one is blocked" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:124 +msgid "" +"Rerouting using station finder removes all upcoming stops for vehicle '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:84 msgid "" "The dispatch algorithm [greedy|greedyClosest|greedyShared|routeExtension|" "traci]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:85 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:87 msgid "Write information from the dispatch algorithm to FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:88 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:90 msgid "Load dispatch algorithm parameters in format KEY1:VALUE1[,KEY2:VALUE]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:91 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:93 msgid "The period between successive calls to the dispatcher" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:94 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:96 msgid "The behavior of idle taxis [stop|randomCircling]" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:97 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:99 msgid "Write information from the idling algorithm to FILE" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:115 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:117 msgid "Vehicle '%' with device.taxi should have vClass taxi instead of '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:122 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:124 msgid "" "Vehicle '%' with personCapacity % and containerCapacity % is not usable as " "taxi." @@ -3630,143 +3750,143 @@ "personCapacity % ve containerCapacity % Olan Araç '%' Taksi Olarak " "Kullanılamaz." -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:147 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:149 #, c-format msgid "Dispatch algorithm '%' is not known" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:313 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:328 msgid "Invalid Re-dispatch for existing customer '%' with a new reservation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:346 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:361 msgid "Re-dispatch did not mention pickup for existing customer '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:453 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:468 msgid "Could not add taxi stop for vehicle '%' to %. time=% error=%." msgstr "'%' Aracı İçin Taksi Durağı % Değerine Eklenemedi. Zaman=% Hata=%." -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:569 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:584 msgid "Taxi '%' reaches scheduled end of service at time=%." msgstr "Taksi '%', Tarifeli Hizmet Bitiş Saatine=% Değerinde Ulaşıyor." -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:645 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:660 msgid "" "All customers left vehicle '%' at time=% but there are % remaining stops" msgstr "" "Tüm Müşteriler '%' Aracından Zaman=% Değerinde Ayrıldı Ancak % Kalan Durak " "Var" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:116 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:116 msgid "Vehicle type for manual driving regime." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:118 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:118 msgid "Vehicle type for automated driving regime." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:120 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:120 msgid "Average response time needed by a driver to take back control." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:122 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:122 msgid "Recovery rate for the driver's awareness after a ToC." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:124 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:124 msgid "" "Attention level below which a driver restrains from performing lane changes " "(value in [0,1])." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:126 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:126 msgid "Average awareness a driver has initially after a ToC (value in [0,1])." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:128 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:128 msgid "Deceleration rate applied during a 'minimum risk maneuver'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:130 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:130 msgid "" "Time, which the vehicle requires to have ahead to continue in automated " "mode. The default value of 0 indicates no dynamic triggering of ToCs." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:132 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:132 msgid "Probability that a dynamically triggered TOR is not answered in time." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:134 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:134 msgid "If true, the vehicle tries to change to the right during an MRM." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:136 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:136 msgid "" "If set, the vehicle tries to reach the given named stopping place during an " "MRM." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:138 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:138 msgid "Duration the vehicle stays at the safe spot after an MRM." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:140 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:140 msgid "" "Maximal acceleration that may be applied during the ToC preparation phase." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:142 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:142 msgid "Timegap for ToC preparation phase." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:144 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:144 msgid "Additional spacing for ToC preparation phase." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:146 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:146 msgid "" "Maximal deceleration applied for establishing increased gap in ToC " "preparation phase." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:148 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:148 msgid "" "Rate of adaptation towards the increased headway during ToC preparation." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:150 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:150 msgid "" "Whether a coloring scheme shall by applied to indicate the different ToC " "stages." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:152 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:152 msgid "Switches on output by specifying an output filename." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:161 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:161 msgid "ToC device is not supported by the mesoscopic simulation." msgstr "ToC Cihazı Bölgesel Simülasyon Tarafından Desteklenmez." -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:200 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:200 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.measures'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:206 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:206 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.measures'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:220 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:220 msgid "" "Given value for ToC device parameter 'dynamicMRMProbability' (=%) is not in " "the admissible range [0,0.5]. Truncated to %." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:246 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:246 msgid "" "If any openGap parameters for the ToC model are specified, then at least one " "of toc.ogNewTimeHeadway and toc.ogNewSpaceHeadway must be defined." @@ -3775,50 +3895,50 @@ "ogNewTimeHeadway ve toc.ogNewSpaceHeadway İfadelerinden En Az Biri " "Tanımlanmalıdır." -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:578 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:578 msgid "Ignoring unknown safe spot '%' for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:731 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:731 #, c-format msgid "vType '%' for vehicle '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:933 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:933 msgid "" "Setting device.toc.currentAwareness during automated mode has no effect." msgstr "" "Otomatik Mod Sırasında device.toc.currentAwareness Ayarının Hiçbir Etkisi " "Yoktur." -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:950 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:950 #, c-format msgid "" "Value of dynamicToCThreshold must be non-negative. (Given value % for " "vehicle % is ignored)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:961 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:961 #, c-format msgid "" "Value of dynamicMRMProbability must be non-negative. (Given value % for " "vehicle % is ignored)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:975 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:975 #, c-format msgid "" "Value of maxPreparationAccel must be non-negative. (Given value % for " "vehicle % is ignored)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:1000 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:1021 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:1000 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:1021 #, fuzzy msgid "Unknown ToCState '%'" msgstr "Bilinmeyen '%' Otobüs Durağı." -#: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:97 +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:97 msgid "" "Mixing reservations of persons and containers with the same group is not " "supported for % and %" @@ -3826,38 +3946,42 @@ "Aynı Gruptaki Yolcu ve Konteynerlerin Karışık Rezervasyonları % ve % İçin " "Desteklenmiyor" -#: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:200 +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:200 msgid "Inconsistent group reservations." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:204 +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:204 msgid "Inconsistent group reservations (2)." msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:63 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:65 msgid "Idle taxi '%' has no next segment to stop. time=%." msgstr "% Boş Taksinin Duracak Bir Sonraki Bölümü Yok. Zaman=%." -#: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:104 #, c-format msgid "Idle taxi '%' could not stop within %m" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:155 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:157 #, c-format msgid "Vehicle '%' ends idling in a cul-de-sac" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:96 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:183 +msgid "Could not determine taxi stand for vehicle '%' at time=%" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:96 msgid "Rerouting is useless if the edge weights do not get updated!" msgstr "Kesim Ağırlıkları Güncellenmezse Yeniden Yönlendirme Kullanışsızdır!" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:148 +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:148 #, fuzzy msgid "weights.priority-factor cannot be negative." msgstr "weights.random-factor 1'den Küçük Olamaz" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:152 +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:152 msgid "" "Option weights.priority-factor does not take effect because all edges have " "the same priority" @@ -3865,34 +3989,34 @@ "Seçenek weights.priority-factor Etkili Olmaz Çünkü Tüm Kesimler Aynı " "Önceliğe Sahip" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:411 +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:411 msgid "Unknown routing algorithm '%'!" msgstr "" -#: /home/micha/programming/sumo/src/microsim/devices/MSTransportableDevice_Routing.cpp:46 +#: D:\Repos\sumo/src\microsim\devices\MSTransportableDevice_Routing.cpp:46 msgid "The period with which the person shall be rerouted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/engine/VehicleEngineHandler.cpp:157 +#: D:\Repos\sumo/src\microsim\engine\VehicleEngineHandler.cpp:157 msgid "Invalid engine map type. Only \"poly\" is supported for now" msgstr "" -#: /home/micha/programming/sumo/src/microsim/engine/VehicleEngineHandler.cpp:197 +#: D:\Repos\sumo/src\microsim\engine\VehicleEngineHandler.cpp:197 #, fuzzy msgid "Unknown tag '%' while parsing." msgstr "Dönel Ada İçinde Bilinmeyen Kesim '%'." -#: /home/micha/programming/sumo/src/microsim/lcmodels/MSAbstractLaneChangeModel.cpp:82 +#: D:\Repos\sumo/src\microsim\lcmodels\MSAbstractLaneChangeModel.cpp:82 #, c-format msgid "Lane change model '%' is not compatible with sublane simulation" msgstr "" -#: /home/micha/programming/sumo/src/microsim/lcmodels/MSAbstractLaneChangeModel.cpp:98 +#: D:\Repos\sumo/src\microsim\lcmodels\MSAbstractLaneChangeModel.cpp:98 #, c-format msgid "Lane change model '%' not implemented" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:124 +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:124 msgid "" "No valid detector length and start position given. Assuming startPos = 0 and " "length = end position" @@ -3900,7 +4024,7 @@ "Geçerli Bir Dedektör Uzunluğu ve Başlangıç Konumu Verilmedi. startPos = 0 ve " "length = end Varsayılıyor" -#: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:128 +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:128 msgid "" "No valid detector length and end position given. Assuming endPos = lane " "length and length = endPos-startPos" @@ -3908,204 +4032,204 @@ "Geçerli Bir Dedektör Uzunluğu ve Bitiş Konumu Verilmedi. endPos = lane " "length ve length = endPos-startPos Varsayılıyor" -#: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:908 +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:908 msgid "Multi-lane e2Detector does not support detecting persons yet" msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:161 +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:160 msgid "Negative vehicle step fraction for '%' on lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:556 +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:554 #, fuzzy msgid "aggregated meanData output not yet implemented for trackVehicles" msgstr "getStopState Bölgesel Ölçek İçin Henüz Uygulanmadı" -#: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:755 +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:766 msgid "Unknown attribute '%' to write in meanData '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/output/MSStopOut.cpp:69 +#: D:\Repos\sumo/src\microsim\output\MSStopOut.cpp:69 msgid "Vehicle '%' stops on edge '%', time=% without ending the previous stop." msgstr "'%' Aracı Önceki Durağı Tamamlamadan '%' Kesiminde Durur, Zaman=%." -#: /home/micha/programming/sumo/src/microsim/output/MSStopOut.cpp:105 +#: D:\Repos\sumo/src\microsim\output\MSStopOut.cpp:105 #, fuzzy msgid "Vehicle '%' ends stop on edge '%', time=% without entering the stop." msgstr "'%' Aracı '%' Kesiminde Durağa Girmeden Durakta Sonlanır, Zaman=%" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:139 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:140 #, fuzzy, c-format msgid "Traffic light '%' does not control any links" msgstr "" "Trafik Işığı '%' Herhangi Bir Linki Kontrol Etmiyor; Yapılandırılmayacak." -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:227 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:229 msgid "" "Unknown inductionLoop '%' given as custom detector for actuated tlLogic '%', " "program '%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:241 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:242 msgid "" "At actuated tlLogic '%', minDur % is too short for a detector gap of %m." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:406 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:407 msgid "At actuated tlLogic '%', actuated phase % has no controlling detector." msgstr "" "Uyarımlı tlLogic '%' Değerinde, Uyarımlı % Fazın Kontrol Dedektörü Yok." -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:443 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:444 msgid "At actuated tlLogic '%', linkIndex % has no controlling detector." msgstr "" "Uyarımlı tlLogic '%' Değerinde, linkIndex % Değerinin Kontrol Dedektörü Yok." -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:452 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:453 msgid "" "Invalid link '%' given as linkMaxDur parameter for actuated tlLogic '%', " "program '%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:462 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:463 msgid "" "Invalid link '%' given as linkMinDur parameter for actuated tlLogic '%', " "program '%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:903 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:905 msgid "" "At actuated tlLogic '%', transition phase % should not have multiple next " "phases" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1061 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1063 msgid "Unmatched parentheses in condition %'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1076 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1078 msgid "Invalid empty condition '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1091 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1093 msgid "Unsupported condition '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1154 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1156 msgid "Division by 0 in condition '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1205 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1207 #, c-format msgid "Modifying global condition '%' is forbidden" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1217 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1219 msgid "Invalid empty expression" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1313 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1315 msgid "Error when retrieving conditions '%' for tlLogic '%' (%)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSDelayBasedTrafficLightLogic.cpp:96 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSDelayBasedTrafficLightLogic.cpp:96 msgid "" "Unknown laneAreaDetector '%' given as custom detector for delay_based " "tlLogic '%', program '%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSOffTrafficLightLogic.cpp:80 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSOffTrafficLightLogic.cpp:80 msgid "Invalid 'off'-state for link % at junction '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSOffTrafficLightLogic.cpp:84 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSOffTrafficLightLogic.cpp:84 msgid "Inconsistent 'off'-states for linkIndex % at tlLogic '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:109 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:109 #, c-format msgid "Rail signal at junction '%' does not control any links" msgstr "'%' Kavşağında Demiryolu Sinyali Hiçbir Bağlantıyı Kontrol Etmez" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:1210 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:1210 msgid "Found circular block after railSignal % (% edges, length %)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:1321 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:1321 msgid "Found circular block at railSignal % (% edges, length %)" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignalConstraint.cpp:147 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignalConstraint.cpp:147 #, c-format msgid "Unknown tracker lane '%' in loaded state." msgstr "Bilinmeyen Takipçi Şeridi '%' Yüklü Durumda." -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:169 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:169 msgid "Listing output lanes" msgstr "Çıktı Şeritleri Listeleniyor" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:243 -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:277 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:243 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:277 msgid "Unrecognized traffic threshold calculation mode" msgstr "Tanınmayan Trafik Eşiği Hesaplama Modu" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:57 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:57 msgid "NO VALID POLICY LIST READ" msgstr "GEÇERLİ POLICY LIST OKUNMADI" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:81 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:81 msgid "VEHICLE TYPES WEIGHT only works with phase policy, which is missing" msgstr "VEHICLE TYPES WEIGHT Yalnızca Eksik Olan Evre İlkesi ile Çalışır" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:160 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:160 #, c-format msgid "" "MSSwarmTrafficLightLogic::init Intersection % pheromoneInputLanes: lane " "% not allowed" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:182 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:182 #, c-format msgid "" "MSSwarmTrafficLightLogic::init Intersection % pheromoneOutputLanes lane " "% not allowed" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:194 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:194 msgid "*** Intersection % will run using MSSwarmTrafficLightLogic ***" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:202 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:202 msgid "TL % time 0 Policy: % (pheroIn= 0 ,pheroOut= 0 ) OldPolicy: % ." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:81 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:81 msgid "Mismatching phase size in tls '%', program '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:116 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:116 msgid "No initial signal plan loaded for tls '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:163 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:163 #, fuzzy msgid "Could not build an off-state for tls '%'." msgstr "Birleştirilen tls (TIS) '%' Oluşturulamadı." -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:487 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:487 #, c-format msgid "" "The computed factor sum in WAUT '%' at time '%' equals zero;\n" " assuming an error in WAUT definition." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:159 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:163 msgid "Unused states in tlLogic '%', program '%' in phase % after tl-index %" msgstr "" "tl-index Seçeneğinin ardından Kullanılmayan Evrelerde tlLogic '%' ve '%' " "Programda % Faz" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:178 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:182 msgid "" "Missing yellow phase in tlLogic '%', program '%' for tl-index % when " "switching% to phase %." @@ -4113,11 +4237,11 @@ "tlLogic '%' İçinde Sarı Faz Eksik, %'yi Faz %'ye Değiştirirken tl-index % " "İçin Program '%'." -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:200 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:204 msgid "Missing green phase in tlLogic '%', program '%' for tl-index %." msgstr "tlLogic '%' İçinde Yeşil Faz Eksik, tl-index % İçin Program '%'." -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:263 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:267 msgid "" "Program '%' at tlLogic '%' is incompatible with logic at junction " "'%' (mutual conflict between link indices %,% tl indices %,% phase %).\n" @@ -4125,55 +4249,55 @@ "include the program when building." msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:460 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:464 msgid "Green fraction is only 1% for link % in tlLogic '%', program '%'." msgstr "" "tlLogic '%', Program '%' İçindeki Bağlantı % İçin Yeşil Kısım Yalnızca " "%1'dir." -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:164 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:164 msgid "" "At NEMA tlLogic '%', different sizes of NEMA phase states. Please check the " "NEMA XML" msgstr "" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:566 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:566 msgid "At NEMA tlLogic '%', actuated phase % has no controlling detector" msgstr "NEMA tlLogic '%' Durumunda, Uyarımlı % Fazda Kontrol Dedektörü Yok" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:584 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:584 msgid "At NEMA tlLogic '%, linkIndex % has no controlling detector" msgstr "" "NEMA tlLogic '%' Durumunda, % linkIndex Seçeneğinde Kontrol Dedektörü Yok" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:630 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:630 #, c-format msgid "NEMA tlLogic '%' is not coordinated but an offset was set." msgstr "NEMA tlLogic '%' Eşgüdümlü Değil ama Bir Öteleme Ayarlandı." -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:959 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:959 msgid "I am starting in the coordinated phases" msgstr "Eşgüdümlü Fazlarda Başlıyorum" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel.h:180 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel.h:182 msgid "moveTo is ignored by the current movement model" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel.h:196 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel.h:198 msgid "moveToXY is ignored by the current movement model" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Remote.cpp:209 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Remote.cpp:209 #, c-format msgid "Edge: % does not allow pedestrians." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Remote.cpp:299 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Remote.cpp:299 msgid "Pedestrian model 'remote' does not support simulation.loadState state\n" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:124 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:871 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:124 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:870 msgid "" "Pedestrian vType '%' width % is larger than pedestrian.striping.stripe-width " "and this may cause collisions with vehicles." @@ -4181,187 +4305,187 @@ "Yaya vType '%' Genişliği %, pedestrian.striping.stripe-width Genişliğinden " "Daha Büyük ve Bu, Araçlarla Çarpışmalara Neden Olabilir." -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:179 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:179 msgid "Person '%' could not find sidewalk on edge '%', time=%." msgstr "Yaya '%', '%' Kesiminde Kaldırım Bulamadı, Zaman=%." -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:463 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:466 #, c-format msgid "Invalid walkingarea '%' does not allow continuation." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:1923 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:1926 msgid "Disconnected walk for person '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:2124 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:2127 msgid "Person '%' is jammed on edge '%', time=%." msgstr "Yolcu '%', '%' Kesiminde Sıkıştı, Zaman=%." -#: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:90 +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:90 msgid "Adjusting departPos for cloned walk with routeDistribution '%'" msgstr "" "routeDistribution '%' ile Tıpkılanmış Yürüyüş İçin departPos Ayarlanıyor" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:94 +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:94 msgid "Adjusting arrivalPos for cloned walk with routeDistribution '%'" msgstr "" "routeDistribution '%' ile Tıpkılanmış Yürüyüş İçin arrivalPos Ayarlanıyor" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:98 +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:98 msgid "Adjusting departLane for cloned walk with routeDistribution '%'" msgstr "" "routeDistribution '%' ile Tıpkılanmış Yürüyüş İçin departLane Ayarlanıyor" -#: /home/micha/programming/sumo/src/microsim/transportables/MSStageTrip.cpp:174 +#: D:\Repos\sumo/src\microsim\transportables\MSStageTrip.cpp:174 msgid "" "Ignoring vehicle type '%' when routing person '%' because it is not allowed " "on the start edge." msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:134 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:134 msgid "Changing a transportable ID is not permitted" msgstr "" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:256 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:256 msgid "Teleporting % '%'; waited too long, from edge '%', time=%." msgstr "Işınlanıyor % '%'; Çok Uzun Süre Bekledi, Giriş Kesimi '%', Zaman=%." -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:391 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:391 msgid "parkingAreaReroute not support for containers" msgstr "parkingAreaReroute Konteynerler İçin Desteklenmiyor" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportableControl.cpp:69 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportableControl.cpp:69 #, fuzzy msgid "Unknown pedestrian model '%'" msgstr "Kesim '%' İçin Bilinmeyen Tür '%'" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:142 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:142 msgid "No flow intervals in calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:161 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:161 #, c-format msgid "Calibrator '%' has no active or upcoming interval" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:209 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:209 msgid "Insertion lane may differ from calibrator lane for calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:213 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:213 msgid "Unknown vehicle type '%' in calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:216 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:216 msgid "Mandatory attribute missing in definition of calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:218 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:218 msgid "" "Non-numeric value for numeric attribute in definition of calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:221 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:221 msgid "" "Either 'vehsPerHour', 'speed' or 'type' has to be set in flow definition of " "calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:224 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:224 msgid "Type calibration is not supported in meso for calibrator '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:318 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:318 msgid "Calibrator '%' could not remove vehicle '%' time=%." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:699 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:699 msgid "Cannot set flow for calibrator '%' with overlapping interval." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:701 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:701 msgid "Cannot set flow for calibrator '%' with negative interval." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSLaneSpeedTrigger.cpp:176 +#: D:\Repos\sumo/src\microsim\trigger\MSLaneSpeedTrigger.cpp:176 msgid "Invalid or unsorted time entry in vss '%'." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSLaneSpeedTrigger.cpp:192 +#: D:\Repos\sumo/src\microsim\trigger\MSLaneSpeedTrigger.cpp:192 msgid "Time % was set twice for vss '%'; replacing first entry." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:354 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:409 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:454 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:471 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:492 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:518 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:544 -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:386 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:354 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:409 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:454 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:471 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:492 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:518 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:544 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:386 msgid "" "Overhead circuit solver requested, but solver support (Eigen) not compiled " "in." msgstr "Havai Çevrim Çözücü İstendi Ancak Çözücü Desteği (Eigen) Derlenmedi." -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:579 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:579 msgid "Overhead circuit solver requested, but solver support not compiled in." msgstr "Havai Çevrim Çözücü İstendi Ancak Çözücü Desteği Derlenmedi." -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:690 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:690 #, c-format msgid "" "The requested total power could not be delivered by the overhead wire. Only " "% of originally requested power was provided." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:127 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:127 msgid "MSTriggeredRerouter %: No destination edge id given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:192 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:192 msgid "MSTriggeredRerouter %: No route id given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:217 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:217 msgid "MSTriggeredRerouter %: No parking area id given." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:505 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:505 #, c-format msgid "" "Cannot keep destination edge '%' for vehicle '%' due to closed edges. " "Terminating route." msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:604 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:604 msgid "Invalid value '%' for vehicle parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:612 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:612 msgid "Invalid value '%' for vType parameter '%'" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:784 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:782 #, c-format msgid "" "Parkingarea '%' along the way cannot be used by vehicle '%' for unknown " "reason" msgstr "" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1105 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1103 msgid "" "Invalid distance computation for vehicle '%' to parkingArea '%' at time=%." msgstr "'%' Aracı İçin '%' Park Alanına Mesafe Hesaplaması % Zamanda Geçersiz." -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1160 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1158 msgid "" "Invalid distance computation for vehicle '%' from parkingArea '%' at time=%." msgstr "" "'%' Aracı İçin '%' Park Alanından Mesafe Hesaplaması % Zamanda Geçersiz." -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1236 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1234 msgid "" "ParkingArea '%' is targeted by rerouter '%' but doesn't have it's own " "rerouter. This may cause parking search to abort." @@ -4369,93 +4493,93 @@ "'%' Park Alanı rerouter '%' Tarafından Hedefleniyor Ancak Kendi rerouter " "Değeri Yok. Bu Park Yeri Aramanın İptal Olmasına Neden Olabilir." -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:119 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:153 msgid "Ambiguity in turnarounds computation at junction '%'." msgstr "'%' Kavşağında Geri Dönüş Hesaplamasında Belirsizlik." -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:269 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:358 msgid "Converting invalid rail_crossing to priority junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:273 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:362 msgid "Converting invalid rail_crossing to traffic_light at junction '%'." msgstr "" "'%' Kavşağında Geçersiz rail_crossing (Demiryolu Geçidi) traffic_light " "(Trafik Işığı) Türüne Dönüştürülüyor." -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:282 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1739 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:423 -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:358 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:371 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1744 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:423 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:358 msgid "Could not allocate tls '%'." msgstr "tls '%' Tahsis Edilemedi." -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:173 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:176 msgid "" "Added % bidi-edges to ensure that all tracks are usable in both directions." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:175 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:178 #, c-format msgid "Ignore % edges because they have the wrong spreadType" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:197 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:200 #, c-format msgid "Bidi-edge '%' prevented by filtering rules." msgstr "Bidi-edge '%', Filtreleme Kuralları Tarafından Engellendi." -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:211 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:214 msgid "Could not add bidi-edge '%'." msgstr "bidi-edge '%' Eklenemiyor." -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:272 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:275 msgid "Railway nodes by number of incoming,outgoing edges:" msgstr "Giriş, Çıkış Kesimleri Sayısına Göre Demiryolu Düğümleri:" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:370 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:373 msgid "Found % railway nodes marked as buffer_stop" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:380 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:383 msgid "Found % bidirectional rail edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:406 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:409 msgid "Found % railway edges and % railway nodes (% signals)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:523 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:526 msgid "Added % bidi-edges as extension of existing bidi edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:534 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:537 #, fuzzy msgid "Could not find bidi-edge for edge '%'" msgstr "Kesim '%' İçin Çift Yönlü Bağlantı Bulunamadı" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:639 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:642 msgid "Found % reversible edge sequences between broken rail nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:668 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:671 msgid "Reversed % sequences (count by length: %)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:689 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:692 msgid "Ignoring buffer stop junction '%' with % edges." msgstr "'%' Ara Durak Kavşağı % Kesimiyle Yok Sayılıyor." -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:746 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:749 msgid "Added % edges to connect % buffer stops in both directions." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:827 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:830 msgid "" "Added % bidi-edges between % pairs of railway switches (count by length: %)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:974 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:977 msgid "" "Edge sequence is not consistent with stop sequence in line '%', not adding " "bidi edges." @@ -4463,7 +4587,7 @@ "Kesim Sırası '%' Hattındaki Durak Sırası ile Tutarlı Değil, Çift Yön " "Kesimleri Eklenmiyor." -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1016 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1019 #, c-format msgid "" "Stop on edge '%' can only be reached in reverse but edge has the wrong " @@ -4472,24 +4596,24 @@ "'%' Kesimdeki Durak Yalnızca Geriye Doğru Erişilebilir Ancak Kesimdeki " "spreadType Yanlış." -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1037 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1044 msgid "No connection found between stops on edge '%' and edge '%'." msgstr "" "'%' Kesimindeki Duraklar ile '%' Kesimindeki Duraklar Arasında Bağlantı " "Bulunamadı." -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1147 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1154 msgid "" "Added % bidi-edges to ensure connectivity of straight tracks at geometry-" "like nodes." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1149 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1156 msgid "" "Added % bidi-edges to ensure connectivity of straight tracks at switches." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1209 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1216 msgid "" "Cannot extend track direction priority because there are no track edges with " "positive priority" @@ -4497,7 +4621,7 @@ "Pozitif Önceliğe Sahip İz Kenarları Olmadığı İçin İz Yönü Önceliği " "Genişletilemiyor" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1265 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1272 msgid "" "Edge '%' was loaded with undefined priority (%) but has unambiguous main " "direction (no bidi edge)" @@ -4505,87 +4629,91 @@ "Kesim '%', Tanımlanmamış Bir Öncelikle (%) Yüklendi, Ancak Net Bir Ana Yöne " "Sahip (Çift Yön Kesimi Yok)" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:116 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1359 +msgid "Added % rail signals at % stops." +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:116 #, c-format msgid "Can not build ramp on edge '%' - the edge is unsuitable." msgstr "'%' Kesiminde Rampa Oluşturulamıyor - Kenar Uygun Değil." -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:120 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:120 #, c-format msgid "Can not build on ramp on edge '%' - the edge is not known." msgstr "'%' Kesiminde Giriş Rampası Yapılandırılamıyor - Kesim Bilinmiyor." -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:131 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:131 #, c-format msgid "Can not build off ramp on edge '%' - the edge is not known." msgstr "'%' Kesiminde Çıkış Rampası Yapılandırılamıyor - Kesim Bilinmiyor." -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:249 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:249 msgid "Ups - could not build on-ramp for edge '%' (node could not be build)!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:254 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:254 #, fuzzy msgid "Ups - could not build on-ramp for edge '%'!" msgstr "Trafik Işığı '%' İçin Program Kurulamadı" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:284 -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:289 -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:400 -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:403 -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:710 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:284 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:289 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:400 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:403 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:710 #, fuzzy msgid "Could not set connection!" msgstr "'%' ile '%' Arasındaki Bağlantı Ayarlanamadı." -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:356 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:356 msgid "Ups - could not build off-ramp for edge '%' (node could not be build)!" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:361 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:361 #, fuzzy msgid "Ups - could not build off-ramp for edge '%'!" msgstr "Trafik Işığı '%' İçin Program Kurulamadı" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:423 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:423 #, fuzzy msgid "For edge '%': could not compute shape." msgstr "'%' Kavşağı İçin: Şekil Hesaplanamadı." -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:431 -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:459 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:432 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:460 #, fuzzy, c-format msgid "At least one of edge's '%' nodes is not known." msgstr "'%' Kesiminde Giriş Rampası Yapılandırılamıyor - Kesim Bilinmiyor." -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:456 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:457 #, fuzzy, c-format msgid "Edge '%' needs at least one lane." msgstr "Kesim '%' Hiçbir Şeride Sahip Değil." -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:462 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:463 msgid "Invalid edge id '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:492 -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:626 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:493 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:627 #, c-format msgid "Edge's '%' from- and to-node are at the same position." msgstr "Kesimin '%' Giriş ve Çıkış Düğümleri Aynı Pozisyonda." -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:999 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1000 msgid "Found angle of % degrees at edge '%', segment %." msgstr "'%' Kesimi, % Segmentinde % derecelik açı bulundu." -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1155 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1156 msgid "Could not set connection from '%' to '%'." msgstr "'%' ile '%' Arasındaki Bağlantı Ayarlanamadı." -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1667 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1668 msgid "Connection '%_%->%_%' is only %m short." msgstr "'%_%->%_%' Bağlantısı Yalnızca %m Kısa." -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1768 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1770 msgid "" "Intersecting left turns at junction '%' from lane '%' and lane '%' (increase " "junction radius to avoid this)." @@ -4593,23 +4721,23 @@ "'%' Kavşağında '%' Şeridi ve '%' Şeridi Sola Dönüşleri Kesişiyor (Önlemek " "İçin Kavşak Yarıçapını Artırın)." -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1868 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1870 msgid "" "Speed of % connection '%' reduced by % due to turning radius of % (length=%, " "angle=%)." msgstr "" -"'%' Bağlantı % Hızı % Dönüş Yarıçapı Nedeniyle '%' Azaltıldı (Uzunluk=%, " -"Açı=%)." +"'%' Bağlantı % Hızı % Dönüş Yarıçapı Nedeniyle '%' Azaltıldı (Uzunluk=%, Açı=" +"%)." -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2208 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2210 msgid "In lane '%': lane shape could not be determined (%)." msgstr "'%' Şeritte: Şerit Şekli Belirlenemedi (%)." -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2221 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2223 msgid "In lane '%': Could not build shape (%)." msgstr "'%' Şeritte: Şekil Oluşturulamadı (%)." -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2629 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2637 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " "directions but only % targets" @@ -4617,7 +4745,7 @@ "'%' Kesimi İçin Dönüş İşareti Bilgisi Uygulanamıyor Çünkü % İşaretli Yön Var " "ama Yalnızca % Hedef Var" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2670 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2678 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " "directions and % targets (after target pruning)" @@ -4625,7 +4753,7 @@ "'%' Kesimi İçin Dönüş İşareti Bilgisi Uygulanamıyor Çünkü % İşaretli Yön ve " "% Hedef Var (Hedef Temizliğinden Sonra)" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2689 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2697 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " "connections with directions '%' but target edge '%' has only % suitable lanes" @@ -4634,7 +4762,7 @@ "Sahip % İşaretli Bağlantılar Var Ancak '%' Hedef Kesim Yalnızca % Uygun " "Şeride Sahip" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2716 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2724 msgid "" "Cannot apply turn sign information for edge '%' because not enough target " "lanes could be determined for direction '%'" @@ -4642,691 +4770,700 @@ "'%' Kesimi İçin Dönüş İşareti Bilgisi Uygulanamıyor Çünkü '%' Yönü İçin " "Yeterli Hedef Şerit Belirlenemedi" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2955 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2985 msgid "Edge '%' is not connected to outgoing edges at junction '%'." msgstr "Kesim '%', '%' Kavşağındaki Çıkış Kesimlerine Bağlı Değil." -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2969 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2999 msgid "Lane '%' is not connected from any incoming edge at junction '%'." msgstr "Şerit '%', '%' Kavşağında Herhangi Bir Giriş Kesimine Bağlı Değil." -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2986 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3016 #, c-format msgid "Ignoring changeLeft prohibition for '%' to avoid dead-end" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2989 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3019 #, c-format msgid "Ignoring changeRight prohibition for '%' to avoid dead-end" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:3590 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3620 #, c-format msgid "The lane '%' on edge '%' already had a traffic light signal." msgstr "'%' Kesimindeki '%' Şeridi Zaten Bir Trafik Işığı Sinyaline Sahip." -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:3596 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3626 msgid "Could not set any signal of the tlLogic '%' (unknown group)." msgstr "tlLogic '%' İçin Herhangi Bir Sinyal Ayarlanamadı (Bilinmeyen Grup)." -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4079 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4117 msgid "Ignoring invalid stopOffset for edge '%' (negative offset)." msgstr "Kesim '%' İçin Geçersiz stopOffset Yok Sayılıyor (Negatif Öteleme)." -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4088 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4126 msgid "Ignoring invalid stopOffset for lane '%' (negative offset)." msgstr "Şerit '%' İçin Geçersiz stopOffset Yok Sayılıyor (Negatif Öteleme)." -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4094 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4132 msgid "Ignoring invalid stopOffset for lane '%' (invalid lane index)." msgstr "" "Şerit '%' İçin Geçersiz stopOffset Yok Sayılıyor (Geçersiz Şerit Kimliği)." -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4357 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4395 #, fuzzy, c-format msgid "Edge % allows pedestrians on all lanes" msgstr "Kesim '%' Hiçbir Şeride Sahip Değil." -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4415 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4453 #, c-format msgid "Edge '%' already has a dedicated lane for %s. Not adding another one." msgstr "" "Kesim '%' Zaten % İçin Ayrılmış Bir Şeride Sahip. Bir Tane Daha Eklenmiyor." -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4452 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4490 #, c-format msgid "Edge '%' doesn't have a dedicated lane for %s. Cannot be restored." msgstr "Kesim '%', % İçin Ayrılmış Bir Şeride Sahip Değil. Geri yüklenemez." -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4500 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4538 msgid "Could not avoid overlapping shape at node '%' for edge '%'." msgstr "'%' Kesimi İçin '%' Düğümünde Şeklin Çakışması Önlenemedi." -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:121 -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:140 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:121 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:140 msgid "Invalid boundary: need at least 2 coordinates" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:142 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:142 msgid "Invalid boundary: malformed coordinate" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:259 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:259 msgid "" "Cannot prune edges using a geo-boundary because no projection has been loaded" msgstr "" "Herhangi Bir Projeksiyon Yüklenmediğinden geo-boundary Kullanılarak Kenarlar " "Kesilemez" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:438 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:438 msgid "Attempt to rename edge using existing id '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:498 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:499 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:501 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:498 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:499 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:501 msgid "Error on parsing a split (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:556 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:556 msgid "Split at '%' lies beyond the edge's length (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:639 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:639 msgid "Could not insert edge '%' before split of edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:643 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:643 msgid "Could not insert edge '%' after split of edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:880 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:880 msgid "Moving opposite lane '%' from invalid lane '%' to lane index %." msgstr "Karşı Şerit '%' Geçersiz Şeritten '%' Şerit İndeksine % Taşınıyor." -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:882 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:882 msgid "Removing opposite lane '%' for invalid lane '%'." msgstr "Geçersiz Şerit '%' İçin Karşı Şerit '%' Kaldırılıyor." -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:891 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:891 msgid "Removing unknown opposite lane '%' for edge '%'." msgstr "'%' Kesimi İçin Bilinmeyen Karşı Şerit '%' Kaldırılıyor." -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:896 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:896 msgid "Adapting invalid opposite lane '%' for edge '%' to '%'." msgstr "Geçersiz Karşı Şerit '%' Kesimi '%' İçin Uyarlanıyor." -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:902 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:902 msgid "Adapting missing opposite lane '%' for edge '%'." msgstr "Eksik Karşı Şerit '%' Kesimi '%' İçin Uyarlanıyor." -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:908 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:908 msgid "Averaging edge lengths for lane '%' (length %) and edge '%' (length %)." msgstr "" "Şerit '%' (Uzunluk %) ve Kesim '%' (Uzunluk %) İçin Ortalama Kesim " "Uzunlukları." -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:921 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:921 msgid "Opposite lane '%' does not connect the same nodes as edge '%'!" msgstr "Karşıt şerit '%', '%' kesimi ile aynı düğümleri bağlamıyor!" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1421 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1421 msgid "Replacing loaded roundabout '%' with '%'." msgstr "Yüklü Dönel Kavşak '%', '%' ile Değiştiriliyor." -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1739 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1739 msgid "Edge '%' overlaps with edge '%' by %." msgstr "'%' Kesim, '%' Kesim ile % Oranında Örtüşüyor." -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1755 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1755 #, c-format msgid "Edge '%' has a vertical jump of %m." msgstr "'%' Kesimi %m Dikey Sıçramaya Sahip." -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1757 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1757 #, c-format msgid "Edge '%' has a grade of %%." msgstr "'%' Kesimi %% Eğime Sahip." -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1767 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1767 #, c-format msgid "Connection '%' has a vertical jump of %m." msgstr "'%' Bağlantısı %m Dikey Sıçramaya Sahip." -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1769 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1769 #, c-format msgid "Connection '%' has a grade of %%." msgstr "'%' Bağlantısı %% Eğime Sahip." -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1809 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1809 msgid "Not joining tram edge '%' with % lanes." msgstr "Tram Kesimi '%' ile % Şeritleri Birleştirilmedi." -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1883 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1883 msgid "Ambiguous tram edges '%' and '%' for lane '%'." msgstr "'%' Şeridi İçin Belirsiz Tram '%' ve '%' Kesimleri." -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:2037 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:138 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:554 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:2037 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:138 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:554 #, c-format msgid "Edge's '%' from-node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:2041 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:142 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:566 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:2041 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:142 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:566 #, c-format msgid "Edge's '%' to-node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:52 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:52 msgid "The default number of lanes in an edge" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:56 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:56 msgid "The default width of lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:59 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:59 msgid "The default method for computing lane shapes from edge shapes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:63 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:63 msgid "The default speed on an edge (in m/s)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:67 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:67 msgid "The default friction on an edge" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:71 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:71 msgid "The default priority of an edge" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:74 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:74 msgid "The default edge type" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:77 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:77 msgid "The default width of added sidewalks" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:80 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:80 msgid "The default width of added bike lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:83 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:83 msgid "The default width of a pedestrian crossing" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:86 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:86 msgid "The default speed 'limit' on a pedestrian crossing (in m/s)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:89 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:89 msgid "The default speed 'limit' on a pedestrian walkingarea (in m/s)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:92 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:92 msgid "The default for allowed vehicle classes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:95 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:95 msgid "The default for disallowed vehicle classes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:98 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:98 msgid "Whether junctions should be kept clear by default" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:101 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:101 msgid "The default turning radius of intersections" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:104 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:104 msgid "The default length when overriding connection lengths" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:107 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:107 msgid "" "The default algorithm for computing right of way rules ('default', " "'edgePriority')" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:110 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:110 msgid "" "Allow building right-before-left junctions when the incoming edge speeds are " "below FLOAT (m/s)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:113 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:113 msgid "" "Build left-before-right junctions instead of right-before-left junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:117 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:117 msgid "Omits internal links" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:120 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:120 msgid "" "Remaps alphanumerical IDs of nodes and edges to ensure that all IDs are " "integers" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:123 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:123 msgid "Remaps IDs of nodes to integers starting at INT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:126 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:126 msgid "Remaps IDs of edges to integers starting at INT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:130 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:130 msgid "" "Ensures that generated ids do not included any of the typed IDs from FILE " "(sumo-gui selection file format)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:134 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:134 msgid "Removes vehicle class restrictions from imported edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:138 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:138 msgid "Disables building turnarounds" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:142 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:142 msgid "Disables building turnarounds at tls-controlled junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:145 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:145 msgid "Disables building turnarounds at geometry-like junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:148 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:148 msgid "Disables building turnarounds except at dead end junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:151 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:151 msgid "" "Disables building turnarounds except at at junctions with a dedicated " "turning lane" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:154 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:154 msgid "Disables building turnarounds at fringe junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:157 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:157 msgid "Disables building connections to left" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:161 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:161 msgid "Splits edges across geometry nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:165 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:165 msgid "" "Replace nodes which only define edge geometry by geometry points (joins " "edges)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:168 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:168 msgid "Ensure that the given list of edges is not modified" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:176 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:176 msgid "Ensure that edges with public transport stops are not modified" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:188 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:192 msgid "splits geometry to restrict segment length" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:192 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:196 msgid "reduces too similar geometry points" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:195 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:199 msgid "" "Warn about edge geometries with an angle above DEGREES in successive segments" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:198 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:202 msgid "" "Warn about edge geometries with a turning radius less than METERS at the " "start or end" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:201 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:205 msgid "" "Straighten edge geometries to avoid turning radii less than geometry.min-" "radius" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:204 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:208 msgid "" "Straighten edge geometries to avoid turning radii less than geometry.min-" "radius (only railways)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:207 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:211 msgid "" "Warn if the junction shape is to far away from the original node position" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:210 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:214 msgid "Warn if edges overlap by more than the given threshold value" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:213 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:217 msgid "" "Ignore overlapping edges if they are separated vertically by the given " "threshold." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:216 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:220 msgid "Modify edge geometries to avoid overlap at junctions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:219 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:223 msgid "" "join adjacent lanes that have the same permissions and which do not admit " "lane-changing (sidewalks and disallowed lanes)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:222 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:226 msgid "" "Matches stops outside the road network to the referencing pt line when below " "the given distance" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:226 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:230 msgid "Repair topology of the railway network" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:229 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:233 msgid "" "Repair topology of the railway network just enough to let loaded public " "transport lines to work" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:232 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:236 msgid "" "Allow bidirectional rail use wherever rails with opposite directions meet at " "a straight angle" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:235 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:239 msgid "Add turn-around connections at all loaded stops." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:238 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:242 +msgid "" +"Penalty factor for adding new bidi edges to connect public transport stops" +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:245 msgid "Make all rails usable in both direction" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:241 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:248 msgid "Make all rails edge ids from FILE usable in both direction" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:244 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:251 msgid "Set edge priority values based on estimated main direction" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:247 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:254 msgid "Extend loaded edge priority values based on estimated main direction" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:250 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:257 +msgid "Guess signals that guard public transport stops" +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:260 msgid "The search radius for finding suitable road accesses for rail stops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:254 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:264 msgid "The maximum road accesses registered per rail stops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:258 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:268 msgid "" "The walking length of the access is computed as air-line distance multiplied " "by FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:262 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:272 msgid "Skips automatic generation of stops on the bidi-edge of a loaded stop" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:266 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:276 #, c-format msgid "Warn about edge geometries with a grade in % above FLOAT." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:269 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:279 msgid "Smooth edge geometries with a grade above the warning threshold." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:273 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:283 msgid "Turn off normalizing node positions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:277 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:186 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:287 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:186 msgid "Adds FLOAT to net x-positions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:281 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:190 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:291 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:190 msgid "Adds FLOAT to net y-positions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:284 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:193 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:294 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:193 msgid "Adds FLOAT to net z-positions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:288 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:298 msgid "Flips the y-coordinate along zero" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:292 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:302 msgid "Enable roundabout-guessing" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:295 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:305 msgid "Default visibility when approaching a roundabout" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:298 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:308 msgid "Enable guessing of opposite direction lanes usable for overtaking" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:301 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:311 msgid "Ensure that opposite edges have the same length" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:304 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:314 msgid "Enable guessing of network fringe nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:307 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:317 msgid "Guess disconnected edges above the given speed as outer fringe" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:310 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:320 msgid "Assumes left-hand traffic on the network" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:326 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:336 msgid "Interprets STR[] as list of junctions to exclude from joining" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:338 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:348 msgid "Modifies all edge speeds by adding FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:341 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:351 msgid "Modifies all edge speeds by multiplying by FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:344 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:354 msgid "Modifies all edge speeds to at least FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:352 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:362 msgid "Generate INT intermediate points to smooth out intersection corners" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:355 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:365 msgid "" "Generate INT intermediate points to smooth out lanes within the intersection" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:358 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:368 msgid "" "Generate longer intersections to allow for smooth s-curves when the number " "of lanes changes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:398 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:411 msgid "Forces rectangular cuts between lanes and intersections" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:457 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:470 msgid "Always build walking areas even if there are no crossings" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:460 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:473 msgid "" "Do not create a walkingarea between sidewalks that are connected by a " "pedestrian junction within FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:605 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:618 msgid "Only keep edges with speed in meters/second > FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:609 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:622 msgid "Remove edges in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:613 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:626 msgid "" "Only keep edges in STR[] or those which are kept due to other keep-edges or " "remove-edges options" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:616 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:629 msgid "" "Only keep edges in FILE (Each id on a single line. Selection files from sumo-" "gui are also supported) or those which are kept due to other keep-edges or " "remove-edges options" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:619 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:632 msgid "" "Remove edges in FILE. (Each id on a single line. Selection files from sumo-" "gui are also supported)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:623 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:636 msgid "Remove edges after joining" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:627 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:640 msgid "" "Only keep edges which are located within the given boundary (given either as " "CARTESIAN corner coordinates or as polygon )" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:630 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:643 msgid "" "Only keep edges which are located within the given boundary (given either as " "GEODETIC corner coordinates or as polygon " ")" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:634 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:647 msgid "Only keep edges which allow one of the vclasses in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:637 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:650 msgid "Remove edges which allow only vclasses from STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:640 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:653 msgid "Only keep edges where type is in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:643 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:656 msgid "Only keep the INT largest weakly connected components" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:646 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:659 msgid "Remove edges where type is in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:650 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:663 msgid "Removes isolated edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:657 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:670 msgid "All nodes will be unregulated" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:662 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:675 msgid "Do not regulate nodes in STR[]" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:666 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:679 msgid "Do not regulate district nodes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:672 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:685 msgid "Enable ramp-guessing" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:675 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:688 msgid "" "Guess on-ramps and mark acceleration lanes if they exist but do not add new " "lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:679 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:692 msgid "Treat edges with speed > FLOAT as no ramps" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:683 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:696 msgid "Treat edges with speed < FLOAT as no highways" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:687 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:700 msgid "Use FLOAT as ramp-length" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:691 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:704 msgid "Use FLOAT as minimum ramp-length" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:695 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:708 msgid "Tries to handle the given edges as ramps" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:698 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:711 msgid "Do not consider the given edges as ramps" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:702 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:715 msgid "Avoids edge splitting" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:713 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:725 #, c-format msgid "unsupported value '%' for option '--tls.default-type'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:717 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:729 msgid "" "only one of the options 'keep-edges.in-boundary' or 'keep-edges.in-geo-" "boundary' may be given" @@ -5334,42 +5471,42 @@ "'keep-edges.in-boundary' veya 'keep-edges.in-geo-boundary' Seçeneklerinden " "Yalnızca Biri Verilebilir" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:721 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:733 msgid "" "only one of the options 'no-internal-links' or 'crossings.guess' may be given" msgstr "" "'no-internal-links' veya 'crossings.guess' Seçeneklerinden Yalnızca Biri " "Verilebilir" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:725 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:737 msgid "only one of the options 'no-internal-links' or 'walkareas' may be given" msgstr "" "'no-internal-links' veya 'walkareas' Seçeneklerinden Yalnızca Biri " "Verilebilir" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:729 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:741 msgid "" "only one of the options 'tls.green.time' or 'tls.cycle.time' may be given" msgstr "" "'tls.green.time' veya 'tls.cycle.time' Seçeneklerinden Yalnızca Biri " "Verilebilir" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:733 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:745 msgid "default.lanenumber must be at least 1" msgstr "default.lanenumber En Az 1 Olmalı" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:741 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:753 msgid "" "only one of the options 'default.disallow' or 'default.allow' may be given" msgstr "" "'default.disallow' veya 'default.allow' Seçeneklerinden Yalnızca Biri " "Verilebilir" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:745 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:757 msgid "junctions.internal-link-detail must >= 2" msgstr "junctions.internal-link-detail >=2 Olmalıdır" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:750 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:762 msgid "" "Option 'junctions.scurve-stretch' requires internal lanes to work. Option '--" "no-internal-links' will be disabled." @@ -5377,7 +5514,7 @@ "'junctions.scurve-stretch' Seçeneği Dahili Şeritlerin Çalışmasını " "Gerektirir. '--no-internal-links' Seçeneği Devre Dışı Bırakılacak." -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:757 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:769 msgid "" "option 'default.junctions.radius' is smaller than option 'junctions.small-" "radius'" @@ -5385,362 +5522,362 @@ "'default.junctions.radius' Seçeneği, 'junctions.small-radius' Seçeneğinden " "Daha Küçük" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:765 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:777 msgid "tls.layout must be 'opposites', 'incoming' or 'alternateOneWay'" msgstr "tls.layout 'opposites', 'incoming' veya 'alternateOneWay' Olmalıdır." -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:770 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:782 msgid "default.right-of-way must be one of '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:774 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:786 msgid "roundabouts.visibility-distance must be positive or -1" msgstr "roundabouts.visibility-distance -1 veya Pozitif Olmalıdır." -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:790 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:802 #, fuzzy msgid "Unknown value for default.spreadtype '%'." msgstr "Kesim '%' İçin Bilinmeyen Tür '%'" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:88 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:88 msgid "Cannot supply height since no height data was loaded" msgstr "Yükseklik Verisi Yüklenmediğinden Yükseklik Sağlanamıyor" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:136 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:136 msgid "Could not get height data for coordinate %" msgstr "% Koordinatı İçin Yükseklik Verisi Alınamadı" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:190 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:190 #, fuzzy msgid "Could not open shape file '%'." msgstr "tls '%' Tahsis Edilemedi." -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:204 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:204 msgid "" "Could not create geocoordinates converter; check whether proj.4 is installed." msgstr "" "geocoordinates Coğrafi Koordinat Dönüştürücü Oluşturulamadı; proj.4 Kurulu " "Olup Olmadığını Kontrol Edin." -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:231 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:231 msgid "Ignored heightmap feature type %" msgstr "heightmap Özellik Tipi % Yok Sayılmış" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:276 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:276 msgid "Cannot load shape file since SUMO was compiled without GDAL support." msgstr "SUMO, GDAL Desteği Olmadan Derlendiğinden Şekil Dosyası Yüklenemiyor." -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:288 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:288 msgid "Cannot load GeoTIFF file." msgstr "GeoTIFF Dosyası Yüklenemiyor." -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:303 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:303 #, fuzzy msgid "Could not parse geo information from %." msgstr "'%' ile '%' Arasındaki Bağlantı Ayarlanamadı." -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:312 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:312 #, fuzzy msgid "Unknown color band in %." msgstr "Bilinmeyen '%' Otobüs Durağı." -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:319 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:319 msgid "Failure in reading %." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:348 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:348 msgid "Cannot load GeoTIFF file since SUMO was compiled without GDAL support." msgstr "" "SUMO, GDAL Desteği Olmadan Derlendiğinden GeoTIFF Dosyası Yüklenemiyor." -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:89 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:89 #, fuzzy msgid "Could not load names of edges too keep from '%'." msgstr "'%' Olan Yüklenen Bağlantı '%' Olarak Ayarlanamadı." -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:107 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:107 #, fuzzy msgid "Could not load IDs from '%'." msgstr "tls '%' Tahsis Edilemedi." -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:123 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:123 msgid "Invalid lane id '%' (missing '_')." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:130 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:130 msgid "Invalid lane index '%' for lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedSUMOTLDef.cpp:359 +#: D:\Repos\sumo/src\netbuild\NBLoadedSUMOTLDef.cpp:359 #, c-format msgid "Could not patch tlLogic '%' for changed crossings" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedSUMOTLDef.cpp:889 +#: D:\Repos\sumo/src\netbuild\NBLoadedSUMOTLDef.cpp:889 msgid "Unused state in tlLogic '%', program '%' at tl-index %" msgstr "tlLogic '%' İçinde Kullanılmayan Durum, tl-index % program '%'" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:83 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:83 msgid "" "TYellow of signal group '%' was less than the computed one; patched (was:%, " "is:%)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:300 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:300 msgid "During computation of traffic light '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:514 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:514 msgid "Could not set signal on connection (signal: %, group: %)" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:612 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:612 msgid "myNeedsContRelation was not propperly initialized\n" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:94 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:94 #, fuzzy msgid "Removing self-loops" msgstr " Kendini Döndüren Kesim '%' Kaldırılıyor" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:98 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:98 msgid "Finding isolated roads" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:103 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:103 msgid "Finding largest components" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:110 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:110 msgid "Removing unwished edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:117 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:117 msgid "Processing public transport stops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:132 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:132 msgid "Revising public transport stops based on pt lines" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:138 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:138 msgid "Cleaning up public transport stops that are not served by any line" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:144 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:144 #, c-format msgid "Removed % pt stops because they could not be assigned to the network" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:149 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:149 msgid "Align pt stop id signs with corresponding edge id signs" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:186 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:186 msgid "Joining tram edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:190 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:190 msgid " Joined % tram edges into roads." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:228 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:228 #, fuzzy msgid "Joining junction clusters" msgstr "Kavşak Kümesi % (%) Eksiltiliyor." -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:233 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:233 #, fuzzy, c-format msgid " Joined % junction cluster(s)." msgstr "Kavşak Kümesi % (%) Eksiltiliyor." -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:236 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:236 msgid "Joining junctions with identical coordinates" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:240 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:240 #, fuzzy, c-format msgid " Joined % junctions." msgstr "% Kavşakları Birleştirilemedi." -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:245 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:245 #, fuzzy msgid "Joining lanes" msgstr "Çıktı Şeritleri Listeleniyor" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:248 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:248 #, c-format msgid " Joined lanes on % edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:258 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:258 #, c-format msgid " % nodes removed." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:278 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:278 msgid "Reducing geometries" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:285 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:285 msgid "Joining similar edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:295 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:295 msgid "guessing opposite direction edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:301 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:301 msgid "Splitting geometry edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:308 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:308 #, c-format msgid " Joined % junctions after splitting geometry." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:313 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:313 msgid "Computing turning directions" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:322 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:322 #, fuzzy msgid "Assigning nodes to traffic lights" msgstr "'%' Trafik Işığında Bağlantı İndeksi % İçin signalID Tahmin Ediliyor." -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:345 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:345 msgid "Guessing and setting on-/off-ramps" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:361 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:361 msgid "Guessed % bike lanes." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:372 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:372 #, c-format msgid "Guessed % sidewalks." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:382 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:382 #, c-format msgid "Remapped % edge IDs and % node IDs." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:397 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:397 msgid "Sorting nodes' edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:402 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:402 msgid "Computing node shapes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:410 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:410 msgid "Computing edge shapes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:423 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:423 msgid "Applying speed modifications" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:436 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:436 #, fuzzy msgid "Computing node types" msgstr "Hesaplanan Dedektör Tipleri:" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:447 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:447 #, c-format msgid "Guessed % pedestrian crossings." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:475 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:475 msgid "Computing priorities" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:479 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:479 msgid "Computing approached edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:484 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:484 msgid "Guessing and setting roundabouts" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:487 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:487 #, fuzzy msgid " Guessed % roundabout(s)." msgstr "Dönel Ada İçinde Bilinmeyen Kesim '%'." -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:493 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:493 msgid "Computing approaching lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:497 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:497 msgid "Dividing of lanes on approached lanes" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:503 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:503 msgid "Guessing Network fringe" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:506 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:506 #, c-format msgid " Guessed % fringe nodes." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:511 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:511 msgid "Processing turnarounds" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:529 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:529 msgid "Rechecking of lane endings" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:551 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:551 #, fuzzy msgid "Joining traffic light nodes" msgstr "Trafik Işığı Dosyalarını Yükleyemiyor." -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:558 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:558 msgid "Computing traffic light control information" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:565 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:565 msgid "Computing node logics" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:570 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:570 #, fuzzy msgid "Computing traffic light logics" msgstr "Trafik Işığı Dosyalarını Yükleyemiyor." -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:577 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:577 msgid " % traffic light(s) %computed." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:585 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:588 msgid "Building inner edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:598 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:601 msgid "stretching junctions to smooth geometries" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:627 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:630 msgid "Generating street signs" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:638 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:641 msgid "Checking overlapping edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:643 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:646 msgid "Checking edge grade" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:658 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:661 msgid "Find accesses for pt rail stops" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:681 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:684 msgid "" "Network contains very large coordinates and will probably flicker in the " "GUI. Check for outlying nodes and make sure the network is shifted to the " @@ -5750,67 +5887,67 @@ "Görünmeyecektir. Merkez Dışı Düğümleri Kontrol Edin ve Ağın Koordinat " "Kaynağına Kaydırıldığından Emin Olun" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:688 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:691 msgid "Moving network to origin" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:299 -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:321 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:299 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:321 msgid "Invalid node id '%'." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:465 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:465 msgid " Removing self-looping edge '%'" msgstr " Kendini Döndüren Kesim '%' Kaldırılıyor" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:744 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:744 #, fuzzy msgid "Could not compute indirect left turn shape at node '%'" msgstr "'%' Hattının Yönü '%' Durağında Belirlenemedi." -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:760 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:760 #, fuzzy, c-format msgid "Connection '%' starts at a non-existant lane." msgstr "'%' Bağlantısı %% Eğime Sahip." -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:763 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:763 #, fuzzy, c-format msgid "Connection '%' targets a non-existant lane." msgstr "'%' Bağlantısı %% Eğime Sahip." -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:777 -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:795 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:777 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:795 msgid "Could not use custom shape for connection %." msgstr "'%' Bağlantısı İçin Özel Şekil Kullanılamadı." -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:786 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:786 msgid "Custom shape has distance % to incoming lane for connection %." msgstr "Özel Şeklin % Bağlantısı İçin Giriş Şeridine % Mesafesi Vardır." -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:803 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:803 msgid "Custom shape has distance % to outgoing lane for connection %." msgstr "Özel Şeklin % Bağlantısı İçin Çıkış Şeridine % Mesafesi Vardır." -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1003 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1003 msgid "" "Junction '%' is too complicated (% connections, max %); will be set to %." msgstr "" "'%' Kavşağı Çok Karmaşık (% Bağlantılar, Maks. %); % Olarak Ayarlanacaktır." -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1144 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1144 #, c-format msgid "Shape for junction '%' has distance % to its given position." msgstr "'%' Kavşağın Şekli, Verilen Konumda % Mesafeye Sahiptir." -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1148 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1148 msgid "For junction '%': could not compute shape." msgstr "'%' Kavşağı İçin: Şekil Hesaplanamadı." -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1852 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1850 msgid "Something went wrong during the building of a connection..." msgstr "Bağlantı Oluşturulması Sırasında Bir Şeyler Ters Gitti..." -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:2871 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:2878 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (no " "walkingarea found)." @@ -5818,7 +5955,7 @@ "[%] Kesimlerle '%' Kavşağında Geçersiz Geçit '%' Atılıyor (Yürüme Alanı " "Bulunamadı)." -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3047 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3054 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (no vehicle " "lanes to cross)." @@ -5826,20 +5963,20 @@ "[%] Kesimlerle '%' Kavşağında Geçersiz Geçit '%' Atılıyor (Geçilecek Araç " "Şeridi Yok)." -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3066 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3073 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (invalid " "shape)." msgstr "" "[%] Kesimlerle '%' Kavşağında Geçersiz Geçit '%' Atılıyor (Geçersiz Şekil)." -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3217 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3224 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' targets '%' and " "'%'." msgstr "'%' Kavşağında Geçersiz Yaya Yapısı; '%' Geçidi '%' ve '%' Hedefliyor." -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3240 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3247 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' is targeted by '%' " "and '%'." @@ -5847,7 +5984,7 @@ "'%' Kavşağında Geçersiz Yaya Yapısı; '%' Geçidi '%' ve '%' Tarafından " "Hedefleniyor." -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3245 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3252 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' starts and ends at " "walkingarea '%'." @@ -5855,35 +5992,35 @@ "'%' Kavşağında Geçersiz Yaya Yapısı; '%' Geçidi walkingarea '%' Konumunda " "Başlayıp Bitiyor." -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3465 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3472 msgid "Invalid pedestrian topology: crossing '%' across [%] has no target." msgstr "" "'%' Kavşağında Geçersiz Yaya Yapısı; '%' Geçidi [%] Üzerinde Hedefe Sahip " "Değil." -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3685 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3692 #, fuzzy msgid "Request for unknown crossing '%'" msgstr " Bilinmeyen Nedenlerle" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3701 -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3712 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3708 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3719 msgid "Request for unknown crossing for the given Edges" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:319 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:319 msgid "Removed a road without junctions: %." msgstr "Kavşaksız Bir Yol Kaldırıldı: % ." -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:406 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:406 msgid "Found % components and removed % (% edges)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:447 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:447 msgid "Removed % railway components (% edges)." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:658 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:663 #, c-format msgid "" "Ignoring join exclusion for junction '%' since it already occurred in a list " @@ -5892,14 +6029,14 @@ "Birleştirilecek Düğümler Listesinde Zaten Mevcut Olduğundan, '%' Kavşağı " "İçin Birleştirme Yok Sayılıyor." -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:691 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:696 msgid "" "Ignoring join-cluster because junction '%' was already excluded from joining." msgstr "" "Birleştirme Kümesi Yok Sayılıyor Çünkü '%' Kavşağı Zaten Birleştirmenin " "Dışında Bırakıldı." -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:694 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:699 #, c-format msgid "" "Ignoring join-cluster because junction '%' already occurred in another join-" @@ -5908,89 +6045,89 @@ "'%' Kavşağı Zaten Başka Bir Birleştirme Kümesinde Oluştuğu İçin Birleştirme " "Kümesi Yok Sayılıyor." -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:700 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:705 #, fuzzy, c-format msgid "Unknown junction '%' in join-cluster." msgstr "Dönel Ada İçinde Bilinmeyen Kesim '%'." -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:708 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:713 msgid "Ignoring join-cluster '%' because it has size '%'." msgstr "'%' Boyutuna Sahip Olduğu İçin '%' Birleştirme Kümesi Yok Sayılıyor." -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:722 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:727 msgid "unknown junction '%' while joining." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:780 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:821 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:828 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:833 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:840 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:785 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:826 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:833 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:838 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:845 msgid "Not joining junctions % (%)." msgstr "% (%) Kavşakları Birleştirilmiyor." -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:800 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:814 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:805 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:819 msgid "Reducing junction cluster % (%)." msgstr "Kavşak Kümesi % (%) Eksiltiliyor." -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1709 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1714 msgid "Could not join junctions %." msgstr "% Kavşakları Birleştirilemedi." -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1909 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1956 msgid "Ambiguous traffic light type for node cluster '%', setting to '%'." msgstr "" "'%' Düğüm Kümesi İçin Belirsiz Trafik Işığı Türü, '%' Olarak Ayarlanıyor." -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2005 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2052 #, fuzzy, c-format msgid " The junction '%' to set as not-controlled is not known." msgstr "'%' Kavşağında Demiryolu Sinyali Hiçbir Bağlantıyı Kontrol Etmez" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2174 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2221 msgid "Could not build joined tls '%'." msgstr "Birleştirilen tls (TIS) '%' Oluşturulamadı." -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2219 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2266 msgid "Could not build guessed, joined tls." msgstr "Tahmin Yapılandırılamadı, tls Birleştirildi." -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2335 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2382 msgid "Could not build a joined tls." msgstr "Bir Birleştirilmiş tls Yapılandırılamadı." -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2352 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2399 msgid "Building a tl-logic for junction '%' twice is not possible." msgstr "'%' Kavşağı İçin Üst Üste tl-logic Yapılandırmak Mümkün Değildir." -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2434 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2526 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2481 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2573 msgid "-----------------------------------------------------" msgstr "-----------------------------------------------------" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2435 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2482 msgid "Summary:" msgstr "Özet:" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2493 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2540 msgid " Node type statistics:" msgstr " Düğüm Tipi İstatistikleri:" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2522 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2569 msgid " Network boundaries:" msgstr " Ağ Sınırları:" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2555 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2602 #, fuzzy msgid "Attempt to rename node using existing id '%'" msgstr "Var olmayan Kesim '%' Üzerindeki TT Durağı '%' Kaldırılıyor." -#: /home/micha/programming/sumo/src/netbuild/NBNodeShapeComputer.cpp:441 +#: D:\Repos\sumo/src\netbuild\NBNodeShapeComputer.cpp:444 msgid "Fixing offset for edge '%' at node '%." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:561 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:561 #, c-format msgid "" "Minor green from edge '%' to edge '%' exceeds %m/s. Maybe a left-turn lane " @@ -5999,7 +6136,7 @@ "'%' Kesiminden '%' Kesimine Kadar Sınırlı Yeşil %m/s'yi Aşıyor. Sola Dönüş " "Şeridi Eksik Olabilir." -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:773 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:773 msgid "" "Generating NEMA phases is not support for traffic light '%' with % incoming " "edges. Using tlType 'actuated' as fallback" @@ -6007,43 +6144,43 @@ "NEMA Fazlarının Oluşturulması, % Giriş Kesimleri ile '%' Trafik Işığını " "Desteklemiyor. tlType 'actuated' Geri Bildiriminde Kullanılıyor" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:799 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:799 msgid "The traffic light '%' cannot be adapted to a cycle time of %." msgstr "'%' Trafik Işığı, % Devre Süresine Uyarlanamaz." -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:818 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:818 msgid "The traffic light '%' has a high cycle time of %." msgstr "'%' Trafik Işığı Yüksek % Devre Süresine Sahip." -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:197 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:197 msgid "Could not retrieve edge '%' for first stop of line '%'." msgstr "'%' Hattının İlk Durağı İçin '%' Kesimi Alınamadı." -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:203 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:203 msgid "First stop edge '%' is not part of the route of line '%'." msgstr "İlk Durak Kesimi '%', '%' Hattı Rotasının Bir Parçası Değil." -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:227 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:227 msgid "Could not retrieve edge '%' for last stop of line '%'." msgstr "'%' Hattının Son Durağı İçin '%' Kesimi Alınamadı." -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:233 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:233 msgid "Last stop edge '%' is not part of the route of line '%'." msgstr "Son Durak Kesimi '%', '%' Hattı Rotasının Bir Parçası Değil." -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:294 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:302 msgid "Removed invalid stop '%' from line '%'." msgstr "Geçersiz '%' Durak '%' Hattından Kaldırıldı." -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:312 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:320 msgid "Removed duplicate stop '%' at area '%' from line '%'." msgstr "'%' Alanındaki Yinelenen '%' Durak '%' Hattından kaldırıldı." -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:315 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:323 msgid "Removed duplicate stop '%' named '%' from line '%'." msgstr "'%' Hattından '%' Adlı Yinelenen Durak '%' Kaldırıldı." -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:99 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:99 msgid "" "Cannot revise pt stop localization for pt line '%', which consist of one way " "only. Ignoring!" @@ -6051,7 +6188,7 @@ "Yalnızca Tek Yönden Oluşan '%' Hattı İçin TT Durağı Yerelleştirmesi " "Düzeltilemiyor. Yok Sayılıyor!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:103 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:103 msgid "" "Cannot revise pt stop localization for pt line '%', which has no route " "edges. Ignoring!" @@ -6059,7 +6196,7 @@ "Rota Kesimleri Olmayan '%' TT Hattı İçin TT Durağı Yerelleştirmesi " "Düzeltilemiyor. Yok Sayılıyor!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:122 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:122 msgid "" "Cannot assign stop '%' on edge '%' to pt line '%' (wayNodes not found). " "Ignoring!" @@ -6067,23 +6204,23 @@ "'%' Kesiminde '%' Durak '%' TT Hattına Atanamıyor (wayNodes Bulunamadı). Yok " "Sayılıyor!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:137 -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:151 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:137 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:151 msgid "" "Cannot revise pt stop localization for incomplete pt line '%'. Ignoring!" msgstr "" "Tamamlanmamış TT Hattı '%' İçin Durak Yerelleştirmesi Düzeltilemiyor. Yok " "Sayılıyor!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:162 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:162 msgid "Could not re-assign PT stop '%', probably broken osm file." msgstr "TT Durağı '%' Yeniden Atanamadı, Muhtemelen OSM Dosyası Bozuk." -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:171 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:171 msgid "PT stop '%' has been moved to edge '%'." msgstr "TT Durağı '%', '%' Kesimine Taşındı." -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:243 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:243 msgid "" "Could not assign stop '%' to pt line '%' (closest edge '%', distance %). " "Ignoring!" @@ -6091,20 +6228,20 @@ "'%' TT Hattına '%' Durağı Atanamadı (En Yakın Kesim '%', Mesafe %). Yok " "Sayılıyor!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:275 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:275 msgid "Cannot assign stop % on edge '%' to pt line '%'. Ignoring!" msgstr "'%' Kesimindeki '%' TT Hattına % Durağı Atanamıyor. Yok Sayılıyor!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:458 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:475 msgid "" "Could not determine vehicle class for public transport line of type '%'." msgstr "'%' Tipi Toplu Taşıma Hattı İçin Araç Sınıfı Belirlenemedi." -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:523 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:540 msgid "Could not determine direction for line '%' at stop '%'." msgstr "'%' Hattının Yönü '%' Durağında Belirlenemedi." -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:110 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:110 msgid "" "Could not find corresponding edge or compatible lane for pt stop '%' (%). " "Thus, it will be removed!" @@ -6112,7 +6249,7 @@ "TT Durağı '%' (%) İçin Karşılık Gelen Kesim veya Uyumlu Şerit Bulunamadı. Bu " "Sebeple Kaldırılacak!" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:136 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:136 msgid "" "Could not create reverse-direction stop for superposed edge '%' (origStop " "'%'). Stop id '%' already in use by stop on edge '%'." @@ -6120,24 +6257,24 @@ "Üst Üste Konumlandırılmış Kesim '%' İçin Ters Yön Durağı Oluşturulamadı " "(origStop '%'). Durak No '%', '%' Kesimindeki Durak Tarafından Kullanımda." -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:170 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:170 #, c-format msgid "Added % stops for superposed rail edges." msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:272 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:272 msgid "Could not determine cross product for edge '%'." msgstr "Kesim '%' İçin Çapraz Çarpım Belirlenemedi." -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:326 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:326 msgid "Removing pt stop '%' on non existing edge '%'." msgstr "Var olmayan Kesim '%' Üzerindeki TT Durağı '%' Kaldırılıyor." -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:357 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:357 msgid "Could not re-assign pt stop '%' after replacing edge '%'." msgstr "'%' Kesimi Değiştirildikten Sonra TT Durağı '%' Yeniden Atanamadı." -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:446 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:446 msgid "" "Could not find corresponding edge or compatible lane for free-floating pt " "stop '%' (%). Thus, it will be removed!" @@ -6145,54 +6282,61 @@ "Serbest TT Durağı '%' (%) İçin Karşılık Gelen Kesim veya Uyumlu Şerit " "Bulunamadı. Bu Sebeple Kaldırılacak!" -#: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:44 +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:44 #, c-format msgid "Ignoring parking area on edge '%' due to invalid permissions." msgstr "Geçersiz İzinler Nedeniyle '%' Kesimindeki Park Alanı Yok Sayılıyor." -#: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:51 +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:51 #, c-format msgid "Ignoring parking area on edge '%' due to insufficient space." msgstr "Yetersiz Alan Nedeniyle '%' Kesimindeki Park Alanı Yok Sayılıyor." -#: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:71 +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:71 msgid "Could not find edge for parkingArea '%'." msgstr "'%' parkingArea İçin Kesim Bulunamadı." -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:115 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:115 #, c-format msgid "The traffic light '%' does not control any links; it will not be build." msgstr "" "Trafik Işığı '%' Herhangi Bir Linki Kontrol Etmiyor; Yapılandırılmayacak." -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:229 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:229 msgid "Unreachable edge '%' within tlLogic '%'" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:509 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:509 #, c-format msgid "The rail crossing '%' does not have any roads." msgstr "'%' Demiryolu Geçidi Herhangi Bir Yol İçermiyor." -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogic.cpp:100 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogic.cpp:100 #, c-format msgid "When adding phase: illegal character '%' in state" msgstr "" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogic.cpp:233 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogic.cpp:233 #, c-format msgid "Non-static traffic light '%' does not define variable phase length." msgstr "Statik Olmayan Trafik Işığı '%', Değişken Faz Uzunluğunu Tanımlamaz." -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogicCont.cpp:235 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:243 msgid "Could not build program '%' for traffic light '%'" msgstr "Trafik Işığı '%' İçin Program Kurulamadı" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogicCont.cpp:376 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:384 msgid "Guessing signalID for link index % at traffic light '%'." msgstr "'%' Trafik Işığında Bağlantı İndeksi % İçin signalID Tahmin Ediliyor." -#: /home/micha/programming/sumo/src/netconvert_main.cpp:97 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:491 +#, c-format +msgid "" +"Was not able to apply the OpenDRIVE signal group information onto the signal " +"program of traffic light % generated by SUMO." +msgstr "" + +#: D:\Repos\sumo/src\netconvert_main.cpp:98 msgid "" "Network importer / builder for the microscopic, multi-modal traffic " "simulation SUMO." @@ -6200,654 +6344,659 @@ "Mikro Ölçekli, Çok Modlu Trafik Simülasyonu SUMO İçin Ağ Yükleyici / " "Oluşturucu." -#: /home/micha/programming/sumo/src/netconvert_main.cpp:120 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:273 -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:93 +#: D:\Repos\sumo/src\netconvert_main.cpp:121 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:273 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:93 #, fuzzy msgid "Could not build projection!" msgstr "Bir Birleştirilmiş tls Yapılandırılamadı." -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:41 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:41 msgid "Read edge-type defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:44 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:44 msgid "" "The Ids of generated nodes use an alphanumerical code for easier readability " "when possible" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:48 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:48 msgid "Generate INT left-turn lanes" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:50 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:50 msgid "Set the length of generated turning lanes to FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:53 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:53 msgid "" "Apply random spatial perturbation in x direction according the the given " "distribution" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:55 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:55 msgid "" "Apply random spatial perturbation in y direction according the the given " "distribution" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:57 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:57 msgid "" "Apply random spatial perturbation in z direction according the the given " "distribution" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:63 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:63 msgid "Defines the probability to build a reverse edge" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:67 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:67 msgid "Draw lane numbers randomly from [1,default.lanenumber]" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:71 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:71 msgid "Draw edge priority randomly from [1,default.priority]" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:74 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:74 msgid "Draw edge type randomly from all loaded types" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:80 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:80 msgid "Forces NETGEN to build a grid-like network" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:85 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:85 msgid "The number of junctions in both dirs" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:90 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:90 msgid "The length of streets in both dirs" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:95 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:95 msgid "The number of junctions in x-dir; Overrides --grid-number" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:100 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:100 msgid "The number of junctions in y-dir; Overrides --grid-number" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:105 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:105 msgid "The length of horizontal streets; Overrides --grid-length" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:110 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:110 msgid "The length of vertical streets; Overrides --grid-length" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:114 -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:147 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:114 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:147 msgid "" "The length of streets attached at the boundary; 0 means no streets are " "attached" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:117 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:117 msgid "" "The length of streets attached at the boundary in x direction; 0 means no " "streets are attached" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:119 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:119 msgid "" "The length of streets attached at the boundary in y direction; 0 means no " "streets are attached" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:124 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:124 msgid "Forces NETGEN to build a spider-net-like network" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:129 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:129 msgid "The number of axes within the net" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:134 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:134 msgid "The number of circles of the net" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:139 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:139 msgid "The distances between the circles" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:144 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:144 msgid "Omit the central node of the network" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:152 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:152 msgid "Forces NETGEN to build a random network" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:157 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:157 msgid "Describes how many times an edge shall be added to the net" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:162 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:162 msgid "The maximum distance for each edge" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:167 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:167 msgid "The minimum distance for each edge" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:172 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:172 msgid "The minimum angle for each pair of (bidirectional) roads in DEGREES" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:177 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:177 msgid "The number of tries for creating each node" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:182 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:182 msgid "Probability for roads to continue at each node" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:187 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:187 msgid "Probability for a node having exactly 1 neighbor" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:192 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:192 msgid "Probability for a node having exactly 2 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:197 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:197 msgid "Probability for a node having exactly 3 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:202 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:202 msgid "Probability for a node having exactly 4 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:207 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:207 msgid "Probability for a node having exactly 5 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:212 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:212 msgid "Probability for a node having exactly 6 neighbors" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:215 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:215 msgid "Place nodes on a regular grid with spacing rand.min-distance" msgstr "" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:235 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:235 msgid "You have to specify the type of network to generate." msgstr "Oluşturulacak Ağın Türünü Belirtmeniz Gerekiyor." -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:239 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:239 msgid "You may specify only one type of network to generate at once." msgstr "Aynı Anda Oluşturmak İçin Yalnızca Tek Bir Tür Ağ Belirtebilirsiniz." -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:274 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:274 msgid "Option 'random-type' takes no effect unless 'type-files' are loaded" msgstr "'random-type' Seçeneği, 'type-files' Yüklenmediği Sürece Etkili Olmaz" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:90 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:90 msgid "" "[traffic_light|priority|right_before_left|left_before_right|" "traffic_light_right_on_red|priority_stop|allway_stop|...] Determines " "junction type (see wiki/Networks/PlainXML#Node_types)" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:119 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:120 msgid "Spider networks need at least 3 arms." msgstr "Örümcek Ağları En Az 3 Kola Sahip Olmalıdır." -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:123 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:124 msgid "Spider networks with many arms should use option spider.omit-center" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:126 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:127 msgid "Spider networks need at least one circle." msgstr "Örümcek Ağlarının En Az Bir Daireye İhtiyacı Vardır." -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:134 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:135 #, c-format msgid "" "The radius of spider networks should be at least % for the given lanenumber, " "lanewidth and junction radius" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:176 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:177 msgid "" "The number of nodes must be positive and at least 2 in one direction if " "there are no attachments." msgstr "Herhangi Bir Ek Yoksa Düğüm Sayısı Bir Yönde En Az İki Olmalıdır." -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:184 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:185 #, c-format msgid "" "The distance between nodes should be at least % for the given lanenumber, " "lanewidth and junction radius" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:190 -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:195 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:191 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:196 #, c-format msgid "" "The length of attached streets should be at least % for the given " "lanenumber, lanewidth and junction radius" msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:230 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:231 msgid "" "Synthetic network generator for the microscopic, multi-modal traffic " "simulation SUMO." msgstr "" "Mikroskopik, Çok Modlu Trafik Simülasyonu SUMO İçin Yapay Ağ Oluşturucu." -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:266 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:267 msgid " Generation done;" msgstr " Üretim Tamamlandı;" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:267 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:268 #, c-format msgid " % nodes generated." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:268 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:269 #, c-format msgid " % edges generated." msgstr "" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:273 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:274 msgid " Removed % traffic lights at geometry-like nodes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:53 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:53 msgid "Read SUMO-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:60 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:60 msgid "Read XML-node defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:66 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:66 msgid "Read XML-edge defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:72 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:72 msgid "Read XML-connection defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:75 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:75 msgid "Read XML-traffic light defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:81 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:81 msgid "Read XML-type defs from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:86 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:86 msgid "Reads public transport stops from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:88 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:88 msgid "Reads public transport lines from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:90 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:90 msgid "Reads polygons from FILE for embedding in network where applicable" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:97 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:97 msgid "Read shapefiles (ArcView, Tiger, ...) from files starting with 'FILE'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:102 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:102 msgid "" "Read converted Navteq GDF data (unsplitted Elmar-network) from path 'FILE'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:106 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:106 msgid "Read OSM-network from path 'FILE(s)'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:110 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:110 msgid "Read OpenDRIVE-network from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:114 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:114 msgid "Read VISUM-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:118 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:118 msgid "Read VISSIM-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:123 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:123 msgid "Read RoboCup-net from DIR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:127 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:127 msgid "Read MATsim-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:131 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:131 msgid "Read ITSUMO-net from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:134 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:134 msgid "Read heightmap from ArcGIS shapefile" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:137 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:137 msgid "Read heightmap from GeoTIFF" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:145 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:159 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:199 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:145 +#: D:\Repos\sumo/src\od2trips_main.cpp:159 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:199 msgid "Continue on broken input" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:148 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:148 msgid "Continue on invalid connections" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:151 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:151 msgid "Show errors in connections at parsing" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:154 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:154 msgid "Continue on unknown edge types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:157 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:157 msgid "vmax is parsed as given in km/h" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:160 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:160 msgid "" "Use YYYY-MM-DD date to determine the readiness of features under construction" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:163 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:163 msgid "Remove all z-data" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:166 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:166 msgid "Remove the list of keys from all params" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:169 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:169 msgid "" "List vehicle classes that may ignore lane changing restrictions ('all' " "discards all restrictions)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:174 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:174 msgid "If edge shapes do not end at the node positions, extend them" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:178 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:178 msgid "Skips the check for duplicate nodes and edges" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:181 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:181 msgid "Imports elevation data" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:184 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:184 msgid "" "Reconstruct (relative) elevation based on layer data. Each layer is raised " "by FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:187 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:187 #, c-format msgid "" "Maximum grade threshold in % at 50km/h when reconstrucing elevation based on " "layer data. The value is scaled according to road speed." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:190 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:190 msgid "Whether one-way roads should be spread to the side instead of centered" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:193 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:193 msgid "Import lane-specific access restrictions" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:197 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:197 msgid "Import bike lanes and fix directions and permissions on bike paths" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:200 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:200 msgid "Import sidewalks" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:203 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:203 msgid "Import crossings" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:206 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:206 msgid "Import turning arrows from OSM to help with connection building" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:209 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:209 msgid "The default length of a public transport stop in FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:211 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:211 msgid "The default length of a bus stop in FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:213 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:213 msgid "The default length of a tram stop in FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:215 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:215 msgid "The default length of a train stop in FLOAT m" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:218 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:219 msgid "Whether additional attributes shall be imported" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:221 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:223 msgid "" "List of additional attributes that shall be imported from OSM via osm.all-" "attributes (set 'all' to import all)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:224 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:226 msgid "" "The speed limit to be set when there is no actual speed limit in reality" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:228 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:230 msgid "The edge lengths given in the MATSIM-file will be kept" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:231 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:233 msgid "The lane number will be computed from the capacity" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:237 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:239 msgid "Read edge ids from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:241 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:243 msgid "Read from-node ids from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:245 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:247 msgid "Read to-node ids from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:249 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:251 msgid "Read type ids from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:252 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:254 msgid "Read lane number from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:255 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:257 msgid "Read speed from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:258 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:260 msgid "Read custom edge length from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:261 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:263 msgid "Read total edge width from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:264 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:266 msgid "Read (non-unique) name from column STR" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:267 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:269 msgid "" "Distance threshold for determining whether distinct shapes are connected " "(used when from-id and to-id are not available)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:270 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:272 msgid "Add the list of field names as edge params" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:274 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:276 msgid "Uses edge type defaults on problems" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:279 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:281 msgid "Insert edges in both directions" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:283 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:285 msgid "Guess the proper projection" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:286 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:125 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:288 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:125 msgid "Use traditional axis order (lon, lat)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:291 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:293 msgid "Allow more vehicle classes by default" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:294 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:296 msgid "The edge lengths given in the DLR Navteq-file will be kept" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:300 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:302 msgid "Structure join offset" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:303 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:305 msgid "Use FLOAT as default speed" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:306 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:308 msgid "Factor for edge velocity" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:309 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:311 msgid "Writes lanes without an explicit speed set" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:314 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:95 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:316 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:95 msgid "Load language mappings from FILE" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:317 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:319 msgid "Uses priorities from types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:320 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:322 msgid "Uses lane numbers from types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:323 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:325 msgid "Uses speeds from types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:326 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:328 msgid "Sets connector speed" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:330 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:332 msgid "Sets connector lane number" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:333 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:335 msgid "Excludes connectors" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:337 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:339 msgid "Computes the number of lanes from the edges' capacities" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:340 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:342 msgid "Prints all warnings, some of which are due to VISUM misbehaviour" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:345 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:347 msgid "The factor for flow to no. lanes conversion" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:350 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:352 msgid "Imports all lane types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:352 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:354 msgid "Whether lane widths shall be ignored." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:354 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:356 msgid "" "The geometry resolution in m when importing curved geometries as line " "segments." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:356 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:358 msgid "" "Allow stop lines to be built beyond the start of the junction if the " "geometries allow so" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:358 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:360 msgid "" "The minimum lane width for determining start or end of variable-width lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:360 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:362 msgid "Import internal lane shapes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:362 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:364 msgid "Sets edge-id based on road-id and offset in m (legacy)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:364 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:366 msgid "Use custom lane shapes to compensate discarded lane types" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:375 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:368 +msgid "" +"Use the OpenDRIVE controller information for the generated signal program" +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:379 msgid "" "Discard all railway signal information loaded from other formats than plain-" "xml" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:397 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:400 msgid "" "Cannot import network data without PROJ-Library. Please install package proj " "before building sumo" @@ -6855,433 +7004,452 @@ "Ağ Verileri PROJ-Library Olmadan İçe Aktarılamaz. Lütfen sumo Oluşturmadan " "Önce proj Paketini Kurun" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:422 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:314 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:425 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:314 msgid "Environment variable SUMO_HOME is not set, using built in type maps." msgstr "" "SUMO_HOME Ortam Değişkeni Ayarlanmadı, Yerleşik Tip Haritaları Kullanılıyor." -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:455 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:458 msgid "It is recommend to use option osm.crossings with osm.sidewalks" msgstr "osm.crossings Seçeneğinin osm.sidewalks ile Kullanılması Önerilir" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:138 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:139 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:138 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:139 #, fuzzy msgid "Could not open shape description '%'." msgstr "'%' Bağlantısı İçin Özel Şekil Kullanılamadı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:187 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:187 msgid "Needed field '%' (street-id) is missing." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:198 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:198 msgid "Needed field '%' (from node id) is missing." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:202 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:202 msgid "Needed field '%' (to node id) is missing." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:218 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:218 msgid "Unknown type '%' for edge '%'" msgstr "Kesim '%' İçin Bilinmeyen Tür '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:233 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:233 #, c-format msgid "" "Required field '%' or '%' is missing (add fields or set option --shapefile." "use-defaults-on-failure)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:249 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:249 msgid "" "Road geometry must be of type 'linestring' or 'linestring25D' (found '%')" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:261 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:90 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:261 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:90 msgid "No coordinate system found and coordinates look already projected." msgstr "" "Koordinat Sistemi Bulunamadı ve Koordinatlar Önceden Hesaplanmış Görünüyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:264 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:93 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:264 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:93 msgid "Could not find geo coordinate system, assuming WGS84." msgstr "Geo Koordinat Sistemi Bulunamadı, WGS84 Varsayılıyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:277 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1488 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:600 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimAbstractEdge.cpp:44 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:171 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:277 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1562 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:600 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimAbstractEdge.cpp:44 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:171 msgid "Unable to project coordinates for edge '%'." msgstr "Kesim '%' İçin Koordinatların Hesaplaması Yapılamadı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:290 -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:304 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:304 #, c-format msgid "Node '%' could not be added" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:312 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:312 #, c-format msgid "Edge '%' connects identical nodes, skipping." msgstr "Kesim '%' Benzer Düğümleri Bağlar, Geçiliyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:329 -#, fuzzy, c-format -msgid "Edge '% is not unique." -msgstr "Kesim '%' Hiçbir Şeride Sahip Değil." +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:329 +#, c-format +msgid "Edge '%' is not unique." +msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:338 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:338 msgid "Edge '%' is not unique. Renaming subsequent edge to '%'." msgstr "" "Kesim '%' Benzersiz Değil. Sonraki Kesim '%' Olarak Yeniden Adlandırılıyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:354 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:354 msgid "Could not create edge '%'. An edge with the same id already exists." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:368 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:368 msgid "Could not create edge '-%'. An edge with the same id already exists." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:382 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:331 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:382 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:331 msgid "SUMO was compiled without GDAL support." msgstr "SUMO, GDAL Desteği Olmadan Derlendi." -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:76 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:76 #, fuzzy msgid "Loading nodes" msgstr "Yükleme Tamamlandı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:80 -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:105 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:80 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:105 #, fuzzy, c-format msgid "The file '%' could not be opened." msgstr "'%' Kesimi Trafik Işığı Bulunamadı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:90 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:90 #, fuzzy msgid "Loading street names" msgstr "Yükleme Tamamlandı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:95 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:95 msgid "Output will not contain street names because the file '%' was not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:100 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:100 #, fuzzy msgid "Loading edges" msgstr "Yükleme Tamamlandı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:114 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:114 #, fuzzy msgid "Loading traffic lights" msgstr "Trafik Işığı Dosyalarını Yükleyemiyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:123 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:123 #, fuzzy msgid "Loading prohibited manoeuvres" msgstr "Geçici Olarak Yasaklanan Manevra (%) Yok Sayılıyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:132 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:132 #, fuzzy msgid "Loading connected lanes" msgstr "Yükleme Tamamlandı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:141 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:141 msgid "Loading time restrictions" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:210 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:210 msgid "Non-numerical value for intermediate status in node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:215 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:215 msgid "Non-numerical value for number of geometries in node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:222 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:222 msgid "Non-numerical value for x-position in node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:226 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:226 msgid "Non-numerical value for y-position in node %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:230 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:321 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:230 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:321 #, fuzzy msgid "Unable to project coordinates for node %." msgstr "Kesim '%' İçin Koordinatların Hesaplaması Yapılamadı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:240 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:240 msgid "Could not add add node '%'" msgstr "'%' Düğümü Eklenemedi" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:242 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:260 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:379 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:474 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1350 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:242 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:267 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:386 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:481 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1424 #, fuzzy msgid "Could not add node '%'." msgstr "'%' Düğümü Eklenemedi" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:299 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:299 msgid "Missing version string in file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:309 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:309 msgid "Non-numerical value for form_of_way of link '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:316 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:316 msgid "Non-numerical value for brunnel_type of link '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:329 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:329 msgid "Non-numerical value for street_type of link '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:351 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:351 msgid "Non-numerical value for the SPEED_RESTRICTION of link '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:366 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:366 msgid "Non-numerical value for the number of lanes of link '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:420 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:538 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:596 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:759 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:420 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:545 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:603 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:760 #, fuzzy msgid "Could not add edge '%'." msgstr "bidi-edge '%' Eklenemiyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:431 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:431 msgid "Missing column %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:442 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:442 msgid "Missing optional column % without default value." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:499 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:499 #, c-format msgid "The traffic light edge '%' could not be found." msgstr "'%' Kesimi Trafik Işığı Bulunamadı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:511 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:511 #, fuzzy msgid "Could not allocate tls for '%'." msgstr "tls '%' Tahsis Edilemedi." -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:702 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:702 #, fuzzy msgid "Could not parse YYYY-MM-DD date '%'" msgstr "'%' Düğümü Eklenemedi" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:747 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:747 msgid "Ignoring temporary prohibited manoeuvre (%)." msgstr "Geçici Olarak Yasaklanan Manevra (%) Yok Sayılıyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:756 -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:801 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:756 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:801 msgid "Ignoring prohibition from unknown start edge '%'." msgstr "Bilinmeyen Başlangıç Kesimindeki '%' Yasağı Yok Sayılıyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:761 -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:806 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:761 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:806 msgid "Ignoring prohibition from unknown end edge '%'." msgstr "Bilinmeyen Bitiş Kesimindeki '%' Yasağı Yok Sayılıyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:811 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:811 msgid "" "Ignoring invalid lane index '%' in connection from edge '%' with % lanes." msgstr "" "% Şeridiyle '%' Giriş Kesiminden Bağlantılı Geçersiz Şerit Dizini '%' Yok " "Sayılıyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:816 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:816 msgid "Ignoring invalid lane index '%' in connection to edge '%' with % lanes" msgstr "" "% Şeridiyle '%' Çıkış Kesiminden Bağlantılı Geçersiz Şerit Dizini '%' Yok " "Sayılıyor" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:821 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:821 msgid "Could not set loaded connection from '%' to '%'." msgstr "'%' Olan Yüklenen Bağlantı '%' Olarak Ayarlanamadı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:117 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:117 #, fuzzy msgid "Could not open itsumo-file '%'." msgstr "tls '%' Tahsis Edilemedi." -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:217 -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:180 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:217 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:180 #, fuzzy msgid "Could not add edge '%'. Probably declared twice." msgstr "bidi-edge '%' Eklenemiyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:232 -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:142 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:703 -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:148 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:232 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:142 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:703 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:148 #, fuzzy msgid "Unable to project coordinates for node '%'." msgstr "Kesim '%' İçin Koordinatların Hesaplaması Yapılamadı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:237 -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:147 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:237 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:147 #, fuzzy msgid "Could not add node '%'. Probably declared twice." msgstr "TT Durağı '%' Yeniden Atanamadı, Muhtemelen OSM Dosyası Bozuk." -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:240 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:240 msgid "Not numeric position information for node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:242 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:242 msgid "Missing data in node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:260 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:260 msgid "Missing node in laneset '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:263 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:263 msgid "Fond laneset-id '%' twice." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:277 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:277 msgid "Not numeric value in laneset '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:279 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:279 msgid "Missing data in laneset '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:290 msgid "Not numeric value in lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:292 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:292 #, fuzzy msgid "Missing data in lane '%'." msgstr "Yinelenen TT Hattı '%' Yok Sayılıyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:202 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:202 msgid "Bogus capacity period format; requires 'hh:mm:ss'." msgstr "Sahte Kapasite Periyodu Formatı; 'ss:dd:nn' gerektirir." -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:234 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:234 #, fuzzy msgid "Could not find from-node for edge '%'." msgstr "Kesim '%' İçin Çift Yönlü Bağlantı Bulunamadı" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:237 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:237 #, fuzzy msgid "Could not find to-node for edge '%'." msgstr "Kesim '%' İçin Çift Yönlü Bağlantı Bulunamadı" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:253 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:253 #, fuzzy msgid "Could not add intermediate node to split loop edge '%'." msgstr "Kesim '%' İçin Çapraz Çarpım Belirlenemedi." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:211 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:217 #, fuzzy msgid "Could not find signal reference '%'." msgstr "Sinyal '%' İçin Kesim '%' Bulunamadı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:274 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:312 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:281 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:319 #, fuzzy msgid "Could not build node '%'." msgstr "Birleştirilen tls (TIS) '%' Oluşturulamadı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:411 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:418 #, fuzzy msgid "Ignoring road '%' without geometry." msgstr "'%' Akımı 'Başlangıcı' Olmadan Yok Sayılıyor" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:435 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:442 #, fuzzy msgid "Could not apply laneOffsets for edge '%'" msgstr "Kesim '%' İçin Çift Yönlü Bağlantı Bulunamadı" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:668 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:633 #, c-format msgid "Edge '%' has no lanes." msgstr "Kesim '%' Hiçbir Şeride Sahip Değil." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:704 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:674 #, fuzzy, c-format msgid "While setting connections: from-edge '%' is not known." msgstr "'%' ile '%' Arasındaki Bağlantı Ayarlanamadı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:714 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:684 #, c-format msgid "While setting connections: to-edge '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:740 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:743 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:710 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:713 msgid "Could not find fromEdge representation of '%' in connection '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:792 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:766 +#, c-format +msgid "" +"Controlling multiple junctions by the same controller '%' is currently not " +"implemented." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:787 #, fuzzy, c-format msgid "Edge '%' has signals but no lane sections." msgstr "Kesim '%' Hiçbir Şeride Sahip Değil." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:814 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:809 msgid "Ambiguous start of connection." msgstr "Belirsiz Bağlantı Başlangıcı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:831 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:826 msgid "Ambiguous end of connection." msgstr "Belirsiz Bağlantı Sonu." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:844 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:859 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:892 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:839 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:854 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:901 msgid "Could not find edge '%' for signal '%'." msgstr "Sinyal '%' İçin Kesim '%' Bulunamadı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:881 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:875 +msgid "" +"The signaling of the connection from '%' to '%' (controller '%') is " +"ambiguous because it is overwritten signal '%' and with controller '%'." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:890 msgid "Found a traffic light signal on an unknown edge (original edge id='%')." msgstr "" "Bilinmeyen Bir Kesimde Bir Trafik Işığı Sinyali Bulundu (Orijinal Kesim " "Kimliği='%')." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1287 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1319 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:921 +msgid "" +"The signaling of the connection from '%' to '%' (controller '%') is " +"ambiguous because it is overwritten with signal '%' and controller '%'." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1361 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1393 #, c-format msgid "While setting connections: incoming road '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1362 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1436 #, fuzzy msgid "Could not find node '%'." msgstr "'%' Düğümü Eklenemedi" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1455 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1529 msgid "Mismatched geometry for edge '%' between geometry segments % and %." msgstr "" "% ve % Geometri Segmentleri Arasında '%' Kesimi İçin Eşleşmeyen Geometri." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1636 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1710 #, c-format msgid "The sections of edge '%' are not sorted properly." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1648 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1722 msgid "" "Almost duplicate s-value '%' for lane sections occurred at edge '%'; second " "entry was removed." @@ -7289,104 +7457,108 @@ "Şerit Bölümleri İçin Neredeyse Yinelenen s-değeri '%', '%' Kesiminde Oluştu; " "İkinci Giriş Kaldırıldı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1691 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1765 msgid "Could not compute spiral geometry for edge '%' (cDot=% length=%)." msgstr "'%' Kesimi İçin Spiral Geometri Hesaplanamadı (cDot=% Uzunluk=%)." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1740 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1814 msgid "Could not compute spiral geometry for edge '%' (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2012 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2086 msgid "" "Will discard access settings as both denied and allowed classes have been " "specified." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2320 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2392 msgid "Ignoring invalid pRange value '%' for road '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2420 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2617 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2470 +msgid "Ignoring missing signal '%' in controller '%'." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2508 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2704 #, fuzzy, c-format msgid "In laneLink-element: incoming road '%' is not known." msgstr "Başvurulan Geometri Bilgisi (ref='%') Bilinmiyor" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2516 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2603 #, fuzzy msgid "Ignoring object without id at edge '%'." msgstr "'%' Kesimi İçin İz Sayısı % Yok Sayılıyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2534 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2621 msgid "Repeat without object at edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2588 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2675 msgid "Could not set projection (%). This can be ignored with --ignore-errors." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2592 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2679 #, c-format msgid "geoReference format '%' currently not supported" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2661 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2752 msgid "Mismatching parenthesis in geometry definition for road '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2665 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2756 msgid "Double geometry information for road '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:156 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:104 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:156 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:104 #, fuzzy msgid "Could not open osm-file '%'." msgstr "tls '%' Tahsis Edilemedi." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:168 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:168 #, c-format msgid "Found and substituted % osm nodes." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:192 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:192 msgid "Removing duplicate edges" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:207 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:207 #, c-format msgid "Removed % duplicate osm edges." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:241 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:241 msgid "Discarding way '%' because it has only % node(s)" msgstr "Yalnızca % Düğüm(ler)e Sahip Olduğu İçin '%' Yolu Çıkartılıyor" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:404 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:404 #, fuzzy msgid "Could not insert junction '%'." msgstr "% Kavşakları Birleştirilemedi." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:462 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:462 msgid "" "Discarding edge '%' which connects two identical nodes without geometry." msgstr "" "İki Özdeş Düğümü Geometri Olmadan Birbirine Bağlayan '%' Kesimi Çıkartılıyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:574 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:574 msgid "New value for oneway found: %" msgstr "Bulunan Tek Yön İçin Yeni Değer: %" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:606 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:607 msgid "Skipping edge '%' because it has zero lanes." msgstr "'%' Kesimi Geçiliyor Çünkü Herhangi Bir Şeride Sahip Değil." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:626 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:627 msgid "Skipping edge '%' because it has speed %." msgstr "'%' Kesimi Geçiliyor Çünkü Hızı %." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:746 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:747 msgid "" "Forward lanes count for edge '%' ('%') is not matching the number of lanes " "defined in width:lanes:forward key ('%'). Using default width values." @@ -7395,7 +7567,7 @@ "('%') Tanımlanan Şerit Sayısıyla Eşleşmiyor. Varsayılan Genişlik Değerleri " "Kullanılıyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:792 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:793 msgid "" "Backward lanes count for edge '%' ('%') is not matching the number of lanes " "defined in width:lanes:backward key ('%'). Using default width values." @@ -7404,105 +7576,105 @@ "('%') Tanımlanan Şerit Sayısıyla Eşleşmiyor. Varsayılan Genişlik Değerleri " "Kullanılıyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:805 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:806 #, fuzzy msgid "Could not add edge '-%'." msgstr "bidi-edge '%' Eklenemiyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:893 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:894 msgid "" "Attribute 'id' in the definition of a node is not of type long long int." msgstr "Bir Düğümün Tanımındaki 'id' Özniteliği, long long int Türünde Değil." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:899 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:900 msgid "Tag element on wrong XML hierarchy level." msgstr "Öğeyi Yanlış XML Hiyerarşisi Düzeyinde Etiketleyin." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:941 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:942 msgid "Value of key '%' is invalid ('%') in node '%'." msgstr "'%' Anahtarının Değeri, '%' Düğümünde Geçersiz (%')." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:946 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:947 msgid "Value of key '%' is not numeric ('%') in node '%'." msgstr "'%' Anahtarının Değeri, '%' Düğümünde Sayısal ('%') Değil." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1091 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:592 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1092 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:592 msgid "The referenced geometry information (ref='%') is not known" msgstr "Başvurulan Geometri Bilgisi (ref='%') Bilinmiyor" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1329 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1331 #, c-format msgid "Using default lane width for edge '%' as key '%' could not be parsed." msgstr "" "'%' Kesimi İçin '%' Anahtarı Olarak Varsayılan Şerit Genişliğinin " "Kullanılması Ayrıştırılamadı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1332 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1334 #, c-format msgid "Using default lane width for edge '%' as value '%' could not be parsed." msgstr "" "'%' Kesimi İçin '%' Değeri Olarak Varsayılan Şerit Genişliğinin Kullanılması " "Ayrıştırılamadı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1375 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1377 msgid "Using minimum lane number from list (%) for edge '%'." msgstr "'%' Kesimi İçin Listeden (%) Minimum Şerit Numarası Kullanılıyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1377 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1381 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1392 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1404 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1427 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1437 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1379 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1383 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1394 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1406 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1429 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1439 msgid "Value of key '%' is not numeric ('%') in edge '%'." msgstr "'%' Anahtarının Değeri, '%' Kesiminde Sayısal ('%') Değil." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1434 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1436 msgid "Ignoring track count % for edge '%'." msgstr "'%' Kesimi İçin İz Sayısı % Yok Sayılıyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1605 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1607 msgid "Unknown lane use specifier '%' ignored for way '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1714 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1716 msgid "No node found for reference '%' in relation '%'." msgstr "'%' İlişkisinde '%' Referansı İçin Düğüm Bulunamadı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1776 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1778 msgid "Found unknown restriction type '%' in relation '%'" msgstr "'%' İlişkisinde Bilinmeyen Kısıtlama Türü '%' Bulundu" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1814 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1816 msgid "Invalid color value '%' in relation %" msgstr "% İlişkisinde Geçersiz Renk Değeri '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1832 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1834 msgid "No way found for reference '%' in relation '%'" msgstr "'%' Referansı İçin '%' İlişkisinde Hiçbir Yol Bulunamadı" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1844 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1846 msgid "Ignoring restriction relation '%' with unknown type." msgstr "Bilinmeyen Türde Kısıtlama İlişkisi '%' Yok Sayılıyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1848 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1850 msgid "Ignoring restriction relation '%' with unknown from-way." msgstr "'%' Kısıtlama İlişkisi Bilinmeyen Giriş Yönü ile Yok Sayılıyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1852 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1854 msgid "Ignoring restriction relation '%' with unknown to-way." msgstr "'%' Kısıtlama İlişkisi Bilinmeyen Çıkış Yönü ile Yok Sayılıyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1856 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1858 msgid "Ignoring restriction relation '%' with unknown via." msgstr "'%' Kısıtlama İlişkisi Bilinmeyen Kanal Yön ile Yok Sayılıyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1860 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1862 msgid "Ignoring restriction relation '%'." msgstr "'%' Kısıtlama İlişkisi Yok Sayılıyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1885 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1887 #, c-format msgid "" "Platform '%' in relation: '%' is given as polygon, which currently is not " @@ -7511,7 +7683,7 @@ "'%' İlişkideki '%' Platform '%' Şu Anda Desteklenmeyen Çokgen Olarak " "Verilmiştir." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1906 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1908 #, c-format msgid "" "Referenced platform: '%' in relation: '%' is corrupt. Probably OSM file is " @@ -7519,329 +7691,329 @@ msgstr "" "'%' İlişkideki Başvurulan Platform '%' Bozuk. Muhtemelen OSM Dosyası Eksik." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1945 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1947 #, c-format msgid "PT line '%' in relation % seems to be split, only keeping first part." msgstr "" "% İlişkideki TT Hattı '%' Bölünmüş Görünüyor. Sadece İlk Kısım Tutuluyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1978 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1980 msgid "" "PT line in relation % with no stops ignored. Probably OSM file is incomplete." msgstr "" "% İlişkideki Duraksız TT Hattı Yok Sayılıyor. Muhtemelen OSM Dosyası Eksik." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1984 -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:222 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1986 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:222 msgid "Ignoring duplicate PT line '%'." msgstr "Yinelenen TT Hattı '%' Yok Sayılıyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1999 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2001 msgid "Via-node '%' was not instantiated" msgstr "Kanal Düğüm '%' Somutlaştırılamadı" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2005 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2007 #, c-format msgid "from-edge '%' of restriction relation could not be determined" msgstr "Sınırlama İlişkisinin Giriş Kesimi '%' Belirlenemedi" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2009 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2011 #, c-format msgid "to-edge '%' of restriction relation could not be determined" msgstr "Sınırlama İlişkisinin Çıkış Kesimi '%' Belirlenemedi" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2039 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2041 msgid "direction of restriction relation could not be determined%" msgstr "Kısıtlama İlişkisinin Yönü Belirlenemedi %" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2060 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2062 #, c-format msgid "Ambiguous way reference '%' in restriction relation" msgstr "Kısıtlama İlişkisinde Belirsiz Yol Referansı '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2311 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2314 msgid "" "Discarding unknown compound '%' in type '%' (first occurrence for edge '%')." msgstr "" "'%' Tipindeki Bilinmeyen Bileşik '%' Çıkarılıyor ('%' Kesimi İçin İlk " "Oluşum)." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2315 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2320 msgid "Discarding unusable type '%' (first occurrence for edge '%')." msgstr "" "'%' Tipindeki Kullanılamayan Bileşik '%' Çıkarılıyor ('%' Kesimi İçin İlk " "Oluşum)." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2364 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2365 msgid "Discarding compound type '%' (first occurrence for edge '%')." msgstr "" "'%' Tipindeki Bütünleşik Bileşik '%' Çıkarılıyor ('%' Kesimi İçin İlk " "Oluşum)." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2369 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2380 msgid "Adding new type '%' (first occurrence for edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2404 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2415 msgid "Ambiguous railway kilometrage direction for way '%' (assuming forward)" msgstr "" "'%' Yolu İçin Belirsiz Demiryolu Kilometraj Yönü (İleriye Doğru Varsayılarak)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2411 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2422 msgid "Inconsistent railway kilometrage direction for way '%': % (skipping)" msgstr "'%' Yolu İçin Tutarsız Demiryolu Kilometraj Yönü: % (Geçiliyor)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2456 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2467 msgid "Value of railway:position is not numeric ('%') in node '%'." msgstr "'%' Düğümünde railway:position Değeri Sayısal Değil (%')." -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2548 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2559 msgid "" "Ignoring turn sign information for % lanes on edge % with % driving lanes" msgstr "" "% Sürüş Şeritleriyle % Kesiminde % Şeritleri İçin Dönüş Sinyali Bilgisi Yok " "Sayılıyor" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:118 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:118 #, fuzzy msgid "Could not open sumo-net-file '%'." msgstr "tls '%' Tahsis Edilemedi." -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:146 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:146 #, c-format msgid "Edge's '%' from-node and to-node '%' are identical." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:165 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:165 #, fuzzy msgid "Could not insert edge '%'." msgstr "bidi-edge '%' Eklenemiyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:191 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:787 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:318 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:191 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:787 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:318 #, fuzzy, c-format msgid "Unknown edge '%' given in connection." msgstr "Dönel Ada İçinde Bilinmeyen Kesim '%'." -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:230 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:272 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:230 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:272 #, fuzzy, c-format msgid "The traffic light '%' is not known." msgstr "'%' Kesimi Trafik Işığı Bulunamadı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:288 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:290 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:292 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:294 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:288 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:292 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:294 #, c-format msgid "Edge '%' in prohibition was not built." msgstr "Kesim '%' Yasaklamada İnşa Edilmedi." -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:345 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:345 #, fuzzy, c-format msgid "Deprecated vehicle class(es) '%' in input network." msgstr "Girdi Kesim Dosyalarında Kullanımdan Kaldırılan Araç Sınıf(lar)ı '%'." -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:403 -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1683 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:403 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1688 #, fuzzy, c-format msgid "Unknown edge '%' in roundabout" msgstr "Dönel Ada İçinde Bilinmeyen Kesim '%'." -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:520 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:520 #, c-format msgid "Edge '%' occurred at least twice in the input." msgstr "Girdide '%' Kesimi En Az İki Kez Oluştu." -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:542 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:542 msgid "Unmatched closing tag for tl-logic." msgstr "tl-logic İçin Eşsiz Kapanış Etiketi." -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:545 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:545 msgid "Could not add program '%' for traffic light '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:615 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:615 msgid "Unknown spreadType '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:628 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:628 #, c-format msgid "Found lane '%' not within edge element." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:633 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:633 msgid "Renaming lane '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:699 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:699 msgid "" "Duplicate definition of stopOffset for edge %.\n" "Ignoring duplicate specification." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:705 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:705 msgid "" "Duplicate definition of lane's stopOffset on edge %.\n" "Ignoring duplicate specifications." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:742 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:742 #, c-format msgid "Junction '%' occurred at least twice in the input." msgstr "Girdide '%' Kavşağı En Az İki Kez Oluştu." -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:839 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:839 msgid "Invalid lane index '%' for connection from '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:929 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:929 msgid "Definition of tl-logic '%' was not finished." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:941 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:127 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:941 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:127 msgid "Unknown traffic light type '%' for tlLogic '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:955 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:955 msgid "found phase without tl-logic" msgstr "tl-logic Referansı Olmayan Faz Bulundu" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:963 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:963 msgid "Phase duration for tl-logic '%/%' must be positive." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1019 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1019 msgid "Missing connection divider in prohibition attribute '%'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1026 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1030 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1026 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1030 #, fuzzy msgid "Unknown edge prohibition '%'" msgstr "Bilinmeyen '%' Otobüs Durağı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:205 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:205 msgid "Can not open visum-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:247 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:247 #, c-format msgid "Too short value line in % occurred." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:249 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:249 msgid "A value in % should be numeric but is not (id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:251 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:251 msgid "One of the needed values ('%') is missing in %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:326 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:326 #, fuzzy msgid "Duplicate node occurred ('%')." msgstr "Yinelenen Kesim '%' Oluştu." -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:344 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:344 #, fuzzy msgid "Unable to project coordinates for district %." msgstr "Kesim '%' İçin Koordinatların Hesaplaması Yapılamadı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:350 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:350 #, fuzzy msgid "Duplicate district occurred ('%')." msgstr "Yinelenen Kesim '%' Oluştu." -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:368 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:368 #, fuzzy msgid "Unable to project coordinates for point %." msgstr "'%' Çokgeni İçin Koordinatlar Yansıtılamıyor." -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:458 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:475 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:458 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:475 #, fuzzy msgid "Duplicate edge occurred ('%')." msgstr "Yinelenen Kesim '%' Oluştu." -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:580 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:580 msgid "" "Incoming connector '%' will not be build - would be not connected to network." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:584 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:618 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:584 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:618 #, fuzzy, c-format msgid "The district '%' could not be built." msgstr "'%' Kesimi Trafik Işığı Bulunamadı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:594 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:629 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:594 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:629 #, fuzzy msgid "A duplicate edge id occurred (ID='%')." msgstr "Yinelenen Kesim '%' Oluştu." -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:614 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:614 msgid "" "Outgoing connector '%' will not be build - would be not connected to network." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:665 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:671 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:720 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:665 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:671 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:720 msgid "There is no edge from node '%' to node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:698 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:698 msgid "Error in geometry description from node '%' to node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:757 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:757 msgid "A lane number for edge '%' is not numeric (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:762 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:762 msgid "A lane number for edge '%' is not positive (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:781 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:781 msgid "A lane length for edge '%' is not numeric (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:785 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:785 msgid "A lane length for edge '%' is not positive (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:846 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:846 #, fuzzy msgid "Could not find split position for edge '%'." msgstr "Kesim '%' İçin Çift Yönlü Bağlantı Bulunamadı" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:856 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:856 msgid "Ups - could not insert node!" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:917 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:917 #, fuzzy, c-format msgid "Could not find TLS '%' for setting the signal group." msgstr "Sinyal '%' İçin Kesim '%' Bulunamadı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:930 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:930 msgid "Ignoring SIGNALGRUPPEZUFSABBIEGER because LsaNr is not known" msgstr "SIGNALGRUPPEZUFSABBIEGER Yok Sayılıyor Çünkü LsaNr Bilinmiyor" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:987 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:987 msgid "Unknown edge in TEILFLAECHENELEMENT" msgstr "TEILFLAECHENELEMENT İçinde Bilinmeyen Kesim" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1007 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1007 #, fuzzy msgid "Unknown are for area part '%'." msgstr "Kesim '%' İçin Bilinmeyen Tür '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1069 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1069 msgid "" "Ignoring lane-to-lane connection (not yet implemented for this format " "version)" @@ -7849,585 +8021,585 @@ "Şeritten Şeride Bağlantı Yok Sayılıyor (Henüz Bu Format Versiyonu İçin " "Ayarlanmadı" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1107 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1107 msgid "A from-lane number for edge '%' is not numeric (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1112 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1112 msgid "A from-lane number for edge '%' is not positive (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1121 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1121 msgid "A to-lane number for edge '%' is not numeric (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1126 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1126 msgid "A to-lane number for edge '%' is not positive (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1142 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1142 msgid "" "A from-lane number for edge '%' is larger than the edge's lane number (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1146 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1146 msgid "" "A to-lane number for edge '%' is larger than the edge's lane number (%)." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1162 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1162 msgid "Ignoring stopping place '%' without edge id" msgstr "Kesim Kimliği Olmadan '%' Durak Yeri Yok Sayılıyor" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1164 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1164 msgid "Ignoring stopping place '%' without node informatio" msgstr "Düğüm Bilgisi Olmadan '%' Durak Yeri Yok Sayılıyor" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1171 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1171 msgid "" "Could not find edge with from-node '%' and base id '%' for stopping place '%'" msgstr "" "Durak Yeri '%' İçin '%' Düğümden ve '%' Temel Kimliği Olan Kesim Bulunamadı" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1176 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1176 msgid "Unexpected from-node '%' for edge '%' of stopping place '%'" msgstr "'%' Durak Yerinin '%' Kesimi İçin Beklenmeyen Giriş Düğümü '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1182 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1182 msgid "" "Could not find edge with to-node '%' and base id '%' for stopping place '%'" msgstr "" "Durak Yeri '%' İçin '%' Giriş Düğümü ve Baz No '%' ile İlgili Kesim " "Bulunamadı" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1187 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1187 msgid "Unexpected to-node '%' for edge '%' of stopping place '%'" msgstr "'%' Durak Yerinin '%' Kesimi İçin Beklenmeyen Çıkış Düğümü '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1271 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1271 #, c-format msgid "The node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1508 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1508 #, fuzzy msgid "Could not build connector node '%'." msgstr "Birleştirilen tls (TIS) '%' Oluşturulamadı." -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1518 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1518 msgid " The from-node was not found within the net" msgstr " Ağ İçerisinde Giriş Düğümü Bulunamadı" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1521 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1521 msgid " The to-node was not found within the net" msgstr " Ağ İçerisinde Çıkış Düğümü Bulunamadı" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1524 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1524 msgid " Both nodes are the same" msgstr " İki Düğüm de Aynı" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1539 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:431 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1539 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:431 msgid "Could not load VISUM language map from '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1551 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1551 #, c-format msgid "Unknown entry '%' in VISUM language map" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:103 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:103 msgid " Removed % traffic lights before loading plain-XML" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:112 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:112 msgid "No nodes loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:115 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:115 msgid "No edges loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:126 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:126 msgid " Import done:" msgstr " İçe Aktarma Tamamlandı:" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:128 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:128 #, c-format msgid " % districts loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:130 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:130 #, c-format msgid " % nodes loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:132 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:132 msgid " % types loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:134 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:134 #, c-format msgid " % edges loaded." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:136 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:136 #, c-format msgid "The split of edges was performed % times." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:144 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:144 msgid "Proj projection parameters used: '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:165 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:165 #, c-format msgid "Deprecated vehicle class(es) '%' in input edge files." msgstr "Girdi Kesim Dosyalarında Kullanımdan Kaldırılan Araç Sınıf(lar)ı '%'." -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:61 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:61 msgid "Invalid speed code (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:64 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:64 msgid "Non-numerical value for an edge's speed type occurred (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:90 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:90 msgid "Invalid lane number (edge '%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:94 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:94 msgid "Non-numerical value for an edge's lane number occurred (edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NITypeLoader.cpp:62 +#: D:\Repos\sumo/src\netimport\NITypeLoader.cpp:62 msgid "Could not open %-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIVisumTL.cpp:76 +#: D:\Repos\sumo/src\netimport\NIVisumTL.cpp:76 #, fuzzy msgid "invalid node for traffic light '%'" msgstr "Trafik Işığı '%' İçin Program Kurulamadı" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:85 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:85 msgid "" "Target edge '%' is not connected with '%'; the connection cannot be reset." msgstr "Hedef Kesim '%', '%' ile Bağlantılı Değil; Bağlantı Sıfırlanamaz." -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:99 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:99 msgid "Edge '%' has no connection to lane '%'; the connection cannot be reset." msgstr "Kesim '%' Şerit '%' Yönünde Bağlantısı Yok; Bağlantı Sıfırlanamaz." -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:267 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:267 msgid "Unable to project shape for connection from edge '%' to edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:275 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:275 msgid "Could not set loaded connection from lane '%' to lane '%'." msgstr "'%' Şeridinden '%' Şeridine Yüklenen Bağlantı Ayarlanamadı." -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:347 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:347 #, fuzzy, c-format msgid "Node '%' in crossing is not known." msgstr "Kesim '%' Yasaklamada İnşa Edilmedi." -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:356 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:356 msgid "No edges specified for crossing at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:364 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:364 #, c-format msgid "Edge '%' for crossing at node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:372 -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:450 -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:455 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:372 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:450 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:455 msgid "Edge '%' does not touch node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:385 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:385 #, c-format msgid "Crossing at controlled node '%' must be prioritized" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:390 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:390 #, fuzzy msgid "Unable to project shape for crossing at node '%'." msgstr "Kesim '%' İçin Koordinatların Hesaplaması Yapılamadı." -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:403 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:403 msgid "Crossing with edges '%' already exists at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:435 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:435 msgid "No edges specified for walkingArea at node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:441 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:441 #, c-format msgid "Edge '%' for walkingArea at node '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:467 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:467 #, fuzzy msgid "Unable to project shape for walkingArea at node '%'." msgstr "Kesim '%' İçin Koordinatların Hesaplaması Yapılamadı." -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:222 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:222 msgid "Duplicate edge id occurred ('%'); assuming overwriting is wished." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:227 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:227 #, c-format msgid "Edge '%' changed it's type; assuming type override is wished." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:315 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:315 msgid "Ignoring self-looped edge '%' at junction '%'" msgstr "'%' Kavşağında Kendinden Döngülü '%' Kesimi Yok Sayılıyor" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:393 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:393 #, c-format msgid "'%' is deprecated, please use '%' instead." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:403 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:403 #, fuzzy msgid "Lane index is larger than number of lanes (edge '%')." msgstr "'%' Kesimi İçin Listeden (%) Minimum Şerit Numarası Kullanılıyor." -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:447 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:447 #, fuzzy msgid "Unable to project coordinates for lane '%'." msgstr "Kesim '%' İçin Koordinatların Hesaplaması Yapılamadı." -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:472 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:472 msgid "Ignoring 'split' because it cannot be assigned to an edge" msgstr "Bir Kesime Atanamadığı İçin 'split' Yok Sayılıyor" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:481 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:481 msgid "Edge '%' has a split at invalid position %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:486 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:486 msgid "Edge '%' has already a split at position %." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:520 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:520 msgid "Invalid split node id for edge '%' (from- and to-node are forbidden)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:558 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:558 #, fuzzy msgid "The from-node is not given for edge '%'." msgstr " Ağ İçerisinde Giriş Düğümü Bulunamadı" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:570 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:570 #, fuzzy msgid "The to-node is not given for edge '%'." msgstr "Kesim '%' İçin Koordinatların Hesaplaması Yapılamadı." -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:616 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:616 msgid "Ignoring unknown spreadType '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:674 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:674 #, c-format msgid "Duplicate edge '%' occurred." msgstr "Yinelenen Kesim '%' Oluştu." -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:683 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:683 msgid "An important information is missing in edge '%'." msgstr "'%' Kesiminde Önemli Bir Bilgi Eksik." -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:705 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:705 #, c-format msgid "Unknown edge '%' in roundabout." msgstr "Dönel Ada İçinde Bilinmeyen Kesim '%'." -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:151 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:151 msgid "Missing position (at node ID='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:184 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:184 msgid "Could not insert node though checked this before (id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:213 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:213 #, fuzzy msgid "Unable to project node shape at node '%'." msgstr "Kesim '%' İçin Koordinatların Hesaplaması Yapılamadı." -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:321 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:321 msgid "Unknown traffic light type '%' for node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:330 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:330 msgid "Unknown traffic light layout '%' for node '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:341 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:341 msgid "Changing traffic light type '%' to '%' for tl '%'." msgstr "tl '%' İçin Trafik Işığı Türü '%', '%' Olarak Değiştiriliyor." -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:153 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:153 #, c-format msgid "Edge '%' for stop '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:161 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:161 #, c-format msgid "Lane '%' for stop '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:173 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:173 msgid "Could not add public transport stop '%' (already exists)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:192 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:192 #, c-format msgid "Edge '%' for access to stop '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:253 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:253 msgid "Found route outside line definition" msgstr "Hat Tanımı Dışında Rota Bulundu" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:263 -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:283 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:263 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:283 #, c-format msgid "Edge '%' in route of line '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:302 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:302 msgid "Stop '%' within line '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:318 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:318 msgid "Stop '%' within route '%' not found" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLShapeHandler.cpp:46 -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1744 +#: D:\Repos\sumo/src\netimport\NIXMLShapeHandler.cpp:46 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1749 #, c-format msgid "Lane '%' to place poi '%' on is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLShapeHandler.cpp:59 -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1757 +#: D:\Repos\sumo/src\netimport\NIXMLShapeHandler.cpp:59 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1762 #, c-format msgid "lane position % for poi '%' is not valid." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:114 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:114 msgid "Definition of tlLogic '%' was not finished." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:140 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:158 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:140 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:158 msgid "Cannot load traffic light program for unknown id '%', programID '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:331 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:331 msgid "Invalid lane index '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTypesHandler.cpp:85 +#: D:\Repos\sumo/src\netimport\NIXMLTypesHandler.cpp:85 msgid "Invalid lane spread type '%'. Using default 'right'" msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIXMLTypesHandler.cpp:114 +#: D:\Repos\sumo/src\netimport\NIXMLTypesHandler.cpp:114 msgid "Invalid lane index % for edge type '%' with % lanes" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/NIImporter_Vissim.cpp:887 +#: D:\Repos\sumo/src\netimport\vissim\NIImporter_Vissim.cpp:887 #, fuzzy msgid "Could not open vissim-file '%'." msgstr "bidi-edge '%' Eklenemiyor." -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnection.cpp:241 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnection.cpp:241 msgid "Could not build connection between '%' and '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnection.cpp:248 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnection.cpp:248 msgid "Lane sizes differ for connection '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnectionCluster.cpp:496 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnectionCluster.cpp:496 msgid "NIVissimConnectionCluster:More than a single node" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnectionCluster.cpp:662 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnectionCluster.cpp:662 msgid "NIVissimConnectionCluster: how to get an edge's position?" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:205 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:205 #, c-format msgid "Could not build district '%' - edge '%' is missing." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:360 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:360 msgid "" "No streams assigned at district'%'.\n" " Using default speed 200km/h" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:377 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:526 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:377 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:526 #, c-format msgid "The referenced speed distribution '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:378 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:385 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:378 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:385 msgid ". Using default." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:143 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:143 msgid "Ugly split to prohibit '%' by '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:186 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:186 msgid "Could not prohibit '%' by '%'. Have not found disturbance." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:191 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:191 msgid "Could not prohibit '%' by '%'. Disturbance connects same node." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:210 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:262 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:210 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:262 #, c-format msgid "Would have to split edge '%' to build a prohibition" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:237 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:237 #, c-format msgid "Could not prohibit '%' - it was not built." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:243 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:243 msgid "Could not prohibit '%' by '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:307 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:307 msgid "NIVissimDisturbance: no connection" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:340 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:340 #, c-format msgid "Could not build % of % disturbances." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:439 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:439 msgid "Will not build edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:464 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:472 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:464 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:472 #, c-format msgid "Could not insert node '%' to nodes container." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:490 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:490 msgid "Could not build edge '%'; would connect same node." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:532 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:532 msgid "What about distribution '%' " msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:138 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:138 #, c-format msgid "Could not set tls signal at edge '%' - the edge was not built." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:152 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:152 msgid "Edge '%': Lanes were not assigned." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:375 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:375 msgid "" "Error on adding a traffic light\n" " Must be a multiple id ('%')" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:383 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:383 msgid "The signal group '%' could not be assigned to tl '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:392 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:392 msgid "The signal '%' could not be assigned to tl '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:399 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:399 msgid "Could not set % of % traffic lights." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:402 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:402 #, c-format msgid "Could not set % of % groups." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:405 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:405 #, c-format msgid "Could not set % of % signals." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Lichtsignalanlagendefinition.cpp:84 -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:93 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Lichtsignalanlagendefinition.cpp:84 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:93 #, c-format msgid "Unsupported LSA-Type '%' occurred." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgeberdefinition.cpp:73 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgeberdefinition.cpp:73 msgid "Omitting unknown traffic light." msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:142 -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:170 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:142 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:170 msgid "VAS traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:154 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:154 msgid "VSPLUS traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:162 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:162 msgid "TRENDS traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:178 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:178 msgid "TL traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:186 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:186 msgid "POS traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:194 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:194 msgid "externally defined traffic lights are not supported (lsa=%)" msgstr "" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Simdauer.cpp:49 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Simdauer.cpp:49 msgid "Simulation duration could not be parsed" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:85 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:85 msgid "Trying to set the effort for the unknown edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:100 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:100 msgid "Trying to set the travel time for the unknown edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:129 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:129 msgid "Invalid network, no network version declared." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:133 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:133 msgid "" "Network contains internal links which are ignored. Vehicles will 'jump' " "across junctions and thus underestimate route lengths and travel times." @@ -8435,44 +8607,50 @@ "Ağ, Yok Sayılan Dahili Bağlantılar İçeriyor. Araçlar Kavşaklardan " "'Sıçrayacak' ve Böylece Rota Uzunlukları ve Seyahat Süreleri Azımsanacaktır." -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:163 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:163 msgid "State was written at a different time=% than the begin time %!" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:197 -#: /home/micha/programming/sumo/src/router/RONet.cpp:223 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:197 +#: D:\Repos\sumo/src\router\RONet.cpp:223 #, c-format msgid "A TAZ with id '%' already exists. Not building junction TAZ." msgstr "'%' Kimliğine Sahip Bir TAB Var. TAB Kavşağı Yapılandırılamıyor." -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:228 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:228 msgid "" "Loading vehicles ahead of a state file is not supported. Correct --begin " "option or load vehicles with option --route-files" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:256 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:256 msgid "Loading weights from '%'..." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:285 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:285 msgid "Loading done." msgstr "Yükleme Tamamlandı." -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:390 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:390 msgid "Wrong number of state file names!" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:425 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:425 msgid "Loading % from '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:445 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:445 #, c-format msgid "The route file '%' is not accessible." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLDetectorBuilder.cpp:526 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:461 +msgid "" +"LaneData requested for mesoscopic simulation but --meso-lane-queue is not " +"active. Falling back to edgeData." +msgstr "" + +#: D:\Repos\sumo/src\netload\NLDetectorBuilder.cpp:526 msgid "" "The netstate type 'hbefa' is deprecated. Please use the type 'emissions' " "instead." @@ -8480,65 +8658,65 @@ "Netstate Türü 'hbefa' Kullanımdan Kaldırıldı. Lütfen Bunun Yerine " "'emissions' Tipini Kullanın." -#: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:198 +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:198 msgid "Asymmetrical neigh lane '%' for lane '%'" msgstr "'%' Şeridi İçin Asimetrik Komşu '%' Şerit" -#: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:218 +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:218 #, c-format msgid "" "Internal edge '%' is not properly connected (probably a manually modified " "net.xml)." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:391 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:391 msgid "Unknown from-node '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:395 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:395 msgid "Unknown to-node '%' for edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:535 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:535 #, c-format msgid "" "Shape of lane '%' is broken.\n" " Can not build according edge." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:557 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:557 #, c-format msgid "Another lane with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:627 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:627 msgid "An unknown lane ('%') was tried to be set as incoming to junction '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:781 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:781 msgid "Traffic light '%' has unknown type '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:785 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:785 #, c-format msgid "" "Traffic light type '%' cannot be used in mesoscopic simulation. Using '%' as " "fallback." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:874 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:874 msgid "maxDur % should not be smaller than minDir % in phase of tlLogic %" msgstr "maxDur %, tlLogic % Aşamasında minDir % Değerinden Küçük Olmamalıdır" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:889 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:889 msgid "Duplicate condition '%' in tlLogic '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:942 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:942 msgid "Invalid person mode '%' in E1 detector definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1001 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1001 msgid "" "VTypeProbes are deprecated. Use fcd-output devices (assigned to the vType) " "instead." @@ -8546,15 +8724,15 @@ "VTypeProbes Kullanımdan Kaldırılmıştır. Bunun Yerine fcd-output Cihazlarını " "(vType'a Atanmış) Kullanın." -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1061 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1061 msgid "Ignoring deprecated argument 'cont' for E2 detector '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1077 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1077 msgid "Invalid person mode '%' in E2 detector definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1091 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1091 msgid "" "Trying to specify detector's lane by the given id since the argument 'lane' " "is missing." @@ -8562,146 +8740,158 @@ "'lane' Bağımsız Değişkeni Eksik Olduğundan, Verilen Kimliğe Göre Dedektör " "Şeridi Belirlenmeye Çalışılıyor." -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1131 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1131 msgid "" "Missing argument 'pos' for E2Detector '%'. Assuming detector start == lane " "start of lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1136 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1136 msgid "" "Missing argument 'endPos' for E2Detector '%'. Assuming detector end == lane " "end of lane '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1205 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1205 #, c-format msgid "" "Ignoring argument 'period' for E2Detector '%' since argument 'tl' was given." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1262 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1262 msgid "Invalid person mode '%' in E3 detector definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1341 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1341 msgid "Invalid person mode '%' in edgeData definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1365 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1365 msgid "Unknown edge '%' in edgeData definition '%'" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1414 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1372 +msgid "" +"LaneData '%' requested for mesoscopic simulation but --meso-lane-queue is " +"not active. Falling back to edgeData." +msgstr "" + +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1419 #, fuzzy, c-format msgid "Unknown from-edge '%' in connection." msgstr "Dönel Ada İçinde Bilinmeyen Kesim '%'." -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1420 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1425 #, fuzzy, c-format msgid "Unknown to-edge '%' in connection." msgstr "Dönel Ada İçinde Bilinmeyen Kesim '%'." -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1425 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1430 msgid "Invalid lane index in connection from '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1506 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1511 #, c-format msgid "Unknown from-edge '%' in conflict." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1511 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1516 #, c-format msgid "Unknown to-edge '%' in connflict." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1516 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1521 msgid "Invalid lane index in conflict with '%' to '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1568 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1573 msgid "" "no valid geo projection loaded from network. fcd-output.geo will not work" msgstr "" "Ağdan Yüklenen Geçerli Bir Coğrafi Projeksiyon Yok. fcd-output.geo " "Çalışmayacak" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1596 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1601 msgid "Replacing junction-taz '%' with loaded TAZ." msgstr "Yüklenen TAB ile junction-taz '%' Yer Değiştiriliyor." -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1639 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1644 msgid "Skipping visualization of taz '%', polygon already exists." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1670 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1675 msgid "At district '%': succeeding edge '%' does not exist." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:116 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:116 msgid "Information about the number of nodes was missing." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:126 -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:143 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:126 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:143 msgid "Ignoring junction logic for junction '%'." msgstr "'%' Kavşağı İçin Kavşak Mantığı Yok Sayılıyor." -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:333 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:333 #, fuzzy msgid "Invalid traffic light type '%'" msgstr "tl '%' İçin Trafik Işığı Türü '%', '%' Olarak Değiştiriliyor." -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:344 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:344 #, c-format msgid "Another logic with id '%' and programID '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:471 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:471 #, fuzzy msgid "Traffic lights could not be built." msgstr "'%' Kesimi Trafik Işığı Bulunamadı." -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:75 +#: D:\Repos\sumo/src\netload\NLNetShapeHandler.cpp:163 +#, c-format +msgid "" +"% edges of the primary network did not occur in the alternative-net-file" +msgstr "" + +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:75 msgid "Vaporizers are deprecated. Use rerouters instead." msgstr "Vaporizer Kullanımdan Kaldırılmıştır. Bunun Yerine Rerouter Kullanın." -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:84 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:84 #, fuzzy msgid "Unknown edge ('%') referenced in a vaporizer." msgstr "Dönel Ada İçinde Bilinmeyen Kesim '%'." -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:93 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:93 #, fuzzy msgid "A vaporization begin time is negative (edge id='%')." msgstr "'%' Kesiminde Önemli Bir Bilgi Eksik." -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:97 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:97 msgid "A vaporization ends before it starts (edge id='%')." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:191 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:191 msgid "" "The overheadWireSegment '%' was not created as it is attached to internal " "lane. It will be build automatically." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:196 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:196 #, c-format msgid "" "The overheadWireSegment '%' not built as it is attached to internal lane. It " "will be build automatically." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:208 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:208 #, c-format msgid "" "The overheadWireSegment '%' has wrong position. Automatically set from 0 to " "the length of the lane." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:216 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:216 msgid "" "Overhead wire solver (Eigen) not compiled in, expect errors in overhead wire " "simulation" @@ -8709,33 +8899,33 @@ "Havai Hat Çözücü (Eigen) Derlenmemiş, Havai Hat Simülasyonunda Hatalar " "Bekleniyor" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:376 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:376 msgid "" "A connecting overhead wire start segment '%' defined for overhead wire clamp " "'%' is not assigned to the traction substation '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:378 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:378 msgid "" "A connecting overhead wire end segment '%' defined for overhead wire clamp " "'%' is not assigned to the traction substation '%'." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:382 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:382 msgid "" "The overhead wire clamp '%' defined in an overhead wire section was not " "assigned to the substation '%'. Please define proper in additional files before defining overhead wire section." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:397 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:397 msgid "" "Cannot check circuit, overhead circuit solver support (Eigen) not compiled " "in." msgstr "" "Çevrim Kontrol Edilemiyor, Havai Çevrim Çözücü Desteği (Eigen) Derlenmedi." -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:469 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:469 msgid "" "Not building overhead wire clamps, overhead wire solver support (Eigen) not " "compiled in." @@ -8743,7 +8933,7 @@ "Havai Hat Kelepçeleri Yapılandırılmadı, Havai Hat Çözücü Desteği (Eigen) " "Derlenmedi." -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:472 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:472 msgid "" "Ignoring overhead wire clamps, they make no sense when overhead wire circuit " "solver is off." @@ -8751,112 +8941,112 @@ "Havai Hat Kelepçeleri Yok Sayılıyor, Bunlar Havai Hat Çevrim Çözücüsü " "Kapalıyken Anlamsızdır." -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:526 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:526 msgid "Ignoring invalid access from non-pedestrian lane '%' in busStop '%'." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:54 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:54 msgid "The generated net will be written to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:59 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:59 msgid "Prefix of files to write plain xml nodes, edges and connections to" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:62 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:62 msgid "Write all lanes and their attributes even when they are not customized" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:69 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:69 msgid "Defines a prefix for edge and junction names" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:74 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:74 msgid "Write geo coordinates in plain-xml" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:79 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:79 msgid "The generated net will be written to FILE using Amitran format" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:82 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:82 msgid "The generated net will be written to FILE using MATsim format" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:85 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:85 msgid "The generated net will be written to FILE using OpenDRIVE format" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:88 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:88 msgid "" "The generated net will be written to dlr-navteq files with the given PREFIX" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:91 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:91 msgid "" "The network coordinates are written with the specified level of output " "precision" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:94 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:94 msgid "Street names will be included in the output (if available)" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:97 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:97 msgid "Writes original names, if given, as parameter" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:100 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:100 msgid "Writes street signs as POIs to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:104 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:104 msgid "Writes public transport stops to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:106 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:106 msgid "Writes public transport lines to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:108 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:108 msgid "Clean-up pt stops that are not served by any line" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:111 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:111 msgid "Writes parking areas to FILE" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:114 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:114 msgid "Analyze topology of the railway network" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:118 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:118 msgid "" "Write shapes that are embedded in the network input and that are not " "supported by polyconvert (OpenDRIVE)" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:123 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:123 msgid "" "Builds parameterized curves whenever the angular change between straight " "segments exceeds FLOAT degrees" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:127 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:127 msgid "Write lanes in lefthand networks on the left side (positive indices)" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:130 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:130 msgid "" "Match loaded shapes to the closest edge within FLOAT and export as road " "objects" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:154 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:153 msgid "OpenDRIVE export needs internal links computation." msgstr "OpenDRIVE Dışa Aktarımları Dahili Link Hesaplamasına İhtiyaç Duyuyor." -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:164 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:163 msgid "" "OpenDRIVE cannot represent oblique lane cuts and should use option " "'rectangular-lane-cut'." @@ -8864,12 +9054,12 @@ "OpenDRIVE Meyilli Şerit Kesimlerini Temsil Edemez ve 'rectangular-lane-cut' " "Seçeneğini Kullanmalıdır." -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:173 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:173 msgid "public transport lines output requires 'ptstop-output' to be set" msgstr "" "Toplu Taşıma Hatları Çıktıları 'ptstop-output' Ayarlanmasına Gerek Duyar" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:177 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:177 msgid "" "'ptline-clean-up' only works in conjunction with 'ptline-output'. Ignoring " "invalid option." @@ -8877,38 +9067,38 @@ "'ptline-clean-up' Yalnızca 'ptline-output' ile Birlikte Çalışır. Geçersiz " "Seçenek Yok Sayılıyor." -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:186 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:186 msgid "Writing network" msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:91 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:91 msgid "" "DlrNavteq node data will be written in (floating point) cartesian coordinates" msgstr "" "DlrNavteq Düğüm Verisi Kartezyen Koordinatlarda (Kayan Nokta) Yazılacaktır" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:155 -#: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:162 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:155 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:162 msgid "Could not reconstruct shape for edge:'%' (%)." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:307 +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:313 #, fuzzy msgid "Could not compute smooth shape for edge '%'." msgstr "'%' Bağlantısı İçin Özel Şekil Kullanılamadı." -#: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:450 +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:456 msgid "" "Could not compute smooth shape from lane '%' to lane '%'. Use option " "'junctions.scurve-stretch' or increase radius of junction '%' to fix this." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:957 +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:963 msgid "" "Uneven stop line at lane '%' (dist=%) cannot be represented in OpenDRIVE." msgstr "" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:231 +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:235 msgid "" "Embedding TAZ-data inside the network is deprecated. Use option --taz-output " "instead" @@ -8916,343 +9106,339 @@ "TAB Verilerinin Ağ İçine Gömülmesi Kullanımdan Kaldırılmıştır. Bunun Yerine " "--taz-output Seçeneğini Kullanın" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:351 +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:458 msgid "Could not find bidi-connection for edge '%'" msgstr "Kesim '%' İçin Çift Yönlü Bağlantı Bulunamadı" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:517 +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:545 #, c-format msgid "Lane '%' has a maximum allowed speed of 0." msgstr "'%' Şeridinin Sahip Olduğu Maksimum İzinli Hız 0'dır." -#: /home/micha/programming/sumo/src/netwrite/NWWriter_XML.cpp:88 -#: /home/micha/programming/sumo/src/polyconvert/PCPolyContainer.cpp:105 +#: D:\Repos\sumo/src\netwrite\NWWriter_XML.cpp:88 +#: D:\Repos\sumo/src\polyconvert\PCPolyContainer.cpp:105 msgid "" "Ignoring option \"proj.plain-geo\" because no geo-conversion has been defined" msgstr "" -#: /home/micha/programming/sumo/src/od/ODAmitranHandler.cpp:48 +#: D:\Repos\sumo/src\od2trips_main.cpp:80 +msgid "Loads TAZ (districts; also from networks) from FILE(s)" +msgstr "" + +#: D:\Repos\sumo/src\od2trips_main.cpp:102 +msgid "Writes trip definitions into FILE" +msgstr "" + +#: D:\Repos\sumo/src\od2trips_main.cpp:105 +msgid "Writes flow definitions into FILE" +msgstr "" + +#: D:\Repos\sumo/src\od2trips_main.cpp:108 +msgid "Writes probabilistic flow instead of evenly spaced flow" +msgstr "" + +#: D:\Repos\sumo/src\od2trips_main.cpp:111 +msgid "Writes pedestrians instead of vehicles" +msgstr "" + +#: D:\Repos\sumo/src\od2trips_main.cpp:114 +msgid "Writes persontrips instead of vehicles" +msgstr "" + +#: D:\Repos\sumo/src\od2trips_main.cpp:117 +msgid "Add modes attribute to personTrips" +msgstr "" + +#: D:\Repos\sumo/src\od2trips_main.cpp:124 +msgid "Writes trips between junctions" +msgstr "" + +#: D:\Repos\sumo/src\od2trips_main.cpp:129 +#: D:\Repos\sumo/src\router\ROFrame.cpp:116 +msgid "Defines the begin time; Previous trips will be discarded" +msgstr "" + +#: D:\Repos\sumo/src\od2trips_main.cpp:132 +#: D:\Repos\sumo/src\router\ROFrame.cpp:119 +msgid "" +"Defines the end time; Later trips will be discarded; Defaults to the maximum " +"time that SUMO can represent" +msgstr "" + +#: D:\Repos\sumo/src\od2trips_main.cpp:140 +msgid "Spreads trips uniformly over each time period" +msgstr "" + +#: D:\Repos\sumo/src\od2trips_main.cpp:143 +msgid "Always choose source and sink edge which are not identical" +msgstr "" + +#: D:\Repos\sumo/src\od2trips_main.cpp:149 +msgid "Defines the prefix for vehicle names" +msgstr "" + +#: D:\Repos\sumo/src\od2trips_main.cpp:162 +msgid "Disable console output of current time step" +msgstr "" + +#: D:\Repos\sumo/src\od2trips_main.cpp:193 +msgid "No TAZ input file (-n) specified." +msgstr "Herhangi Bir TAB Girdi Dosyası (-n) Belirtilmemiş." + +#: D:\Repos\sumo/src\od2trips_main.cpp:197 +msgid "No input specified." +msgstr "Herhangi Bir Girdi Belirtilmemiş." + +#: D:\Repos\sumo/src\od2trips_main.cpp:201 +msgid "No trip table output file (-o) or flow-output is specified." +msgstr "" +"Herhangi Bir Seyahat Tablosu Çıktı Dosyası (-o) ya da Akış-Çıktı Dosyası " +"Belirtilmemiş." + +#: D:\Repos\sumo/src\od2trips_main.cpp:205 +msgid "Only one of the the options 'pedestrians' and 'persontrips' may be set." +msgstr "" +"'Yayalar' ve 'Yolcu Seyahatleri' Seçeneklerinden Sadece Birisi Ayarlanabilir." + +#: D:\Repos\sumo/src\od2trips_main.cpp:248 +msgid "" +"Importer of O/D-matrices for the microscopic, multi-modal traffic simulation " +"SUMO." +msgstr "" +"Mikroskopik, Çok Modlu Trafik Simülasyonu SUMO İçin B/V Matrisleri " +"Yükleyicisi." + +#: D:\Repos\sumo/src\od2trips_main.cpp:270 +msgid "You must supply a TAZ, network or districts file ('-n')." +msgstr "" + +#: D:\Repos\sumo/src\od2trips_main.cpp:276 +#, fuzzy +msgid "No districts loaded." +msgstr "Herhangi Bir Bölge Yüklenmedi, Kesim No'ları Kullanılacak." + +#: D:\Repos\sumo/src\od2trips_main.cpp:282 +msgid "No vehicles loaded." +msgstr "" + +#: D:\Repos\sumo/src\od\ODAmitranHandler.cpp:48 msgid "Invalid duration for timeSlice starting %." msgstr "" -#: /home/micha/programming/sumo/src/od/ODDistrictCont.cpp:72 +#: D:\Repos\sumo/src\od\ODDistrictCont.cpp:72 #, fuzzy, c-format msgid "Could not access network file '%' to load." msgstr "'%' ile '%' Arasındaki Bağlantı Ayarlanamadı." -#: /home/micha/programming/sumo/src/od/ODDistrictHandler.cpp:130 +#: D:\Repos\sumo/src\od\ODDistrictHandler.cpp:130 msgid "'probability' must be positive (in definition of % '%')." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:80 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:80 msgid "Missing origin '%' and destination '%' (% vehicles)." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:86 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:86 msgid "Missing origin '%' (% vehicles)." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:91 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:91 msgid "Missing destination '%' (% vehicles)." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:97 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:97 #, fuzzy, c-format msgid "District '%' has no source." msgstr "'%' Aracının Geçerli Bir Rotası Yok." -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:101 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:101 #, c-format msgid "District '%' has no sink." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:193 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:193 msgid "" "Cannot find different source and sink edge for origin '%' and destination " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:364 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:384 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:410 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:364 D:\Repos\sumo/src\od\ODMatrix.cpp:384 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:410 msgid "" "Flow density of % vehicles per second, cannot be represented with a simple " "probability. Falling back to even spacing." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:434 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:434 msgid "End of file while reading %." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:461 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:461 msgid "Broken period definition '%'." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:475 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:475 msgid "Broken factor: '%'." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:509 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:509 #, c-format msgid "Missing line with % district names." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:519 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:519 msgid "Missing line for district %." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:533 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:533 msgid "More entries than districts found." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:538 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:586 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:538 D:\Repos\sumo/src\od\ODMatrix.cpp:586 msgid "Not numeric vehicle number in line '%'." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:584 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:584 #, fuzzy msgid "Missing at least one information in line '%'." msgstr "'%' Kesiminde Önemli Bir Bilgi Eksik." -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:647 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:154 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:647 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:154 msgid "Could not open '%'." msgstr "'%' açılamadı." -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:658 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:664 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:658 D:\Repos\sumo/src\od\ODMatrix.cpp:664 #, c-format msgid "'%' does not contain the needed information about the time described." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:674 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:687 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:674 D:\Repos\sumo/src\od\ODMatrix.cpp:687 #, fuzzy, c-format msgid "Could not access matrix file '%' to load." msgstr "tls '%' Tahsis Edilemedi." -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:714 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:714 #, fuzzy, c-format msgid "Could not access route file '%' to load." msgstr "tls '%' Tahsis Edilemedi." -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:731 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:731 msgid "Assuming 24 entries for a day timeline, but got %." msgstr "" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:741 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:741 msgid "Broken time line definition: missing a value in '%'." msgstr "" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:80 -msgid "Loads TAZ (districts; also from networks) from FILE(s)" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:102 -msgid "Writes trip definitions into FILE" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:105 -msgid "Writes flow definitions into FILE" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:108 -msgid "Writes probabilistic flow instead of evenly spaced flow" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:111 -msgid "Writes pedestrians instead of vehicles" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:114 -msgid "Writes persontrips instead of vehicles" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:117 -msgid "Add modes attribute to personTrips" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:124 -msgid "Writes trips between junctions" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:129 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:116 -msgid "Defines the begin time; Previous trips will be discarded" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:132 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:119 -msgid "" -"Defines the end time; Later trips will be discarded; Defaults to the maximum " -"time that SUMO can represent" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:140 -msgid "Spreads trips uniformly over each time period" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:143 -msgid "Always choose source and sink edge which are not identical" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:149 -msgid "Defines the prefix for vehicle names" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:162 -msgid "Disable console output of current time step" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:193 -msgid "No TAZ input file (-n) specified." -msgstr "Herhangi Bir TAB Girdi Dosyası (-n) Belirtilmemiş." - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:197 -msgid "No input specified." -msgstr "Herhangi Bir Girdi Belirtilmemiş." - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:201 -msgid "No trip table output file (-o) or flow-output is specified." -msgstr "" -"Herhangi Bir Seyahat Tablosu Çıktı Dosyası (-o) ya da Akış-Çıktı Dosyası " -"Belirtilmemiş." - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:205 -msgid "Only one of the the options 'pedestrians' and 'persontrips' may be set." -msgstr "" -"'Yayalar' ve 'Yolcu Seyahatleri' Seçeneklerinden Sadece Birisi Ayarlanabilir." - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:248 -msgid "" -"Importer of O/D-matrices for the microscopic, multi-modal traffic simulation " -"SUMO." -msgstr "" -"Mikroskopik, Çok Modlu Trafik Simülasyonu SUMO İçin B/V Matrisleri " -"Yükleyicisi." - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:270 -msgid "You must supply a TAZ, network or districts file ('-n')." -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:276 -#, fuzzy -msgid "No districts loaded." -msgstr "Herhangi Bir Bölge Yüklenmedi, Kesim No'ları Kullanılacak." - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:282 -msgid "No vehicles loaded." -msgstr "" - -#: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:471 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:168 +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:471 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:168 #, fuzzy msgid "Could not load '%'." msgstr "tls '%' Tahsis Edilemedi." -#: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:491 +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:491 msgid "Loaded decal '%' with bounding box % %." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:597 +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:597 msgid "Could not load '%'. The model is replaced by a cone shape." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGManipulator.cpp:257 +#: D:\Repos\sumo/src\osgview\GUIOSGManipulator.cpp:257 #, c-format msgid "Currently in % camera mode. Press [F] to switch." msgstr "Şu Anda Kamera Modunda. Değiştirmek İçin [F] Basın." -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:166 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:166 msgid "Could not load traffic light files." msgstr "Trafik Işığı Dosyalarını Yükleyemiyor." -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:454 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:454 msgid "Invalid link index in '%'." msgstr "" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:456 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:456 #, fuzzy msgid "Unknown traffic light in '%'." msgstr "Bilinmeyen '%' Otobüs Durağı." -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:992 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:992 msgid " (No projection defined)" msgstr " (Projeksiyon tanımlanmadı)" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:996 -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:997 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:996 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:997 msgid "N/A" msgstr "Yok" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:107 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:208 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:263 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:341 -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:240 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:107 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:208 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:263 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:341 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:240 msgid "Unable to project coordinates for polygon '%'." msgstr "'%' Çokgeni İçin Koordinatlar Yansıtılamıyor." -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:184 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:184 msgid "Missing id under '%'" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:232 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:265 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:140 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:299 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:271 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:385 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:232 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:265 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:140 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:299 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:271 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:385 msgid "Unable to project coordinates for POI '%'." msgstr "EN '%' İçin Koordinatlar Yansıtılamıyor." -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:300 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:300 msgid "Unsupported shape type occurred (id='%')." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:71 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:71 #, fuzzy msgid "Could not open dlr-navteq-poi-file '%'." msgstr "tls '%' Tahsis Edilemedi." -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:86 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:86 msgid "Could not open dlr-navteq-poly-file '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:128 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:128 #, fuzzy msgid "Invalid x coordinate for POI '%'." msgstr "EN '%' İçin Koordinatlar Yansıtılamıyor." -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:132 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:132 #, fuzzy msgid "Invalid y coordinate for POI '%'." msgstr "EN '%' İçin Koordinatlar Yansıtılamıyor." -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:137 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:137 #, fuzzy msgid "The name of a POI is missing." msgstr "Bir Çokgenin Adı Eksik; Çıkartılacak." -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:191 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:191 msgid "Invalid dlr-navteq-polygon - line: '%'." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:220 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:220 #, c-format msgid "The polygon '%' is empty." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:224 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:224 msgid "The name of a polygon is missing; it will be discarded." msgstr "Bir Çokgenin Adı Eksik; Çıkartılacak." -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:157 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:157 msgid "Could not import polygon from relation '%' (missing ways)" msgstr "'%' İlişkisinden Poligon İçe Aktarılamadı (Yollar Eksik)" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:212 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:212 msgid "" "Could not import polygon from relation '%' (name:% reason: found gap of %m " "to way '%')\n" @@ -9262,207 +9448,207 @@ "Arasında Boşluk Bulundu)\n" "Kalan Yolların Toplam Uzunluğu: %m." -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:230 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:230 msgid "Assembled polygon from relation '%' (name:%)" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:254 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:254 #, fuzzy, c-format msgid "Polygon '%' has no shape." msgstr "Kesim '%' Hiçbir Şeride Sahip Değil." -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:114 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:114 #, fuzzy msgid "Could not open visum-file '%'." msgstr "tls '%' Tahsis Edilemedi." -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:149 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:149 #, fuzzy msgid "Unable to project coordinates for point '%'." msgstr "'%' Çokgeni İçin Koordinatlar Yansıtılamıyor." -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderXML.cpp:63 +#: D:\Repos\sumo/src\polyconvert\PCLoaderXML.cpp:63 #, fuzzy msgid "Could not open xml-file '%'." msgstr "tls '%' Tahsis Edilemedi." -#: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:55 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:55 #, fuzzy msgid "Could not open net-file '%'." msgstr "tls '%' Tahsis Edilemedi." -#: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:71 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:71 #, fuzzy msgid "Could not find projection parameter in net." msgstr "Kesim '%' İçin Çift Yönlü Bağlantı Bulunamadı" -#: /home/micha/programming/sumo/src/polyconvert/PCTypeDefHandler.cpp:71 +#: D:\Repos\sumo/src\polyconvert\PCTypeDefHandler.cpp:71 #, fuzzy msgid "Could not add polygon type '%' (probably the id is already used)." msgstr "TT Durağı '%' Yeniden Atanamadı, Muhtemelen OSM Dosyası Bozuk." -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:81 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:81 msgid "Loads SUMO-network FILE as reference to offset and projection" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:85 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:85 msgid "" "Reads polygons from FILE assuming they're coded in DLR-Navteq (Elmar)-format" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:87 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:87 msgid "" "Reads pois from FILE+ assuming they're coded in DLR-Navteq (Elmar)-format" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:92 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:92 msgid "Reads polygons from FILE assuming it's a Visum-net" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:100 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:100 msgid "Reads pois and shapes from FILE assuming they're coded in XML" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:105 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:105 msgid "Reads pois from FILE+ assuming they're coded in OSM" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:107 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:107 msgid "The type will be made of the key-value - pair" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:109 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:109 msgid "The id will be set from the given 'name' attribute" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:111 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:111 msgid "" "If FLOAT >= 0, assemble one polygon from all ways of a relation if they all " "connect with gaps below FLOAT" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:118 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:118 msgid "Reads shapes from shapefiles FILE+" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:122 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:122 msgid "Guesses the shapefile's projection" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:130 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:130 msgid "Defines in which column the id can be found" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:134 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:134 msgid "Defines which columns form the type id (comma separated list)" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:137 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:137 msgid "A running number will be used as id" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:140 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:140 msgid "Extract all additional columns as params" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:143 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:143 msgid "" "[auto|true|false]. Forces the 'fill' status to the given value. Default " "'auto' tries to determine it from the data type" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:148 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:148 msgid "Reads types from FILE" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:156 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:156 msgid "Write generated polygons/pois to FILE" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:159 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:159 msgid "Write generated polygons/pois to a dlr-tdp file with the given prefix" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:165 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:169 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:172 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:177 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:181 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:165 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:169 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:172 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:177 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:181 msgid "Pruning" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:165 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:165 msgid "Enables pruning on net boundaries" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:169 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:169 msgid "" "Uses FLOAT,FLOAT,FLOAT,FLOAT as offset definition added to the net boundary. " "Positive values grow the boundary on all sides while negative values shrink " "it." msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:172 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:172 msgid "Uses STR as pruning boundary" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:177 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:177 msgid "Items in STR will be kept though out of boundary" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:181 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:181 msgid "Items with names in STR[] will be removed" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:196 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:196 msgid "Imports all attributes as key/value pairs" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:202 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:202 msgid "" "Adds FLOAT to the layer value for each poi (i.e. to raise it above polygons)" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:206 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:206 msgid "Sets STR as default color" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:209 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:209 msgid "Sets STR as default prefix" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:212 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:212 msgid "Sets STR as default type" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:215 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:215 msgid "Fills polygons by default" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:218 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:218 msgid "Sets FLOAT as default layer" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:221 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:221 msgid "Sets default action to discard" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:225 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:225 msgid "Write geo coordinates in output" msgstr "" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:232 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:232 msgid "" "Importer of polygons and POIs for the microscopic, multi-modal traffic " "simulation SUMO." msgstr "" "Mikroskopik, Çok Modlu Trafik Simülasyonu SUMO İçin Çokgen İçe Aktarıcısı." -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:285 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:285 msgid "In order to prune the input on the net, you have to supply a network." msgstr "" -#: /home/micha/programming/sumo/src/router/ROEdge.cpp:204 +#: D:\Repos\sumo/src\router\ROEdge.cpp:204 msgid "" "No interval matches passed time=% in edge '%'.\n" " Using edge's length / max speed." @@ -9470,7 +9656,7 @@ "'%' Kesiminde time=% Geçen Aralık Eşleşmesi Yok.\n" " Kesimin Uzunluğu/Maks Hızı Kullanılıyor." -#: /home/micha/programming/sumo/src/router/ROEdge.cpp:230 +#: D:\Repos\sumo/src\router\ROEdge.cpp:230 msgid "" "No interval matches passed time=% in edge '%'.\n" " Using edge's length / edge's speed." @@ -9478,7 +9664,7 @@ "'%' Kesiminde time=% Geçen Aralık Eşleşmesi Yok.\n" " Kesimin Uzunluğu/Hızı Kullanılıyor." -#: /home/micha/programming/sumo/src/router/ROEdge.cpp:453 +#: D:\Repos\sumo/src\router\ROEdge.cpp:453 msgid "" "Option weights.priority-factor does not take effect because all edges have " "the same priority." @@ -9486,691 +9672,690 @@ "Tüm Kesimler Aynı Önceliğe Sahip Olduğu İçin weights.priority-factor " "Seçeneği Geçerli Olmaz." -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:47 +#: D:\Repos\sumo/src\router\ROFrame.cpp:47 msgid "Write generated routes to FILE" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:53 +#: D:\Repos\sumo/src\router\ROFrame.cpp:53 msgid "Write used vehicle types into separate FILE" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:56 +#: D:\Repos\sumo/src\router\ROFrame.cpp:56 msgid "Keep vTypeDistribution ids when writing vehicles and their types" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:63 +#: D:\Repos\sumo/src\router\ROFrame.cpp:63 msgid "Use FILE as SUMO-network to route on" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:66 +#: D:\Repos\sumo/src\router\ROFrame.cpp:66 msgid "Write vehicles that reference routes by their id" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:73 +#: D:\Repos\sumo/src\router\ROFrame.cpp:73 msgid "Read additional network data (districts, bus stops) from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:87 +#: D:\Repos\sumo/src\router\ROFrame.cpp:87 msgid "Read sumo routes, alternatives, flows, and trips from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:101 +#: D:\Repos\sumo/src\router\ROFrame.cpp:101 msgid "Read network weights from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:104 +#: D:\Repos\sumo/src\router\ROFrame.cpp:104 msgid "Read lane-based network weights from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:125 +#: D:\Repos\sumo/src\router\ROFrame.cpp:125 msgid "Continue if a route could not be build" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:128 +#: D:\Repos\sumo/src\router\ROFrame.cpp:128 msgid "Prune the number of alternatives to INT" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:131 +#: D:\Repos\sumo/src\router\ROFrame.cpp:131 msgid "Use origin and destination zones (districts) for in- and output" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:139 +#: D:\Repos\sumo/src\router\ROFrame.cpp:139 msgid "Assume input is unsorted" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:148 +#: D:\Repos\sumo/src\router\ROFrame.cpp:148 msgid "generate random departure times for flow input" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:151 +#: D:\Repos\sumo/src\router\ROFrame.cpp:151 msgid "" "Remove loops within the route; Remove turnarounds at start and end of the " "route" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:154 +#: D:\Repos\sumo/src\router\ROFrame.cpp:154 msgid "Tries to correct a false route" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:157 +#: D:\Repos\sumo/src\router\ROFrame.cpp:157 msgid "" "Tries to correct an invalid starting edge by using the first usable edge " "instead" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:160 +#: D:\Repos\sumo/src\router\ROFrame.cpp:160 msgid "" "Tries to correct an invalid destination edge by using the last usable edge " "instead" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:163 +#: D:\Repos\sumo/src\router\ROFrame.cpp:163 msgid "" "Maximum distance when mapping input coordinates (fromXY etc.) to the road " "network" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:166 +#: D:\Repos\sumo/src\router\ROFrame.cpp:166 msgid "Match positions to junctions instead of edges" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:169 +#: D:\Repos\sumo/src\router\ROFrame.cpp:169 msgid "Aggregate routing queries with the same origin" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:173 +#: D:\Repos\sumo/src\router\ROFrame.cpp:173 msgid "The number of parallel execution threads used for routing" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:177 +#: D:\Repos\sumo/src\router\ROFrame.cpp:177 msgid "" "Select among routing algorithms ['dijkstra', 'astar', 'CH', 'CHWrapper']" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:181 +#: D:\Repos\sumo/src\router\ROFrame.cpp:181 msgid "" "Comma separated list of param keys to compare for additional restrictions" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:186 +#: D:\Repos\sumo/src\router\ROFrame.cpp:186 msgid "Interpolate edge weights at interval boundaries" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:190 +#: D:\Repos\sumo/src\router\ROFrame.cpp:190 msgid "Expand the end of the last loaded weight interval to infinity" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:194 +#: D:\Repos\sumo/src\router\ROFrame.cpp:194 msgid "" "Apply the given time penalty when computing routing costs for minor-link " "internal lanes" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:217 +#: D:\Repos\sumo/src\router\ROFrame.cpp:217 msgid "Defaults will override given values" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:222 +#: D:\Repos\sumo/src\router\ROFrame.cpp:222 msgid "Defines how often statistics shall be printed" msgstr "" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:233 +#: D:\Repos\sumo/src\router\ROFrame.cpp:233 msgid "No output specified." msgstr "Herhangi Bir Çıktı Belirlenmemiş." -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:238 +#: D:\Repos\sumo/src\router\ROFrame.cpp:238 msgid "A positive number of alternatives must be enabled." msgstr "Pozitif Sayıda Alternatif Etkinleştirilmelidir." -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:62 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:64 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:83 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:85 +#: D:\Repos\sumo/src\router\ROLoader.cpp:62 +#: D:\Repos\sumo/src\router\ROLoader.cpp:64 +#: D:\Repos\sumo/src\router\ROLoader.cpp:83 +#: D:\Repos\sumo/src\router\ROLoader.cpp:85 #, fuzzy msgid "Trying to set a weight for the unknown edge '%'." msgstr "Bilinmeyen Bitiş Kesimindeki '%' Yasağı Yok Sayılıyor." -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:114 +#: D:\Repos\sumo/src\router\ROLoader.cpp:114 #, c-format msgid "The network file '%' is not accessible." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:140 +#: D:\Repos\sumo/src\router\ROLoader.cpp:140 #, c-format msgid "The additional file '%' is not accessible." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:217 +#: D:\Repos\sumo/src\router\ROLoader.cpp:217 msgid "Routes found between time steps % and %." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:243 +#: D:\Repos\sumo/src\router\ROLoader.cpp:243 msgid "The loader for % from file '%' could not be initialised (%)." msgstr "" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:281 -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:158 +#: D:\Repos\sumo/src\router\ROLoader.cpp:281 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:183 msgid "failed." msgstr "Başarısız." -#: /home/micha/programming/sumo/src/router/RONet.cpp:162 +#: D:\Repos\sumo/src\router\RONet.cpp:162 #, fuzzy, c-format msgid "The edge '%' occurs at least twice." msgstr "Girdide '%' Kesimi En Az İki Kez Oluştu." -#: /home/micha/programming/sumo/src/router/RONet.cpp:176 +#: D:\Repos\sumo/src\router\RONet.cpp:176 #, fuzzy, c-format msgid "The TAZ '%' occurs at least twice." msgstr "Girdide '%' Kesimi En Az İki Kez Oluştu." -#: /home/micha/programming/sumo/src/router/RONet.cpp:199 +#: D:\Repos\sumo/src\router\RONet.cpp:199 #, c-format msgid "The TAZ '%' is unknown." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:204 +#: D:\Repos\sumo/src\router\RONet.cpp:204 #, c-format msgid "The edge '%' for TAZ '%' is unknown." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:259 +#: D:\Repos\sumo/src\router\RONet.cpp:259 #, fuzzy, c-format msgid "The bidi edge '%' is not known." msgstr "'%' Kesimi Trafik Işığı Bulunamadı." -#: /home/micha/programming/sumo/src/router/RONet.cpp:270 +#: D:\Repos\sumo/src\router\RONet.cpp:270 #, fuzzy, c-format msgid "The node '%' occurs at least twice." msgstr "Girdide '%' Kesimi En Az İki Kez Oluştu." -#: /home/micha/programming/sumo/src/router/RONet.cpp:279 +#: D:\Repos\sumo/src\router\RONet.cpp:279 msgid "The % '%' occurs at least twice." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:446 +#: D:\Repos\sumo/src\router\RONet.cpp:446 #, fuzzy, c-format msgid "The vehicle type '%' occurs at least twice." msgstr "Girdide '%' Kesimi En Az İki Kez Oluştu." -#: /home/micha/programming/sumo/src/router/RONet.cpp:498 +#: D:\Repos\sumo/src\router\RONet.cpp:498 msgid "Requesting departure time for unknown vehicle '%'" msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:528 +#: D:\Repos\sumo/src\router\RONet.cpp:528 #, c-format msgid "Another person with the id '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:637 +#: D:\Repos\sumo/src\router\RONet.cpp:637 msgid "" "Bulking different maximum speeds ('%' and '%') may lead to suboptimal routes." msgstr "" -#: /home/micha/programming/sumo/src/router/RONet.cpp:640 +#: D:\Repos\sumo/src\router\RONet.cpp:640 msgid "" "Bulking different vehicle classes ('%' and '%') may lead to invalid routes." msgstr "" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:137 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:137 #, fuzzy msgid "Unknown node '%'." msgstr "Bilinmeyen '%' Otobüs Durağı." -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:243 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:243 #, fuzzy msgid "Ignoring lane '%' with broken shape." msgstr "'%' Akımı 'Başlangıcı' Olmadan Yok Sayılıyor" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:280 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:280 #, fuzzy msgid "Skipping isolated junction '%'." msgstr "Şüpheli right_before_left junction '%'." -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:299 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:299 #, fuzzy, c-format msgid "unknown from-edge '%' in connection" msgstr "Dönel Ada İçinde Bilinmeyen Kesim '%'." -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:302 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:302 #, fuzzy, c-format msgid "unknown to-edge '%' in connection" msgstr "Dönel Ada İçinde Bilinmeyen Kesim '%'." -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:316 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:316 #, fuzzy, c-format msgid "unknown via-edge '%' in connection" msgstr "Dönel Ada İçinde Bilinmeyen Kesim '%'." -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:368 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:368 #, fuzzy msgid "Ignoring invalid access from non-pedestrian edge '%'." msgstr "Bilinmeyen Başlangıç Kesimindeki '%' Yasağı Yok Sayılıyor." -#: /home/micha/programming/sumo/src/router/RORouteDef.cpp:123 +#: D:\Repos\sumo/src\router\RORouteDef.cpp:123 #, fuzzy msgid "Repaired route of vehicle '%'." msgstr "'%' Aracı İçin Rota Bulunamadı." -#: /home/micha/programming/sumo/src/router/RORouteDef.cpp:222 +#: D:\Repos\sumo/src\router\RORouteDef.cpp:222 #, fuzzy msgid "" "There are stop edges which were not part of the original route for vehicle " "'%'." msgstr "Son Durak Kesimi '%', '%' Hattı Rotasının Bir Parçası Değil." -#: /home/micha/programming/sumo/src/router/RORouteDef.cpp:237 +#: D:\Repos\sumo/src\router\RORouteDef.cpp:237 msgid "Edge '%' not connected to edge '%' for vehicle '%'." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:200 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:200 msgid "Triggered departure for person '%' requires starting with a ride." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:202 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:202 msgid "" "Triggered departure for container '%' requires starting with a transport." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:224 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:224 #, fuzzy, c-format msgid "Found % outside container element" msgstr "Hat Tanımı Dışında Rota Bulundu" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:338 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:338 msgid "No probability for route %, using default." msgstr "% Rotası İçin Olasılık Yok, Varsayılan Kullanılıyor." -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:493 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:493 msgid "Ids of internal route distributions are ignored (vehicle '%')." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:609 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:609 #, fuzzy msgid "Discarding person '%' because her plan is empty" msgstr "Yalnızca % Düğüm(ler)e Sahip Olduğu İçin '%' Yolu Çıkartılıyor" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:635 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:635 #, fuzzy msgid "Discarding personFlow '%' because their plan is empty" msgstr "Yalnızca % Düğüm(ler)e Sahip Olduğu İçin '%' Yolu Çıkartılıyor" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:643 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:643 #, c-format msgid "probabilistic personFlow '%' must specify end time" msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:716 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:716 #, fuzzy msgid "Discarding container '%' because it's plan is empty" msgstr "Yalnızca % Düğüm(ler)e Sahip Olduğu İçin '%' Yolu Çıkartılıyor" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:733 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:733 #, fuzzy msgid "Discarding containerFlow '%' because it's plan is empty" msgstr "Yalnızca % Düğüm(ler)e Sahip Olduğu İçin '%' Yolu Çıkartılıyor" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1036 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1041 msgid "Triggered departure for container '%' requires a unique lines value." msgstr "" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1076 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1081 msgid "Cannot convert geo-positions because the network has no geo-reference" msgstr "Ağın Coğrafi Referansı Olmadığı İçin Coğrafi Konumlar Dönüştürülemiyor" -#: /home/micha/programming/sumo/src/sumo_main.cpp:49 +#: D:\Repos\sumo/src\sumo_main.cpp:49 msgid "Another interrupt signal received, hard exit." msgstr "Başka Kesinti Sinyali Algılandı, (Sert Çıkış)." -#: /home/micha/programming/sumo/src/sumo_main.cpp:52 +#: D:\Repos\sumo/src\sumo_main.cpp:52 msgid "Interrupt signal received, trying to exit gracefully." msgstr "Kesinti Sinyali Algılandı, Çıkılmaya Çalışılıyor." -#: /home/micha/programming/sumo/src/sumo_main.cpp:86 +#: D:\Repos\sumo/src\sumo_main.cpp:86 msgid "A microscopic, multi-modal traffic simulation." msgstr "Mikro Ölçekli, Çok Modlu Trafik Simülasyonu." -#: /home/micha/programming/sumo/src/sumo_main.cpp:114 -#: /home/micha/programming/sumo/src/sumo_main.cpp:123 +#: D:\Repos\sumo/src\sumo_main.cpp:114 D:\Repos\sumo/src\sumo_main.cpp:123 msgid "Quitting (on error)." msgstr "Çıkılıyor (Hata Kaynaklı)." -#: /home/micha/programming/sumo/src/sumo_main.cpp:126 +#: D:\Repos\sumo/src\sumo_main.cpp:126 msgid "Quitting (on unknown error)." msgstr "Çıkılıyor (Bilinmeyen Hata)." -#: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:76 +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:76 msgid "Unknown actor configuration '%' for vehicle '%'!" msgstr "" -#: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:94 +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:94 msgid "Motion state for unknown vehicle '%'!" msgstr "" -#: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:136 +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:136 msgid "Acceleration information is missing; try running with --compute-a." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:62 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:62 msgid "Computes emissions by driving a time line using SUMO's emission models." msgstr "" "SUMO'nun Emisyon Modellerini Kullanıp Bir Zaman Çizgisi Çalıştırarak " "Emisyonları Hesaplar." -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:70 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:70 msgid "Defines the file to read the driving cycle from." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:74 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:74 msgid "Skips the first NUM lines." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:78 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:78 msgid "Defines the entry separator." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:83 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:83 msgid "" "Defines the netstate, route and trajectory files to read the driving cycles " "from." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:86 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:86 msgid "Load emission parameters (vTypes) from FILE(s)" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:89 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:89 msgid "Defines for which emission class the emissions shall be generated. " msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:92 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:92 msgid "Defines the vehicle type to use for emission parameters." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:96 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:96 msgid "" "If set, the acceleration is computed instead of being read from the file. " msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:99 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:99 msgid "" "If set, the acceleration for time t is computed from v(t+1) - v(t) instead " "of v(t) - v(t-1). " msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:102 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:102 msgid "If set, the acceleration for time t is set to 0 if the speed is 0. " msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:105 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:105 msgid "If set, the first line of the read file is skipped." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:108 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:108 msgid "If set, the given speed is interpreted as being given in km/h." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:111 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:111 msgid "If set, the fourth column is read and used as slope (in deg)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:114 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:114 msgid "" "Sets a global slope (in deg) that is used if the file does not contain slope " "information." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:119 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:119 msgid "Defines the file to write the emission cycle results into." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:122 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:122 msgid "Defines the attributes to write." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:125 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:125 msgid "Save the emission values of each vehicle in XML" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:129 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:129 msgid "Save the aggregated and normed emission values of each vehicle in CSV" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:145 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:145 msgid "Defines the begin time in seconds;" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:148 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:148 msgid "Defines the end time in seconds;" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:152 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:152 msgid "Not writing anything." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:169 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:169 msgid "Either a timeline or a netstate / amitran file must be given." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:172 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:172 msgid "The output file must be given." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:185 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:185 #, fuzzy, c-format msgid "Unknown attribute '%' to write in output." msgstr "Dönel Ada İçinde Bilinmeyen Kesim '%'." -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:213 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:213 msgid "" "Option --vtype requires option --additional-files for loading vehicle types" msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:225 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:225 #, fuzzy, c-format msgid "Vehicle type '%' is not defined" msgstr "'%' Aracının Geçerli Bir Rotası Yok." -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:245 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:245 msgid "Unreadable file '%'." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:276 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:276 msgid "Missing an entry in line '%'." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:278 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:278 msgid "Not numeric entry in line '%'." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:58 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:58 msgid "Writing map of '%' into '%'." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:62 -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:291 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:62 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:291 #, fuzzy, c-format msgid "Could not open file '%' for writing." msgstr "Sinyal '%' İçin Kesim '%' Bulunamadı." -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:86 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:86 msgid "Builds and writes an emissions map for SUMO's emission models." msgstr "" "SUMO'nun Emisyon Modelleri İçin Bir Emisyon Haritası Oluşturur ve Yazar." -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:92 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:92 msgid "If set, maps for all available emissions are written." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:95 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:95 msgid "Defines the name of the emission class to generate the map for." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:98 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:98 msgid "Defines the minimum velocity boundary of the map to generate (in m/s)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:100 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:100 msgid "Defines the maximum velocity boundary of the map to generate (in m/s)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:102 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:102 msgid "Defines the velocity step size (in m/s)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:104 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:104 msgid "" "Defines the minimum acceleration boundary of the map to generate (in m/s^2)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:106 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:106 msgid "" "Defines the maximum acceleration boundary of the map to generate (in m/s^2)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:108 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:108 msgid "Defines the acceleration step size (in m/s^2)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:110 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:110 msgid "Defines the minimum slope boundary of the map to generate (in deg)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:112 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:112 msgid "Defines the maximum slope boundary of the map to generate (in deg)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:114 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:114 msgid "Defines the slope step size (in deg)." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:119 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:119 msgid "" "Defines the file (or the path if --iterate was set) to write the map(s) into." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:159 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:159 msgid "The emission class (-e) must be given." msgstr "" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:162 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:162 msgid "The output file (-o) must be given." msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:314 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:314 msgid "Starting TraCI without using internal lanes!" msgstr "TraCI Dahili Şerit Kullanmadan Başlatılıyor!" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:320 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:320 msgid "***Starting server on port % ***" msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:323 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:323 #, c-format msgid " waiting for % clients..." msgstr "" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:347 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:347 msgid " client connected" msgstr " İstemci Bağlı" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:480 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:480 msgid "" "Execution order (libsumo::CMD_SETORDER) was not set for all TraCI clients in " "pre-execution phase." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/FileHelpers.cpp:73 +#: D:\Repos\sumo/src\utils\common\FileHelpers.cpp:73 msgid "Cannot get file attributes for file '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/FileHelpers.h:318 +#: D:\Repos\sumo/src\utils\common\FileHelpers.h:318 #, fuzzy msgid "Invalid follower index in route '%'!" msgstr "% İlişkisinde Geçersiz Renk Değeri '%'" -#: /home/micha/programming/sumo/src/utils/common/FileHelpers.h:328 +#: D:\Repos\sumo/src\utils\common\FileHelpers.h:328 #, c-format msgid "An edge within the route '%' is not known!" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:153 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:178 #, c-format msgid "done (%ms)." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:155 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:180 msgid "done." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:253 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:278 #, fuzzy msgid "Could not set locale to '%'." msgstr "tls '%' Tahsis Edilemedi." -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:258 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:283 msgid "" "Environment variable SUMO_HOME is not set, could not find localized messages." msgstr "" "SUMO_HOME Ortam Değişkeni Ayarlanmadı, Yerelleştirilmiş Mesajlar Bulunamadı." -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:264 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:289 msgid "Could not find localized messages." msgstr "Yerelleştirilmiş Mesajlar Bulunamadı." -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:87 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:87 #, fuzzy msgid "Invalid conversion from string to double (%)" msgstr "Dizeden Sayıya Geçersiz Dönüştürme (Boş Değer)" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:90 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:90 msgid "Invalid conversion from string to double (empty value)" msgstr "Dizeden Sayıya Geçersiz Dönüştürme (Boş Değer)" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:109 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:109 #, fuzzy msgid "Invalid conversion from string to doubles (%)" msgstr "Dizeden Sayılara Geçersiz Dönüştürme (Boş Değer)" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:112 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:112 msgid "Invalid conversion from string to doubles (empty value)" msgstr "Dizeden Sayılara Geçersiz Dönüştürme (Boş Değer)" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:205 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:205 #, fuzzy msgid "Invalid format of parameter (%)" msgstr "Geçersiz Dağıtım Biçimi Parametreleştirildi" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:230 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:230 msgid "Invalid format of attribute '%'. Attribute must start with a letter" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:237 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:237 #, fuzzy msgid "Invalid format of attribute (%)" msgstr "Geçersiz Dağıtım Biçimi Parametreleştirildi" -#: /home/micha/programming/sumo/src/utils/common/RandHelper.cpp:65 +#: D:\Repos\sumo/src\utils\common\RandHelper.cpp:65 msgid "Initialises the random number generator with the current system time" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/RandHelper.cpp:69 +#: D:\Repos\sumo/src\utils\common\RandHelper.cpp:69 msgid "Initialises the random number generator with the given value" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:187 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:187 msgid "Simultaneous specification of vClasses and exceptions is not allowed" msgstr "vClasses ve İstisnaların Eşzamanlı Olarak Belirtilmesine İzin Verilmez" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:191 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:191 msgid "StopOffset requires an offset value" msgstr "StopOffset Bir Öteleme Değeri Gerektirir" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:341 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:341 #, fuzzy, c-format msgid "Unknown vehicle class '%' encountered." msgstr "Dönel Ada İçinde Bilinmeyen Kesim '%'." -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:382 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:382 msgid "" "SVCPermissions must be specified either via 'allow' or 'disallow'. Ignoring " "'disallow'" @@ -10178,309 +10363,313 @@ "SVCPermissions, \"allow\" veya \"disallow\" Kanalıyla Belirtilmelidir. " "'disallow' Yok Sayılıyor" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:408 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:408 #, c-format msgid "The vehicle class '%' is deprecated, use '%' instead." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:43 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:43 msgid "Loads the named config on startup" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:48 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:48 msgid "Saves current configuration into FILE" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:52 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:52 msgid "Enforce relative paths when saving the configuration" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:55 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:55 msgid "Saves a configuration template (empty) into FILE" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:58 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:58 msgid "Saves the configuration schema into FILE" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:62 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:62 msgid "Adds comments to saved template, configuration, or schema" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:71 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:71 msgid "Switches to verbose output" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:74 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:74 msgid "Prints option values before processing" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:77 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:77 msgid "Prints this screen or selected topics" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:80 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:80 msgid "Prints the current version" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:97 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:97 msgid "Disables output of warnings" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:100 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:100 msgid "Aggregate warnings of the same type whenever more than INT occur" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:104 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:104 msgid "Writes all messages to FILE (implies verbose)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:107 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:107 msgid "Writes all non-error messages to FILE (implies verbose)" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:110 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:110 msgid "Writes all warnings and errors to FILE" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:113 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:113 msgid "Language to use in messages" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:116 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:116 msgid "Include license info into every output file" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:119 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:119 msgid "" "Prefix which is applied to all output files. The special string 'TIME' is " "replaced by the current time." msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:122 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:122 msgid "Defines the number of digits after the comma for floating point output" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:125 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:125 msgid "Defines the number of digits after the comma for lon,lat output" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:128 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:128 msgid "" "Write time values as hour:minute:second or day:hour:minute:second rather " "than seconds" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:43 -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:184 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:43 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:184 msgid "Process Error" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:72 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:72 msgid "Empty Data" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:99 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:99 msgid "Invalid Number Format %" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:112 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:112 msgid "Invalid Time Format %" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:125 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:125 msgid "Invalid Bool Format %" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:137 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:137 msgid "Out Of Bounds" msgstr "" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:151 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:151 msgid "Unknown Element" msgstr "" -#: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:74 -#: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:76 -#: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:93 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:74 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:76 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:93 msgid "Invalid format of distribution parameterized" msgstr "Geçersiz Dağıtım Biçimi Parametreleştirildi" -#: /home/micha/programming/sumo/src/utils/emissions/EnergyParams.cpp:153 +#: D:\Repos\sumo/src\utils\emissions\EnergyParams.cpp:153 msgid "Vehicle device '%' doesn't have a valid value for parameter % (%)." msgstr "" "Araç Cihazı '%', % (%) Parametresi İçin Geçerli Bir Değere Sahip Değil." -#: /home/micha/programming/sumo/src/utils/emissions/HelpersEnergy.cpp:225 +#: D:\Repos\sumo/src\utils\emissions\HelpersEnergy.cpp:225 msgid "An acceleration given by the power was not found." msgstr "Enerjinin Verdiği Bir Pozitif İvme Bulunamadı." -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:71 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:74 msgid "Add decal" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:71 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:74 msgid "Add decal." msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:151 -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:162 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:160 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:171 msgid "Invalid row or column" msgstr "Geçersiz satır veya sütun" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:186 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:195 msgid "Invalid row" msgstr "Geçersiz satır" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:196 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:205 msgid "Invalid column" msgstr "Geçersiz sütun" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:332 -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:790 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:341 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:798 msgid "Open decal" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:337 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:346 msgid "All files (*)" msgstr "Tüm dosyalar (*)" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:790 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:798 msgid "Open decal." msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:798 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:806 msgid "Remove decal" msgstr "" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:798 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:806 msgid "Remove decal." msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:87 +#: D:\Repos\sumo/src\utils\foxtools\MFXTextFieldSearch.cpp:66 +msgid "Type to search..." +msgstr "" + +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:87 msgid "Ignoring geoidgrids and vgridshift in projection" msgstr "Projeksiyonda geoidgrids ve vgridshift Yok Sayılıyor" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:232 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:232 msgid "Inverse projection works only with explicit proj parameters." msgstr "Ters Projeksiyon Yalnızca Açık proj Parametreleriyle Çalışır." -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:237 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:237 msgid "The projection method needs to be uniquely defined." msgstr "Projeksiyon Yönteminin Benzersiz Bir Şekilde Tanımlanması Gerekir." -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:288 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:288 msgid "Uses a simple method for projection" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:291 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:291 msgid "Scaling factor for input coordinates" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:294 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:294 msgid "Rotation (clockwise degrees) for input coordinates" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:298 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:298 msgid "" "Determine the UTM zone (for a universal transversal mercator projection " "based on the WGS84 ellipsoid)" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:304 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:304 msgid "Uses STR as proj.4 definition for projection" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:307 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:307 msgid "Inverses projection" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:310 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:310 msgid "Convert from Gauss-Krueger to UTM" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:434 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:434 msgid "Could not transform (%,%)" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:578 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:578 #, c-format msgid "" "Ignoring loaded location attribute nr. % for tracking of original location" msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeomHelper.cpp:238 +#: D:\Repos\sumo/src\utils\geom\GeomHelper.cpp:238 msgid "GeomHelper::makeCircle() requires nPoints>=3" msgstr "GeomHelper::makeCircle() nPoints>=3 Gerektirir" -#: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:607 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:607 msgid "Splitting vector close to end (pos: %, length: %)" msgstr "Ayırma Vektörü Sona Yakın (pos: %, length: %)" -#: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:1503 -#: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:1517 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:1503 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:1517 msgid "Trying to subtract PositionVectors of different lengths." msgstr "Farklı Uzunluklardaki PositionVectors Çıkarmaya Çalışılıyor." -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:960 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:963 msgid "'lane' and 'length' must be defined together in a lane area detector." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:965 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:968 msgid "'lanes' and 'endPos' must be defined together in a lane area detector." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1242 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1245 msgid "Calibrators need either an edge or a lane" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1289 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1292 msgid "" "CalibratorFlows need either the attribute vehsPerHour or speed or type (or " "any combination of these)" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1428 -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1454 -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1479 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1431 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1457 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1482 #, fuzzy, c-format msgid "Probability of % must be equal or greater than 0" msgstr "Çokgen'in lineWidth Değeri 0'dan Büyük Olmalıdır." -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1665 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1668 msgid "X and Y must be be defined together in POIs" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1671 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1674 msgid "lane and position must be be defined together in POIs" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1677 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1680 msgid "lon and lat must be be defined together in POIs" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1743 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1746 msgid "Parameters must be defined within an object." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1745 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:848 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1748 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:857 msgid "Parameters cannot be defined in the additional file's root." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1747 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:850 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1750 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:859 msgid "Parameters cannot be defined within another parameter." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1755 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1758 #, fuzzy, c-format msgid "Error parsing key from % generic parameter. Key cannot be empty." msgstr "" "Anahtar, Şekil Genel Parametresinden Ayrıştırılırken Hata Oluştu. Anahtar " "Boş Olamaz" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1757 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1760 #, fuzzy, c-format msgid "" "Error parsing key from % generic parameter. Key contains invalid characters." @@ -10488,55 +10677,55 @@ "Anahtar, Şekil Genel Parametresinden Ayrıştırılırken Hata Oluştu. Anahtar " "Geçersiz Karakterler İçeriyor" -#: /home/micha/programming/sumo/src/utils/handlers/DataHandler.cpp:111 +#: D:\Repos\sumo/src\utils\handlers\DataHandler.cpp:111 msgid "Data elements cannot load attributes as params" msgstr "Veri Öğeleri, Öznitelikleri Parametreler Olarak Yükleyemez" -#: /home/micha/programming/sumo/src/utils/handlers/MeanDataHandler.cpp:54 +#: D:\Repos\sumo/src\utils\handlers\MeanDataHandler.cpp:54 msgid "MeanData elements cannot load attributes as params" msgstr "MeanData Öğeleri, Öznitelikleri Parametreler Olarak Yükleyemez" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:370 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:373 msgid "" "Could not build % with ID '%' in netedit; ID contains invalid characters." msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:420 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:423 msgid "" "a route must be defined either within a vehicle/flow or with an ID attribute" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:437 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:440 #, fuzzy, c-format msgid "cycleTime of % must be equal or greater than 0" msgstr "Çokgen'in lineWidth Değeri 0'dan Büyük Olmalıdır." -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:482 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:549 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:485 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:552 msgid "Attributes 'from' and 'fromJunction' cannot be defined together" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:484 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:551 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:487 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:554 msgid "Attributes 'to' and 'toJunction' cannot be defined together" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:515 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:518 msgid "trip definition needs either 'from/to' or 'fromJunction/toJunction'" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:846 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:855 msgid "Parameters must be defined within an object" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:858 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:867 #, fuzzy, c-format msgid "Error parsing key from % generic parameter. Key cannot be empty" msgstr "" "Anahtar, Şekil Genel Parametresinden Ayrıştırılırken Hata Oluştu. Anahtar " "Boş Olamaz" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:860 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:869 #, fuzzy, c-format msgid "" "Error parsing key from % generic parameter. Key contains invalid characters" @@ -10544,60 +10733,60 @@ "Anahtar, Şekil Genel Parametresinden Ayrıştırılırken Hata Oluştu. Anahtar " "Geçersiz Karakterler İçeriyor" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:876 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:224 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:885 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:225 msgid "" "Defining car-following parameters in a nested element is deprecated in vType " "'%', use attributes instead!" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:884 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:886 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:227 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:229 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:893 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:895 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:228 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:230 msgid "Invalid parsing embedded VType" msgstr "Geçersiz Ayrıştırma Tümleşik VType" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:970 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:979 msgid "A stop must be defined either with an edge or with an lane, not both" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:984 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:995 msgid "A stop must be defined only in a StoppingPlace" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:987 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:998 msgid "A stop must be defined in an edge, a lane, or in a StoppingPlace" msgstr "" -#: /home/micha/programming/sumo/src/utils/handlers/TemplateHandler.cpp:67 +#: D:\Repos\sumo/src\utils\handlers\TemplateHandler.cpp:67 #, fuzzy msgid "Could not load template '%'." msgstr "tls '%' Tahsis Edilemedi." -#: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice.cpp:86 +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice.cpp:86 msgid "No port number given." msgstr "" -#: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice.cpp:161 +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice.cpp:161 msgid "Error on closing output devices." msgstr "Çıkış Cihazları Kapatılırken Hata Oluştu." -#: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice_File.cpp:46 +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice_File.cpp:46 msgid "Could not redirect to NUL device (%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:315 +#: D:\Repos\sumo/src\utils\options\Option.cpp:352 #, fuzzy, c-format msgid "'%' is not a valid float." msgstr "'%' Aracının Geçerli Bir Rotası Yok." -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:349 +#: D:\Repos\sumo/src\utils\options\Option.cpp:386 #, fuzzy, c-format msgid "'%' is not a valid bool." msgstr "'%' Aracının Geçerli Bir Rotası Yok." -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:409 +#: D:\Repos\sumo/src\utils\options\Option.cpp:446 msgid "" "Please note that using ';' as list separator is deprecated and not accepted " "anymore." @@ -10605,12 +10794,12 @@ "Lütfen Dikkate Alın ';' İfadesinin Liste Ayırıcı Olarak Kullanımı Kaldırıldı " "ve Bundan Böyle Desteklenmiyor." -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:419 +#: D:\Repos\sumo/src\utils\options\Option.cpp:456 #, c-format msgid "'%' is not a valid integer vector." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:65 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:66 msgid "" "Copyright (C) 2001-2023 German Aerospace Center (DLR) and others; https://" "sumo.dlr.de" @@ -10618,45 +10807,45 @@ "Telif Hakkı (C) 2001-2023 German Aerospace Center (DLR) ve diğerleri; " "https://sumo.dlr.de" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:151 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:152 msgid "Internal request for unknown option '%'!" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:174 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:175 #, c-format msgid "No option with the name '%' exists." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:191 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:192 #, c-format msgid "" "Please note that '%' is deprecated.\n" " Use '%' instead." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:387 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:388 #, c-format msgid "The file list for '%' is empty." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:393 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:394 msgid "File '%' is not accessible (%)." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:396 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:397 msgid "Empty file name given; ignoring." msgstr "Boş Dosya Adı Verilmiş; Yok Sayılıyor." -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:417 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:418 msgid "Option '%' needs option '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:616 -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:638 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:621 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:643 msgid " Build features: " msgstr " Yapılandırma Özellikleri: " -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:620 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:625 msgid "" " License EPL-2.0: Eclipse Public License Version 2 " @@ -10664,177 +10853,177 @@ " Lisans EPL-2.0: Eclipse Public License Version 2 " -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:621 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:626 msgid " Use --help to get the list of options." msgstr " Seçenekler Listesine Ulaşmak İçin --help İfadesini Kullanın." -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:669 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:674 #, fuzzy msgid "Could not save configuration to '%'" msgstr "'%' ile '%' Arasındaki Bağlantı Ayarlanamadı." -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:673 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:678 msgid "Written configuration to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:686 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:691 #, fuzzy msgid "Could not save template to '%'" msgstr "tls '%' Tahsis Edilemedi." -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:690 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:695 msgid "Written template to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:702 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:707 #, fuzzy msgid "Could not save schema to '%'" msgstr "'%' Düğümü Eklenemedi" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:706 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:711 msgid "Written schema to '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:88 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:135 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:88 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:135 #, fuzzy msgid "Could not parse commandline options." msgstr "% Kavşakları Birleştirilemedi." -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:103 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:103 #, fuzzy msgid "Could not access configuration '%'." msgstr "tls '%' Tahsis Edilemedi." -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:107 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:107 msgid "Loading configuration" msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:121 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:121 #, fuzzy msgid "Could not load configuration '%'." msgstr "'%' Olan Yüklenen Bağlantı '%' Olarak Ayarlanamadı." -#: /home/micha/programming/sumo/src/utils/options/OptionsLoader.cpp:77 +#: D:\Repos\sumo/src\utils\options\OptionsLoader.cpp:77 #, fuzzy msgid "Could not set option '%' (probably defined twice)." msgstr "TT Durağı '%' Yeniden Atanamadı, Muhtemelen OSM Dosyası Bozuk." -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:127 -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:134 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:127 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:134 msgid "Missing value for parameter '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:146 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:146 #, c-format msgid "" "The parameter '%' is not allowed in this context.\n" " Switch or parameter name expected." msgstr "" -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:150 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:150 msgid "Mixed parameter syntax in '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:124 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:124 #, fuzzy msgid "Could not load landmark-lookup-table from '%'." msgstr "tls '%' Tahsis Edilemedi." -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:138 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:138 #, fuzzy, c-format msgid "Duplicate edge '%' in landmark file." msgstr "Yinelenen Kesim '%' Oluştu." -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:143 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:143 #, c-format msgid "Landmark edge '%' does not exist in the network." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:154 -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:167 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:154 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:167 #, fuzzy, c-format msgid "Unknown or unordered edge '%' in landmark file." msgstr "Dönel Ada İçinde Bilinmeyen Kesim '%'." -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:164 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:164 #, fuzzy msgid "Broken landmark file, unexpected number of entries (%) for edge '%'." msgstr "'%' Kesimi İçin Listeden (%) Minimum Şerit Numarası Kullanılıyor." -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:187 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:187 msgid "Calculating new lookup table." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:194 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:194 msgid "No lookup table for landmark edge '%', recalculating." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:196 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:196 msgid "" "Not all network edges were found in the lookup table '%' for landmark edge " "'%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:293 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:293 msgid "Saving new matrix to '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:295 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:295 #, fuzzy, c-format msgid "Edge '%' not found in intermodal network.'" msgstr "Geçerli Kesim '%' Yeni Rotada Bulunamadı" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:304 -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:338 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:304 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:338 #, fuzzy, c-format msgid "Depart edge '%' not found in intermodal network." msgstr "Geçerli Kesim '%' Yeni Rotada Bulunamadı" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:350 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:350 #, fuzzy, c-format msgid "Arrival edge '%' not found in intermodal network." msgstr "Geçerli Kesim '%' Yeni Rotada Bulunamadı" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:620 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:620 #, fuzzy msgid "Ignoring unordered stop at '%' until % for vehicle '%'." msgstr "'%' Kesimi İçin İz Sayısı % Yok Sayılıyor." -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:632 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:632 #, fuzzy msgid "Ignoring stop at '%' until % for vehicle '%'." msgstr "'%' Kesimi İçin İz Sayısı % Yok Sayılıyor." -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:637 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:637 #, c-format msgid "" "Not using public transport line '%' for routing persons. It has less than " "two usable stops." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/IntermodalRouter.h:214 -#: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:125 +#: D:\Repos\sumo/src\utils\router\IntermodalRouter.h:220 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:125 msgid "Do not use this method" msgstr "" -#: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:87 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:87 #, c-format msgid "Departure edge '%' does not allow pedestrians." msgstr "" -#: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:91 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:91 #, c-format msgid "Destination edge '%' does not allow pedestrians." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:84 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:84 msgid "Error parsing key from shape generic parameter. Key cannot be empty" msgstr "" "Anahtar, Şekil Genel Parametresinden Ayrıştırılırken Hata Oluştu. Anahtar " "Boş Olamaz" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:86 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:86 msgid "" "Error parsing key from shape generic parameter. Key contains invalid " "characters" @@ -10842,95 +11031,95 @@ "Anahtar, Şekil Genel Parametresinden Ayrıştırılırken Hata Oluştu. Anahtar " "Geçersiz Karakterler İçeriyor" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:139 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:139 msgid "Invalid characters for PoI ID" msgstr "PoI ID İçin Geçersiz Karakterler" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:170 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:170 msgid "Either (x, y), (lon, lat) or (lane, pos) must be specified for PoI '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:173 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:173 msgid "" "(lon, lat) is specified for PoI '%' but no geo-conversion is specified for " "the network." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:185 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:185 #, fuzzy msgid "Unable to project coordinates for PoI '%'." msgstr "EN '%' İçin Koordinatlar Yansıtılamıyor." -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:191 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:191 #, c-format msgid "PoI '%' already exists." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:209 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:209 msgid "Invalid characters for Poly ID" msgstr "Poly ID İçin Geçersiz Karakterler" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:252 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:252 msgid "Polygon's shape cannot be empty." msgstr "Çokgen'in Şekli Boş Olamaz." -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:257 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:257 msgid "Polygon's lineWidth must be greater than 0." msgstr "Çokgen'in lineWidth Değeri 0'dan Büyük Olmalıdır." -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:262 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:262 #, c-format msgid "Polygon '%' already exists." msgstr "" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:279 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:279 #, c-format msgid "Loading of shapes from % failed." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:44 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:44 #, c-format msgid "The node: '%' already exists." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:239 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:239 msgid "Index of renumbered node exceeded the reduced number of equations." msgstr "" "Yeniden Numaralandırılmış Düğüm Dizini, Azaltılan Denklem Sayısını Aştı." -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:250 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:250 msgid "Index of renumbered element exceeded the reduced number of equations." msgstr "" "Yeniden Numaralandırılmış Eleman Dizini, Azaltılan Denklem Sayısını Aştı." -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:257 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:257 msgid "Structural error in reduced circuit matrix." msgstr "İndirgenmiş Devre Matrisinde Yapısal Hata." -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:288 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:288 msgid "Initial solution x used during solving DC circuit is out of bounds.\n" msgstr "" "DC Devresinin Çözümü Sırasında Kullanılan İlk Çözüm x Sınırların " "Dışındadır.\n" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:312 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:456 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:312 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:456 msgid "wrongly assigned row of matrix A during solving the circuit" msgstr "Devreyi Çözerken A Matrisinin Satırı Yanlış Atanmış" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:354 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:479 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:354 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:479 #, fuzzy msgid "The negative node of current source is not the groud." msgstr "Akım Kaynağının Negatif Düğümü Toprak Değildir." -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:508 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:518 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:526 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:508 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:518 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:526 msgid "Results deployment during circuit evaluation was unsuccessful." msgstr "Devre Değerlendirmesi Sırasında Sonuçların Dağıtılması Başarısız Oldu." -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:576 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:576 msgid "" "Cannot assign unambigous electric current value to two voltage sources " "connected in parallel at the same node." @@ -10938,258 +11127,278 @@ "Aynı Düğümde Paralel Bağlı İki Gerilim Kaynağına Kesin Elektrik Akımı Değeri " "Atanamaz." -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:798 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:798 msgid "" "Trying to add resistor element into the overhead wire circuit with " "resistance < 1e-6. " msgstr "" "Direnci < 1e-6 Olan Üst Kablo Devresine Direnç Elemanı Eklemeye Çalışılıyor. " -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:800 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:800 msgid "" "Trying to add resistor element into the overhead wire circuit with " "resistance < 0. " msgstr "" "Direnci < 0 Olan Havai Hat Devresine Direnç Elemanı Eklemeye Çalışılıyor. " -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:919 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:919 msgid "" "Circuit Voltage Source '%' is connected to less than two nodes, please " "adjust the definition of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:927 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:927 msgid "" "Circuit Element '%' is connected to less than two nodes, please adjust the " "definition of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:942 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:942 msgid "" "Circuit Node with id '-1' is not the grounded, please adjust the definition " "of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:966 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:966 msgid "" "A Circuit Resistor Element connects the ground, please adjust the definition " "of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:975 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:975 msgid "" "Circuit Node or Voltage Source with internal id '%' has been not visited " "during checking of the circuit. The circuit is disconnected, please adjust " "the definition of the section (with substation '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/traction_wire/Element.cpp:53 +#: D:\Repos\sumo/src\utils\traction_wire\Element.cpp:53 msgid "Undefined element type for '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:63 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:64 msgid "Route file should be sorted by departure time, ignoring '%'!" msgstr "Rota Dosyası, Kalkış Saatine Göre Sıralanmalıdır, '%' Yok Sayılıyor!" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParameter.cpp:653 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParameter.cpp:658 msgid "Invalid % % given for %. Using edge end instead." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParameter.cpp:703 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParameter.cpp:708 msgid "" "Value of stop attribute 'trigger' must be 'person', 'container', 'join' or a " "boolean" msgstr "" -"\"trigger\" Durdurma Özniteliğinin Değeri \"person\", \"container\", " -"\"join\" veya Bir Bulen Olmalıdır" +"\"trigger\" Durdurma Özniteliğinin Değeri \"person\", \"container\", \"join" +"\" veya Bir Bulen Olmalıdır" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:268 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:267 msgid "Undefined end for % '%', defaulting to 24hour duration." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:402 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:401 msgid "Invalid % id '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:404 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:403 msgid "Invalid % id '%'. Contains invalid characters." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:947 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:946 msgid "Lane change model 'JE2013' is deprecated. Using default model instead." msgstr "" "Şerit Değiştirme Modeli 'JE2013' Kullanımdan Kaldırılmıştır. Bunun Yerine " "Varsayılan Model Kullanılıyor." -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1139 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1138 msgid "maneuverAngleTimes format for vType '%' % contains an invalid triplet." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1148 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1147 #, c-format msgid "" "Triplet '%' for vType '%' maneuverAngleTimes cannot be parsed as 'int double " "double'" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1174 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1173 msgid "Unknown car-following model % when parsing vType '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1176 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1175 msgid "Unknown car-following model when parsing vType '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1209 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1225 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1208 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1224 msgid "Invalid Car-Following-Model Attribute %. Cannot be parsed to float" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1213 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1236 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1212 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1235 msgid "Invalid Car-Following-Model Attribute %. Must be greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1247 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1246 msgid "" "Invalid Car-Following-Model Attribute %. Only values between [0-1] are " "allowed" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1506 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1505 msgid "Invalid Lane-Change-Model Attribute %. Cannot be parsed to float" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1523 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1522 msgid "Invalid Lane-Change-Model Attribute %. Must be equal or greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1534 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1533 msgid "Invalid Lane-Change-Model Attribute %. Must be greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1545 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1544 msgid "Invalid Lane-Change-Model Attribute %. Must be between -1 and 1" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1591 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1576 msgid "Invalid Junction-Model Attribute %. Cannot be parsed to float" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1600 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1585 msgid "" "Invalid Junction-Model Attribute %. Only values between [0-1] are allowed" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1606 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1591 msgid "Invalid Junction-Model Attribute %. Must be equal or greater than 0" msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1636 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1621 msgid "The vehicle class '%' for % '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1654 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1639 msgid "The shape '%' for % '%' is not known." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:271 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:271 msgid "Undefined vehicleType parameter" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:281 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:281 msgid "Undefined vehicle parameter" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:291 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:291 msgid "Undefined stop parameter" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:513 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:513 msgid "Trying to get undefined % attribute '%' in SUMOBaseObject '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/GenericHandler.cpp:83 -#: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:105 +#: D:\Repos\sumo/src\utils\xml\GenericHandler.cpp:83 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:105 msgid "Found root element '%' in file '%' (expected '%')." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:209 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:209 msgid " In file '" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:210 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:210 msgid " At line/column " msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SAXWeightsHandler.cpp:145 +#: D:\Repos\sumo/src\utils\xml\SAXWeightsHandler.cpp:145 msgid "Missing value '%' in edge '%'." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:110 -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:136 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:110 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:136 #, fuzzy msgid "Cannot read file '%'!" msgstr "GeoTIFF Dosyası Yüklenemiyor." -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:113 -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:139 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:113 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:139 #, c-format msgid "File '%' is a directory!" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:156 -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:165 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:156 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:165 msgid "The XML-parser was not initialized." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:191 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:191 msgid "The XML-parser could not be build." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:92 -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:98 -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:105 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:92 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:98 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:105 msgid "" "Environment variable SUMO_HOME is not set properly, disabling XML " "validation. Set 'auto' or 'always' for web lookups." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:111 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:111 msgid "" "Environment variable SUMO_HOME is not set properly, XML validation will fail " "or use slow website lookups." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:120 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:120 #, fuzzy msgid "Cannot read local schema '%'." msgstr "tls '%' Tahsis Edilemedi." -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:167 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:167 msgid "" "Disabling XML validation for external file '%'. Use 'auto' or 'always' to " "enable." msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:189 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:189 msgid "Runtime error: % while parsing '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:191 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:191 msgid "Error occurred: % while parsing '%'" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:193 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:193 msgid "" "SAX error occured while parsing '%':\n" " %" msgstr "" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:195 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:195 msgid "Unspecified error occurred wile parsing '%'" msgstr "" +#, fuzzy +#~ msgid "parkingZoneReroute not implemented for meso" +#~ msgstr "resume Bölgesel Ölçek İçin Henüz Uygulanmadı" + +#~ msgid "" +#~ "Vehicle '%' collision with person '%', lane='%', gap=%, time=%, stage=%." +#~ msgstr "" +#~ "'%' Araç ve '%' Yolcu ile Çarpışma, Şerit='%', Aralık=%, Zaman=%, Evre=%." + +#~ msgid "Vehicle '%' collision with person '%', lane='%', time=%, stage=%." +#~ msgstr "'%' Araç ve '%' Yolcu ile Çarpışma, Şerit='%', Zaman=%, Evre=%." + +#, fuzzy +#~ msgid "Invalid collision.action '%'." +#~ msgstr "Geçersiz Ölçeklendirme Faktörü." + +#, fuzzy, c-format +#~ msgid "Edge '% is not unique." +#~ msgstr "Kesim '%' Hiçbir Şeride Sahip Değil." + #~ msgid "Spider networks with many arms should use option ommit-center" #~ msgstr "Çok Kollu Örümcek Ağları ommit-center Seçeneğini Kullanmalıdır" diff -Nru sumo-1.17.0/data/po/zh_gui.po sumo-1.18.0/data/po/zh_gui.po --- sumo-1.17.0/data/po/zh_gui.po 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/po/zh_gui.po 2023-06-28 20:02:17.000000000 +0000 @@ -7,9 +7,9 @@ msgstr "" "Project-Id-Version: sumo\n" "Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" -"POT-Creation-Date: 2023-04-15 12:21+0200\n" -"PO-Revision-Date: 2023-04-24 13:17+0000\n" -"Last-Translator: yunpangfloetteroed \n" +"POT-Creation-Date: 2023-06-15 09:59+0200\n" +"PO-Revision-Date: 2023-06-06 13:40+0000\n" +"Last-Translator: Xiaoxu Bei \n" "Language-Team: Chinese (Simplified) \n" "Language: zh\n" @@ -19,583 +19,581 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.18-dev\n" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:292 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:295 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2208 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2209 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2211 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:507 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:510 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:513 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1558 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1559 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1560 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:292 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:295 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2218 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2219 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2221 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:513 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:516 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:519 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1567 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1568 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1569 msgid "N/A" msgstr "不适用" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:292 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:507 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:292 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:513 msgid "Original coordinate (before coordinate transformation in netconvert)" msgstr "原始坐标(netconvert中坐标转换前)" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:295 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:510 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:295 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:516 msgid "Network coordinate" msgstr "网络坐标" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:323 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:528 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:323 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:534 msgid "Ready." msgstr "就绪。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:444 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1322 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:444 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1329 msgid "&File" msgstr "&档案" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:446 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:200 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:446 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:200 msgid "New Window" msgstr "新视窗" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:446 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:446 msgid "Open a new sumo-gui window." msgstr "开启一个新的 sumo-gui 视窗。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:450 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:450 msgid "&Open Simulation..." msgstr "&开启仿真..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:450 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:450 msgid "Open a simulation (Configuration file)." msgstr "开启仿真(设定档案)。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:453 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:453 msgid "Open &Network..." msgstr "开启 &路网..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:453 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:453 msgid "Open a network." msgstr "开启路网。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:456 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:456 msgid "Open Shapes " msgstr "打开图形档案。 " -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:456 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:456 msgid "Load POIs and Polygons for visualization." msgstr "载入兴趣点(POIs)和多边形以进行视觉化。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:459 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:459 msgid "Open EdgeData " msgstr "打开 EdgeData档案。 " -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:459 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:459 msgid "Load edge related data for visualization." msgstr "载入路段相关资料以进行视觉化。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:462 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1009 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:256 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:462 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1015 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:256 msgid "&Reload" msgstr "&重新载入" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:462 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:462 msgid "Reloads the simulation / the network." msgstr "重新载入仿真和路网。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:465 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:465 msgid "Quick-Reload" msgstr "快速重新载入" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:465 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:465 msgid "Reloads the simulation (but not network)." msgstr "重新载入仿真 (不含路网)。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:469 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:469 msgid "Save Configuration" msgstr "储存设定档" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:469 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:469 msgid "Save current options as a configuration file." msgstr "存储目前选项于设定档案。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:472 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:300 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:91 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:87 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:88 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:472 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:300 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:95 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:95 msgid "Close" msgstr "关闭" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:472 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:472 msgid "Close the simulation." msgstr "关闭仿真。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:480 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1343 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:480 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1350 msgid "&Quit" msgstr "&退出" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:480 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1343 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:480 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1350 msgid "Quit the Application." msgstr "退出应用程序。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:489 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1357 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:489 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1364 msgid "&Edit" msgstr "&编辑" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:491 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:491 msgid "Edit Selected..." msgstr "编辑选择..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:491 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:491 msgid "Opens a dialog for editing the list of selected items." msgstr "打开用于编辑所选项目表的对话框。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:494 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:494 msgid "Select lanes which allow..." msgstr "选择允许... 的车道" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:494 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:494 msgid "Opens a menu for selecting a vehicle class by which to selected lanes." msgstr "打开选单选择所选车道上允许的车辆类型。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:498 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:498 msgid "Edit Breakpoints" msgstr "编辑中的断点" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:498 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:498 msgid "Opens a dialog for editing breakpoints." msgstr "打开对话窗以编辑其中断电。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:501 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1268 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:501 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1302 msgid "Edit Visualisation" msgstr "编辑视觉化表现" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:501 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1268 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:501 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1302 msgid "Opens a dialog for editing visualization settings." msgstr "打开对话窗来编辑视觉化表现选项。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:504 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1271 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:124 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:1587 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1305 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:124 +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:1596 msgid "Edit Viewport" msgstr "编辑视区" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:504 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1271 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1305 msgid "Opens a dialog for editing viewing area, zoom and rotation." msgstr "打开对话窗来编辑观看区域,放大和旋转。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:508 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:508 msgid "Open network in netedit" msgstr "在netedit內打开路网" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:508 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:508 msgid "Opens current network in NETEDIT." msgstr "在 NETEDIT 內打开现有路网。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:515 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:515 msgid "&Settings" msgstr "&设置" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:517 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:53 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:517 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:53 msgid "Application Settings" msgstr "应用程序设置" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:517 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:517 msgid "Open a Dialog for Application Settings editing." msgstr "打开对话窗来进行设置编辑。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:520 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:520 msgid "Gaming Mode\tCtrl+G\tToggle gaming mode on/off." msgstr "游戏模式\tCtrl+G\t打开/关闭游戏模式。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:523 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:523 msgid "Full Screen Mode" msgstr "全屏幕模式" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:523 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:523 msgid "Toggle full screen mode on/off." msgstr "切换全屏幕模式 打开/关闭。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:527 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1393 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:527 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1400 msgid "&Locate" msgstr "&定位" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:529 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1314 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1945 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1348 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1979 msgid "&Junctions" msgstr "&路口" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:529 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:529 msgid "Open a Dialog for Locating a Junction." msgstr "打开对话窗来进行路口定位。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:532 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1319 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1948 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1353 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1982 msgid "&Edges" msgstr "&路段" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:532 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:532 msgid "Open a Dialog for Locating an Edge." msgstr "打开对话窗来进行路段定位。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:535 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1374 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1954 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:535 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1408 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1988 msgid "&Vehicles" msgstr "&车辆" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:535 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:535 msgid "Open a Dialog for Locating a Vehicle." msgstr "打开对话窗来进行车辆定位。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:538 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1379 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1957 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:538 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1413 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1991 msgid "&Persons" msgstr "&人员" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:538 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:538 msgid "Open a Dialog for Locating a Person." msgstr "打开对话窗来进行人员定位。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:541 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:541 msgid "&Container" msgstr "&集装箱" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:541 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:541 msgid "Open a Dialog for Locating a Container." msgstr "打开对话窗来进行集装箱定位。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:544 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1966 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:544 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2000 msgid "&TLS" msgstr "&交通信号" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:544 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:544 msgid "Open a Dialog for Locating a Traffic Light." msgstr "打开对话窗来进行交通信号灯定位。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:547 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:604 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1969 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:547 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:630 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2003 msgid "&Additional" msgstr "&额外的" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:547 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:547 msgid "Open a Dialog for Locating an Additional Structure." msgstr "打开对话窗来进行附加结构的定位。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:550 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1972 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:550 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2006 msgid "P&oI" msgstr "P&oI" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:550 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:550 msgid "Open a Dialog for Locating a Point of Interest." msgstr "打开对话窗来进行兴趣点的定位。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:553 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1975 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:553 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2009 msgid "Po&lygon" msgstr "多变形" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:553 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:553 msgid "Open a Dialog for Locating a Polygon." msgstr "打开对话窗来进行多边形的定位。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:557 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:557 msgid "Show Internal Structures" msgstr "展示内部结构" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:557 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:557 msgid "Show internal junctions and streets in locator dialog." msgstr "在定位对话窗中显示内部路口和道路。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:560 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:560 msgid "Show Parking Vehicles" msgstr "显示停车车辆" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:560 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:560 msgid "Show parking vehicles in locator dialog." msgstr "在定位对话窗中显示停车车辆。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:564 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:564 msgid "Show vehicles outside the road network" msgstr "显示路网外的车辆" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:564 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:564 msgid "" "Show vehicles that are teleporting or driving remote-controlled outside the " "road network in locator dialog." msgstr "在定位对话窗中显示在路网外被遣送(teleporting)或被远程控制的车辆。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:570 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:570 msgid "Simulation" msgstr "仿真" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:572 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:90 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:89 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:277 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:572 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:373 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:90 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:93 msgid "Run" msgstr "执行" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:572 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:572 msgid "Start/ Resume the simulation." msgstr "开始/恢复仿真。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:575 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:575 msgctxt "Simulation" msgid "Stop" msgstr "停止" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:575 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:575 msgid "Halt the simulation." msgstr "暂停仿真。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:578 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:578 msgid "Step" msgstr "时间节距" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:578 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:578 msgid "Perform one simulation step." msgstr "执行以个仿真时间节距。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:581 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:581 msgid "Delay+" msgstr "延迟+" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:581 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:581 msgid "Increase simulation step delay." msgstr "增加仿真时间节距的延迟。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:583 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:583 msgid "Delay-" msgstr "延迟-" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:583 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:583 msgid "Decrease simulation step delay." msgstr "减少仿真时间节距的延迟。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:585 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:288 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:284 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:281 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:255 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1365 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2876 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:67 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:585 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:289 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:286 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:256 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1393 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2904 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:67 msgid "Save" msgstr "存储" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:585 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:585 msgid "Save the current simulation state to a file." msgstr "现有仿真状态另存新档案。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:588 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:287 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:283 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:280 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:73 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:257 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2874 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:65 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:588 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:288 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:285 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:258 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2902 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:65 msgid "Load" msgstr "载入" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:588 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:588 msgid "Load simulation state for the current network from file." msgstr "将仿真状态档案载入当前路网中。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:592 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1458 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1465 msgid "&Window" msgstr "&视窗" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:593 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:747 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:593 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:747 msgid "Open new view" msgstr "打开新视窗" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:595 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:750 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:595 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:750 msgid "Open new 3D view" msgstr "打开新的三维视窗" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:598 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:598 msgid "Tile &Horizontally" msgstr "图砖&水平方向" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:601 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:601 msgid "Tile &Vertically" msgstr "图砖&垂直方向" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:604 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:604 msgid "Cascade" msgstr "级联 (Cascade)" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:608 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:97 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:100 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:608 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:98 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:100 msgid "&Close" msgstr "&关闭" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:618 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:618 msgid "&Others..." msgstr "&其它..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:622 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2092 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:622 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2126 msgid "Show Status Line" msgstr "显示状态列" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:622 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:622 msgid "Toggle the Status Bar on/off." msgstr "切换状态控制杆(打开/关闭)。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:625 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2095 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:625 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2129 msgid "Show Message Window" msgstr "显示信息窗" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:625 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2095 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:625 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2129 msgid "Toggle the Message Window on/off." msgstr "切换信息窗(打开/关闭)。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:628 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:628 msgid "Show Simulation Time" msgstr "显示仿真时间" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:628 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:628 msgid "Toggle the Simulation Time on/off." msgstr "切换仿真时间(打开/关闭)。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:631 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:631 msgid "Show Simulation Delay" msgstr "显示仿真延迟" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:631 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:631 msgid "Toggle the Simulation Delay Entry on/off." msgstr "切换仿真延迟输入(打开/关闭)。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:637 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2099 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:637 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2133 msgid "Clear Message Window" msgstr "清除信息窗內信息" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:637 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:637 msgid "Clear the message window." msgstr "清除信息窗内信息。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:644 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1463 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:644 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1470 msgid "&Help" msgstr "&求助" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:646 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2115 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:646 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2149 msgid "&Online Documentation" msgstr "&线上使用手册" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:646 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2115 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:646 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2149 msgid "Open Online documentation." msgstr "打开线上使用手册。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:649 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2118 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:649 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2152 msgid "&Changelog" msgstr "&更改记录" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:649 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2118 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:649 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2152 msgid "Open Changelog." msgstr "打开更改记录。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:651 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2120 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:651 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2154 msgid "&Hotkeys" msgstr "&快捷键" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:651 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2120 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:651 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2154 msgid "Open Hotkeys." msgstr "打开快捷键。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:653 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2122 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:653 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2156 msgid "&Tutorial" msgstr "&范例教学" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:653 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2122 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:653 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2156 msgid "Open Tutorial." msgstr "打开范例教学。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:655 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2124 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:655 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2158 msgid "&Feedback" msgstr "&回馈意见" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:655 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:655 msgid "Open feedback dialog." msgstr "打开回馈意见对话窗。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:658 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2127 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:658 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2161 msgid "&About" msgstr "&关于" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:658 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:658 msgid "About sumo-gui." msgstr "关于 sumo-gui。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:673 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:673 msgid "\tOpen simulation\tOpen a simulation (Configuration file)." msgstr "\t打开仿真\t打开一仿真 (设定档)。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:675 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:675 msgid "\tOpen network\tOpen a network." msgstr "\t打开路网\t打开一路网。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:677 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:677 msgid "\tReload\tReloads the simulation / the network." msgstr "\t重重新载入\t重新载入仿真/ 路网。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:686 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:686 msgid "\tRun\tStart/Resume the loaded simulation." msgstr "\t执行\t开始/恢复已载入的仿真。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:688 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:688 msgid "\tStop\tHalt the running simulation." msgstr "\t停止\t暂停执行中的仿真。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:690 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:690 msgid "\tStep\tPerform a single simulation step." msgstr "\t时间节距\t执行单一仿真时间节距。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:698 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:698 msgid "" "Time:\tToggle between time formats\tToggle between seconds and hour:minute:" "seconds display." msgstr "时间:\t切换时间格式\t时间显示切换:秒 或 小时:分钟:秒。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:712 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:712 msgid "" "Delay (ms):\tDelay per simulated second\tDelay per simulated second. Click " "to toggle between the last two delay values." @@ -603,2164 +601,2198 @@ "延迟(毫秒):\t每个仿真秒(simulated second)的延迟\t每个仿真秒的延迟。按键执行最" "后两个延迟值的切换 。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:735 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:735 msgid "Scale Traffic:" msgstr "依比例增減交通:" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:735 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:735 msgid "" "Scale traffic from flows and vehicles that are loaded incrementally from " "route files." msgstr "依据从路径档案中逐量载入的流量和车辆数来增减交通量。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:747 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:747 msgid "Open a new microscopic view." msgstr "打开新的微观仿真视窗。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:750 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:750 msgid "Open a new 3D view." msgstr "打开新的三维视窗。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:760 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:760 msgid "Waiting Time:" msgstr "等待时间:" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:760 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:760 msgid "Time spent waiting accumulated for all vehicles" msgstr "所有车辆累计的等待时间" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:771 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:771 msgid "Time Loss:" msgstr "损失时间:" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:771 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:771 msgid "" "Time lost due to being unable to drive with maximum speed for all vehicles" msgstr "所有车辆由于无法以最大速度行驶而损失的时间" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:782 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:782 msgid "Distance (km):" msgstr "距离(公里):" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:782 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:782 msgid "Total distance driven by DRT vehicles" msgstr "需求反应运输(DRT)车辆的总行驶距离" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:793 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:793 msgid "Emergency Vehicle waiting time:" msgstr "紧急救援车辆的等候时间:" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:793 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:793 msgid "Time spent waiting accumulated for emergency vehicles" msgstr "紧急救援车辆累计的等待时间" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:818 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:150 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:818 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:150 msgid "Cl&ear Recent Networks" msgstr "清除最近打开过的路网" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:819 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:151 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:819 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:151 msgid "No Recent Networks" msgstr "无最近打开过的路网" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:823 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:155 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:823 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:155 msgid "Recent Networks" msgstr "最近打开过的路网" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:841 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:173 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:841 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:173 msgid "Cl&ear Recent Configs" msgstr "清除最近打开过的设定档案" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:842 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:174 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:842 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:174 msgid "No Recent Configs" msgstr "无最近打开过的设定档案" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:846 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:178 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:846 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:178 msgid "Recent Configs" msgstr "最近打开过的设定档案" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:986 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1021 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1058 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:986 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1021 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1058 msgid "Running %." msgstr "执行中 %。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1068 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1068 msgid "Open Simulation Configuration" msgstr "打开仿真设定档" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1088 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1088 msgid "Open Network" msgstr "打开路网" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1108 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1108 msgid "Open Shapes" msgstr "打开几何物件(shape)" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1122 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1150 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4634 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4669 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4704 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4736 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1122 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1150 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4650 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4685 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4720 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4752 #, c-format msgid "Loading of % failed." msgstr "加载%失败。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1139 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1139 msgid "Open EdgeData" msgstr "打开EdgeData档案" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1173 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1174 +msgid "Auto-Reloading." +msgstr "" + +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1174 +msgid "TraCI-Loading." +msgstr "" + +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1176 msgid "Reloading." msgstr "重新载入。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1183 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1187 msgid "Quick-Reloading." msgstr "快速重新载入。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1193 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1081 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1197 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1087 msgid "Already loading!" msgstr "已经载入!" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1205 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1209 msgid "Save SUMO Configuration" msgstr "存储SUMO设定档" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1220 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1224 msgid "Configuration saved to %." msgstr "设定档案存储于%。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1222 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1226 msgid "Could not save configuration to %." msgstr "无法将设定档存储于%。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1278 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1304 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2134 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1282 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1308 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2144 msgid "No simulation loaded!" msgstr "沒有载入任何仿真档案 !" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1320 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1324 msgid "Save Simulation State" msgstr "存储仿真状态" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1334 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1338 msgid "Simulation state saved to '%'." msgstr "仿真状态保存到 '%'。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1342 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1346 msgid "Load Simulation State" msgstr "载入仿真状态" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1354 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1358 msgid "State loaded from '%'." msgstr "从 '%'载入仿真状态(state)。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1356 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1360 msgid "Failed to load state from '%' (%)." msgstr "无法从%' (%)载入仿真状态(state) 。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1813 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1817 #, c-format msgid "Loading of '%' failed!" msgstr "%'档案载入失败!" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1827 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1831 #, c-format msgid "'%' loaded." msgstr "已载入。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2027 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2031 +msgid "Simulation ended at time: %. (%)" +msgstr "" + +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2037 msgid "Simulation ended" msgstr "仿真结束" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2125 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2135 msgid "Loading '%'." msgstr "'%'载入中。" -#: /home/micha/programming/sumo/src/gui/GUILoadThread.cpp:206 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2288 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2290 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2291 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2292 +msgid "seconds" +msgstr "" + +#: D:\Repos\sumo/src\gui\GUILoadThread.cpp:206 msgid "Could not load edgedata-files '%'" msgstr "无法载入路段资料档案 (edgedata-files) '%'" -#: /home/micha/programming/sumo/src/gui/GUIRunThread.cpp:100 -#: /home/micha/programming/sumo/src/gui/GUIRunThread.cpp:106 +#: D:\Repos\sumo/src\gui\GUIRunThread.cpp:100 +#: D:\Repos\sumo/src\gui\GUIRunThread.cpp:106 msgid "Quitting (on error)." msgstr "退出 (由于错误)。" -#: /home/micha/programming/sumo/src/gui/GUIRunThread.cpp:265 +#: D:\Repos\sumo/src\gui\GUIRunThread.cpp:265 msgid "Simulation started with time: %." msgstr "仿真开始时间: %。" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:142 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:448 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:142 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:455 msgid "Save Snapshot" msgstr "存储快照(snapshot)" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:167 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:468 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:167 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:475 msgid "No file extension was specified - saving Snapshot as PNG." msgstr "未指定副档名 – 快照存储为可携式网络图像格式(PNG)。" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:173 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:475 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:173 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:482 msgid "Saving failed." msgstr "存储失败。" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:175 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:479 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:175 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:486 msgid "Snapshot successfully saved!" msgstr "快照已经成功存储!" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:219 -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:268 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:219 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:268 msgid "Unknown Message ID in onCmdLocate" msgstr "在onCmdLocate 里未知信息ID" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:233 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:505 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:233 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:512 msgid "Junction Chooser" msgstr "路口选择器" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:237 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:513 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:237 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:520 msgid "Edge Chooser" msgstr "路段选择器" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:241 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:529 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:87 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:241 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:536 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:87 msgid "Vehicle Chooser" msgstr "车辆选择器" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:245 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:576 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:245 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:583 msgid "Person Chooser" msgstr "人选择器" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:249 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:249 msgid "Container Chooser" msgstr "集装箱选择器" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:253 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:253 msgid "Traffic Lights Chooser" msgstr "交通信号选择器" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:257 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:257 msgid "Additional Objects Chooser" msgstr "附加对象选择器" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:261 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:655 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:261 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:667 msgid "POI Chooser" msgstr "兴趣点选择器" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:265 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:265 msgid "Polygon Chooser" msgstr "多边形选择器" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:269 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:269 msgid "phase names" msgstr "相位名称" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:272 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:272 msgid "detectors" msgstr "探测器" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:273 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:273 msgid "conditions" msgstr "条件" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:336 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:336 msgid "Overflow in time computation occurred." msgstr "时间计算出现溢出。" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:114 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:332 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:114 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:334 msgid "Locate Junctions" msgstr "定位路口" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:114 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:114 msgid "Locate a junction within the network." -msgstr "" +msgstr "在路网內定位一个路口。" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:119 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:336 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:119 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:338 msgid "Locate Edges" msgstr "定位路段" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:119 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:119 msgid "Locate an edge within the network." -msgstr "" +msgstr "在路网內定位一个路段。" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:124 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:344 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:124 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:346 msgid "Locate Vehicles" msgstr "定位车辆" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:124 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:124 msgid "Locate a vehicle within the network." -msgstr "" +msgstr "在路网內定位一辆車。" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:129 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:348 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:129 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:350 msgid "Locate Persons" msgstr "定位人员" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:129 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:129 msgid "Locate a person within the network." -msgstr "" +msgstr "在路网內定位一位人员。" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:134 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:134 msgid "Locate Container" -msgstr "" +msgstr "定位货柜" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:134 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:134 msgid "Locate a container within the network." -msgstr "" +msgstr "在路网內定位一个货柜。" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:139 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:367 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:139 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:369 msgid "Locate TLS" msgstr "定位交通信号" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:139 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:139 msgid "Locate a tls within the network." -msgstr "" +msgstr "在路网內定位一个交通信号。" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:144 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:371 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:144 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:373 msgid "Locate Additional" msgstr "定位附加物" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:144 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:144 msgid "Locate an additional structure within the network." -msgstr "" +msgstr "在路网內定位一个附加的结构。" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:149 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:375 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:149 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:377 msgid "Locate PoI" msgstr "定位兴趣点" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:149 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:149 msgid "Locate a PoI within the network." -msgstr "" +msgstr "在路网內定位一个兴趣点。" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:154 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:379 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:154 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:381 msgid "Locate Polygon" msgstr "定位多边形物件" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:154 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:154 msgid "Locate a Polygon within the network." -msgstr "" +msgstr "在路网內定位一个多边形。" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AboutSUMO.cpp:69 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:58 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_HallOfFame.cpp:57 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:415 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:411 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:408 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:234 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:247 -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:285 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:384 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:559 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:298 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:487 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:96 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:173 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:280 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AboutSUMO.cpp:69 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:58 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_HallOfFame.cpp:57 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:416 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:413 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:408 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:375 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:380 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:298 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:487 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:97 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:173 msgid "OK" msgstr "确定" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:62 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:62 msgid "Quit on Simulation End" msgstr "由于仿真结束而退出" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:64 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:64 msgid "Autostart Simulation on Load and Reload" msgstr "载入和重新载入后自动开启仿真" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:66 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:66 msgid "Reload Simulation after finish (Demo mode)" msgstr "结束后重新载入仿真(展示模式)" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:68 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:68 msgid "Locate elements when clicking on messages" msgstr "点击信息时进行要素(element)定位" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:74 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:74 msgid "Breakpoint offset when clicking on time message" msgstr "点击时间信息时偏移中断点的时间" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:98 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:98 msgid "Allow Textures" msgstr "允许纹理 (Textures)" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:101 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:76 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:133 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:995 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2352 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:101 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:76 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:133 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:995 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2354 msgid "&OK" msgstr "&确定" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:102 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:64 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:72 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:639 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:390 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:134 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:996 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2353 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:102 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:72 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:639 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:390 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:134 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:996 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2355 msgid "&Cancel" msgstr "&取消" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:69 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:69 msgid "Breakpoints Editor" msgstr "编辑中断点" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:89 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:90 msgid "&Load" msgstr "&载入" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:91 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:92 msgid "&Save" msgstr "&存储" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:94 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:95 msgid "Clea&r" msgstr "清除" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:126 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2391 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2397 msgid "Time" msgstr "时间" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:141 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:142 msgid "Load Breakpoints" msgstr "载入中断点" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:162 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:163 msgid "Save Breakpoints" msgstr "存储中断点" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:172 -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:155 -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:258 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:240 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1102 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1183 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:173 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:155 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:258 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:240 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1102 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1183 msgid "Storing failed!" msgstr "存储失败!" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:241 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:244 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:242 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:245 msgid "Time format error" msgstr "时间格式错误" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:46 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:46 msgid "- General problem solving" msgstr "-解决一般问题" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:50 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:50 msgid "- Sumo-user mailing list" msgstr "-SUMO用户邮件列表" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:54 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:54 msgid "- Send us an Email" msgstr "-给我们发送邮件" -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_InductionLoop.cpp:55 -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_InductionLoop.cpp:59 -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_TrafficLight.cpp:56 -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_TrafficLight.cpp:60 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_InductionLoop.cpp:55 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_InductionLoop.cpp:59 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_TrafficLight.cpp:56 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_TrafficLight.cpp:60 #, c-format msgid "Hotkey '%' is not supported" msgstr "不支持快捷键''%' i" -#: /home/micha/programming/sumo/src/guisim/GUIBaseVehicle.cpp:300 +#: D:\Repos\sumo/src\guisim\GUIBaseVehicle.cpp:300 msgid "GUI-triggered stop not implemented for meso" msgstr "通过图像使用界面 (GUI) 触发的停止指令尚未完成于meso內" -#: /home/micha/programming/sumo/src/guisim/GUIBaseVehicle.cpp:876 -#: /home/micha/programming/sumo/src/guisim/GUIVehicle.cpp:668 +#: D:\Repos\sumo/src\guisim\GUIBaseVehicle.cpp:876 +#: D:\Repos\sumo/src\guisim\GUIVehicle.cpp:663 msgid "Vehicle parameter '%' key '%' is not a number for vehicle '%'." msgstr "车辆参数 '% '键 '% '不是车辆'% '的数字。" -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:326 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:326 msgid "Network size exceeds 1 Lightyear. Please reconsider your inputs.\n" msgstr "路网规模超过1光年。请重新考虑您的输入。\n" -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:666 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:666 msgid "Trying to set data value for the unknown edge '%'." msgstr "尝试为未知路段 '%'设定数据值。" -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:690 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:690 msgid "" "Trying to set data value for the unknown relation from edge '%' to edge '%'." msgstr "尝试为从路段 '%' 到路段 '%' 的未知关系(relation)设定数据值。" -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:708 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:708 msgid "No data defined after simulation begin time." msgstr "仿真开始时间后没有资料被定义。" -#: /home/micha/programming/sumo/src/guisim_main.cpp:57 +#: D:\Repos\sumo/src\guisim_main.cpp:57 msgid "GUI version of the microscopic, multi-modal traffic simulation SUMO." msgstr "微观多运具交通仿真软件SUMO的图形用户界面(GUI)版本。" -#: /home/micha/programming/sumo/src/guisim_main.cpp:77 -#: /home/micha/programming/sumo/src/netedit/netedit_main.cpp:81 +#: D:\Repos\sumo/src\guisim_main.cpp:77 +#: D:\Repos\sumo/src\netedit\netedit_main.cpp:81 msgid "This system has no OpenGL support. Exiting." msgstr "该系统不支持OpenGL。退出。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:468 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:469 msgid "A microscopic, multi-modal traffic simulation." msgstr "微观多运具交通仿真软件。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:510 msgid "Recomputing" msgstr "重新计算" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:510 msgid "Recomputing is needed" msgstr "需要重新计算" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:513 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:519 msgid "Test coordinate" msgstr "测试坐标" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:827 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:850 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:833 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:856 msgid "loading TLS Programs from '" msgstr "从..载入交通信号方案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:892 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:898 msgid "Loaded edge types from '" msgstr "载入的路段类型从 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:894 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:927 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:900 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:933 msgid "load edgeTypes" msgstr "载入路段类型" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:925 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:931 msgid "Reloaded edge types from '" msgstr "重新载入的路段类型从 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:982 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:988 msgid "Reloading netedit config file '" msgstr "重新载入netedit 的设定档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:986 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:992 msgid "Reloading sumo config file '" msgstr "重新载入sumo的设定档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:990 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1051 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:996 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1057 msgid "Reloading network file '" msgstr "重新载入路网档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1006 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1012 msgid "&Reload Netedit config" msgstr "&重新载入 Netedit 的设定档" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1007 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1013 msgid "&Reload Sumo config" msgstr "&重新载入Sumo的设定档" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1008 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1014 msgid "&Reload Network" msgstr "&重新载入路网" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1253 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1260 msgid "Loading of '" msgstr "...载入中" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1258 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1265 msgid "'" msgstr "'" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1258 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1265 msgid "' loaded." msgstr "已载入。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1347 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1354 msgid "&Modes" msgstr "&运具" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1382 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1389 msgid "L&ock" msgstr "锁定" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1389 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1396 msgid "&Processing" msgstr "&处理中" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1414 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1421 msgid "&Tools" msgstr "&工具" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1416 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1423 msgid "Detectors" -msgstr "" +msgstr "探测器" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1417 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1424 msgid "Districts" -msgstr "" +msgstr "分区" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1418 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1425 msgid "DRT" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1419 -msgid "Emissions" -msgstr "" +msgstr "需求反应运输(DRT)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1420 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1427 msgid "CityBrain" -msgstr "" +msgstr "城市大脑(CityBrain)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1421 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1428 msgid "GTFS" -msgstr "" +msgstr "一般公共交通数据规范(GTFS)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1422 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1429 msgid "Vissim" -msgstr "" +msgstr "Vissim" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1423 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1430 msgid "Visum" -msgstr "" +msgstr "Visum" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1431 msgid "Import" -msgstr "" +msgstr "导入" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1425 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1432 msgid "Net" -msgstr "" +msgstr "路网" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1426 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:673 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2744 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1433 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:699 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2750 msgid "Route" msgstr "路径" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1427 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1434 msgid "Output" -msgstr "" +msgstr "输出" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1428 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:227 -msgid "Shapes" -msgstr "形状" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1429 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1436 msgid "TLS" msgstr "交通信号" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1430 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1437 msgid "Turn-defs" -msgstr "" +msgstr "转向定义(Turn-defs)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1431 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1438 msgid "Visualization" -msgstr "" +msgstr "视觉化" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1432 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1439 msgid "XML" -msgstr "" +msgstr "可延伸标示语言(XML)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1519 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1526 msgid "Network computed" msgstr "路网已计算完成" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1523 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1530 msgid "Press F5" msgstr "按F5按键" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1524 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1531 msgid "Network requires recomputing" msgstr "路网需要重新计算" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1591 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1600 msgid "Loading console arguments" msgstr "加载控制台参数" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1619 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1628 msgid "Creating new network." msgstr "建立新路网。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1630 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1639 msgid "Trying to load an empty network" msgstr "尝试载入一个空白路网" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1646 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1655 msgid "Loading network file '" msgstr "载入路网档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1658 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1667 msgid "Trying to load an empty configuration" msgstr "尝试载入一个空白设定档" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1674 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1683 msgid "Loading configuration file '" msgstr "载入设定档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1704 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1713 msgid "Select Import Options" msgstr "选择汇入选项" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1710 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1719 msgid "Loading OSM file '" msgstr "载入开放街图(OSM)档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1732 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1739 msgid "Recompute with volatile options" msgstr "用易变的选项进行重新计算" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1733 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1740 msgid "" "Changes produced in the net due a recomputing with volatile options cannot " "be undone. Continue?" msgstr "" "由于使用易变选项重新计算而在网络中产生的更改将无法复原。 还继续执行吗?" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1973 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2033 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1980 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2040 msgid "Running " msgstr "执行中 " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1996 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2003 msgid "Loading network '" msgstr "载入路网 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1996 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2005 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2003 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2012 msgid "' in SUMO-GUI" msgstr "' 在 SUMO-GUI 中" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2005 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2012 msgid "Loading sumo config '" msgstr "载入Sumo的设定档" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2317 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2325 msgid "Netedit options" -msgstr "" +msgstr "Netedit 选项" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2334 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1826 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2342 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1860 msgid "Sumo options" msgstr "sumo选项" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2351 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2359 msgid "Netgenerate options" -msgstr "" +msgstr "Netedit 选项" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2368 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1253 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:102 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2376 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1287 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:103 msgid "Undo" msgstr "还原" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2400 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1256 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:105 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2408 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1290 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:106 msgid "Redo" msgstr "重做" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3072 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3080 msgid "Saving Network failed!" msgstr "存储路网失败!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3078 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3086 msgid "Network saved in '" msgstr "路网存储于 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3084 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3092 msgid "Could not save network in '" -msgstr "" +msgstr "无法将路网存储于 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3130 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3148 msgid "Plain XML saved with prefix '" msgstr "以前置字为基础存储的纯 XML档案 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3135 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3153 msgid "Saving plain xml failed!" msgstr "存储纯 xml档案失败!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3159 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3177 msgid "Joined junctions saved to '" msgstr "整合路口存储于" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3164 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3182 msgid "Saving joined junctions failed!" msgstr "存储整合路口失败!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3227 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3245 msgid "Netedit configuration saved in '" msgstr "netedit的设定档案存储于'" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3233 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3251 msgid "Could not save netedit configuration in '" msgstr "无法将netedit的设定档案存储于 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3337 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3355 msgid "SUMO configuration saved in '" msgstr "SUMO设定档案存储于 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3345 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3363 msgid "Could not save SUMO configuration in '" msgstr "无法将SUMO设定档案存储于 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3399 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3417 msgid "TLS Programs saved in '" msgstr "交通信号方案存储于 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3422 msgid "Saving TLS Programs failed!" msgstr "交通信号方案存储失败!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3447 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3465 msgid "EdgeType saved in '" msgstr "路段类型(EdgeType)存储于'" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3452 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3470 msgid "Saving edgeTypes failed!" msgstr "存储路段类型(EdgeType)失败!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3556 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3574 msgid "load additionals from '" msgstr "载入其它档案 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3560 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1304 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3578 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1307 msgid "Loading of additional file failed: " msgstr "载入附加档案失败: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3566 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1306 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3584 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1309 msgid "Loading of additional file sucessfully: " msgstr "成功载入附加档案: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3610 msgid "reloading additionals from '" msgstr "从 ' 重新载入附加档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3597 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3615 msgid "Reloading of additional file failed: " msgstr "重新载入附加档案失败: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3640 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3658 msgid "Additionals saved in '" msgstr "附加档案存储于 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3650 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3667 msgid "Saving additionals failed!" -msgstr "" +msgstr "存储附加物(additional)失败!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3720 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4659 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4662 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3737 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4675 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4678 msgid "loading demand elements from '" msgstr "从 ' 载入交通需求要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3724 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1315 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3741 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1318 msgid "Loading of route file failed: " msgstr "载入路径档案失败: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3730 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1317 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3747 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1320 msgid "Loading of route file sucessfully: " msgstr "成功载入路径档案: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3761 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3778 msgid "Reloading of route file failed: " msgstr "重新载入路径档案失败: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3802 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3819 msgid "Demand elements saved in '" msgstr "交通需求要素存储于 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3812 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3828 msgid "Saving demand elements failed!" -msgstr "" +msgstr "存储需求元素失败!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3884 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4728 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3900 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4744 msgid "loading data elements from '" msgstr "从 '载入数据要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3888 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1326 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3904 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1329 msgid "Loading of data file failed: " msgstr "载入数据档案失败: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3894 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1328 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3910 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1331 msgid "Loading of data file sucessfully: " msgstr "成功载入数据档案: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3924 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3940 msgid "reloading data elements from '" msgstr "从 ' 重新载入数据要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3929 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3945 msgid "Reloading of data file failed: " msgstr "载入数据档案失败: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3971 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3987 msgid "Data elements saved in '" msgstr "数据要素存储于 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3976 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3992 msgid "Saving data elements failed!" -msgstr "" +msgstr "存储文件元素失败!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4048 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4064 msgid "load meanDatas from '" msgstr "从' 载入meanDatas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4052 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1337 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4068 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1340 msgid "Loading of meandata file failed: " msgstr "载入meandata档案失败: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4058 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4089 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1339 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4074 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4105 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1342 msgid "Loading of meandata file sucessfully: " msgstr "成功载入meandata档案: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4084 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4100 msgid "reloading meanDatas from '" msgstr "从 ' 重新载入meanDatas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4128 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4144 msgid "MeanDatas saved in '" msgstr "MeanDatas存储于 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4133 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4149 msgid "Saving meanData failed!" -msgstr "" +msgstr "存储平均数据(meanData)失败!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4182 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4198 msgid "Confirm close Network" msgstr "确认关闭路网" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4183 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4199 msgid "You have unsaved changes in the network." msgstr "您在路网中有尚未存储的变更。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4184 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4250 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4294 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4338 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4382 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4200 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4266 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4310 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4354 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4398 msgid "Do you wish to close and discard all changes?" msgstr "您要关闭并放弃所有变更吗?" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4248 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4264 msgid "Save additional elements before close" msgstr "关闭前存储附加要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4249 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4265 msgid "You have unsaved additional elements." msgstr "您有尚未存储的附加要素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4292 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4308 msgid "Save demand elements before close" msgstr "关闭前存储需求要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4293 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4309 msgid "You have unsaved demand elements." msgstr "您有尚未存储的需求要素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4336 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4352 msgid "Save data elements before close" msgstr "关闭前存储数据要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4337 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4353 msgid "You have unsaved data elements." msgstr "您有尚未存储的数据要素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4380 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4396 msgid "Save meanData elements before close" msgstr "关闭前存储meanData要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4381 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4397 msgid "You have unsaved meanData elements." msgstr "您有尚未存储的meanData要素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4624 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4640 msgid "loading additional elements from '" msgstr "从 ' 载入附加要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4627 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4643 msgid "loading additionals from '" msgstr "从档案载入附加內容" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4694 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4710 msgid "loading meanDatas from '" msgstr "从'档案载入meanDatas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4697 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4713 msgid "loading meandatas from '" msgstr "从'档案载入meandatas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4731 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4747 msgid "Loading data elements from '" msgstr "从 '载入数据要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:130 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:130 msgid "nets" msgstr "路网" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:131 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:131 msgid "configs" msgstr "设定档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:196 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:196 msgid "&New Network" msgstr "&新路网" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:196 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:196 msgid "Create a new network." msgstr "建立新路网。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:200 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:200 msgid "Open a new netedit window." msgstr "打开新的netedit 视窗。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:204 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:204 msgid "Generate Network" -msgstr "" +msgstr "产生路网" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:204 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:204 msgid "Create network using netgenerate." -msgstr "" +msgstr "使用netgenerate建立路网。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:211 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:211 msgid "Load Netedit config..." msgstr "载入Netedit 设定档案..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:211 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:211 msgid "Load a netedit configuration file." msgstr "载入netedit 设定档。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:215 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:215 msgid "Load Sumo config..." msgstr "载入Sumo设定档案..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:215 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:215 msgid "Load a SUMO configuration file." msgstr "载入 SUMO 设定档。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:222 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:222 msgid "&Open Network..." msgstr "&打开路网..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:222 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:222 msgid "Open a SUMO network." msgstr "打开SUMO路网。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:226 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:226 msgid "Open Netconvert Configura&tion..." msgstr "打开Netconvert设定档案..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:226 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:226 msgid "Open a configuration file with NETCONVERT options." msgstr "使用NETCONVERT选项打开设定档案。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:230 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:230 msgid "Import &Foreign Network..." msgstr "输入 &外部路网..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:230 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:230 msgid "Import a foreign network such as OSM." msgstr "输入外部路网,例如 OSM。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:237 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:237 msgid "&Save Network" msgstr "&存储路网" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:237 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:237 msgid "Save the network." msgstr "存储路网。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:241 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:241 msgid "Save Net&work As..." msgstr "将路网另存为..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:241 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:241 msgid "Save the network to another file." msgstr "将路网存储到另外一个档案。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:245 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:245 msgid "Save Plain XM&L..." msgstr "存储純XML档案..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:245 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:245 msgid "Save a plain XML representation of the network." msgstr "将路网以纯 XML形式进行存储。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:249 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:249 msgid "Save &Joined Junctions..." msgstr "存储整合的路口..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:249 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:249 msgid "Save log of joined junctions (allows reproduction of joins)." msgstr "存储整合路口的记录(允许连接点重现)。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:256 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:260 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:256 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:260 msgid "Reload the network." msgstr "重新载入路网。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:260 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:260 msgid "Reload Network" msgstr "重新载入路网" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:267 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:267 msgid "Netedit Config" msgstr "Netedit设定档" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:271 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:271 msgid "Sumo Config" msgstr "Sumo设定档" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:275 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:275 msgid "Traffic Lights" msgstr "交通信号" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:279 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:279 msgid "Edge Types" msgstr "路段类型" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:283 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:283 msgid "Additionals and Shapes" msgstr "附加档案及图形物件" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:287 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:287 msgid "Demand Elements" msgstr "交通需求要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:291 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:291 msgid "Data Elements" msgstr "数据要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:295 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:295 msgid "MeanData Elements" msgstr "MeanData要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:300 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:300 msgid "Close the network." msgstr "关闭路网。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:334 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:334 msgid "Save Netedit Config" msgstr "存储Netedit设定档" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:334 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:334 msgid "Save netedit configuration file." msgstr "存储netedit设定档。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:338 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:338 msgid "Save Netedit Config As..." msgstr "将 Netedit 设定档另存为..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:338 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:338 msgid "Save netedit configuration in a new file." msgstr "将 netedit 设定档存储为一个新档案。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:344 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:344 msgid "Reload Netedit Config" msgstr "重新载入 Netedit 的设定档" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:344 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:344 msgid "Reload netedit configuration." msgstr "重新载入 netedit 的设定档。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:352 msgid "Save Sumo Config" msgstr "存储Sumo设定档" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:352 msgid "Save sumo configuration file." msgstr "存储sumo设定档。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:356 msgid "Save Sumo Config As..." msgstr "將Sumo设定档另存为..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:356 msgid "Save sumo configuration in a new file." msgstr "將 sumo 设定档另存为一个新档案。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:362 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:362 msgid "Reload Sumo Config" msgstr "重新载入Sumo的设定档" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:362 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:362 msgid "Reload sumo configuration." msgstr "重新载入Sumo的设定档。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:370 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:370 msgid "Load TLS Programs..." msgstr "载入交通信号方案..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:370 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:370 msgid "Load programs for traffic lights in the current net." msgstr "在现有的路网内载入交通信号方案。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:376 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:376 msgid "Save TLS Programs" msgstr "存储交通信号方案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:376 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:376 msgid "Save all traffic light programs of the current network." msgstr "在现有的路网内存储所有交通信号方案。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:380 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:380 msgid "Save TLS Programs As..." msgstr "将交通信号方案另存为..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:380 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:380 msgid "Save all traffic light programs of the current network to another file." msgstr "现有路网内所有交通信号方案另存新档。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:386 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:386 msgid "Reload TLS Programs" msgstr "重新载入交通信号方案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:386 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:386 msgid "Reload TLS Programs." msgstr "重新载入交通信号方案。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:394 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:394 msgid "Load Edge Types..." msgstr "载入路段类型..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:394 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:394 msgid "Load edge types in the current net." msgstr "在现有的路网内载入路段类型。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:400 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:400 msgid "Save Edge Types" msgstr "存储路段类型" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:400 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:400 msgid "Save edge types of the current net." msgstr "存储现有路网内的路段类型。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:404 msgid "Save Edge Types As..." msgstr "将路段类型另存为…" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:404 msgid "Save edge types of the current net to another file." msgstr "将现有路网内的路段类型另存新档。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:410 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:410 msgid "Reload edge types" msgstr "重新载入路段类型" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:410 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:410 msgid "Reload edge types." msgstr "重新载入路段类型。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:418 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:418 msgid "Load Additionals..." msgstr "载入附加档案…" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:418 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:418 msgid "Load additionals and shapes." msgstr "载入附加档案及图形物件档案。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:424 msgid "Save Additionals" msgstr "存储附加档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:424 msgid "Save additionals and shapes." msgstr "存储附加档案及图形物件档案。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:428 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:428 msgid "Save Additionals As..." msgstr "将附加档案另存为..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:428 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:428 msgid "Save additional elements to another file." msgstr "將附加要素(element)另存新档。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:434 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:434 msgid "Reload Additionals" msgstr "重新载入附加档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:434 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:434 msgid "Reload additionals." msgstr "重新载入附加档案。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:442 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:442 msgid "Load Demand Elements..." msgstr "载入需求要素..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:442 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:442 msgid "Load demand elements." msgstr "载入需求要素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:448 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:448 msgid "Save Demand Elements" msgstr "存储需求要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:448 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:448 msgid "Save demand elements." msgstr "存储需求要素 。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:452 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:452 msgid "Save Demand Elements As..." msgstr "將需求要素另存为…" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:452 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:452 msgid "Save demand elements to another file." msgstr "將需求要素另存新档。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:458 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:458 msgid "Reload Demand Elements" msgstr "重新载入需求要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:458 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:458 msgid "Reload demand elements." msgstr "重新载入需求要素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:466 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:466 msgid "Load Data Elements..." msgstr "载入数据要素..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:466 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:466 msgid "Load data elements." msgstr "载入数据要素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:472 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:472 msgid "Save Data Elements" msgstr "存储数据要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:472 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:472 msgid "Save data elements." msgstr "存储数据要素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:476 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:476 msgid "Save Data Elements As..." msgstr "將数据要素另存为…" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:476 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:476 msgid "Save data elements to another file." msgstr "將数据要素另存新档。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:482 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:482 msgid "Reload Data Elements" msgstr "重新载入数据要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:482 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:482 msgid "Reload data elements." msgstr "重新载入数据要素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:490 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:490 msgid "Load MeanDatas..." msgstr "载入 MeanDatas..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:490 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:490 msgid "Load meanDatas and shapes." msgstr "载入 MeanDatas及图形物件档案。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:496 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:496 msgid "Save MeanDatas" msgstr "存储MeanDatas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:496 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:496 msgid "Save meanDatas and shapes." msgstr "存储MeanDatas及图形物件档案。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:500 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:500 msgid "Save MeanDatas As..." msgstr "將MeanDatas另存为…" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:500 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:500 msgid "Save meanData elements to another file." msgstr "將meanDatas要素另存新档。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:506 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:506 msgid "Reload MeanDatas" msgstr "重新载入MeanDatas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:506 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:506 msgid "Reload meanDatas." msgstr "重新载入MeanDatas。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:526 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:526 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2197 +msgid "&Network" +msgstr "&路网" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:526 +msgid "Supermode network." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2200 +msgid "&Demand" +msgstr "&需求" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:529 +msgid "Sueprmode demand." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2203 +msgid "&Data" +msgstr "&数据" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:532 +msgid "Supermode data." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:552 msgid "&Inspect" msgstr "&检查" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:526 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:552 msgid "Inspect elements and change their attributes." msgstr "检查要素并更改其属性。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:555 msgid "&Delete" msgstr "&删除" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:555 msgid "Delete elements." msgstr "刪除要素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:558 msgid "&Select" msgstr "&选择" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:558 msgid "Select elements." msgstr "选择要素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:589 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:670 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:615 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:696 msgid "&Move" msgstr "&移动" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:589 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:670 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:615 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:696 msgid "Move elements." msgstr "移动要素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:618 msgid "&Edge" msgstr "&路段" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:618 msgid "Create junction and edges." msgstr "建立路口及路段。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:595 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:621 msgid "&Connection" msgstr "&连接" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:595 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:621 msgid "Modes connections between lanes." msgstr "车道之间的运具连接。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:598 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:624 msgid "Pro&hibition" msgstr "禁止" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:598 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:624 msgid "Modes connection prohibitions." msgstr "禁止运具连接。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:601 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:627 msgid "Modes traffic lights over junctions." msgstr "模式 交通信号位于路口。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:604 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:630 msgid "Create additional elements." msgstr "建立附加要素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:607 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:633 msgid "C&rossing" msgstr "跨越" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:607 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:633 msgid "Create crossings between edges." msgstr "在路段之间建立人行穿越道。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:610 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:636 msgid "TA&Z" msgstr "TAZ" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:610 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:636 msgid "Create Traffic Assignment Zones." msgstr "建立交通指派分区。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:613 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:639 msgid "Create Points-Of-Interest and polygons." msgstr "建立兴趣点及多边形物件。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:616 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:642 msgid "&Wire" msgstr "&通讯线(Wire)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:616 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:642 msgid "Create wires." msgstr "建立通讯线。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:673 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:699 msgid "Create Routes." msgstr "建立路径。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:676 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:702 msgid "Vehicle" msgstr "车辆" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:676 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:702 msgid "Create vehicles." msgstr "建立车辆。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:679 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:705 msgid "Type" msgstr "类型" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:679 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:705 msgid "Create types (vehicles, person an containers)." msgstr "建立类型(车辆, 人和容器)。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:682 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:708 +msgid "TypeDistribution" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:708 +msgid "Create type distributions." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:711 msgid "Stop" msgstr "停止" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:682 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:711 msgid "Create stops." msgstr "建立停靠点。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:685 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:714 msgid "Person" msgstr "人员" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:685 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:714 msgid "Create persons." msgstr "建立人员。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:688 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:717 msgid "Person plan" msgstr "人员旅运计划" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:688 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:717 msgid "Create person plans." msgstr "建立人员旅运计划。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:691 -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:179 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:720 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:179 msgid "Container" msgstr "集装箱" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:691 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:720 msgid "Create containers." msgstr "建立集装箱。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:694 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:723 msgid "Container plan" msgstr "集装箱计划" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:694 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:723 msgid "Create container plans." msgstr "建立集装箱计划。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:729 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:758 msgid "&EdgeData" msgstr "&路段数据" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:729 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:758 msgid "Create edgeData elements." msgstr "建立路段数据要素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:732 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:761 msgid "Edge&Relation" msgstr "路段&关系" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:732 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:761 msgid "Create edgeRelation elements." msgstr "建立路段关系要素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:735 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:764 msgid "TA&ZRelation" msgstr "交通分区关系线" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:735 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:764 msgid "Create TAZRelation elements." msgstr "建立交通分区关系要素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:738 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:767 msgid "&MeanData" msgstr "&平均值数据" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:738 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:767 msgid "Create MeanData edge/lanes." msgstr "建立MeanData路段车道。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:800 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:997 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2316 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2627 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:834 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1031 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2316 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2627 msgid "Show grid" msgstr "显示网格" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:805 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1002 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1137 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2324 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2635 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2922 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:839 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1036 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1171 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2324 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2635 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2922 msgid "Hide junction shape" msgstr "隐藏路口形状" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:810 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:844 msgid "Draw vehicles spread in lane or in depart position" msgstr "绘制在车道上或是在出发位置上的车辆" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:815 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1152 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2340 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2944 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:849 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1186 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2340 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2944 msgid "Show demand elements" msgstr "显示需求要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:820 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:854 msgid "Clicking should target lanes" msgstr "点选目标车道" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:825 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2355 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:859 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2355 msgid "Show connections over junctions" msgstr "显示路口内的连接线(connection)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:830 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2363 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:864 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2363 msgid "Hide connections" msgstr "隐藏連接线(connection)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:835 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:869 msgid "Show sub-additional elements" msgstr "显示次要附加要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:840 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2379 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:874 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2379 msgid "Show TAZ elements" msgstr "显示TAZ要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:845 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:879 msgid "Selecting multiple edges automatically select their junctions" msgstr "选择多个路段时即会自动选择其相交路口" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:850 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:884 msgid "Clicking should apply state changes to all phases of TLS plan" msgstr "点选后交通信号方案內所有相位(phase)将使用改变的状态I(state)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:855 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:889 msgid "Ask for confirmation before merging junction" msgstr "合并路口前要求确认" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:860 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:894 msgid "Show bubbles over junctions shapes" msgstr "在路口形狀上显示气泡(bubble)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:865 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:899 msgid "Apply mouse movement to elevation" msgstr "將鼠标移动应用为高程" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:870 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:904 msgid "Create consecutive edges" msgstr "建立连续路段" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:875 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:909 msgid "Create an edge in the opposite direction" msgstr "在相反方向建立一个路段" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1007 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2643 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1041 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2643 msgid "Draw vehicles spread/depart position" msgstr "绘制车辆散布/出发位置" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1012 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1147 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2651 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2937 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1046 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1181 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2651 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2937 msgid "Show shapes" msgstr "显示图形物件" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1017 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2659 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1051 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2659 msgid "Show all trips" msgstr "显示所有行程" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1022 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2667 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1056 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2667 msgid "Show all person plans" msgstr "显示有旅行者计划" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1027 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2675 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1061 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2675 msgid "Lock selected person" msgstr "锁定选取的人" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1032 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1066 msgid "Show all container plans" msgstr "显示所有容器(container)运送计划" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1037 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2691 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1071 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2691 msgid "Lock selected container" msgstr "锁定选定的容器" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1042 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2699 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1076 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2699 msgid "Show non-inspected demand elements" msgstr "显示非检查的需求要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1047 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2707 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1081 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2707 msgid "Show number of overlapped routes" msgstr "显示重叠路段的数量" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1142 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2930 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1176 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2930 msgid "Show additionals" msgstr "显示附加物" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1157 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1191 msgid "Draw TAZRel from center" msgstr "从中心点绘制交通分区关系线" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1162 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1196 msgid "Draw TAZ fill" msgstr "绘制填充的交通分区" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1167 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1201 msgid "Only draw TAZRel from" msgstr "仅从...分区绘制交通分区关系线" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1172 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1206 msgid "Only draw TAZRel to" msgstr "仅绘制交通分区关系线到...分区" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1253 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1287 msgid "Undo the last change." msgstr "复原上次的更改。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1256 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1290 msgid "Redo the last change." msgstr "重做上次的更改。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1259 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1293 msgid "Show undo/redo history" msgstr "显示复原/重做历史记录" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1259 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1293 msgid "Open undo/redo history dialog." msgstr "开启复原/重做的历史对话框。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1280 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1314 msgid "Clear front element" msgstr "清除前面的要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1280 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1314 msgid "Clear current front element" msgstr "清除目前前面的要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1289 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1323 msgid "Load additionals in sumo-gui" msgstr "在sumo-gui內载入附加物" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1289 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1323 msgid "Load additionals in sumo-gui." msgstr "在sumo-gui內载入附加物。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1293 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1327 msgid "Load demand in sumo-gui" msgstr "在sumo-gui內载入需求" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1293 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1327 msgid "Load demand in sumo-gui." msgstr "在sumo-gui內载入需求。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1297 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1331 msgid "Open in sumo-gui" msgstr "在sumo-gui內开启" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1297 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1331 msgid "Opens the sumo-gui application with the current network." msgstr "用現有路网开启sumo-gui 应用程式。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1324 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1358 msgid "&Lanes" msgstr "&车道" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1329 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1363 msgid "&Connections" msgstr "&连接线" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1334 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1368 msgid "C&rossings" msgstr "人行道" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1339 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1373 msgid "Walkin&gAreas" msgstr "步行区" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1344 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1378 msgid "&Additionals" msgstr "&附加物" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1349 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1383 msgid "&TAZs" msgstr "&交通分区" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1354 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1388 msgid "&Wires" msgstr "&通讯线" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1359 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1393 msgid "&Polygons" msgstr "&多边形物件" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1364 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1398 msgid "P&OIs" msgstr "兴趣点" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1369 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1403 msgid "&Routes" msgstr "&路径" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1384 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1418 msgid "Person&Trips" msgstr "人&行程" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1389 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1423 msgid "&Walks" msgstr "&步行" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1394 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1428 msgid "Ri&des" msgstr "&搭乘" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1399 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1433 msgid "&Containers" msgstr "&容器" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1438 msgid "Tra&nsports" msgstr "运输" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1409 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1443 msgid "Trans&hips" msgstr "&转运" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1414 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1448 msgid "Stop&s" msgstr "停靠点&" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1419 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1453 msgid "&EdgeDatas" msgstr "&路段数据" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1458 msgid "E&dgeRelDatas" msgstr "路段关系数据(EdgeRelDatas)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1429 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1463 msgid "Edge&TAZRel" msgstr "路段&交通分区关系" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1437 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1471 msgid "Lock selected elements" msgstr "锁住选定的要件" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1437 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1471 msgid "selected elements" msgstr "选定的要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1444 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1478 msgid "Lock all elements" msgstr "锁定所有要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1444 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1478 msgid "all elements" msgstr "所有要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1448 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1482 msgid "Unlock all elements" msgstr "解除锁定所有的要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1784 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1818 msgid "Compute Junctions" msgstr "计算路口" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1784 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1818 msgid "Compute junction shape and logic." msgstr "计算路口的形狀和逻辑。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1821 msgid "Compute Junctions with volatile options" msgstr "根据可变选项计算路口" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1821 msgid "Compute junction shape and logic using volatile junctions." msgstr "根据可变路口计算路口形狀和逻辑。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1790 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1824 msgid "Clean Junctions" msgstr "清除路口" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1790 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1824 msgid "Remove solitary junctions." msgstr "移除孤立的路口。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1793 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1827 msgid "Join Selected Junctions" msgstr "合并选定的路口" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1793 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1827 msgid "Join selected junctions into a single junction." msgstr "将选定的路口合并为一个单一路口。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1796 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1830 msgid "Clean invalid crossings" msgstr "清除无效的人行道" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1796 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1830 msgid "Clear invalid crossings." msgstr "清除无效的人行道。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1802 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1836 msgid "Recompute Network in Data Mode" msgstr "在数据模式下重新计算路网" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1808 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1842 msgid "Compute demand" msgstr "计算需求" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1808 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1842 msgid "Computes demand elements." msgstr "计算需求要素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1811 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1845 msgid "Clean routes" msgstr "清除路径" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1811 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1845 msgid "Removes routes without vehicles." msgstr "移除沒有车辆的路径。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1814 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1848 msgid "Join routes" msgstr "合并路径" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1814 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1848 msgid "Joins routes with the same edges." msgstr "合并具有相同路段的路径。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1817 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1851 msgid "Adjust person plans" msgstr "调整个人旅行计划" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1817 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1851 msgid "Adjust person plans (start/end positions, arrival positions, etc.)" msgstr "调整个人旅行计划(起始/结束位置、抵达位置等)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1820 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1854 msgid "Clean invalid route elements" msgstr "清除无效的路径要素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1820 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1854 msgid "Clear elements with an invalid path (routes, Trips, Flows...)." msgstr "清除与无效路线相关的要素(路径、旅程、流量...)。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1826 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1860 msgid "Configure sumo Options." msgstr "设定sumo的选项。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1832 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:53 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1866 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:312 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:61 msgid "Options" msgstr "选项" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1832 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1866 msgid "Configure netedit Options." msgstr "设定netedit 的选项。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1945 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1979 msgid "Open a dialog for locating a Junction." msgstr "开启对话框以进行路口定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1948 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1982 msgid "Open a dialog for locating an Edge." msgstr "开启对话框以进行路段定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1951 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1985 msgid "&WalkingAreas" msgstr "&步行区" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1951 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1985 msgid "Open a dialog for locating a Walking Area." msgstr "开启对话框以进行步行区定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1954 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1988 msgid "Open a dialog for locating a Vehicle." msgstr "开启对话框以进行车辆定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1957 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1991 msgid "Open a dialog for locating a Person." msgstr "开启对话框以进行人员定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1960 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1994 msgid "&Route" msgstr "&路径" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1960 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1994 msgid "Open a dialog for locating a Route." msgstr "开启对话框以进行路径定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1963 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1997 msgid "&Stops" msgstr "&停靠点" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1963 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1997 msgid "Open a dialog for locating a Stop." msgstr "开启对话框以进行停靠点定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1966 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2000 msgid "Open a dialog for locating a Traffic Light." msgstr "开启对话框以进行交通信号定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1969 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2003 msgid "Open a dialog for locating an Additional Structure." msgstr "开启对话框以进行附加结构定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1972 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2006 msgid "Open a dialog for locating a Point of Interest." msgstr "开启对话框以进行兴趣点定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1975 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2009 msgid "Open a dialog for locating a Polygon." msgstr "开启对话框以进行多边形物件定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2092 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2126 msgid "Toggle this Status Bar on/off." msgstr "切换状态控制桿(开启/关闭)。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2099 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2133 msgid "Clear the Message Window." msgstr "清除信息窗內信息。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2124 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2158 msgid "Open feedback channels." msgstr "打开反馈渠道。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2127 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2161 msgid "About netedit." msgstr "关于netedit。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2163 -msgid "&Network" -msgstr "&路网" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2163 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2197 msgid "Select network mode." msgstr "选择路网模式。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2166 -msgid "&Demand" -msgstr "&需求" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2166 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2200 msgid "Select demand mode." msgstr "选择需求模式。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2169 -msgid "&Data" -msgstr "&数据" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2169 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2203 msgid "Select data mode." msgstr "选择数据模式。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2201 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2205 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2238 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2242 msgid "Could not load SUMO configuration '" msgstr "无法载入SUMO 設定档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2250 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2254 -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:145 -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:149 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2289 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2293 msgid "Could not load netedit configuration '" msgstr "无法载入netedit的設定档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2700 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2739 msgid "Save file as" -msgstr "" +msgstr "将文件另存为" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2701 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2705 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2721 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2731 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2746 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2799 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2804 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2815 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2820 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2831 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2836 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2847 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2852 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2863 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2868 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2879 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2884 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2894 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2898 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2740 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2744 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2760 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2770 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2778 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2841 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2846 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2857 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2862 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2873 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2878 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2889 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2894 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2905 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2910 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2921 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2926 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2936 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2940 msgid "XML files (*.xml)" msgstr "XML档案 (*.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2702 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2706 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2722 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2732 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2747 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2755 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2771 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2775 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2785 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2789 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2800 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2805 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2816 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2821 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2832 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2837 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2848 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2853 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2864 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2869 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2880 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2885 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2895 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2899 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2741 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2761 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2771 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2779 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2788 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2796 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2812 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2817 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2827 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2831 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2842 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2847 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2858 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2863 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2874 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2879 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2890 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2895 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2906 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2911 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2922 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2927 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2937 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2941 msgid "All files (*)" msgstr "所有档案 (*)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2704 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2743 msgid "Open file" -msgstr "" +msgstr "开启文件" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2714 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2753 msgid "Save Network file as" msgstr "將路网档案另存为" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2715 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2754 msgid "SUMO Network files (*.net.xml)" msgstr "SUMO路网档案 (*.net.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2716 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2755 msgid "SUMO Network files zipped (*.net.xml.gz)" msgstr "SUMO 路网压缩档案(*.net.xml.gz)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2717 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2756 msgid "" "XML files (*.xml)\n" "All files (*)" @@ -2768,423 +2800,427 @@ "XML 档案 (*.xml)\n" "所有档案(*)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2719 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2758 msgid "Open Network file" msgstr "打开路网档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2720 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2759 msgid "SUMO Network files (*.net.xml,*.net.xml.gz)" msgstr "SUMO 路网档案 (*.net.xml,*.net.xml.gz)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2729 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2768 msgid "Open NetConvert file" msgstr "打开NetConvert 档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2730 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2769 msgid "Netconvert files (*.netccfg)" msgstr "NetConvert 设定档案(*.netccfg)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2738 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2777 msgid "Save plain XML as" msgstr "将纯XML 另存为" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2744 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2785 msgid "Save joined Junctions as" msgstr "將合并的路口另存为" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2786 msgid "Junction files (*.nod.xml)" msgstr "路口档案(*.nod.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2753 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2794 msgid "Save tool log" -msgstr "" +msgstr "存储工具记录(log)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2754 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2795 msgid "Text file (*.txt)" -msgstr "" +msgstr "文字档(*.txt)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2761 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2802 msgid "Open OSM file" msgstr "打开OSM档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2762 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2803 msgid "OSM net (*.osm.xml,*.osm)" msgstr "OSM路网 (*.osm.xml,*.osm)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2769 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2810 msgid "Save netedit Config file as" msgstr "將netedit的设定档案存储为" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2770 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2774 -msgid "Netedit Config files (*.neteditcfg)" -msgstr "netedit的设定档案 (*.neteditcfg)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2811 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2815 +msgid "Netedit Config files (*.netecfg)" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2773 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2814 msgid "Open netedit Config file" msgstr "打开netedit的设定档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2783 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2816 +msgid "Netedit Config files (*.neteditcfg)" +msgstr "netedit的设定档案 (*.neteditcfg)" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2825 msgid "Save SUMO Config file as" msgstr "將SUMO设定档案另存为" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2784 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2788 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2826 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2830 msgid "SUMO Config files (*.sumocfg)" msgstr "SUMO设定档案 (*.sumocfg)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2829 msgid "Open SUMO Config file" msgstr "打开SUMO设定档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2797 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2839 msgid "Save TLS file as" msgstr "將交通信号档案另存为" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2798 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2803 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2840 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2845 msgid "TLS files (*.tll.xml)" msgstr "交通信号档案 (*.tll.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2802 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2844 msgid "Open TLS file" msgstr "打开交通信号档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2813 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2855 msgid "Save EdgeType file as" msgstr "將EdgeType档案另存为" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2814 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2856 msgid "EdgeType files (*.tll.xml)" msgstr "EdgeType档案(*.tll.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2818 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2860 msgid "Open EdgeType file" msgstr "打开路段类型(EdgeType)档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2819 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2861 msgid "EdgeType files (*.typ.xml)" msgstr "路段类型(EdgeType)档案 (*.typ.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2829 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2871 msgid "Save Additionals file as" msgstr "將附加档案另存为" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2830 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2835 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2872 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2877 msgid "Additional files (*.add.xml)" msgstr "附加档案 (*.add.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2834 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2876 msgid "Open Additionals file" msgstr "打开附加档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2845 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2887 msgid "Save Route file as" msgstr "將路径档案另存为" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2846 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2851 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2888 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2893 msgid "Route files (*.rou.xml)" msgstr "路径档案(*.rou.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2850 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2892 msgid "Open Route file" msgstr "打开路径档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2861 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2903 msgid "Save Data file as" msgstr "將数据档案另存为" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2862 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2867 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2904 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2909 msgid "Data files (*.dat.xml)" msgstr "数据档案 (*.dat.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2866 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2908 msgid "Open Data file" msgstr "打开数据档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2877 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2919 msgid "Save MeanData file as" msgstr "將MeanData档案另存为" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2878 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2883 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2920 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2925 msgid "Meandata files (*.add.xml)" msgstr "MeanData档案 (*.add.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2882 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2924 msgid "Open MeanData file" msgstr "打开MeanData档案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2893 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2935 msgid "Save options file as" -msgstr "" +msgstr "将选项文件另存于" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2897 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2939 msgid "Open options file" -msgstr "" +msgstr "开启选项文件" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:95 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:100 #, c-format msgid "Loading of sumo config file '%' failed." msgstr "载入SUMO设定档 '%' f 失败。" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:108 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:113 #, c-format msgid "Loading of netedit config file '%' failed." msgstr "载入netedit 设定档 '%' f 失败。" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:117 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:122 msgid "" "Invalid input network option. Load with either sumo/netedit/netconvert " "config or with -new option" msgstr "" "输入路网选项无效。使用 sumo/netedit/netconvert 设定档案或 -new 选项载入" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:130 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:136 msgid "Invalid Options. Nothing loaded" msgstr "无效的选项。未载入任何內容" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:144 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:150 msgid "Could not build projection!" msgstr "无法建立投影!" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:172 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:178 msgid "Performing initial computation ..." msgstr "进行初始计算..." -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:206 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:212 msgid "Failed to build network." msgstr "无法建立路网。" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:251 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:257 msgid "Start plain GUI with empty net" msgstr "使用空白路网打开普通GUI" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:252 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:258 msgid "Open a SUMO network" msgstr "打开SUMO路网" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:253 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:259 msgid "Open a configuration file (netedit or netconvert config)" msgstr "打开一个配置文件(netedit或netconvert config)" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:254 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:260 msgid "Open a SUMO config file" msgstr "打开SUMO设定档案" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:279 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:285 msgid "Load sumo config" msgstr "载入sumo设定档案" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:283 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:289 msgid "Load additional and shapes descriptions from FILE(s)" msgstr "从档案载入附加物及形狀物件的描述" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:287 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:293 msgid "Load demand elements descriptions from FILE(s)" msgstr "由档案载入需求要素的描述" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:291 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:297 msgid "Load data elements descriptions from FILE(s)" msgstr "由档案载入数据要素的描述" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:295 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:301 msgid "Load meanData descriptions from FILE(s)" msgstr "从档案载入meanData的描述" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:300 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:306 msgid "File in which TLS Programs must be saved" msgstr "交通信号方案档案必须存储" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:303 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:309 msgid "File in which edgeTypes must be saved" msgstr "路段类型档案必须存储" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:309 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:315 msgid "Start netedit with a new network" msgstr "使用新路网打开netedit" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:312 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:318 msgid "Write attribute help to file" msgstr "将属性帮助写入文件" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:317 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:323 msgid "Prefix for node naming" msgstr "节点的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:320 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:326 msgid "Prefix for edge naming" msgstr "路段的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:323 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:329 msgid "Enable edge-infix ()" msgstr "使用路段中缀()" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:328 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:334 msgid "Prefix for busStop naming" msgstr "公交车站的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:331 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:337 msgid "Prefix for trainStop naming" msgstr "火车站的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:334 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:340 msgid "Prefix for containerStop naming" msgstr "容器停靠站(containerStop)的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:337 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:343 msgid "Prefix for chargingStation naming" msgstr "充电站的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:340 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:346 msgid "Prefix for parkingArea naming" msgstr "停车区域的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:343 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:349 msgid "Prefix for e1Detector naming" msgstr "e1检测器的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:346 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:352 msgid "Prefix for e2Detector naming" msgstr "e2检测器的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:349 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:355 msgid "Prefix for e3Detector naming" msgstr "e3检测器的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:352 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:358 msgid "Prefix for e1InstantDetector naming" msgstr "e1瞬间检测器的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:355 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:361 msgid "Prefix for rerouter naming" msgstr "改道装置(rerouter)的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:358 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:364 msgid "Prefix for calibrator naming" msgstr "校估装置calibrator)的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:361 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:367 msgid "Prefix for routeProbe naming" msgstr "路径取样装置的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:364 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:370 msgid "Prefix for variable speed sign naming" msgstr "可变速度标志的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:367 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:373 msgid "prefix for traction substation naming" msgstr "牵引变电站的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:370 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:376 msgid "Prefix for overhead wire naming" msgstr "架空线的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:373 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:379 msgid "Prefix for polygon naming" msgstr "多边形物件的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:376 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:382 msgid "Prefix for poi naming" msgstr "兴趣点的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:381 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:387 msgid "Prefix for route naming" msgstr "路径的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:384 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:390 msgid "Prefix for vType naming" msgstr "vType的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:387 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:393 msgid "Prefix for vehicle naming" msgstr "车辆的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:390 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:396 msgid "Prefix for trip naming" msgstr "行程的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:393 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:399 msgid "Prefix for flow naming" msgstr "流量的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:396 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:402 msgid "Prefix for person naming" msgstr "人员的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:399 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:405 msgid "Prefix for personFlow naming" msgstr "人流的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:402 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:408 msgid "Prefix for container naming" msgstr "容器的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:405 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:411 msgid "Prefix for containerFlow naming" msgstr "容器流的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:412 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:418 msgid "Prefix for meanDataEdge naming" msgstr "meanData路段的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:415 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:421 msgid "Prefix for meanDataLane naming" msgstr "meanData车道的命名前缀" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:422 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:428 msgid "Disable icons of special lanes" msgstr "禁用特殊车道的图示" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:425 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:431 msgid "Disable textures" msgstr "禁用贴图(textures)" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:428 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:434 msgid "Load visualisation settings from FILE" msgstr "从文件中加载可视化设置" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:433 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:439 msgid "Load current viewport from registry" msgstr "从注册表加载当前视口" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:436 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:442 msgid "Create initial window with the given x,y size" msgstr "以给定的x,y尺寸创建初始窗口" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:439 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:445 msgid "Create initial window at the given x,y position" msgstr "在给定的x,y位置创建初始窗口" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:444 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:450 msgid "Enable overlay for screen recognition" msgstr "允许荧屏辨识的覆盖" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:447 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:453 msgid "Enable output messages during GUI-Testing" msgstr "允许在 GU测试期间输出信息" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:450 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:456 msgid "Enable output messages during GUI-Testing specific of gl functions" msgstr "允许在特定于 gl 函数的 GUI 测试期间输出信息" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:453 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:459 msgid "Save gui settings in the given settings-output file" msgstr "將gui设定存储于指定的设定输出档案(settings-output)" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:460 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:466 msgid "Defines the begin time in seconds; The simulation starts at this time" msgstr "定义开始时间(以秒为单位); 仿真在这个时间开始" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:463 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:469 msgid "Defines the end time in seconds; The simulation ends at this time" msgstr "定义结束时间(以秒为单位); 仿真在这个时间结束" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:466 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:472 msgid "" "Length of the default interval length between action points for the car-" "following and lane-change models (in seconds). If not specified, the " @@ -3196,855 +3232,853 @@ "按默认值使用仿真步长。车辆或VType特定的设置将覆盖默认值。必须是仿真步长的倍" "数。" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:469 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:475 msgid "" "Select default speed deviation. A negative value implies vClass specific " "defaults (0.1 for the default passenger class" msgstr "" "选择速度偏差的预设值。负值表示 vClass 特定预设值( 0.1为小客车等级的预设值" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:508 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:514 msgid "Failed to reset options." msgstr "无法重置选项。" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:370 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:370 msgid "delete junction" msgstr "刪除路口" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:412 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:412 msgid "delete edge" msgstr "刪除路段" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:491 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:491 msgid "replace edge" msgstr "替換路段" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:553 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:553 msgid "delete lane" msgstr "刪除车道" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:588 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:588 msgid "delete connection" msgstr "刪除连接线" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:603 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:603 msgid "delete crossing" msgstr "刪除人行道" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:621 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:650 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:672 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:685 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:698 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:728 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:621 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:650 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:672 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:685 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:698 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:728 msgid "delete " msgstr "刪除 " -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:644 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:644 msgid "Trying to delete a default Vehicle Type" msgstr "尝试刪除预设的车辆类型" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:737 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2685 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:737 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2690 msgid "duplicate lane" msgstr "复制车道" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:856 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:856 msgid "split edge" msgstr "分割路段" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:973 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:973 msgid "split edges" msgstr "分割路段" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:995 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:995 msgid "reverse edge" msgstr "反向路段" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1008 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1012 msgid "add reversed edge" msgstr "新增反向路段" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1043 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1046 msgid "merge junctions" msgstr "合并路口" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1079 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1082 msgid "select roundabout" msgstr "选择绕行" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1095 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1098 msgid "create roundabout" msgstr "建立绕行" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1273 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1276 msgid "Forced computing junctions with volatile options ..." msgstr "根据可变选项強制计算路口..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1275 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1278 msgid "Forced computing junctions ..." msgstr "強制计算路口..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1282 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1285 msgid "Computing junctions with volatile options ..." msgstr "根据可变选项计算路口..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1284 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1287 msgid "Computing junctions ..." msgstr "计算路口..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1347 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1350 msgid "Finished computing junctions." msgstr "完成路口计算。" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1353 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1356 msgid "Computing demand elements ..." msgstr "计算需求要素..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1367 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1370 msgid "Finished computing demand elements." msgstr "完成计算需求要素。" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1373 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1376 msgid "Computing data elements ..." msgstr "计算数据要素..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1380 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1383 msgid "Finished computing data elements." msgstr "完成计算数据要素。" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1459 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1462 msgid "Position of joined junction" msgstr "合并路口的位置" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1460 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1463 msgid "" "There is another unselected junction in the same position of joined junction." msgstr "在合并路口的相同位置上有另外一个未被选择的路口。" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1461 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1464 msgid "It will be joined with the other selected junctions. Continue?" msgstr "此路口將与其它已选择的路口一起进行合并。继续执行?" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1582 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1592 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1585 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1595 msgid "Clear crossings" msgstr "清除人行道" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1583 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1586 msgid "There are no invalid crossings to remove." msgstr "沒有要移除的无效人行道。" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1593 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1596 msgid "Crossings will be cleared. Continue?" msgstr "人行道將被清除。继续执行?" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1604 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1607 msgid "clear crossings" msgstr "清除人行道" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1617 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1620 msgid "clear junctions" msgstr "清除路口" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1646 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1649 msgid "clear unused routes" msgstr "清除未使用的路径" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1701 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1704 msgid "merge routes" msgstr "合并路径" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1755 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1758 msgid "adjust person plans" msgstr "调整个人旅行计划" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1795 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1798 msgid "remove invalid demand elements" msgstr "移除无效的需求要素" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1810 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1813 msgid "replace junction by geometry" msgstr "用几何形狀替换路口" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1855 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1858 msgid "Junction isn't removable" msgstr "路口无法被移除" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1867 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1870 msgid "split junction" msgstr "分割路口" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1907 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1910 msgid "Could not rename split node to '%'" msgstr "无法將分割的节点重新命名为%'" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1946 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1949 msgid "clear junction connections" msgstr "清除路口內的连接线" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1958 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1961 msgid "reset junction connections" msgstr "重置路口內连接线" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1969 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1972 msgid "clear additional elements" msgstr "清除附加要素" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1982 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1985 msgid "clear demand elements" msgstr "清除需求要素" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1995 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1998 msgid "clear data elements" msgstr "清除数据要素" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2006 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2009 msgid "clear meanData elements" msgstr "清除meanData要素" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2326 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2403 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2331 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2413 msgid "Duplicated ID" msgstr "复制的ID" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2689 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2689 msgid "Network size exceeds 1 Lightyear. Please reconsider your inputs." msgstr "路网規模超过 1 光年。 请重新考虑您的输入。" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:1461 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:1468 msgid "Default vType doesn't exist" msgstr "预设的vType 不存在" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2478 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2486 msgid "Invalid meanData pointer" msgstr "无效的meanData指标" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2739 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2747 msgid "Redo replace in TLS" msgstr "重作在交通信号內的替換" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2753 msgid "Undo replace in TLS" msgstr "取消在交通信号內的替換" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:332 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:334 msgid "Locate a junction within the network. (Shift+J)" msgstr "在路网內定位一个路口。(Shift+J)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:336 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:338 msgid "Locate an edge within the network. (Shift+E)" msgstr "在路网內定位一个路段。(Shift+E)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:340 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:342 msgid "Locate WalkingAreas" msgstr "定位步行区域" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:340 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:342 msgid "Locate a walkingArea within the network. (Shift+W)" msgstr "在路网內定位步行区域。(Shift+W)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:344 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:346 msgid "Locate a vehicle within the network. (Shift+V)" msgstr "在路网內定位车辆。(Shift+V)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:348 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:350 msgid "Locate a person within the network. (Shift+P)" msgstr "在路网內定位人员。(Shift+P)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:354 msgid "Locate Route" msgstr "定位路径" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:354 msgid "Locate a route within the network. (Shift+R)" msgstr "在路网內定位路径。(Shift+R)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:358 msgid "Locate Stops" msgstr "定位停靠点" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:358 msgid "Locate a stop within the network. (Shift+S)" msgstr "在路网內定位停靠点。(Shift+S)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:367 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:369 msgid "Locate a tls within the network. (Shift+T)" msgstr "在路网內定位交通信号。(Shift+T)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:371 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:373 msgid "Locate an additional structure within the network. (Shift+A)" msgstr "在路网內定位一个附加结构。(Shift+A)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:375 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:377 msgid "Locate a PoI within the network. (Shift+O)" msgstr "在路网內定位兴趣点。(Shift+O)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:379 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:381 msgid "Locate a Polygon within the network. (Shift+L)" msgstr "在路网內定位多边形物件。(Shift+L)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:453 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:455 msgid "Remove from Selected" msgstr "从选定项中删除" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:455 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:457 msgid "Add to Selected" msgstr "新增到选定项內" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:612 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:614 msgid "GUI-Settings cannot be saved in " msgstr "GUI-设定无法存储于 " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:805 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:807 msgid "Confirm Junction Merger" msgstr "确认路口合并" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:806 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:808 msgid "Do you wish to merge junctions '" msgstr "您是否希望合并路口" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:807 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:205 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:809 msgid "' and '" msgstr "' 和 '" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:808 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:810 msgid "' will be eliminated and its roads added to '" msgstr "'将被消除,其道路將增加到”" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:836 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:838 msgid " requires switch to network mode. Continue?" msgstr " 要求切换到路网模式。继续执行?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:838 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:840 msgid " requires switch to demand mode. Continue?" msgstr " 要求切换到需求模式。继续执行?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:840 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:842 msgid " requires switch to data mode. Continue?" msgstr " 要求切换到数据模式。继续执行?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:845 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:847 msgid "Confirm switch mode" msgstr "确认切换模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1423 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1425 msgid "Cannot delete in this mode" msgstr "在此模式下无法删除" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1426 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1428 msgid "delete network inspected elements" msgstr "刪除被检查的路网要素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1434 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1436 msgid "delete network selection" msgstr "刪除路网选择" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1442 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1444 msgid "delete demand inspected elements" msgstr "刪除被检查需求要素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1450 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1452 msgid "delete demand selection" msgstr "刪除需求选择" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1458 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1460 msgid "delete data inspected elements" msgstr "刪除被检查数据要素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1466 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1468 msgid "delete data selection" msgstr "刪除数据选择" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2101 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2106 msgid "Reverse selected edges" msgstr "反转选定的路段" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2108 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2113 msgid "Reverse edge" msgstr "反向路段" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2122 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2127 msgid "Add Reverse edge for selected edges" msgstr "为选定的路段新增反向路段" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2129 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2134 msgid "Add reverse edge" msgstr "新增反向路段" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2143 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2148 msgid "Add Reverse disconnected edge for selected edges" msgstr "为选定的路段新增不相互连接的反向路段" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2150 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2155 msgid "Add reverse disconnected edge" msgstr "新增不相互连接的反向路段" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2179 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2184 msgid "reset geometry points" msgstr "重置几何点" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2200 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2205 msgid "straighten selected edges" msgstr "拉直所选定的路段" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2208 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2213 msgid "straighten edge" msgstr "拉直路段" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2222 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2227 msgid "smooth selected edges" -msgstr "" +msgstr "使选定的路段平滑" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2229 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2234 msgid "smooth edge" -msgstr "" +msgstr "使路段平滑" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2243 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2248 msgid "straighten elevation of selected edges" msgstr "拉直所选定路段的高程" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2250 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2255 msgid "straighten edge elevation" msgstr "拉直路段高程" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2264 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2269 msgid "smooth elevation of selected edges" msgstr "平滑所选定路段的高程" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2271 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2276 msgid "smooth edge elevation" msgstr "平滑路段高程" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2285 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2290 msgid "reset edge lengths" msgstr "重置路段长度" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2314 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2319 msgid "copy edge template" msgstr "复制路段范本" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2335 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2340 msgid "simplify shapes" msgstr "简化形狀" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2377 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2382 msgid "close polygon shapes" msgstr "关闭多边形形状" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2408 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2413 msgid "open polygon shapes" msgstr "打开多边形形狀" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2457 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2462 msgid "select within polygon boundary" msgstr "在多边形边界內选择" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2502 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2507 #, c-format msgid "No lanes around % to attach it" msgstr "在 % t的\\周围沒有车道附接它" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2525 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2530 msgid "attach POI into lane" msgstr "將兴趣点附接到車道" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2538 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2543 msgid "release POI from lane" msgstr "从车道上释放兴趣点" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2572 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2577 msgid "change edge Geometry Point position" msgstr "改变路段几何点位置" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2604 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2609 msgid "change polygon Geometry Point position" msgstr "改变多边形几何点位置" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2624 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2629 msgid "change TAZ Geometry Point position" msgstr "改变交通分区几何点位置" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2648 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2653 msgid "reset end points of selected edges" msgstr "重设选路段的終点" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2659 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2664 msgid "reset end points of edge '" msgstr "重设路段終点" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2678 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2683 msgid "duplicate selected lanes" msgstr "复制选择的车道" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2715 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2720 msgid "reset custom lane shapes" msgstr "重设自定的车道形狀" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2722 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2727 msgid "reset custom lane shape" msgstr "重设置自定的车道形狀" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2738 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2743 msgid "reset opposite lanes" msgstr "重设对向车道" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2750 msgid "reset opposite lane" msgstr "重设对向车道" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2799 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2804 msgid "select lane reachability" msgstr "选择车道可及性" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2841 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2846 msgid "Multiple lane in the same edge selected" msgstr "在同一路段上选定多个车道" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2842 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2847 msgid "There are selected lanes that belong to the same edge." msgstr "有些选定的车道属于同一个路段。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2843 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2848 msgid "Only one lane per edge will be restricted for " msgstr "每路段只有一个车道將被限制为 " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2858 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2866 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2863 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2871 msgid "Set vclass for " msgstr "设定vclass为 " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2859 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2867 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2940 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2948 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2864 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2872 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2945 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2953 msgid " to selected lanes" msgstr " 到选定的车道" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2860 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2941 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2865 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2946 msgid "" "All lanes own already another lane in the same edge with a restriction for " msgstr "在有受一个限制的同一路段上的所有车道已经有另一条車道 " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2868 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2873 msgid " lanes will be restricted for " msgstr " 车道將被限制为 " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2869 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2874 msgid ". Continue?" msgstr ".继续执行?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2896 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2901 msgid "restrict lane to " msgstr "將车道限制为 " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2939 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2947 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2944 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2952 msgid "Add vclass for " msgstr "新增vclass 为 " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2949 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3044 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2954 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3049 msgid " restrictions for " msgstr " 对..进行限制 " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2950 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2955 msgid " will be added. Continue?" msgstr " 將新增。继续执行?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2967 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2972 msgid "add restrictions for " msgstr "为...新增限制 " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2977 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2982 msgid "add vclass for " msgstr "为...新增vclass " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3034 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3042 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3072 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3039 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3047 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3077 msgid "Remove vclass for " msgstr "为...刪除车辆类别(vclass) " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3035 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3040 msgid " from selected lanes" msgstr " 从选定的车道" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3036 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3041 msgid "Selected lanes and edges haven't a restriction for " msgstr "选定的车道和路段对于....沒有限制 " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3043 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3048 msgid " in selected lanes" msgstr " 在选定的车道内" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3045 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3050 msgid " will be removed. Continue?" msgstr " 將被刪除。继续执行?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3214 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3219 msgid "reset edge endpoints" msgstr "重新设定路段终点" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3259 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3526 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3561 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3584 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3264 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3531 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3566 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3589 msgid "Grid is still active, press ctrl+g to deactivate" msgstr "网格仍处于使用中状态,按 ctrl+g 停用" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3278 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3283 msgid "reset custom junction shapes" msgstr "重置自定的路口形狀" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3285 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3290 msgid "reset custom junction shape" msgstr "重置自定的路口形狀" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3396 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3401 msgid "clear connections of selected junctions" msgstr "清除所选路口的连接线(connections)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3428 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3433 msgid "reset connections of selected junctions" msgstr "重置所选路口的连接线(connections)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3452 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3479 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3457 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3484 msgid "add TLS in multiple junctions" msgstr "在多个路口上新增交通信号(TLS)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:5564 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:5579 msgid "Shift + click to create two additionals in the same position" msgstr "" "移位键(shift) + 点选(click) 將在同一个位置上新加两个附加项(additionals)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:5813 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:5828 msgid "Control + click to create two stop in the same position" msgstr "控制鍵 (Control)+ 点选(click)將在同一位置上新增兩个停靠站" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1467 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1488 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1467 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1488 msgid "moving selection" msgstr "移动选择" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1668 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1668 msgid "Selection width:" msgstr "选择宽度:" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1669 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1669 msgid " height:" msgstr " 高度:" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1670 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1670 msgid " diagonal:" msgstr " 对角线:" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1834 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1834 msgid "selection using rectangle" msgstr "使用矩形进行选择" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1868 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1868 #, c-format msgid "Invalid windows size-format: %for option 'window-size'" msgstr "无效的视窗尺寸格式:% 选项视窗尺寸'" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1946 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1946 msgid "Save NETEDITConfig" msgstr "存储netedit的设定档案" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1946 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1946 msgid "Save NETEDITConfig. (Ctrl+Shift+E)" msgstr "存储neteidt设定档案。 (Ctrl+Shift+E)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1952 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1952 msgid "Save SumoConfig" msgstr "存储sumo设定档案" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1952 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1952 msgid "Save SumoConfig. (Ctrl+Shift+S)" msgstr "存储sumo设定档案。 (Ctrl+Shift+S)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1958 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1958 msgid "Save network" msgstr "存储路网" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1958 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1958 msgid "Save network. (Ctrl+S)" msgstr "存储路网。(Ctrl+S)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1966 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1966 msgid "Save individual files" msgstr "存储个别档案" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1966 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1966 msgid "Save individual files." msgstr "存储个别档案。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1972 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1972 msgid "Save additional elements" msgstr "存储附加的要素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1972 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1972 msgid "Save additional elements. (Ctrl+Shift+A)" msgstr "存储附加的要素。(Ctrl+Shift+A)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1978 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1978 msgid "Save demand elements" msgstr "存储需求要素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1978 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1978 msgid "Save demand elements. (Ctrl+Shift+D)" msgstr "存储·需求要素。(Ctrl+Shift+D)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1984 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1984 msgid "Save data elements" msgstr "儲存数据要素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1984 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1984 msgid "Save data elements. (Ctrl+Shift+B)" msgstr "存储数据要素。(Ctrl+Shift+D)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1990 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1990 msgid "Save mean data elements" msgstr "存储meanData要素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1990 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1990 msgid "Save mean data elements. (Ctrl+Shift+M)" msgstr "存储meanData要素。(Ctrl+Shift+M)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 msgid "Network" msgstr "路网" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 msgid "Edit network elements" msgstr "编辑路网要素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 msgid "Set mode for edit network elements. (F2)" msgstr "设定编辑路网要素的模式。(F2)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2067 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2069 msgid "Demand" msgstr "需求" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 msgid "Edit traffic demand elements" msgstr "编辑交通需求要素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 msgid "Set mode for edit traffic demand. (F3)" msgstr "设定编辑交通需求的模式。(F3)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2211 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2213 msgid "Data" msgstr "数据" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 msgid "Edit data elements" msgstr "编辑数据要素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 msgid "Set mode for edit data demand. (F4)" msgstr "设定编辑数据需求的模式。(F4)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2065 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2065 msgid "Mode already selected" msgstr "已经选定模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2150 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2150 msgid "Network mode already selected" msgstr "已选择路网模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2155 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2155 msgid "Save modifications in TLS before change mode" msgstr "在改变模式前將修改的交通信号(TLS)进行存储" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2200 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2200 msgid "Demand mode already selected" msgstr "已选择需求模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2235 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2235 msgid "Data mode already selected" msgstr "已选择数据模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2316 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2627 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2316 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2627 msgid "" "Show grid and restrict movement to the grid - define grid size in " "visualization options. (Ctrl+G)" msgstr "显示网格及限制到网格的移动 - 在视觉化选项中定义网格尺寸。(按 Ctrl+G)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2324 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2635 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2922 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2324 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2635 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2922 msgid "Toggle hiding junction shape. (Ctrl+J)" msgstr "切换隐藏路口形狀。(按 Ctrl+J)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2332 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2332 msgid "Draw vehicles spread in lane or depart position" msgstr "绘制在车道上或是在出发位置上的车辆" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2332 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2643 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2332 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2643 msgid "Draw vehicles spread in lane or in depart position." msgstr "绘制在车道上或是在出发位置上的车辆。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2340 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2944 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2340 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2944 msgid "Toggle show demand elements." msgstr "切换显示需求要素。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2348 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2348 msgid "Clicks target lanes" msgstr "点击目标 车道" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2348 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2348 msgid "" "Toggle whether clicking should inspect/select/delete lanes instead of edges." msgstr "切换是否应检查/选择/刪除车道, 而不是路段。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2355 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2355 msgid "Toggle show connections over junctions." msgstr "切换显示路口內的连接线(connection)。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2363 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2363 msgid "Toggle hide connections." msgstr "切换隐藏连接线(connections)。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2371 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2371 msgid "Show additional sub-elements" msgstr "显示附加子要素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2371 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2371 msgid "Toggle show additional sub-elements." msgstr "切换显示附加子要素。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2379 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2379 msgid "Toggle show TAZ elements." msgstr "切换显示分区(TAZ)要素。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2387 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2387 msgid "Automatic select junctions" msgstr "自动选择路口" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2387 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2387 msgid "" "Toggle whether selecting multiple edges should automatically select their " "junctions." msgstr "切换选择多条路段时, 是否应自动选择它们的交汇路口。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2395 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2395 msgid "Apply state to all phases" msgstr "將状态应用于所有相位(phases)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2395 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2395 msgid "" "Toggle whether clicking should apply state changes to all phases of the " "current TLS plan." @@ -4052,940 +4086,944 @@ "切换是否点击时应将更改的状态(state)应用于现有交通信号(TLS) 方案的所有相位" "(phase)。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2403 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2403 msgid "Automatic merging junction" msgstr "自动合并路口" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2403 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2403 msgid "Toggle ask for confirmation before merging junction." msgstr "切换合并路口前要求确认。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2410 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2410 msgid "Show bubbles" msgstr "显示气泡(bubbles)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2410 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2410 msgid "Toggle show bubbles over junctions shapes." msgstr "切换在路口形狀上显示气泡(bubble)。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2418 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2418 msgid "Move elevation" msgstr "移动高程" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2418 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2418 msgid "Apply mouse movement to elevation instead of x,y position." msgstr "將鼠标移动功能用于高程而不是 x,y 位置。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2426 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2426 msgid "Edge chain mode" msgstr "路段链(chain)模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2426 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2426 msgid "Create consecutive edges with a single click (hit ESC to cancel chain)." msgstr "单击一下即可建立连续的路段(按 ESC 取消链(chain))。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2434 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2434 msgid "Edge opposite direction" msgstr "路段相反方向" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2434 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2434 msgid "Automatically create an edge in the opposite direction." msgstr "自动建立相反方向的路段。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2651 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2937 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2651 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2937 msgid "Toggle show shapes (Polygons and POIs)." msgstr "切换显示形狀(多边形和兴趣点)。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2659 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2659 msgid "Toggle show all trips (requires updated demand - F5)." msgstr "切换显示所有行程(trips)(需要更新需求 - F5)。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2667 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2667 msgid "Toggle show all person plans." msgstr "切换显示所有人员的旅行计划。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2675 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2675 msgid "Toggle lock selected person." msgstr "切换锁定选择的人员(person)。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2683 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2683 msgid "Show all containers plans" msgstr "显示所有容器(container)运送计划" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2683 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2683 msgid "Toggle show all container plans." msgstr "切换显示所有容器(container)运送计划。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2691 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2691 msgid "Toggle lock selected container." msgstr "切换锁定选择的容器(container)。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2699 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2699 msgid "Toggle show non-inspected demand elements." msgstr "切换显示未检查的需求要素。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2707 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2707 msgid "Toggle show number of overlapped routes." msgstr "切换显示重叠路线的数量。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2930 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2930 msgid "Toggle show additionals." msgstr "切换显示附加项(additionals)。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2951 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2951 msgid "Draw TAZREL drawing mode" msgstr "绘制交通分区关系线(TAZREL)绘图模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2951 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2951 msgid "Toggle draw TAZREL drawing mode." msgstr "切换绘制交通分区关系线(TAZREL)绘图模式。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2958 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2958 msgid "Toggle draw TAZ fill" msgstr "切换绘制交通分区(TAZ)填充" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2965 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2965 msgid "Toggle draw TAZRel only from" msgstr "切换绘制仅来自...分区的交通分区关系线(TAZRel)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2972 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2972 msgid "Toggle draw TAZRel only to" msgstr "切换绘制仅到达...分区的交通分区关系线(TAZRel)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3471 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3471 msgid "Set inspect mode" msgstr "设定检查模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3471 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3471 msgid "Mode for inspect elements and change their attributes. (I)" msgstr "检查要素及更改其属性的模式。(I)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3477 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3477 msgid "Set delete mode" msgstr "设定刪除模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3477 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3477 msgid "Mode for delete elements. (D)" msgstr "刪除元素的模式。(D)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3546 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3690 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3546 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3681 msgid "Set move mode" msgstr "设定移动模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3546 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3690 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3546 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3681 msgid "Mode for move elements. (M)" msgstr "移动要素的模式。(M)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3552 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3552 msgid "Set create edge mode" msgstr "设定建立路段模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3552 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3552 msgid "Mode for creating junction and edges. (E)" msgstr "建立路口及路段的模式。(E)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3558 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3558 msgid "Set connection mode" msgstr "设定连接线(connection)模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3558 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3558 msgid "Mode for edit connections between lanes. (C)" msgstr "编辑车道间连接线(connections)的模式。(C)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3564 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3564 msgid "Set prohibition mode" msgstr "设定禁止模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3564 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3564 msgid "Mode for editing connection prohibitions. (H)" msgstr "编辑禁止的连接线(connection)的模式。(H)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3570 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3570 msgid "Set traffic light mode" msgstr "设定交通信号的模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3570 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3570 msgid "Mode for edit traffic lights over junctions. (T)" msgstr "编辑路口信号的模式。(T)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3576 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3576 msgid "Set additional mode" msgstr "设定附加(additional)的模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3576 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3576 msgid "Mode for adding additional elements. (A)" msgstr "新增附加元素的模式。(A)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3582 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3582 msgid "Set crossing mode" msgstr "设定人行道的模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3582 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3582 msgid "Mode for creating crossings between edges. (R)" msgstr "建立路段间人行道的模式。(R)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3588 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3588 msgid "Set TAZ mode" msgstr "设定交通分区(TAZ)的模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3588 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3588 msgid "Mode for creating Traffic Assignment Zones. (Z)" msgstr "建立交通指派分区的模式。(Z)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3594 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3594 msgid "Set polygon mode" msgstr "设定多边形物件的模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3594 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3594 msgid "Mode for creating polygons and POIs. (P)" msgstr "建立多边形物件及兴趣点的模式。(P)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3600 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3600 msgid "Set wire mode" msgstr "设定通讯线(wires)的模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3600 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3600 msgid "Mode for editing wires. (W)" msgstr "编辑通讯线(wires)的模式。(W)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3696 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3687 msgid "Create route mode" msgstr "建立路径的模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3696 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3687 msgid "Mode for creating routes. (R)" msgstr "建立路径的模式。 (R)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3702 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3693 msgid "Create vehicle mode" msgstr "建立车辆模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3702 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3693 msgid "Mode for creating vehicles. (V)" msgstr "建立车辆模式。(V)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3708 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3699 msgid "Create type mode" msgstr "建立类型模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3708 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3699 msgid "Mode for creating types (vehicles, person and containers). (T)" msgstr "建立类型模式(车辆, 人员(person)及容器(containers))。(T)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3714 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3705 +msgid "Create type distribution mode" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3705 +msgid "Mode for creating type distribution. (U)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3711 msgid "Create stop mode" msgstr "建立停靠点模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3714 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3711 msgid "Mode for creating stops. (A)" msgstr "建立停靠点模式。(A)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3720 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3717 msgid "Create person mode" msgstr "建立人员(person)模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3720 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3717 msgid "Mode for creating persons. (P)" msgstr "建立人员(person)模式。(P)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3726 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3723 msgid "Create person plan mode" msgstr "建立人员旅行计划的模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3726 -msgid "Mode for creating person plans. (C)" -msgstr "建立人员旅行计划的模式。(C)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3723 +msgid "Mode for creating person plans. (L)" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3732 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3729 msgid "Create container mode" msgstr "建立容器(container)模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3732 -msgid "Mode for creating containers. (P)" -msgstr "创建集装箱的模式。(P)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3729 +msgid "Mode for creating containers. (C)" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3738 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3735 msgid "Create container plan mode" msgstr "创建集装箱运送计划模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3738 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3735 msgid "Mode for creating container plans. (H)" msgstr "创建集装箱运送计划的模式。(H)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3815 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3816 msgid "Create edge data mode" msgstr "创建路段数据模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3815 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3816 msgid "Mode for creating edge datas. (E)" msgstr "创建路段数据的模式。(E)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3821 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3822 msgid "Create edge relation data mode" msgstr "创建路段关系数据模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3821 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3822 msgid "Mode for creating edge relation datas. (R)" msgstr "创建路段关系数据的模式。(R)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3827 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3828 msgid "Create TAZ relation data mode" msgstr "创建交通分区关系数据模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3827 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3828 msgid "Mode for creating TAZ relation datas. (Z)" msgstr "创建交通分区关系数据的模式。(Z)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3833 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3834 msgid "MeanData mode" msgstr "MeanData 模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3833 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3834 msgid "Mode for MeanData elements. (M)" msgstr "平均数据(MeanData)元素的模式。(M)" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:102 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:103 msgid "Undo the last change. (Ctrl+Z)" msgstr "撤销上一次的修改。(Ctrl+Z)" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:105 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:106 msgid "Redo the last change. (Ctrl+Y)" msgstr "重复上次的修改。(Ctrl+Y)" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:113 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:114 msgid "Compute path manager" msgstr "计算路径管理器" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:113 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:114 msgid "Compute path manager." msgstr "计算路径管理器。" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:521 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:528 msgid "WalkingArea Chooser" -msgstr "" +msgstr "步行区域选择器" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:590 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:597 msgid "Route Chooser" -msgstr "" +msgstr "路径选择器" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:598 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:605 msgid "Stop Chooser" -msgstr "" +msgstr "停靠点选择器" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:629 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:641 msgid "TLS Chooser" -msgstr "" +msgstr "交通信号选择器" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:640 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:652 msgid "Additional Chooser" -msgstr "" +msgstr "附加物(additional)选择器" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:669 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:681 msgid "Poly Chooser" -msgstr "" +msgstr "多边形选择器" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:120 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:96 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:108 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:97 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:145 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:128 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:118 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:96 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:108 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:97 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:145 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:128 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:118 msgid "Undo create " msgstr "撤销创建 " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:122 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:99 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:110 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:99 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:147 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:130 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:122 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:99 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:110 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:99 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:147 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:120 msgid "Undo delete " msgstr "撤销删除 " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:130 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:118 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:107 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:155 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:138 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:128 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:118 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:107 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:155 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:138 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:128 msgid "Redo create " msgstr "重做创建 " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:132 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:120 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:109 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:157 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:140 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:132 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:109 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:157 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:140 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:130 msgid "Redo delete " msgstr "重做删除 " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Attribute.cpp:158 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Attribute.cpp:158 msgid "Undo change " msgstr "撤销更改 " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Attribute.cpp:164 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Attribute.cpp:164 msgid "Redo change " msgstr "重做更改 " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:147 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:158 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:147 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:158 msgid "Undo moving up " msgstr "撤销上移 " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:149 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:156 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:149 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:156 msgid "Undo moving down " msgstr "撤销下移 " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:151 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:160 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:175 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:184 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:151 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:160 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:175 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:184 msgid "Invalid operation" msgstr "无效操作" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:171 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:180 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:171 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:180 msgid "Redo moving front " msgstr "重做移动前端 " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:173 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:182 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:173 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:182 msgid "Redo moving back " msgstr "重做移动后 " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:108 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:108 msgid "Redo create connection '" msgstr "重做创建连接 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:111 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:111 msgid "Redo delete connection '" msgstr "重做删除连接 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:163 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:163 msgid "Undo create crossing" msgstr "撤销创建路口" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:165 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:165 msgid "Undo delete crossing" msgstr "撤消删除路口" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:173 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:173 msgid "Redo create crossing" msgstr "重做创建路口" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:175 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:175 msgid "Redo delete crossing" msgstr "重做删除路口" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:136 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:136 msgid "Undo create edge '" msgstr "撤销创建路段'" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:138 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:138 msgid "Undo delete edge '" msgstr "撤销删除路段 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:146 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:146 msgid "Redo create edge '" msgstr "重做创建路段 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:148 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:148 msgid "Redo delete edge '" msgstr "重做删除路段 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:111 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:111 msgid "Undo create edgeType '" msgstr "撤销创建路段类型 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:113 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:113 msgid "Undo delete edgeType '" msgstr "撤销删除路段类型 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:121 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:121 msgid "Redo create edgeType '" msgstr "重做创建路段类型 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:123 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:123 msgid "Redo delete edgeType '" msgstr "重做删除路段类型 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:113 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:115 -msgid "Undo enable " -msgstr "启用撤消功能 " - -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:113 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:115 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:123 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:125 -msgid " attribute in '" -msgstr " '中的属性" - -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:123 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:125 -msgid "Redo enable " -msgstr "启用重做功能 " +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:113 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:115 +msgid "Undo enable % attribute in '%'" +msgstr "" + +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:123 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:125 +msgid "Redo enable % attribute in '%'" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:109 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:109 msgid "Undo create junction '" msgstr "撤消创建路口 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:111 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:111 msgid "Undo delete junction '" msgstr "撤销删除路口 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:119 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:119 msgid "Redo create junction '" msgstr "重做创建路口 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:121 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:121 msgid "Redo delete junction '" msgstr "重做删除路口'" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:158 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:158 msgid "Undo create lane '" msgstr "撤销创建车道 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:160 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:160 msgid "Undo delete lane '" msgstr "撤销删除车道 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:168 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:168 msgid "Redo create lane '" msgstr "重做创建车道 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:170 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:170 msgid "Redo delete lane '" msgstr "重做删除车道 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:172 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:172 msgid "Undo create TLS '" msgstr "撤销创建交通信号'" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:174 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:174 msgid "Undo delete TLS '" msgstr "撤销删除交通信号'" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:182 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:182 msgid "Redo create TLS '" msgstr "重做创建交通信号'" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:184 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:184 msgid "Redo delete TLS '" msgstr "重做删除交通信号 '" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:38 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:38 msgid "About Eclipse SUMO netedit" msgstr "关于Eclipse SUMO的netedit(网络编辑)" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:53 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:53 msgid "Network editor for Eclipse SUMO, the Simulation of Urban MObility" msgstr "Eclipse SUMO的网络编辑器,城市交通仿真" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:54 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:54 msgid "Graphical editor for road networks and infrastructure." msgstr "道路网络和基础设施的图形编辑器。" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:66 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:66 msgid "This application is based on code provided by the Eclipse SUMO project." msgstr "这个应用程序是基于Eclipse SUMO项目提供的代码。" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:67 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:67 msgid "" "These core components are available under the conditions of the Eclipse " "Public License v2." msgstr "这些核心组件在Eclipse Public License v2的条件下提供。" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:923 msgid "Accept" msgstr "接受" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:62 msgid "Close accepting changes" msgstr "关闭接受变更" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:94 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:93 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1368 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:377 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:925 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1396 msgid "Cancel" msgstr "取消" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:63 msgid "Close discarding changes" msgstr "关闭丢弃更改" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:64 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:93 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:378 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:97 msgid "Reset" msgstr "重置" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:64 msgid "Reset to previous values" msgstr "重置到以前的值" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:276 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:649 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:59 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:690 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:494 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:133 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:276 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:650 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:59 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:713 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:494 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:133 msgid "accept" msgstr "接受" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:276 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:277 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:278 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:415 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:649 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:650 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:651 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:411 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:690 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:691 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:692 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:408 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:494 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:495 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:234 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:247 -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:285 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:384 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:559 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:298 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:487 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:134 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:276 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:277 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:416 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:650 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:651 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:652 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:413 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:713 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:714 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:715 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:408 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:494 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:495 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:380 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:298 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:487 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:134 msgid "close" msgstr "关闭" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:277 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:650 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:60 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:691 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:495 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:277 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:651 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:60 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:714 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:495 msgid "cancel" msgstr "撤消" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:278 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:651 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:692 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:652 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:715 msgid "reset" msgstr "重置" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNECalibratorDialog.cpp:237 +#: D:\Repos\sumo/src\netedit\dialogs\GNECalibratorDialog.cpp:237 msgid "routes cannot be empty" msgstr "路径不能是空的" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNECalibratorDialog.cpp:472 +#: D:\Repos\sumo/src\netedit\dialogs\GNECalibratorDialog.cpp:472 msgid "No routes defined" msgstr "没有定义路径" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:71 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:638 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:389 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:71 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:638 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:389 msgid "&Accept" msgstr "&接受" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:75 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:90 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:75 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:90 msgid "close accepting changes" msgstr "关闭接受变更" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:64 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:76 msgid "close discarding changes" msgstr "关闭废弃更改" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:65 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:65 msgid "&Reset" msgstr "&重置" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:65 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:77 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:65 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:77 msgid "reset to previous values" msgstr "重置为以前的值" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDialogACChooser.cpp:111 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDialogACChooser.cpp:111 msgid "Invalid Junction" msgstr "无效路口" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDialogACChooser.cpp:117 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDialogACChooser.cpp:117 msgid "Invalid number of TLSs" msgstr "无效的交通信号序号" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:257 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:333 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:457 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:257 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:333 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:457 msgid "Activate friendlyPos and save" msgstr "激活 友好的位置 (friendlyPos )并保存" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:257 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:333 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:257 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:333 msgid "" "Friendly pos parameter will be activated in all stopping places and E2 " "detectors" msgstr "友好位置(Friendly pos)的参数将在所有停车地点和E2检测器中被激活" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:259 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:460 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:259 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:460 msgid "Save invalid positions" msgstr "保存无效的位置" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:259 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:259 msgid "Save stopping places and E2 detectors with invalid positions" msgstr "保存停车位和E2检测器的无效位置" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:263 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:335 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:466 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:263 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:335 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:466 msgid "Fix positions and save" msgstr "固定位置并保存" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:263 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:335 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:263 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:335 msgid "Position of stopping places and E2 detectors will be fixed" msgstr "停车位和E2探测器的位置将被固定" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:265 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:265 msgid "Select invalid additionals" msgstr "选择无效的附加物" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:265 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:265 msgid "" "Cancel saving of additionals and select invalid stopping places and E2 " "detectors" msgstr "取消附加物的保存,选择无效的停车位和E2检测器" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:325 msgid "Build connections between lanes" msgstr "建立车道之间的连接" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:325 msgid "New connections will be created between non-connected lanes" msgstr "在未连接的车道之间将建立新的连接" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:327 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:327 msgid "Remove invalid E2 detectors" msgstr "删除无效的E2检测器" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:327 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:327 msgid "Remove Multilane E2 Detectors with non-connected lanes" msgstr "移除不连接车道的多车道E2探测仪" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:202 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:189 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:202 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:189 msgid "Save list of conflicted items" msgstr "保存冲突项目的清单" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:240 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:240 msgid "Remove invalid routes" msgstr "移除无效的路径" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:243 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:243 msgid "Save invalid routes" msgstr "保存无效的路径" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:246 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:246 msgid "Select conflicted routes" msgstr "选择冲突的路径" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:249 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:249 msgid "Remove stops out of route" msgstr "删除路径以外的停靠点" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:351 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:351 msgid "Remove invalid vehicles" msgstr "删除无效车辆" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:354 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:354 msgid "Save invalid vehicles" msgstr "保存无效的车辆" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:357 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:357 msgid "Select conflicted vehicle" msgstr "选择有冲突的车辆" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:360 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:360 msgid "Remove stops out of vehicle's route" msgstr "移除车辆路径上的停车点" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:463 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:463 msgid "Select conflicted Stops" msgstr "选择有冲突的停靠点" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:557 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:557 msgid "Delete person plan" msgstr "删除人员计划" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:560 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:560 msgid "Save invalid person plans" msgstr "保存无效人员计划" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:563 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:563 msgid "Select conflicted person plans" msgstr "选择有冲突的人员计划" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:52 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:52 msgid "Fix network elements problems" msgstr "修正路网要素问题" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:206 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:206 msgid "Saving successfully" msgstr "成功保存" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:213 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:213 msgid "Saving list of conflicted items failed" msgstr "保存冲突项目的清单失败" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:227 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:227 msgid "Remove invalid edges" msgstr "删除无效的路段" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:230 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:230 msgid "Save invalid edges" msgstr "保存无效的路段" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:233 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:233 msgid "Select conflicted edges" msgstr "选择有冲突的路段" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:308 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:308 msgid "Remove invalid crossings" msgstr "删除无效的路口" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:311 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:311 msgid "Save invalid crossings" msgstr "保存无效的路口" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:314 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:314 msgid "Select conflicted crossing" msgstr "选择有冲突的路口" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:285 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:281 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:286 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:283 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:278 msgid "Sort" msgstr "分类" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:286 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:282 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:279 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:55 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:251 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:287 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:284 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:279 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:252 msgid "Clear" msgstr "清理" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:289 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:285 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:282 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:59 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:748 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:73 -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:318 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:113 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:420 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:60 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:83 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:37 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:39 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:222 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1194 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:290 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:287 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:756 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:318 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:109 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:37 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:39 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:223 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1191 msgid "Help" msgstr "帮助" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:299 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:295 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:292 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:300 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:297 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:292 msgid "Open Parameter Template" msgstr "打开参数模板" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:314 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:310 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:307 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:315 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:312 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:307 #, c-format msgid "Loading of Parameters From % failed." msgstr "从%加载参数失败。" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:317 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:313 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:310 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:318 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:315 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:310 msgid "Loaded % Parameters." msgstr "已加载%的参数。" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:327 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:323 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:320 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:328 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:320 msgid "Save Parameter Template file" msgstr "保存参数模板文件" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:403 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:399 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:396 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:404 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:401 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:396 msgid "- Parameters are defined by a Key and a Value.\n" msgstr "参数是由一個密码(key)及值(value)定义的。\n" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:404 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:400 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:397 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:405 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:402 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:397 msgid "" "- In Netedit can be defined using format key1=parameter1|" "key2=parameter2|...\n" msgstr "- 在netedit 內可以用格式密码 1=参数1|密码 2=参数2|...来定义的\n" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:405 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:401 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:398 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:406 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:403 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:398 msgid " - Duplicated and empty Keys aren't valid.\n" msgstr " - 重复的和空的密码是无效的。\n" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:406 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:402 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:399 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:407 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:404 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:399 msgid " - Whitespace and certain characters aren't allowed (@$%^&/|\\....)\n" msgstr " - 不允许使用空格和某些字元 (@$%^&/|\\....)\n" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:448 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:447 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:444 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:449 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:449 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:444 msgid "Key of Parameter not defined" msgstr "参数鍵未定义" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:450 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:449 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:446 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:451 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:451 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:446 msgid "Value of Parameter not defined" msgstr "参数值未定义" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:458 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:457 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:454 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:454 msgid "Key of Parameter cannot be empty" msgstr "参数值不能是空的" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:460 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:459 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:456 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:461 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:461 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:456 #, c-format msgid "Key '%' of Parameter contains invalid characters" msgstr "%' 参数鍵含有无效字元" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:463 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:462 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:464 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:464 #, c-format msgid "Key '%' already exist" msgstr "'%' 鍵已存在" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:478 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:479 msgid "" "Only for\n" "existent keys" @@ -4993,368 +5031,453 @@ "仅适用于\n" "存在的密码keys)" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:59 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:59 msgid "load elements" msgstr "载入要素" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:60 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:60 msgid "cancel loading of elements" msgstr "取消载入要素" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:61 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:61 msgid "overwrite" msgstr "覆盖" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:61 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:61 msgid "overwrite elements" msgstr "覆盖要素" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:182 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:182 msgid "Rerouter has more than one edge" msgstr "改道裝置(rerouter) 有一个以上的路段" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:321 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:321 msgid "There are no lanes in the network" -msgstr "" +msgstr "路网内没有车道" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:341 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:361 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:341 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:361 msgid "There are no edges in the network" -msgstr "" +msgstr "路网內沒有路段" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:398 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:398 msgid "There are no parking areas in the network" -msgstr "" +msgstr "路网內沒有停车区域" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEUndoListDialog.cpp:58 +#: D:\Repos\sumo/src\netedit\dialogs\GNEUndoListDialog.cpp:58 msgid "OK\tclose dialog" msgstr "确定\t关闭对话窗" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:459 #, c-format msgid "Key '%' already exists" -msgstr "" +msgstr "键(key) '%' 已经存在" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:446 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:753 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:446 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1159 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1168 msgid "Edit parameters" msgstr "编辑 参数" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:466 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:466 msgid "Invalid row type" msgstr "无效的行类型" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:635 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:425 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:455 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1252 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:635 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:426 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:463 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1249 msgid "Color Dialog" msgstr "颜色对话框" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:660 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:660 msgid "Open Image" msgstr "开启图片" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:687 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:687 msgid "Open OSG File" msgstr "开启OSG档案" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:63 -msgid "Grid" +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:266 +msgid "Could not load configuration '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:64 -msgid "Spider" +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:271 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:169 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:173 +msgid "Could not load tool configuration '" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:65 -msgid "Random grid" +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:275 +msgid "Loaded configuration." msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:66 -msgid "Random" +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:295 +msgid "Save options" +msgstr "存储选项" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:297 +msgid "Save configuration file" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:298 +msgid "Load options" +msgstr "载入选项" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:300 +msgid "Load configuration file" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:301 +msgid "Default options" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:303 +msgid "Reset all options to default" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:311 +msgid "Topics" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:362 +msgid "Search" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:82 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:232 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:364 +msgid "Include description in search" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:81 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:138 +msgid "Reset value" +msgstr "重设值" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:226 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:238 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:251 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:272 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:734 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:746 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:760 +msgid "true" +msgstr "真值" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:229 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:241 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:254 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:275 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:737 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:749 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:766 +msgid "false" +msgstr "伪值" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:458 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:82 msgid "Select filename" msgstr "选择文件名" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:92 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:63 +msgid "Grid" +msgstr "网格" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:64 +msgid "Spider" +msgstr "蜘蛛网" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:65 +msgid "Random grid" +msgstr "随机网络" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:66 +msgid "Random" +msgstr "随机" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:92 msgid "Advanced" -msgstr "" +msgstr "高级的" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:92 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:92 msgid "open advance netgenerate dialog" -msgstr "" +msgstr "开启高级的的 netgenerate 对话窗" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:94 msgid "Close dialog" +msgstr "关闭对话窗" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:71 +msgid "Save toolcfg" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:71 -msgid "Save options" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:73 +msgid "Save file with tool configuration" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:73 -msgid "Load options" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:74 +msgid "Load toolcfg" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:75 -msgid "Sorted by name" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:76 +msgid "Load file with tool configuration" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:77 +msgid "Sorted by name" +msgstr "按名称排序" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:78 msgid "Grouped by categories" +msgstr "按类别f分组" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:90 +msgid "Blue options are mandatory" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:89 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:93 msgid "run python tool" -msgstr "" +msgstr "执行 python 工具" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:91 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:95 msgid "close tool dialog" -msgstr "" +msgstr "关闭工具对话窗" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:93 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:97 msgid "reset to default values" -msgstr "" +msgstr "重新设回为预设值" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:122 -msgid "Reset value" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:227 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:245 #, c-format msgid "Use current % file" +msgstr "使用目前 % 文件" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:251 +#, c-format +msgid "Select % file" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:253 -msgid "network" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:274 +msgid "Use current selected edges" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:296 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:349 +msgid "network" +msgstr "路网" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:392 msgid "additional" -msgstr "" +msgstr "附加物(additional)" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:339 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:435 msgid "route" -msgstr "" +msgstr "路径" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:382 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:478 msgid "data" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:556 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:568 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:582 -msgid "true" -msgstr "" +msgstr "数据" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:559 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:571 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:585 -msgid "false" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:521 +msgid "sumo config" msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:70 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:71 msgid "Save output" -msgstr "" +msgstr "存储输出" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:65 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:66 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:72 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:73 msgid "Console output" -msgstr "" +msgstr "控制台输出" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:75 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:82 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:83 msgid "Abort" -msgstr "" +msgstr "放弃" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:75 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:82 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:83 msgid "abort running" -msgstr "" +msgstr "放弃执行" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:77 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:78 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:84 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:85 msgid "Rerun" -msgstr "" +msgstr "重新执行" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:77 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:78 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:84 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:85 msgid "rerun tool" -msgstr "" +msgstr "重新执行工具" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:79 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:80 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:86 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:87 msgid "Back" -msgstr "" +msgstr "返回" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:79 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:80 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:86 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:87 msgid "back to tool dialog" -msgstr "" +msgstr "返回到工具对话框" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:87 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:88 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:95 msgid "close dialog" -msgstr "" +msgstr "关闭对话框" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:134 msgid "Nothing to enable, implement in Children" msgstr "无需启用, 完成子类别(children))" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:141 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:141 msgid "Nothing to disable, implement in Children" msgstr "无需禁用, 子(children)类别" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:631 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:631 #, c-format msgid "TagProperty for tag '%' not defined" msgstr "标记 '%' 的标记属性(TagProperty)尚未定义" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:849 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:849 msgid "Nothing to toggle, implement in Children" msgstr "无需切换,在子(children)类别里实施" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:913 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:913 msgid "The id of the node" msgstr "节点的id" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:918 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1903 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1909 msgid "The x-y-z position of the node on the plane in meters" msgstr "在平面上节点的x,y,z位置(以公尺为单位)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:923 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:923 msgid "An optional type for the node" msgstr "一个可任选的节点类型" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:929 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:929 msgid "A custom shape for that node" msgstr "节点的自定形状(shape)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:934 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:934 msgid "Optional turning radius (for all corners) for that node in meters" msgstr "该节点可任选的转弯半径(适用于所有角落) (单位为公尺)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:940 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:940 msgid "" "Whether the junction-blocking-heuristic should be activated at this node" msgstr "是否该节点启用路口阻碍启发法(junction-blocking-heuristic)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:946 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:946 msgid "How to compute right of way rules at this node" msgstr "如何计算该节点的路权规则" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:953 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:953 msgid "Whether this junction is at the fringe of the network" msgstr "此路口是否位于路网边界" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:960 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:960 msgid "Optional name of junction" msgstr "路口的自选名" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:965 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:965 msgid "An optional type for the traffic light algorithm" msgstr "交通信号算法的可选类型" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:971 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:971 msgid "An optional layout for the traffic light plan" msgstr "交通信号方案的可自选配置(layout)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:980 msgid "An optional id for the traffic light program" msgstr "交通信号方案的可自选识别名 (id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:993 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:993 msgid "The id of the edge" msgstr "路段的识别名 (id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:998 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1116 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:998 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1116 msgid "The number of lanes of the edge" msgstr "路段上的车道数" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1004 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1104 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1004 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1104 msgid "The maximum speed allowed on the edge in m/s" msgstr "路段允许的最大速度(米/秒)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1010 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1064 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1127 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1230 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1446 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1064 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1230 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1446 msgid "" "Explicitly allows the given vehicle classes (not given will be not allowed)" msgstr "明确允许給定的车辆类别(若未给定车辆类别, 将不允许)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1016 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1070 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1133 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1236 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1452 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1016 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1070 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1133 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1236 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1452 msgid "" "Explicitly disallows the given vehicle classes (not given will be allowed)" msgstr "明確禁止给定的车辆类别(不给定的,将被允许)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1021 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1148 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1021 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1148 msgid "" "The spreadType defines how to compute the lane geometry from the edge " "geometry (used for visualization)" msgstr "展开类型(spreadType)定义如何由路段几何计算车道几何 (用于视觉化)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1028 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1110 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1110 msgid "The priority of the edge" msgstr "路段的优先顺序" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1034 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1160 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1160 msgid "" "Lane width for all lanes of this edge in meters (used for visualization)" msgstr "路段上所有车道的车道宽度(用于视觉化)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1040 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1040 msgid "The width of the sidewalk that should be added as an additional lane" msgstr "应添加为附加通道的人行道宽度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1045 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1045 msgid "The width of the bike lane that should be added as an additional lane" msgstr "应添加为附加通道的自行车道宽度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1058 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1058 msgid "The maximum speed allowed on the lane in m/s" msgstr "车道上允許的最大速度(米/秒)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1075 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1075 msgid "" "Lane width for all lanes of this lane in meters (used for visualization)" msgstr "此车道上所有车道的车道宽度(以米为单位) (用于视觉化)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1089 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2650 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2698 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1089 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2656 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2704 msgid "Edge ID" msgstr "路段识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1094 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1094 msgid "The name of a node within the nodes-file the edge shall start at" msgstr "在节点档案中, 路段开始的节点的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1099 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1099 msgid "The name of a node within the nodes-file the edge shall end at" msgstr "在节点档案中, 路段結束的节点的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1122 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1122 msgid "The name of a type within the SUMO edge type file" msgstr "在SUMO路段类型档案中的一个类型名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1138 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1138 msgid "" "If the shape is given it should start and end with the positions of the from-" "node and to-node" @@ -5362,166 +5485,166 @@ "如果給定形状(shape),则应以起始节点(from-node)和终止节点(to-node)的位置开始和" "结束" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1143 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1143 msgid "The length of the edge in meter" msgstr "路段的长度(单位为米)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1155 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1155 msgid "street name (does not need to be unique, used for visualization)" -msgstr "" +msgstr "街道名 (不需要是唯一的, 作为视觉化使用)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1166 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1247 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1166 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1247 msgid "Move the stop line back from the intersection by the given amount" msgstr "依据给定的量, 将停等线移到路口前方" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1172 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1172 msgid "" "Custom position in which shape start (by default position of junction from)" msgstr "形状(shape)开始的自定位置(路口起始(from)为预设位置)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1177 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1177 msgid "" "Custom position in which shape end (by default position of junction from)" msgstr "形状(shape)j结束的自定位置(路口起始(from)为预设位置)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1182 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1182 msgid "Show if edge is bidirectional" msgstr "显示路段是否是双向的" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1188 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1188 msgid "Distance" msgstr "距离" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1194 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1288 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1194 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1288 msgid "The stop offset as positive value in meters" msgstr "停靠点偏移量(stop offset)为正值,以米为单位" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1200 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1294 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1200 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1294 msgid "Specifies, for which vehicle classes the stopOffset does NOT apply." msgstr "指定停靠点偏移量( stopOffset)不适用的车辆类别。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1214 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1214 msgid "Lane ID (Automatic, non editable)" msgstr "车道识别名 (ID)(自动生成, 无法编辑)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1219 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1219 msgid "" "The enumeration index of the lane (0 is the rightmost lane, -1 " "is the leftmost one)" msgstr "车道的枚举指数(0是最右边的车道,-1是最左边的车道)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1224 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1224 msgid "Speed in meters per second" msgstr "速度(米/秒)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1241 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1241 msgid "Width in meters (used for visualization)" msgstr "宽度(米) (用于视觉化)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1253 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1253 msgid "Enable or disable lane as acceleration lane" msgstr "启用或停用车道作为加速车道" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1259 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1259 msgid "If the shape is given it overrides the computation based on edge shape" msgstr "如果给定了形状(shape),它将覆盖基于路段计算出来的形状(shape)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1264 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1264 msgid "If given, this defines the opposite direction lane" msgstr "如果给定,这定义了相反方向的车道" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1269 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1474 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1269 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1474 msgid "Permit changing left only for to the given vehicle classes" msgstr "允许给定的车辆类别改变为仅能左转 (left only)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1276 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1481 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1276 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1481 msgid "Permit changing right only for to the given vehicle classes" msgstr "允许给定的车辆类别改变为仅能右转(right only)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1283 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1283 msgid "Lane type description (optional)" msgstr "车道类型说明(可自选(optional))" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1308 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1308 msgid "Crossing ID" msgstr "穿越道识别名ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1313 msgid "The (road) edges which are crossed" msgstr "被穿越的路段" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1318 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1318 msgid "" "Whether the pedestrians have priority over the vehicles (automatically set " "to true at tls-controlled intersections)" msgstr "行人是否优先于车辆(在交通信号控制的路口会自动设置为真值(true))" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1324 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1324 msgid "The width of the crossings" msgstr "穿越道的宽度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1330 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1330 msgid "sets the tls-index for this crossing" msgstr "设定穿越道的交通信号指数(tls-index)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1336 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1336 msgid "sets the opposite-direction tls-index for this crossing" msgstr "设定此穿越道的对向交通信号指数(tls-index)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1342 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1342 msgid "Overrides default shape of pedestrian crossing" -msgstr "" +msgstr "覆盖预设的人行穿越道形状" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1355 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1355 msgid "Walking Area ID" msgstr "步行区的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1360 msgid "The width of the WalkingArea" msgstr "步行区(WalkingArea)的宽度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1366 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1366 msgid "The length of the WalkingArea in meter" msgstr "步行区(WalkingArea)的长度(米)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1371 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1371 msgid "Overrides default shape of pedestrian sidewalk" -msgstr "" +msgstr "覆盖预设的人行道形状" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1384 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1384 msgid "The ID of the edge the vehicles leave" -msgstr "" +msgstr "车辆离开的路段的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1389 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1389 msgid "The ID of the edge the vehicles may reach when leaving 'from'" -msgstr "" +msgstr "车辆离开 'from' 时,可能到达的路段的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1394 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1394 msgid "the lane index of the incoming lane (numbers starting with 0)" msgstr "进场的(incoming)车道的车道指数(lane index) (数字从0开始)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1399 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1399 msgid "the lane index of the outgoing lane (numbers starting with 0)" msgstr "出场的(outgoing)车道的车道指数(数字从0开始)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1404 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1404 msgid "" "if set, vehicles which pass this (lane-2-lane) connection) will not wait" msgstr "如果设定, 通过这个(车道-2-车道)连接的车辆将不会等待" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1410 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1410 msgid "" "if set to false, vehicles which pass this (lane-2-lane) connection) will not " "worry about blocking the intersection" msgstr "" "如果设置为假值(false),通过这个(车道-2-车道)连接的车辆将不会担心堵塞路口" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1416 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1416 msgid "" "If set to a more than 0 value, an internal junction will be built at this " "position (in m)/n from the start of the internal lane for this connection" @@ -5529,81 +5652,81 @@ "如果设置为大于0的值,将在该连接的内部车道起点的这个位置(以m计)/n处建立一个" "内部结点" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1422 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1422 msgid "" "If set to true, This connection will not be TLS-controlled despite its node " "being controlled" msgstr "如果设置为 真值\"true\",该连接将不会被交通信号控制,尽管其节点被控制" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1428 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1428 msgid "Vision distance between vehicles" msgstr "车辆之间的视距" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1434 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1434 msgid "sets index of this connection within the controlling traffic light" msgstr "设置该连接线在交通控制信号中的索引指数" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1440 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1440 msgid "" "sets index for the internal junction of this connection within the " "controlling traffic light" msgstr "为控制交通信号灯内的该连接的内部路口设置索引指数" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1457 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1457 msgid "sets custom speed limit for the connection" msgstr "设定连接线(connection)的自定速限" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1463 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1463 msgid "sets custom length for the connection" msgstr "设定连接线(connection)的自定长度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1469 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1469 msgid "sets custom shape for the connection" msgstr "设定连接线(connection)的自定形状(shape)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1488 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1488 msgid "if set to true, vehicles will make a turn in 2 steps" msgstr "若设定为真值(true), 车辆将分两步转弯" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1494 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1494 msgid "" "set a custom edge type (for applying vClass-specific speed restrictions)" msgstr "设定自定的路段类型(用于指定的车辆类型速限)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1500 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1500 msgid "turning direction for this connection (computed)" msgstr "此连接线(connection)的转向(计算过的)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1505 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1505 msgid "link state for this connection (computed)" msgstr "此连接线(connection)的连接状态(link state) (计算过的)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1535 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1535 msgid "The id of bus stop" msgstr "公交站的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1540 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1540 msgid "The name of the lane the bus stop shall be located at" msgstr "公共汽车站所在的车道名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1545 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1609 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1707 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1836 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3962 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4073 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1545 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1609 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1707 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3968 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4095 msgid "" "The begin position on the lane (the lower position on the lane) in meters" msgstr "车道上的起始位置(车道上较低位置)(以米为单位)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1550 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1614 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1712 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1841 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3967 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4078 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4432 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4802 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1550 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1614 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1712 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1841 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3973 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4100 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4470 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4916 msgid "" "The end position on the lane (the higher position on the lane) in meters, " "must be larger than startPos by more than 0.1m" @@ -5611,353 +5734,357 @@ "车道上的结束位置(车道上较高的位置) (以米为单位), 必须比起始位置(startPos)大" "于 0.1米以上" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1555 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1555 msgid "Name of busStop" msgstr "公交站(busStop)的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1560 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1624 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1680 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1722 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1785 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1868 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1979 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2060 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2140 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2219 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2246 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2293 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2959 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3266 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3972 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4083 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4437 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4807 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1560 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1680 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1722 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1785 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1868 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1985 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2066 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2146 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2225 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2252 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2299 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2965 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3272 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3978 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4105 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4475 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4921 msgid "If set, no error will be reported if element is placed behind the lane." msgstr "如果设定,若元素放置在车道后面,不会报告任何错误。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1561 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1561 msgid "" "Instead, it will be placed 0.1 meters from the lanes end or at position 0.1" msgstr "相反地,它将放置在距离 车道尽头0.1 米处或 0.1位置(position)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1562 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1626 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1682 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1724 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1787 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1870 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1981 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2062 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2142 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2221 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2248 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2295 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2961 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3268 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3974 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4085 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4439 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4809 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1562 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1626 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1682 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1724 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1787 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1870 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1987 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2148 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2227 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2254 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2301 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2967 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3274 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4477 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4923 msgid "" "if the position was negative and larger than the lanes length after " "multiplication with - 1" msgstr "如果位置为负值且大于乘以 - 1 后的车道长度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1568 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1568 msgid "" "Meant to be the names of the bus lines that stop at this bus stop. This is " "only used for visualization purposes" msgstr "意思是在这个公交站的公交线路的名称。这仅用于视觉化目的" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1573 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1637 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1573 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1637 msgid "" "Larger numbers of persons trying to enter will create an upstream jam on the " "sidewalk" msgstr "大量人群试图进入将会在人行道上造成上游堵塞" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1579 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1643 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1741 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1579 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1741 msgid "Optional space definition for vehicles that park at this stop" msgstr "停于此停靠点的车辆的自选空间定义(space defintion)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1585 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1585 msgid "The RGBA color with which the busStop shall be displayed" msgstr "显示公交车站的RGBA颜色" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1599 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1599 msgid "The id of train stop" msgstr "火车站的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1604 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1604 msgid "The name of the lane the train stop shall be located at" msgstr "火车站所在车道的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1619 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1619 msgid "Name of trainStop" msgstr "火车站(trainStop)名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1625 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1681 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1723 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1786 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1869 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1980 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2061 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2141 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2220 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2247 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2294 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2960 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3267 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3973 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4084 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4438 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4808 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1625 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1681 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1723 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1786 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1869 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1986 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2147 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2226 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2253 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2300 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2966 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3273 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3979 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4106 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4476 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4922 msgid "" "Instead, it will be placed 0.1 meters from the lanes end or at position 0.1," msgstr "相反地,它将放置在距离车道末端 0.1 米处或 0.1 米位置," -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1632 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1632 msgid "" "Meant to be the names of the train lines that stop at this train stop. This " "is only used for visualization purposes" msgstr "意为停靠该火车站的火車线路的名称。这仅用于视觉化目的" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1649 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1649 msgid "The RGBA color with which the trainStop shall be displayed" msgstr "显示火车站(trainStop)的RGBA颜色" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1663 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1663 msgid "The name of the lane the stop access shall be located at" msgstr "停靠站通道(access)应位于的车道的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1668 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1668 msgid "The position on the lane (the lower position on the lane) in meters" msgstr "车道上的位置(车道上较低的位置) (以米为单位)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1674 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1674 msgid "The walking length of the access in meters" msgstr "通道的步行长度(米)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1697 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1697 msgid "The id of container stop" msgstr "集装箱(container)停靠站的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1702 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1702 msgid "The name of the lane the container stop shall be located at" msgstr "集装箱(container)停靠站应位于的车道的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1717 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1717 msgid "Name of containerStop" msgstr "集装箱停靠站(containerStop)的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1730 msgid "" "meant to be the names of the bus lines that stop at this container stop. " "This is only used for visualization purposes" msgstr "意思是停靠此集装箱停靠站的公交线路的名称。这仅用于视觉化目的" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1735 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1735 msgid "" "Larger numbers of container trying to enter will create an upstream jam on " "the sidewalk" msgstr "大量集装箱container)试图进入将会在人行道上造成上游堵塞" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1747 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1747 msgid "The RGBA color with which the containerStop shall be displayed" msgstr "显示集装箱停靠站(containerStop)的RGBA顏色" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1760 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1760 msgid "The id of charging station" msgstr "充电站的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1765 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1765 msgid "Lane of the charging station location" msgstr "充电站所在车道" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1770 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1770 msgid "Begin position in the specified lane" msgstr "指定车道的起始位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1775 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1775 msgid "End position in the specified lane" msgstr "指定车道的结束位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1780 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1780 msgid "Name of chargingStation" msgstr "充电站名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1793 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1793 msgid "Charging power in W" msgstr "充电功率(W)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1799 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1799 msgid "Charging efficiency [0,1]" msgstr "充电效率 [0,1]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1806 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1806 msgid "" "Enable or disable charge in transit, i.e. vehicle must or must not to stop " "for charging" msgstr "在运输过程中启用或禁用充电,即车辆必须或不得停车充电" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1812 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1812 msgid "" "Time delay after the vehicles has reached / stopped on the charging station, " "before the energy transfer (charging) begins" msgstr "车辆到达/停在充电站后,能量传输(充电)开始之前的时间延迟" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1826 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1826 msgid "The id of ParkingArea" msgstr "停车场的id" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1831 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1831 msgid "The name of the lane the Parking Area shall be located at" msgstr "停车场所在的车道名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1846 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1846 msgid "Lane position in that vehicle must depart when leaves parkingArea" msgstr "车辆在离开停车区时必须离开的车道位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1851 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1851 msgid "Name of parkingArea" msgstr "停车场名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1856 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1856 msgid " The number of parking spaces for road-side parking" msgstr " 路边停车位数量" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1862 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1862 msgid "" "If set, vehicles will park on the road lane and thereby reducing capacity" msgstr "如果设定,车辆将停在车道上,从而减少容量" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1876 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1913 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1876 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1919 msgid "The width of the road-side parking spaces" msgstr "路边停车位的宽度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1882 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1882 msgid "" "The length of the road-side parking spaces. By default (endPos - startPos) / " "roadsideCapacity" msgstr "路边停车位的长度。预设情況下为(终点位置 - 开始位置)/路边容量" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1888 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1923 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1888 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1929 msgid "" "The angle of the road-side parking spaces relative to the lane angle, " "positive means clockwise" msgstr "路边停车位相对于车道的角度,正值表示顺时针方向" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1908 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1894 +msgid "Enable or disable lefthand position" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1914 msgid "Name of parking space" msgstr "停车位名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1924 msgid "The length of the road-side parking spaces" msgstr "路边停车位的长度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1928 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1934 msgid "The slope of the road-side parking spaces" msgstr "路边停车位的坡度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1943 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1949 msgid "The id of E1" msgstr "E1 的id" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1948 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2000 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2209 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2236 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2268 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1954 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2006 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2215 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2242 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2274 msgid "" "The id of the lane the detector shall be laid on. The lane must be a part of " "the network used" msgstr "检测器所在车道的 ID。车道必须位于所用路网內" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1953 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2273 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1959 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2279 msgid "" "The position on the lane the detector shall be laid on in meters. The " "position must be a value between -1*lane's length and the lane's length" msgstr "" "检测器在车道上的位置应以米为单位设置。该位置必须是在正负一个车道长度之間" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1958 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2016 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2096 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2168 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5770 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1964 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2022 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2102 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5916 msgid "" "The aggregation period the values the detector collects shall be summed up" msgstr "在汇总期内检测器采集到的值应相加" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1964 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1970 msgid "Name of induction loop" msgstr "检测器名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1969 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2032 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2112 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2179 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2283 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1975 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2038 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2118 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2289 msgid "The path to the output file" msgstr "输出档案的路径" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1974 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2037 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2117 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2184 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2288 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2043 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2123 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2190 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2294 msgid "Space separated list of vehicle type ids to consider" msgstr "要考虑的车辆类型ID的空格分隔清单" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1995 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2001 msgid "The id of E2" msgstr "E2 的id" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2005 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2086 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2214 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2241 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2011 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2092 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2220 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2247 msgid "The position on the lane the detector shall be laid on in meters" msgstr "检测器在车道上的位置应以米为单位" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2016 msgid "The length of the detector in meters" msgstr "检测器的长度(以米为单位)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2102 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2108 msgid "The traffic light that triggers aggregation when switching" msgstr "切换时触发聚合的交通信号灯" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2027 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2033 msgid "Name of lane area detector" msgstr "车道区域检测器名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2042 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2122 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2048 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2128 msgid "" "The time-based threshold that describes how much time has to pass until a " "vehicle is recognized as halting)" msgstr "以时间为基础的阈值,用来定义车辆必须停等多少时间才会被认为是停等" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2048 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2128 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2195 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2054 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2201 msgid "" "The speed-based threshold that describes how slow a vehicle has to be to be " "recognized as halting) in m/s" msgstr "" "以速度为基础的閾值,用来定义车辆必须行驶多慢才会被认为是停等 (单位为 米/秒)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2054 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2060 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2140 msgid "" "The minimum distance to the next standing vehicle in order to make this " "vehicle count as a participant to the jam) in m" @@ -5965,202 +6092,202 @@ "车辆到下一个停等的车辆的最短距离(米),此距离用于计算该车辆是否被视为堵塞的参" "与者" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2076 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2082 msgid "The id of Multilane E2" msgstr "多车道检测器E2 (Multilane E2)的设别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2081 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2087 msgid "The sequence of lane ids in which the detector shall be laid on" msgstr "检测器应铺设在的车道ID的顺序" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2091 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2097 msgid "The end position on the lane the detector shall be laid on in meters" msgstr "检测器在车道上的终点位置 (米为单位)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2113 msgid "Name of Multilane E2 detector" msgstr "多车道检测器E2 (Multilane E2) 名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2157 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2163 msgid "The id of E3" msgstr "E3的设别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2162 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2354 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3213 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2168 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3219 msgid "X-Y position of detector in editor (Only used in netedit)" msgstr "在编辑器(editor)內,检测器的x,y位置 (只用于netedit)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2180 msgid "Name of Entry Exit detector" msgstr "出入口检测器的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2189 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2195 msgid "" "The time-based threshold that describes how much time has to pass until a " "vehicle is recognized as halting) in s" msgstr "以时间为基础的閾值, 用来定义车辆必须停等多少时间才会被认为是停等" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2263 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2269 msgid "The id of Instant Induction Loop (E1Instant)" msgstr "即时感应线圈(E1Instant)的识别名( id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2278 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2284 msgid "Name of instant induction loop" msgstr "即時检测器(instant induction loop)的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2309 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2315 msgid "The id of RouteProbe" msgstr "路径取样(RouteProbe)的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2314 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2320 msgid "The id of an edge in the simulation network" msgstr "仿真路网內的路段识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2319 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2325 msgid "The frequency in which to report the distribution" msgstr "报告分布的频率" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2325 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2331 msgid "Name of route probe" msgstr "路径取样(route probe)的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2330 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2336 msgid "The file for generated output" msgstr "用于存储输出(output)的档案" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2335 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2341 msgid "The time at which to start generating output" msgstr "开始产生输出的时间" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2349 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2355 msgid "The id of Variable Speed Signal" msgstr "可变速度标志的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2366 msgid "List of Variable Speed Sign lanes" msgstr "设有可变速度标志的车道清单" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2365 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2371 msgid "Name of Variable Speed Signal" msgstr "可变速度标志的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2370 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2376 msgid "" "Space separated list of vehicle type ids to consider (empty to affect all " "types)" msgstr "考虑的车辆类型 ID , 并以空格分隔的清单(空的(empty)表示影响所有类型)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2396 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2402 msgid "Speed" msgstr "速度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2410 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2466 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2416 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2472 msgid "The id of Calibrator" msgstr "校准器(Calibrator)的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2415 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3159 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3179 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2421 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3165 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3185 msgid "The id of edge in the simulation network" msgstr "仿真路网內的路段的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2420 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2476 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2426 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2482 msgid "The position of the calibrator on the specified lane" msgstr "在指定车道上的校准器(calibrator)的位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2426 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2482 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2432 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2488 msgid "" "The aggregation interval in which to calibrate the flows. Default is step-" "length" msgstr "用于校准流量时的聚合时间间隔(aggregation interval)。预设值为步长" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2432 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2438 msgid "Name of Calibrator" msgstr "校准器名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2437 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2493 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2443 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2499 msgid "" "The id of the routeProbe element from which to determine the route " "distribution for generated vehicles" msgstr "决定所产生车辆的路径分布的的路径取样(routeProbe)要素的识别名称(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2442 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2498 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2504 msgid "The output file for writing calibrator information or NULL" msgstr "用于写入校准器信息的输出文件或无效信息(NULL)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2447 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2503 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2453 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2509 msgid "A threshold value to detect and clear unexpected jamming" msgstr "用于检测及清除无预期阻塞的閾值" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2453 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2509 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2459 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2515 msgid "" "space separated list of vehicle type ids to consider (empty to affect all " "types)" msgstr "考虑的车辆类型 ID , 并以空格分隔的清单(空的(empty)表示影响所有类型)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2471 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2477 msgid "The id of lane in the simulation network" msgstr "仿真路网內的路段的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2488 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2494 msgid "Name of calibrator lane" msgstr "校准器所在车道的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2522 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2528 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3715 msgid "The id of the route the vehicle shall drive along" msgstr "车辆行驶路径的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2527 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2533 msgid "First calibrator flow departure time" msgstr "第一个校准器流量离开时间" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2533 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4962 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2539 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5108 msgid "End of departure interval" msgstr "出发间隔结束" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2543 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2549 msgid "The id of the vehicle type to use for this calibrator flow" msgstr "用于此校准器流量的车辆类型的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2555 msgid "Number of vehicles per hour, equally spaced" -msgstr "" +msgstr "每小時车辆数,等间距" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2555 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2561 msgid "Vehicle's speed" msgstr "车速" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2576 msgid "The id of Rerouter" msgstr "改道裝置的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2581 msgid "An edge id or a list of edge ids where vehicles shall be rerouted" msgstr "车辆应改道的路段识别名(id)或是清单" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2580 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2586 msgid "X,Y position in editor (Only used in netedit)" msgstr "编辑器中的 X,Y 位置(仅用于netedit )" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2586 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2592 msgid "Name of Rerouter" msgstr "改道裝置名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2591 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2597 msgid "The probability for vehicle rerouting (0-1)" msgstr "车辆重新搜寻路径(rerouting)机率(0-1)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2597 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2603 msgid "" "The waiting time threshold (in s) that must be reached to activate rerouting " "(default -1 which disables the threshold)" @@ -6168,7 +6295,7 @@ "启动路径重新搜寻必须达到的等待时间閾值, 以秒为单位(预设值为-1, 表示禁用此閾" "值)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2603 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2609 msgid "" "The list of vehicle types that shall be affected by this rerouter (empty to " "affect all types)" @@ -6176,1211 +6303,1243 @@ "受此重新搜寻路径裝置(rerouter)影响的车辆类型清单(空的表示所有车辆类型將被影" "响)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2608 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2614 msgid "" "Whether the router should be inactive initially (and switched on in the gui)" msgstr "路径重新搜寻裝置(rerouter)是否最初应处于非活动状态(并在 gui 中开启)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2630 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2636 msgid "Begin" msgstr "开始" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2636 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2642 msgid "End" msgstr "结束" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2656 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2680 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2662 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2686 msgid "allowed vehicles" msgstr "允许的车辆" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2661 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2685 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2667 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2691 msgid "disallowed vehicles" msgstr "不允许的车辆" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2674 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2680 msgid "Lane ID" msgstr "车道识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2704 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2724 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2750 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2710 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2756 msgid "SUMO Probability" msgstr "SUMO机率" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2718 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2724 msgid "ParkingArea ID" msgstr "停车区域识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2736 msgid "Enable or disable visibility for parking area reroutes" msgstr "启用或禁用停车区改道的可见度 ( visibility)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2770 msgid "Edge in which vaporizer is placed" msgstr "设置蒸发装置(vaporizer)的路段" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2769 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2775 msgid "Start Time" msgstr "开始时间" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2775 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2781 msgid "End Time" msgstr "结束时间" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2781 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2787 msgid "Name of vaporizer" msgstr "蒸发装置名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2802 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2808 msgid "The id of the polygon" msgstr "多边形物件的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2807 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2813 msgid "The shape of the polygon" msgstr "多边形物件的形狀" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2812 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2818 msgid "The RGBA color with which the polygon shall be displayed" msgstr "显示多边形的RGBA颜色" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2818 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2824 msgid "An information whether the polygon shall be filled" msgstr "多边形是否应该被填充的信息" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2824 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2830 msgid "The default line width for drawing an unfilled polygon" msgstr "绘制未填满的多边形的预设线宽" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2830 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2836 msgid "The layer in which the polygon lies" msgstr "多边形物件所在的图层" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2842 msgid "A typename for the polygon" msgstr "多边形物件的类型名称(typename)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2842 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2848 msgid "Polygon's name" msgstr "多边形的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2847 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2853 msgid "A bitmap to use for rendering this polygon" msgstr "用于呈现此多边形的点阵图" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2853 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2924 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3014 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3091 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2859 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2930 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3020 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3097 msgid "Enable or disable use image file as a relative path" msgstr "允许或禁止使用图像档案作为相对路径" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2859 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2930 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3020 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3097 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2865 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2936 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3026 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3103 msgid "Angle of rendered image in degree" msgstr "呈现的图像的角度 (以度为单位)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2873 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2944 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2879 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2950 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3040 msgid "The id of the POI" msgstr "兴趣点的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2878 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2884 msgid "The position in view" msgstr "视图中的位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2883 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2973 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3050 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2889 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2979 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3056 msgid "The color with which the POI shall be displayed" msgstr "显示兴趣点的颜色" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2889 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2979 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3056 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2895 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2985 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3062 msgid "A typename for the POI" msgstr "兴趣点的类型名称(typename)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2895 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2985 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3062 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3146 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2901 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2991 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3152 msgid "Name of POI" msgstr "兴趣点的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2900 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2990 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2906 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2996 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3073 msgid "The layer of the POI for drawing and selecting" msgstr "用于绘制或选择的兴趣点的图层" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2906 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2996 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3073 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2912 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3002 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3079 msgid "Width of rendered image in meters" msgstr "呈现的图像的宽度(以米为单位)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2912 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3002 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3079 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3008 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3085 msgid "Height of rendered image in meters" msgstr "呈现的图像的高度(以米为单位)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2918 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3008 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3085 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2924 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3014 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3091 msgid "A bitmap to use for rendering this POI" msgstr "用于呈现此兴趣点的点阵图" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2949 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2955 msgid "The name of the lane at which the POI is located at" msgstr "兴趣点所在车道的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2954 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2960 msgid "" "The position on the named lane or in the net in meters at which the POI is " "located at" msgstr "兴趣点在已命名车道或路网的位置(以米为单位)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2967 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2973 msgid "The lateral offset on the named lane at which the POI is located at" msgstr "兴趣点所在的已命名车道的侧向偏移值(lateral offset)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3040 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3046 msgid "The longitude position of the parking vehicle on the view" -msgstr "" +msgstr "视图中停车车辆的经度位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3045 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3051 msgid "The latitude position of the parking vehicle on the view" -msgstr "" +msgstr "视图中停车车辆的纬度位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3119 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3125 msgid "The id of the TAZ" msgstr "交通分区(TAZ)的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3124 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3130 msgid "The shape of the TAZ" msgstr "交通分区TAZ)的形状" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3129 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3135 msgid "TAZ center" msgstr "交通分区(TAZ)中心" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3140 msgid "An information whether the TAZ shall be filled" msgstr "是否应填写交通分区(TAZ)的信息" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3140 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3146 msgid "The RGBA color with which the TAZ shall be displayed" msgstr "显示的交通分区(TAZ)的颜色(RGBA)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3165 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3171 msgid "Depart weight associated to this Edge" msgstr "与此路段相关的出发权重(depart weight)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3185 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3191 msgid "Arrival weight associated to this Edget" msgstr "与此路段相关的抵达权重 (arrival weight)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3208 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3214 msgid "Traction substation ID" msgstr "牵引变电站的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3219 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3225 msgid "Voltage of at connection point for the overhead wire" msgstr "用于架空电线的接触点的电压" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3225 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3231 msgid "Current limit of the feeder line" msgstr "馈电线路的电流限制" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3239 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3245 msgid "Overhead wire segment ID" msgstr "架空电线区段识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3244 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3250 msgid "Substation to which the circuit is connected" msgstr "连接电路的变电站" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3249 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3255 msgid "List of consecutive lanes of the circuit" msgstr "电路(circuit)所在的连续车道清单" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3254 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3260 msgid "Starting position in the specified lane" msgstr "在指定车道上的开始位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3260 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3266 msgid "Ending position in the specified lane" msgstr "在指定车道上的结束位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3274 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3280 msgid "Inner lanes, where placing of overhead wire is restricted" msgstr "限制设置架空电线的內车道" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3287 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3293 msgid "Overhead wire clamp ID" msgstr "架空电线夹的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3292 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3298 msgid "" "ID of the overhead wire segment, to the start of which the overhead wire " "clamp is connected" msgstr "与架空电线夹起点连接的架空电线区段的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3297 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3303 msgid "ID of the overhead wire segment lane of overheadWireIDStartClamp" msgstr "架空电线开始夹(overheadWireIDStartClamp)的架空电线区段车道的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3302 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3308 msgid "" "ID of the overhead wire segment, to the end of which the overhead wire clamp " "is connected" msgstr "与架空电线夹终点连接的架空电线区段的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3313 msgid "ID of the overhead wire segment lane of overheadWireIDEndClamp" msgstr "架空电线终点夹(overheadWireIDEndClamp)的架空电线区段车道的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3330 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3336 msgid "The id of Route" msgstr "路径识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3335 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3367 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3341 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3373 msgid "" "The edges the vehicle shall drive along, given as their ids, separated using " "spaces" msgstr "车辆应沿着的路段行驶,以其ID形式给出,用空格分隔" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3340 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3372 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3346 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3378 msgid "This route's color" msgstr "路径的颜色" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3345 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3377 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3351 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3383 msgid "The number of times that the edges of this route shall be repeated" msgstr "此路径上的路段应该重复的次数" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3351 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3383 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3389 msgid "" "When defining a repeating route with stops and those stops use the until " "attribute," msgstr "在定义带有停靠点的重复路径时,这些停靠点使用 until 属性," -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3352 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3384 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3358 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3390 msgid "the times will be shifted forward by 'cycleTime' on each repeat" msgstr "每次重复时, 时间将通过周期时间(cycleTime)向前移动" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3399 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3405 msgid "The id of VehicleType distribution" msgstr "车辆类型(VehicleType)分布的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3421 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3427 msgid "The id of VehicleType" msgstr "车辆类型(VehicleType)的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3426 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3432 msgid "Vehicle Type Distribution" msgstr "车辆类型分布" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3431 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3437 msgid "An abstract vehicle class" msgstr "抽象的车辆类别" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3438 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3444 msgid "This vehicle type's color" msgstr "此车辆类型的顏色" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3443 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3449 msgid "The vehicle's netto-length (length) [m]" msgstr "车辆的净长度(长度)[米]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3454 msgid "Empty space after leader [m]" msgstr "领前者(leader)后的空白空间[米]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3453 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3459 msgid "The vehicle's maximum velocity [m/s]" msgstr "车辆的最大速度[米/秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3458 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3464 msgid "" "The vehicle's expected multiplicator for lane speed limits (or a " "distribution specifier)" msgstr "" +"车辆预期的车道速度限制乘数(multiplicator) (或一个分布说明符(specifier))" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3463 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3469 msgid "The vehicle's desired maximum velocity (interacts with speedFactor)." -msgstr "" +msgstr "车辆所需的最大速度 (与 speedFactor 交互作用)。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3464 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3470 msgid "Applicable when no speed limit applies (bicycles, some motorways) [m/s]" -msgstr "" +msgstr "适用于沒有速度限制的情況 (自行车, 某些高速公路) [m/s]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3469 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3475 msgid "An abstract emission class" msgstr "抽象的排放物类别" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3475 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3481 msgid "How this vehicle is rendered" msgstr "此车辆如何被呈現" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3481 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3487 msgid "The vehicle's width [m] (only used for drawing)" msgstr "车辆宽度 [米] (只用于绘制)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3487 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3493 msgid "The vehicle's height [m] (only used for drawing)" msgstr "车辆长度 [米] (只用于绘制)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3493 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3499 msgid "" "Image file for rendering vehicles of this type (should be grayscale to allow " "functional coloring)" msgstr "用于渲染这种类型的车辆的图像文件(应该是灰度的,以便进行功能性着色)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3498 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3504 msgid "The model used for changing lanes" msgstr "用于车道变换的模式" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3505 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3511 msgid "The model used for car-following" -msgstr "" +msgstr "使用的跟车模式" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3512 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3518 msgid "" "The number of persons (excluding an autonomous driver) the vehicle can " "transport" msgstr "车辆能运载的人数(不含自动驾驶车的驾驶员)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3517 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3523 msgid "The number of containers the vehicle can transport" msgstr "车辆能运载的集装箱(containers)数量" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3522 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3528 msgid "The time required by a person to board the vehicle" msgstr "乘客上车需要的时间" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3528 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3534 msgid "The time required to load a container onto the vehicle" msgstr "将集装箱(container)装载到车辆上所需的时间" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3534 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3540 msgid "The preferred lateral alignment when using the sublane-model" msgstr "使用sublane模式时,首选的横向排列方式" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3541 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3547 msgid "" "The minimum lateral gap at a speed difference of 50km/h when using the " "sublane-model" msgstr "使用sublane模式时, 在速差为50公里/小時下的最小侧向间距" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3547 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3553 msgid "The maximum lateral speed when using the sublane-model" msgstr "使用sublane模式时, 最大侧向速度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3553 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3559 msgid "" "The interval length for which vehicle performs its decision logic " "(acceleration and lane-changing)" msgstr "车辆执行决策逻辑(加速和车道变化)的时间间隔长度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3559 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3565 msgid "" "The probability when being added to a distribution without an explicit " "probability" msgstr "在沒有明确机率的情況下, 加入到分布中的机率" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3565 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3571 msgid "3D model file for this class" msgstr "用于此类别的三维模式" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3576 msgid "Carriage lengths" msgstr "车厢长度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3581 msgid "Locomotive lengths" msgstr "火车长度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3580 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3586 msgid "Gap between carriages" -msgstr "" +msgstr "车厢之间的距离" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3613 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3619 msgid "The ID of trip" msgstr "行程的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3618 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3663 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3669 msgid "The id of the vehicle type to use for this trip" msgstr "用于此行程的车辆类型识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3630 msgid "The ID of the edge the trip starts at" -msgstr "" +msgstr "旅程开始的路段的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3629 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3635 msgid "The ID of the edge the trip ends at" -msgstr "" +msgstr "旅程结束的路段的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3634 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3640 msgid "List of intermediate edge ids which shall be part of the trip" msgstr "应作为行程一部分的中间路段的清单" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3642 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3682 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3648 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3688 msgid "" "The departure time of the (first) trip which is generated using this trip " "definition" msgstr "使用行程定义所产生的(第一个)行程出发时间" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3658 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3664 msgid "The id of trip" msgstr "行程识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3669 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3675 msgid "The name of the junction the trip starts at" msgstr "行程开始的路口的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3674 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3680 msgid "The name of the junction the trip ends at" msgstr "行程结束的路口的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3698 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3743 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3704 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3749 msgid "The ID of the vehicle" msgstr "车辆的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3703 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3748 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3754 msgid "The id of the vehicle type to use for this vehicle" msgstr "使用此车辆的车辆类型识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3714 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3754 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3720 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3760 msgid "The index of the edge within route the vehicle starts at" msgstr "在路径上, 车辆开始的路段的指数(index)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3719 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3759 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3725 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3765 msgid "The index of the edge within route the vehicle ends at" msgstr "在路径上, 车辆结束的路段的指数(index)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3727 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3767 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3733 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3773 msgid "The time step at which the vehicle shall enter the network" msgstr "车辆应进入路网时的时间步长(time step)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3783 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3789 msgid "The ID of the flow" msgstr "流量的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3788 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3830 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3867 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3909 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3794 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3873 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3915 msgid "The id of the flow type to use for this flow" msgstr "用于此流量的流量类型的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3794 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3800 msgid "The ID of the edge the flow starts at" -msgstr "" +msgstr "流量开始的路段的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3799 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3805 msgid "The ID of the edge the flow ends at" -msgstr "" +msgstr "流量结束的路段的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3804 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3810 msgid "List of intermediate edge ids which shall be part of the flow" msgstr "流量使用的中间路段的识别名(id)清单" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3825 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3862 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3831 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3868 msgid "The id of the flow" msgstr "流量识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3842 msgid "The name of the junction the flow starts at" msgstr "流量开始的路口的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3841 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3847 msgid "The name of the junction the flow ends at" msgstr "流量结束的路口的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3873 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3879 msgid "The id of the route the flow shall drive along" msgstr "流量应该行经的路径的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3878 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3915 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3884 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3921 msgid "The index of the edge within route the flow starts at" msgstr "流量在其路径上开始的路段的指数(index)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3883 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3920 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3889 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3926 msgid "The index of the edge within route the flow ends at" msgstr "流量在其路径上结束的路段的指数(index)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3904 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3910 msgid "The name of the flow" msgstr "流量的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3957 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3963 msgid "The name of the lane the stop shall be located at" msgstr "停靠站应位于的车道的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3986 msgid "The lateral offset on the named lane at which the vehicle must stop" msgstr "车辆必須停靠于指定车道的侧向偏移值" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3996 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4842 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4002 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4956 msgid "BusStop associated with this stop" msgstr "与此停靠点相关的公交站" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4012 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4472 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4018 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4988 +msgid "TrainStop associated with this stop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4510 msgid "ContainerStop associated with this stop" msgstr "与此停靠点相关的集装箱停靠点(ContainerStop)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4050 msgid "ChargingStation associated with this stop" msgstr "与此停靠点相关的充点站(ChargingStation)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4044 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4066 msgid "ParkingArea associated with this stop" msgstr "与此停靠点相关的停车区域" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4090 msgid "The name of the lane the waypoint shall be located at" msgstr "定位点(waypoint)应位于的车道的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4091 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4113 msgid "The lateral offset on the named lane at which the vehicle must waypoint" msgstr "车辆必须在已指定车道上定点的侧向偏移值" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4129 msgid "BusWaypoint associated with this waypoint" msgstr "与此定位点相关的公交车定点(BusWaypoint)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4123 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4145 +msgid "TrainWaypoint associated with this waypoint" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4161 msgid "ContainerWaypoint associated with this waypoint" msgstr "与此定位点相关的集装箱定点(ContainerWaypoint)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4139 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4177 msgid "ChargingStation associated with this waypoint" msgstr "与此定点相关的充点站" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4155 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4193 msgid "ParkingArea associated with this waypoint" msgstr "与此定点相关的停车场区域" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4183 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4221 msgid "The time step at which the person shall enter the network" msgstr "人员应进入路网的时间步长" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4223 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4261 msgid "The time step at which the container shall enter the network" msgstr "货箱(container)应该进入路网的时间步长" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4259 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4289 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4297 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4327 msgid "The ID of the edge the transport starts at" -msgstr "" +msgstr "运送开始的路段的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4264 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4302 msgid "The ID of the edge the transport ends at" -msgstr "" +msgstr "运送结束的路段的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4269 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4337 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4521 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4637 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4744 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4559 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4834 msgid "arrival position on the destination edge" msgstr "目标路段上的抵达位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4275 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4299 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4337 msgid "list of vehicle alternatives to take for the transport" msgstr "运送的替代车辆清单" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4294 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4332 msgid "ID of the destination container stop" -msgstr "" +msgstr "货柜(container)目的地停靠点的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4321 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4359 msgid "The ID of the edge the tranship starts at" -msgstr "" +msgstr "转运开始的路段的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4326 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4364 msgid "The ID of the edge the tranship ends at" -msgstr "" +msgstr "转运结束的路段的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4331 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4367 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4392 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4405 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4430 msgid "The position at which the tranship shall enter the net" msgstr "运送应进入路网时的位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4343 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4373 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4404 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4381 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4411 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4442 msgid "speed of the container for this tranship in m/s" msgstr "运送货箱的速度(米/秒)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4395 msgid "The name of the edge the tranship starts at" msgstr "运送开始的路段的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4362 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4400 msgid "Id of the destination container stop" msgstr "货箱的目的地停靠点的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4387 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4669 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4425 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4759 msgid "id of the edges to walk" msgstr "步行的路段的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4398 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4674 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4693 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4436 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4783 msgid "Arrival position on the destination edge" msgstr "目的地路段上的抵达位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4427 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4797 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4465 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4911 msgid "The ID of the edge the stop shall be located at" -msgstr "" +msgstr "停靠站应该位于的路段的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4445 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4477 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4815 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4847 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4483 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4515 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4929 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4961 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4993 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5695 msgid "Minimum duration for stopping" msgstr "最短停靠时间" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4452 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4484 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4822 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4854 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5556 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4490 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4522 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4936 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4968 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5000 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5702 msgid "The time step at which the route continues" msgstr "路径继续时的时间长度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4458 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4490 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4496 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4528 msgid "Activity displayed for stopped container in GUI and output files " msgstr "在GUI及输入文件中显示停靠的货箱(container)的活动 " -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4511 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4551 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4589 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4623 msgid "The ID of the edge the person trip starts at" -msgstr "" +msgstr "人旅程开始的路段的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4516 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4554 msgid "The ID of the edge the person trip ends at" -msgstr "" +msgstr "人旅程结束的路段的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4527 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4561 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4595 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4565 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4599 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4633 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4667 msgid "List of possible vehicle types to take" msgstr "可供使用的车辆类型的清单" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4532 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4566 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4600 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4604 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4638 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4672 msgid "" "List of possible traffic modes. Walking is always possible regardless of " "this value" msgstr "可能的交通运具清单。无论此值如何,步行始终是可能的" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4537 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4571 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4605 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4609 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4677 msgid "list of vehicle alternatives to take for the person trip" msgstr "人行程可以使用的替代车辆清单" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4556 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4594 msgid "Id of the destination busStop" msgstr "公交车终点站的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4585 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4628 +msgid "Id of the destination trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4657 msgid "The name of the junction the person trip starts at" msgstr "人行程开始的路口的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4590 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4662 msgid "The name of the junction the person trip ends at" msgstr "人行程结束的路口的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4627 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4651 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4699 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4723 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4741 msgid "The ID of the edge the walk starts at" -msgstr "" +msgstr "步行开始的路段的名称(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4632 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4704 msgid "The ID of the edge the walk ends at" -msgstr "" +msgstr "步行结束的路段的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4656 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4728 msgid "Id of the destination bus stop" msgstr "公交车终点站的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4688 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4746 +msgid "Id of the destination train stop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4778 msgid "The id of the route to walk" msgstr "步行路径的识别名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4708 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4798 msgid "The name of the junction the walk starts at" msgstr "步行开始的路口的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4713 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4803 msgid "The name of the junction the walk ends at" msgstr "步行结束的路口的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4734 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4824 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4854 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4878 msgid "The ID of the edge the ride starts at" -msgstr "" +msgstr "乘车(ride)开始的路段的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4739 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4829 msgid "The ID of the edge the ride ends at" -msgstr "" +msgstr "乘车(ride)结束的路段的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4750 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4774 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4840 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4864 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4888 msgid "list of vehicle alternatives to take for the ride" msgstr "乘车时可以使用的替代车辆清单" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4769 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4859 msgid "ID of the destination bus stop" +msgstr "目的地公车站的识别名(ID)" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4883 +msgid "ID of the destination train stop" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4828 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4860 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4942 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4974 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5006 msgid "Activity displayed for stopped person in GUI and output files " msgstr "在GUI及输出文件中为停等人员显示的活动 " -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4872 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5018 msgid "This vehicle's color" msgstr "此车辆的顏色" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4878 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5024 msgid "The lane on which thevehicle shall be inserted" msgstr "车辆应该被置入的车道" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4884 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5030 msgid "The position at which the vehicle shall enter the net" msgstr "车辆应进入路网时的所在位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4890 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5036 msgid "The speed with which the vehicle shall enter the network" msgstr "车辆进入路网时的应有速度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4896 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5042 msgid "The lane at which the vehicle shall leave the network" msgstr "车辆应离开路网时所在车道" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4902 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5048 msgid "The position at which the vehicle shall leave the network" msgstr "车辆离开路网时所在位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4908 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5054 msgid "The speed with which the vehicle shall leave the network" msgstr "车辆离开路网时应有的速度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4914 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5060 msgid "" "A string specifying the id of a public transport line which can be used when " "specifying person rides" msgstr "当指定人员乘車(ride)时, 一个用于指定公共运输路线的识别名的字串" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4919 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5065 msgid "The number of occupied seats when the vehicle is inserted" msgstr "当车辆被置入路网时, 已占用的座位数" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4925 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5071 msgid "The number of occupied container places when the vehicle is inserted" msgstr "车辆置入时, 已占用的容器位置数" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4931 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5077 msgid "" "The lateral position on the departure lane at which the vehicle shall enter " "the net" msgstr "车辆进入路网时所处的出发车道的侧向位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4937 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5083 msgid "" "The lateral position on the arrival lane at which the vehicle shall arrive" msgstr "车辆抵达时所在抵达车道的側向位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4943 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5089 msgid "Insertion checks" msgstr "插入检查" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4956 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5102 msgid "First flow departure time" msgstr "第一个流量的出发时间" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4968 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4989 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5114 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5135 msgid "probability for emitting a flow each second" msgstr "每秒注入流量的概率" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4969 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5115 msgid "(not together with vehsPerHour or period)" msgstr "(不与vehsPerHour 或周期一起使用)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4975 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5121 msgid "Number of flows per hour, equally spaced" msgstr "每小时流量的数量,等间隔" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4976 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5122 msgid "(not together with period or probability or poisson)" msgstr "(不与周期或概率或泊松一起使用)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4982 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5128 msgid "Insert equally spaced flows at that period" msgstr "在该周期內注入等间距的流量" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4983 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5129 msgid "(not together with vehsPerHour or probability or poisson)" msgstr "(不与 vehsPerHour , 概率或帕松(poisson)分配一起使用)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4990 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5136 msgid "(not together with vehsPerHour or period or poisson)" msgstr "(不与 vehsPerHour , 周期或帕松(poisson)分配一起使用)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4996 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5142 msgid "" "Insert flow expected vehicles per second with poisson distributed insertion " "rate" msgstr "根据帕松(poisson)分配注入率, 每秒注入预期车辆的流量" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4997 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5143 msgid "(not together with period or vehsPerHour or probability)" msgstr "(不与周期, 每小时车辆数(vehsPerHour)或概率一起使用)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5156 msgid "The acceleration ability of vehicles of this type [m/s^2]" msgstr "此类型车辆的加速能力 [米/平方秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5016 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5162 msgid "The deceleration ability of vehicles of this type [m/s^2]" msgstr "此类型车辆的减速能力[米/平方秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5022 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5168 msgid "" "The apparent deceleration of the vehicle as used by the standard model [m/" "s^2]" msgstr "标准模式使用的车辆视在減速 [米/平方秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5174 msgid "The maximal physically possible deceleration for the vehicle [m/s^2]" msgstr "车辆的最大物理可能減速度 [米/平方秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5034 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5041 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5180 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5187 msgid "Car-following model parameter" msgstr "跟车模式参数" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5047 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5193 msgid "SKRAUSSX parameter 1" msgstr "SKRAUSSX参数1" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5052 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5198 msgid "SKRAUSSX parameter 2" msgstr "SKRAUSSX参数2" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5057 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5203 msgid "SKRAUSSX parameter 3" msgstr "SKRAUSSX参数3" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5062 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5208 msgid "SKRAUSSX parameter 4" msgstr "SKRAUSSX参数4" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5213 msgid "SKRAUSSX parameter 5" msgstr "SKRAUSSX参数5" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5072 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5218 msgid "EIDM Look ahead / preview parameter [s]" msgstr "EIDM 前瞻/预览参数 [秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5078 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5224 msgid "EIDM AP Reaction Time parameter [s]" msgstr "EIDM AP 反应时间参数 [秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5084 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5230 msgid "EIDM Wiener Process parameter for the Driving Error [s]" msgstr "驾驶误差的EIDM 维纳过程(Wiener process)参数 [秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5090 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5236 msgid "EIDM Wiener Process parameter for the Estimation Error [s]" msgstr "预测错误的EIDM 维纳过程(Wiener process)参数 [秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5096 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5242 msgid "EIDM Coolness parameter of the Enhanced IDM [-]" msgstr "改善的IDM模式的EIDM 冷却度参数 [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5103 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5249 msgid "EIDM leader speed estimation error parameter [-]" msgstr "EIDM前领车速度的预测错误参数[-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5109 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5255 msgid "EIDM gap estimation error parameter [-]" msgstr "EIDM 间距预测错误参数 [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5115 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5261 msgid "EIDM driving error parameter [-]" msgstr "EIDM 驾驶错误参数 [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5121 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5267 msgid "EIDM maximal jerk parameter [m/s^3]" msgstr "EIDM 最大急卫参数 [米/立方秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5273 msgid "" "EIDM maximal negative acceleration between two Action Points (threshold) [m/" "s^2]" msgstr "在两个动作点(action points)之间的EIDM 最大负加速度(阈值) [米/平方秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5133 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5279 msgid "" "EIDM Time parameter until vehicle reaches amax after startup/driveoff [s]" msgstr "在启动//行驶后车辆达到最大加速度的EIDM时间参数[秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5139 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5285 msgid "EIDM Flatness parameter of startup/driveoff curve [-]" msgstr "EIDM 启动/起步曲线平坦度参数 [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5145 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5291 msgid "EIDM Shift parameter of startup/driveoff curve [-]" msgstr "EIDM 启动/起步曲线的偏移参数 [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5151 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5297 msgid "" "EIDM parameter if model shall include vehicle dynamics into the acceleration " "calculation [0/1]" msgstr "EIDM参数,如果模式应将车辆动力学纳入加速度计算 [0/1]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5157 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5303 msgid "" "EIDM parameter how many vehicles are taken into the preview calculation of " "the driver (at least always 1!) [-]" msgstr "EIDM 参数, 有多少车辆被纳入驱动程序的预览计算(至少总是 1!)[-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5163 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5169 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5309 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5315 msgid "Peter Wagner 2009 parameter" msgstr "彼得·瓦格纳 (Peter Wagner) 2009 参数" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5175 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5181 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5321 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5327 msgid "IDMM parameter" msgstr "IDMM参数" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5187 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5193 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5199 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5205 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5211 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5217 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5223 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5229 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5235 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5333 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5339 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5345 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5351 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5363 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5381 msgid "W99 parameter" msgstr "W99 参数" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5241 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5246 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5387 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5392 msgid "Wiedemann parameter" msgstr "魏德曼(Wiedemann)参数" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5251 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5397 msgid "MinGap factor parameter" msgstr "最小间距(MinGap)因素参数" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5256 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5402 msgid "K parameter" msgstr "K 参数" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5261 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5407 msgid "Kerner Phi parameter" msgstr "克纳(Kerner)斐(Phi)参数" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5266 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5412 msgid "IDM Delta parameter" msgstr "IDM 德尔塔(Delta)参数" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5271 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5417 msgid "IDM Stepping parameter" msgstr "IDM步进参数" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5276 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5422 msgid "Train Types" msgstr "火车类型" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5289 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5435 msgid "" "Minimum distance to pedestrians that are walking towards the conflict point " "with the ego vehicle." msgstr "行人走向与自我(ego)车辆的冲突点的最小距离。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5295 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5441 msgid "" "The accumulated waiting time after which a vehicle will drive onto an " "intersection even though this might cause jamming." msgstr "即使这可能会导致拥堵,车辆将驶进路口的累积等待时间。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5301 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5447 msgid "" "This value causes vehicles to violate a yellow light if the duration of the " "yellow phase is lower than the given threshold." msgstr "如果黄灯相位的时间低于给定的閾值,则此值会导致车辆闯黃灯。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5453 msgid "" "This value causes vehicles to violate a red light if the duration of the red " "phase is lower than the given threshold." msgstr "如果红灯相位的时间低于給定的閾值,则此值会导致车辆闯红灯。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5459 msgid "" "This value causes vehicles affected by jmDriveAfterRedTime to slow down when " "violating a red light." msgstr "此值会导致受 jmDriveAfterRedTime 影响的车辆在闯红灯时减速。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5319 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5465 msgid "" "This value causes vehicles to ignore foe vehicles that have right-of-way " "with the given probability." msgstr "此值会导致车辆忽略具有給定概率的行驶路权的对手(foe)车辆。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5325 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5471 msgid "This value is used in conjunction with jmIgnoreFoeProb." msgstr "此值与 jmIgnoreFoeProb 联合使用。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5326 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5472 msgid "" "Only vehicles with a speed below or equal to the given value may be ignored." msgstr "只有速度低于或等于給定值的车辆才能被忽略。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5332 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5478 msgid "" "This value configures driving imperfection (dawdling) while passing a minor " "link." msgstr "此值用于设定驾驶员在经过次要路段时, 不完善的驾驶情况(磨蹭 dawdling) 。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5338 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5484 msgid "" "This value defines the minimum time gap when passing ahead of a prioritized " "vehicle. " msgstr "此值定义在优先车辆前面超车时的最小时间间隔。 " -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5344 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5490 msgid "Willingess of drivers to impede vehicles with higher priority" msgstr "驾驶员阻碍具有更高优先权车辆的意愿" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5503 msgid "" "The eagerness for performing strategic lane changing. Higher values result " "in earlier lane-changing." msgstr "渴望进行策略性车道变换的程度。较高的值会导致较早的车道变化。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5363 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5509 msgid "" "The willingness for performing cooperative lane changing. Lower values " "result in reduced cooperation." msgstr "进行合作性的车道变换的意愿。较低的值会导致合作減少。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5515 msgid "" "The eagerness for performing lane changing to gain speed. Higher values " "result in more lane-changing." msgstr "渴望进行车道变化以提高速度的程度。值越高,車道变换越多。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5521 msgid "" "The eagerness for following the obligation to keep right. Higher values " "result in earlier lane-changing." msgstr "渴望遵循靠右的义务的程度。值越高,车道变换越早。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5381 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5527 msgid "" "The eagerness for using the configured lateral alignment within the lane." msgstr "渴望使用已设定( configured)的车道內侧向对齐方式的程度。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5382 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5528 msgid "" "Higher values result in increased willingness to sacrifice speed for " "alignment." msgstr "值越高,则牺牲速度以进行对齐(alignment)的意愿就越高。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5388 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5534 msgid "" "The eagerness for overtaking through the opposite-direction lane. Higher " "values result in more lane-changing." msgstr "渴望利用对向车道超車的程度。值越高,车道变换越多。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5394 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5540 msgid "Willingness to encroach laterally on other drivers." msgstr "侧向的侵犯干扰其他驾驶者的意愿。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5400 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5546 msgid "" "Minimum lateral gap when encroaching laterally on other drives (alternative " "way to define lcPushy)" msgstr "侧向地侵犯干扰其他驾驶者的最小侧向间距(也可以用lcPushy來定义)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5406 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5552 msgid "Willingness to accept lower front and rear gaps on the target lane." msgstr "接受目标车道上较低的前后间距的意愿。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5412 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5558 msgid "Dynamic factor for modifying lcAssertive and lcPushy." msgstr "用于修改lcAssertive和lcPushy的动态系数。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5418 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5564 msgid "" "Time to reach maximum impatience (of 1). Impatience grows whenever a lane-" "change manoeuvre is blocked." msgstr "达到最大不耐烦的时间(1)。每当车道变换被阻止时,不耐烦的程度就会增加。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5424 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5570 msgid "Maximum lateral acceleration per second." msgstr "每秒最大侧向加速度。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5430 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5576 msgid "" "Factor for configuring the strategic lookahead distance when a change to the " "left is necessary (relative to right lookahead)." msgstr "" "当需要向左变换(相当于向右前看)时, 用于设定策略性向前看距离的系数(factor)。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5436 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5582 msgid "" "Factor for configuring the threshold asymmetry when changing to the left or " "to the right for speed gain." msgstr "当为了提高速度而向左或向右变换时, 为了设定閾值不对称的系数。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5442 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5588 msgid "Upper bound on lateral speed when standing." msgstr "站立时侧向速度的上限。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5594 msgid "" "Upper bound on lateral speed while moving computed as lcMaxSpeedLatStanding " "+ lcMaxSpeedLatFactor * getSpeed()" @@ -7388,226 +7547,226 @@ "移动时侧向速度上限的计算为lcMaxSpeedLatStanding + lcMaxSpeedLatFactor * " "getSpeed()" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5454 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5600 msgid "" "Distance to an upcoming turn on the vehicles route, below which the alignment" msgstr "与车辆路线上即将出现的转弯的距离,低于该转弯的路线" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5455 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5601 msgid "should be dynamically adapted to match the turn direction." msgstr "应该动态地调整以符合转弯方向。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5461 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5607 msgid "The probability for violating rules gainst overtaking on the right." msgstr "违反规则的概率以能进行右侧超车。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5467 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5613 msgid "Time threshold for the willingness to change right." msgstr "愿意向右变换的时间阈值。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5473 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5619 msgid "" "Speed difference factor for the eagerness of overtaking a neighbor vehicle " "before changing lanes (threshold = factor*speedlimit)." msgstr "改变车道前急于超越邻车的速度差系数(阈值=系数*速度限制)。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5495 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5641 msgid "The name of the person" msgstr "人的姓名" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5500 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5646 msgid "The id of the person type to use for this person" msgstr "这个人要使用的人的类型的id" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5506 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5652 msgid "This person's color" msgstr "这个人的颜色" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5512 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5658 msgid "The position at which the person shall enter the net" msgstr "该人应在什么位置入网" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5525 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5671 msgid "The name of the container" msgstr "货箱的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5530 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5676 msgid "The id of the container type to use for this container" msgstr "这个货箱要使用的货箱类型的id" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5536 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5682 msgid "This container's color" msgstr "这个货箱的颜色" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5562 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5708 msgid "" "If set to a non-negative time value, then the stop duration can be extended " "at most by the extension value in seconds" msgstr "如果设置为一个非负的时间值,那么停止时间最多可以延长秒数的延长值" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5568 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5714 msgid "Whether a person or container or bth may end the stop" msgstr "一个人或货箱或bth是否可以结束停留" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5721 msgid "List of elements that must board the vehicle before it may continue" msgstr "在车辆继续之前,必須登上车辆的要素清单" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5580 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5726 msgid "List of elements that can board the vehicle before it may continue" msgstr "在车辆继续之前,可以登上车辆的要素清单" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5585 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5731 msgid "Whether the vehicle stops on the road or beside" msgstr "无论车辆是停在路上还是停在旁边" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5592 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5738 msgid "Activity displayed for stopped person in GUI and output files" msgstr "在图形用户界面和输出文件中显示被拦截者的活动" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5597 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5743 msgid "" "Parameter to be applied to the vehicle to track the trip id within a " "cyclical public transport route" msgstr "应用于车辆的参数,以跟踪环线公共交通路线内的行程ID" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5602 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5748 msgid "" "New line attribute to be set on the vehicle when reaching this stop (for " "cyclical public transport route)" msgstr "当到达这一站时,将在车辆上设置新的线路属性(适用于环线公共交通线路)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5608 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5754 msgid "Speed to be kept while driving between startPos and endPos" msgstr "在startPos和endPos之间行驶时要保持的速度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5614 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5760 msgid "" "Whether the stop may be skipped if no passengers wants to embark or disembark" msgstr "如果没有乘客想上船或下船,是否可以跳过该站" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5621 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5767 msgid "" "transfer time if there shall be a jump from this stop to the next route edge" msgstr "如果从这一站跳到下一个路线的路段,则转移时间" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5789 msgid "Data set ID" msgstr "数据组ID" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5659 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5805 msgid "Interval ID" msgstr "间隔ID" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5665 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5811 msgid "Data interval begin time" msgstr "数据间隔开始时间" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5671 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5817 msgid "Data interval end time" msgstr "数据间隔结束时间" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5687 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5833 msgid "edge ID" msgstr "路段 ID" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5701 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5847 msgid "The ID of the edge the edgeRel starts at" -msgstr "" +msgstr "路段关系(edgeRel)开始的路段的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5706 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5852 msgid "The ID of the edge the edgeRel ends at" -msgstr "" +msgstr "路段关系(edgeRel)结束的路段的识别名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5720 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5866 msgid "The name of the TAZ the TAZRel starts at" msgstr "交通分区Rel开始的交通分区的名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5725 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5871 msgid "The name of the TAZ the TAZRel ends at" msgstr "交通分区Rel结束的交通分区名称" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5760 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5906 msgid "The id of this set of measurements" msgstr "这组测量值的id" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5765 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5911 msgid "The path to the output file. The path may be relative" msgstr "输出文件的路径。该路径可以是相对的" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5775 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5921 msgid "" "The time to start writing. If not given, the simulation's begin is used." msgstr "开始写作的时间。如果没有给出,则使用仿真的开始时间。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5780 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5926 msgid "The time to end writing. If not given the simulation's end is used." msgstr "结束写作的时间。如果没有给出,则使用仿真的结束时间。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5785 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5931 msgid "" "If set to true, edges/lanes which were not use by a vehicle during this " "period will not be written" msgstr "如果设置为 \"true\",在此期间没有被车辆使用的路段/车道将不会被写入" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5792 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5938 msgid "If set, junction internal edges/lanes will be written as well" msgstr "如果设置,结点内部路段/车道也将被写入" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5798 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5944 msgid "" "The maximum travel time in seconds to write if only very small movements " "occur" -msgstr "" +msgstr "如果仅发生非常小的移动, 则写出以秒为单位最长旅行时间" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5804 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5950 msgid "" "Consider an edge/lane unused if it has at most this many sampled seconds" msgstr "如果一路段/车道最多有这么多的采样秒数,就认为它没有被使用" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5810 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5956 msgid "The maximum speed to consider a vehicle halting;" msgstr "认为车辆停止的最大速度;" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5816 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5962 msgid "space separated list of vehicle type ids to consider" msgstr "以空格分隔的要考虑的车辆类型ID清单" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5821 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5967 msgid "" "whether aggregation should be performed over all vehicles that entered the " "edge/lane in the aggregation interval" msgstr "是否应该对在聚集区间内进入路段/车道的所有车辆进行聚集" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5827 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5973 msgid "" "Whether pedestrians shall be recorded instead of vehicles. Allowed value is " "walk" msgstr "是否应记录行人而不是车辆。允许的值是步行" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5832 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5978 msgid "List of attribute names that shall be written" msgstr "应被写入的属性名称列表" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5837 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5983 msgid "Restrict output to the given list of edge ids" msgstr "将输出限制在给定的路段ID列表中" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5842 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5988 msgid "Restrict output to the given the list of edges given in file" msgstr "将输出限制在文件中给出的路段列表中" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5847 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5993 msgid "" "Whether the traffic statistic of all edges shall be aggregated into a single " "value" msgstr "是否应将所有路段的流量统计汇总为一个单一的值" -#: /home/micha/programming/sumo/src/netedit/elements/GNEHierarchicalElement.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\GNEHierarchicalElement.cpp:421 msgid "Some child meanData were lost during sorting" msgstr "一些子meanData 在分类过程中丢失" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:96 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:96 msgid "" "element must be at least networkElement, additional, TAZ, demandElement, " "dataElement or meanData" @@ -7615,2013 +7774,2183 @@ "要素必须少是 networkElement、additional、TAZ、demandElement、dataElement 或 " "meanData" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:100 msgid "" "element can be only a networkElement, additional, demandElement, dataElement " "or meanData at the same time" msgstr "" "要素只能同时是networkElement、附加要素、demandElement、dataElement 或meanData" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:104 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:104 msgid "element can be only a shape, TAZ or wire element at the same time" msgstr "要素只能同时是图形物件、分区或是通讯线" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:108 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:108 msgid "" "If attributes mask the start and end position, both attributes have to be " "defined" msgstr "如果属性掩盖了开始和结束的位置,两个属性都必须被定义" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:134 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:134 msgid "Attributes aren't combinables" msgstr "属性不是可组合的" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:136 msgid "allow need a disallow attribute in the same tag" msgstr "在同一个标签中,允许需要一个不允许属性" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:138 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:138 msgid "disallow need an allow attribute in the same tag" msgstr "不允许需要在同一标签中的允许属性" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:152 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:152 #, c-format msgid "attribute '%' doesn't have a default value" msgstr "属性'%'没有默认值" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:158 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:158 #, c-format msgid "Attribute '%' not defined" msgstr "属性'%'未定义" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:165 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:165 #, c-format msgid "Maximum number of attributes for tag % exceeded" msgstr "超过了标签的最大属性数 %" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:170 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:170 #, c-format msgid "Attribute '%' already inserted" msgstr "属性'%'已插入" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:207 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:207 #, c-format msgid "Attribute '%' doesn't exist" msgstr "属性'%'不存在" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAccess.cpp:173 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEEntryExitDetector.cpp:97 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEInductionLoopDetector.cpp:115 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEInstantInductionLoopDetector.cpp:111 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:174 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:190 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:197 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:136 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:143 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:201 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:132 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:137 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAccess.cpp:173 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEEntryExitDetector.cpp:97 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEInductionLoopDetector.cpp:115 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEInstantInductionLoopDetector.cpp:111 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:174 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:190 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:197 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:143 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:201 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:132 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:137 msgid " > lanes's length" msgstr " > 车道的长度" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:148 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:149 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:146 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:128 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:129 -msgid "Copy " -msgstr "复制 " - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:148 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:146 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:128 -msgid " name to clipboard" -msgstr " 名称至剪贴板" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:149 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:129 -msgid " typed name to clipboard" -msgstr " 输入名字到剪贴板上" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZSourceSink.cpp:146 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:128 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:129 +#, c-format +msgid "Copy % name to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:148 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZSourceSink.cpp:147 +msgid "Copy % typed name to clipboard" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:156 msgid "Open " msgstr "打开 " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:156 msgid " Dialog" msgstr " 对话" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:164 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:174 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:164 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:174 msgid "Cursor position over additional shape: " msgstr "光标在附加形状上的位置 : " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:168 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:168 msgid "Cursor position over lane: " msgstr "光标在车道上的位置: " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:178 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:178 msgid "Mouse position over edge: " msgstr "鼠标在路段的位置: " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:181 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:139 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:181 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:139 msgid "Cursor position in view: " msgstr "光标在视图中的位置: " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:398 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:398 msgid "Invalid number of edges" msgstr "无效的路段号" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:104 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:104 msgid "add bus stop '" msgstr "添加公共汽车站 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:148 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:148 msgid "add train stop '" msgstr "添加火车站 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:186 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:186 msgid "" "Could not build access in netedit; busStop parent already owns an access in " "the edge '" msgstr "无法在netedit中建立访问;busStop父级已经在路段拥有一个访问" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:188 -msgid "Could not build access in netedit; The lane '" -msgstr "无法在netedit中建立访问;车道'" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:188 -msgid "' doesn't support pedestrians" -msgstr "'不支持行人" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:188 +#, c-format +msgid "" +"Could not build access in netedit; The lane '%' doesn't support pedestrians" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:194 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:194 msgid "add access in '" msgstr "在''中添加访问权限" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:235 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:235 msgid "add container stop '" msgstr "添加货箱停止'" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:279 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:279 msgid "add charging station '" msgstr "加装充电站'" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:322 -msgid "Could not build parking area with ID '" -msgstr "不能用ID建立停车区 '" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:322 -msgid "' in netedit; Invalid departPos over lane." -msgstr "netedit中的';在车道上无效的出发位置。" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:323 +#, c-format +msgid "" +"Could not build parking area with ID '%' in netedit; Invalid departPos over " +"lane." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:330 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:331 msgid "add parking area '" msgstr "添加停车区 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:352 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:353 msgid "" "Could not build parking space in netedit; attribute width cannot be parse to " "float." msgstr "无法在netedit中建立停车位;属性宽度不能被解析为浮动值。" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:354 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:355 msgid "" "Could not build parking space in netedit; attribute length cannot be parse " "to float." msgstr "无法在netedit中建立停车位;属性长度不能被解析为浮点。" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:356 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:357 msgid "" "Could not build parking space in netedit; attribute angle cannot be parse to " "float." msgstr "无法在netedit中建立停车位;属性长度不能被解析为浮点。" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:377 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:378 msgid "add parking space in '" msgstr "在''中添加停车位" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:422 msgid "add induction loop '" msgstr "添加感应线圈 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:461 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:519 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:528 -msgid "Could not build lane area detector with ID '" -msgstr "无法建立ID为''的车道区检测器" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:461 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:528 -msgid "' in netedit; invalid traffic light ID." -msgstr "'在netedit中;无效的交通信号灯ID。" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:462 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:529 +#, c-format +msgid "" +"Could not build lane area detector with ID '%' in netedit; invalid traffic " +"light ID." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:486 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:547 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:487 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:548 msgid "add lane area detector '" msgstr "添加车道区域检测器 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:519 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1543 -msgid "' in netedit; Lanes aren't consecutives." -msgstr "netedit中的';车道不是连续的。" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:520 +#, c-format +msgid "" +"Could not build lane area detector with ID '%' in netedit; Lanes aren't " +"consecutives." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:592 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:593 msgid "add entry-exit detector '" msgstr "添加进入-退出检测器'" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:627 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:628 msgid "add entry detector in '" msgstr "在''添加进入检测器" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:662 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:663 msgid "add exit detector in '" msgstr "在''添加出去检测器" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:699 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:700 msgid "add instant induction loop '" msgstr "添加即时感应线圈" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:749 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:750 msgid "add lane calibrator '" msgstr "添加车道校准器'" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:803 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:804 msgid "add calibrator '" msgstr "添加校准器 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:844 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:845 msgid "add calibrator flow in '" msgstr "在''中加入流量校准器" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:900 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:901 msgid "add rerouter '" msgstr "添加掉头'" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:939 -msgid "Could not build interval with ID '" -msgstr "无法用ID' 建立时间间隔" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:939 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1244 -msgid "' in netedit; begin is greather than end." -msgstr "netedit中的';开始(begin)比结束(end)要大。" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:940 +#, c-format +msgid "" +"Could not build interval with ID '%' in netedit; begin is greather than end." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:947 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:948 msgid "add rerouter interval in '" msgstr "在''中添加掉头间隔时间" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "Could not build interval with begin '" -msgstr "无法建立以'开始'为开头的间隔" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "' in '" -msgstr "'在 '" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "' due overlapping." -msgstr "'由于有重叠。" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:957 +#, c-format +msgid "" +"Could not build interval with begin '%' and end '%' in '%' due overlapping." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:978 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:979 msgid "add closing lane reroute in '" msgstr "在''添加关闭的车道改道" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1006 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1007 msgid "add closing reroute in '" msgstr "在''中添加关闭掉头" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1033 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1034 msgid "add dest prob reroute in '" msgstr "在''中添加目的地可能的重新路由" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1061 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1062 msgid "add parking area reroute in '" msgstr "在''添加停车区''改变路线" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1089 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1090 msgid "add route prob reroute in '" msgstr "在''添加路线可能会改变路线" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1126 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1127 msgid "add route probe '" msgstr "添加路线探针 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1172 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1173 msgid "add Variable Speed Sign '" msgstr "添加可变速度标志 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1213 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1214 msgid "add VSS Step in '" msgstr "在''中添加VSS步骤" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1244 -msgid "Could not build Vaporizer with ID '" -msgstr "无法建立具有ID的汽化器'" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1245 +#, c-format +msgid "" +"Could not build Vaporizer with ID '%' in netedit; begin is greather than end." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1250 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1251 msgid "add vaporizer in '" msgstr "在''添加汽化器" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1305 -msgid "Could not build TAZ with ID '" -msgstr "无法建立ID为'的交通分区(TAZ)" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1305 -msgid "' in netedit; Invalid Shape." -msgstr "netedit中的';无效的形状。" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1306 +#, c-format +msgid "Could not build TAZ with ID '%' in netedit; Invalid Shape." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1316 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1317 msgid "add TAZ '" msgstr "添加 交通分区(TAZ)" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1377 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1471 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1378 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1472 msgid "add TAZ Sink in '" msgstr "在''中加入交通分区(TAZ)沉入其中" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1400 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1449 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1401 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1450 msgid "add TAZ Source in '" msgstr "在''添加交通分区(TAZ)来源" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1411 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1412 msgid "update TAZ Source in '" msgstr "更新交通分区(TAZ)来源,在''中" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1482 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1483 msgid "update TAZ Sink in '" msgstr "更新交通分区(TAZ)沉入其中''" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1511 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1512 msgid "add taction substation '" msgstr "添加行动分站 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1543 -msgid "Could not build overhead wire with ID '" -msgstr "无法用ID建立高架线'" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1544 +#, c-format +msgid "" +"Could not build overhead wire with ID '%' in netedit; Lanes aren't " +"consecutives." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1555 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1556 msgid "add overhead wire '" msgstr "添加高架线 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1604 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1605 msgid "add polygon '" msgstr "添加多边形 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1637 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1680 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1719 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1638 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1681 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1720 msgid "add POI '" msgstr "添加兴趣点'" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1711 -msgid "Could not build POI with ID '" -msgstr "无法建立ID为''的兴趣点" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1711 -msgid "' in netedit; Network requires a geo projection." -msgstr "'在netedit中;网络需要一个地理投影。" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1925 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:116 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -msgid "Could not build " -msgstr "无法建立 " - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -msgid " with ID '" -msgstr " ID为 '" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -msgid "' in netedit; ID contains invalid characters." -msgstr "'在netedit中;ID包含无效的字符。" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -msgid "' in netedit; Invalid position over lane." -msgstr "netedit中的';在车道上的位置无效。" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -msgid "' in netedit; declared twice." -msgstr "' 在netedit中;声明了两次。" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1925 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -msgid " doesn't exist." -msgstr " 不存在。" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -msgid "' in netedit; attribute " -msgstr "'在netedit中;属性 " - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -msgid " cannot be negative." -msgstr " 不能是负数。" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -msgid "' in netedit; list of VTypes isn't valid." -msgstr "netedit中的';VTypes的列表是无效的。" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -msgid "' in netedit; filename is invalid." -msgstr "'在netedit中;文件名是无效的。" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -msgid "' in netedit; list of lanes isn't valid." -msgstr "'在netedit中;车道的列表是无效的。" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -msgid " in netedit; " -msgstr " 在netedit中; " - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:194 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1712 +#, c-format +msgid "Could not build POI with ID '%' in netedit" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1712 +msgid "Network requires a geo projection." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1908 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1914 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1920 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1932 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1938 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1944 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1950 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:245 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:257 +msgid "Could not build % with ID '%' in netedit" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1908 +msgid "ID contains invalid characters." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1914 +msgid "Invalid position over lane." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1920 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:245 +msgid "Declared twice." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1926 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2005 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2023 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:251 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:116 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:132 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2198 +#, c-format +msgid "Could not build % in netedit" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1926 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2005 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2023 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:251 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:257 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2198 +#, c-format +msgid "% doesn't exist." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1932 +#, c-format +msgid "Attribute % cannot be negative." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1938 +msgid "List of VTypes isn't valid." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1944 +msgid "Filename is invalid." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1950 +msgid "List of lanes isn't valid." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:194 msgid "Both edges and lanes aren't defined" msgstr "路段和车道都没有定义" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:238 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:480 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:238 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:480 msgid "Both myEdge and myLane aren't defined" msgstr "myEdge和myLane都没有被定义" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibratorFlow.cpp:94 -msgid "calibratorFlow of calibrator '" -msgstr "校准器 的校准流程'" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibratorFlow.cpp:95 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibratorFlow.cpp:94 +#, c-format msgid "" -"' cannot be written. Either type or vehsPerHour or speed must be enabled" -msgstr "'不能被写入。任意类型或vehsPerHour或速度必须被启用" +"calibratorFlow of calibrator '%' cannot be written. Either type or " +"vehsPerHour or speed must be enabled" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:179 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:125 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:179 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:125 msgid "lanes aren't consecutives" msgstr "车道不是连续的" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:183 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:129 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:183 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:129 msgid "lanes aren't connected" msgstr "车道没有连接" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:202 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:141 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:202 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:141 msgid " and " msgstr " 和 " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:115 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:115 msgid "' needs at least one entry and one exit" msgstr "'至少需要一个入口和一个出口" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:317 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:317 msgid "An entry-exit detector needs at least one entry detector" msgstr "一个出入境检测器至少需要一个入境检测器" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:320 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:320 msgid "An entry-exit detector needs at least one exit detector" msgstr "一个入口-出口探测器至少需要一个出口探测器" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:319 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:319 msgid "Release from lane" msgstr "从车道放行" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:323 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:323 msgid "Attach to nearest lane" msgstr "连接到最近的车道" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:214 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:214 msgid "Simplify Shape" msgstr "简化形状" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:214 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:214 msgid "Replace current shape with a rectangle" msgstr "用矩形取代当前形状" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:220 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:220 msgid "Open shape" msgstr "开放式形状" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:220 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:220 msgid "Open polygon's shape" msgstr "打开多边形的外形" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:222 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:65 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:222 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:66 msgid "Close shape" msgstr "关闭的形状" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:222 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:222 msgid "Close polygon's shape" msgstr "关闭多边形的形状" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:224 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:224 msgid "Select elements within polygon" msgstr "选择多边形内的元素" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:224 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:224 msgid "Select elements within polygon boundary" msgstr "选择多边形边界内的元素" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:234 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:234 msgid "Remove geometry point" msgstr "删除几何点" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:234 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:234 msgid "Remove geometry point under mouse" msgstr "删除鼠标下的几何点" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:235 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:235 msgid "Set first geometry point" msgstr "设置第一个几何点" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:447 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:447 msgid "Number of remaining points insufficient" msgstr "剩余点数不足" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:474 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:474 msgid "Polygon already opened" msgstr "多边形已经打开" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:495 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:495 msgid "Polygon already closed" msgstr "多边形已经关闭" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:506 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:506 msgid "Selected point must be different of the first point" msgstr "选定的点必须与第一个点不同" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:571 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:571 msgid "Polygon already simplified" msgstr "多边形已经简化了" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZ.cpp:282 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZ.cpp:282 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:715 msgid "Set custom Geometry Point" msgstr "设置自定义几何点" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:62 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:62 msgid "add data set" msgstr "添加数据组" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:87 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:87 msgid "add data set and data interval" msgstr "添加数据组和数据区间" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:102 msgid "add data interval" msgstr "添加数据区间" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:128 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:165 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:130 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:167 msgid "add edge rel" msgstr "添加路段的关联(rel)" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:205 -msgid "There is already a TAZ rel defined between '" -msgstr "''之间已经定义了一个交通分区(TAZ)的关系" - -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:207 -msgid "There is already a TAZ rel defined in '" -msgstr "已经有一个交通分区关联(TAZ rel)定义在'" +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:207 +msgid "There is already a TAZ rel defined between '%' and '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:209 +msgid "There is already a TAZ rel defined in '%'." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:211 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:222 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:213 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:224 msgid "add TAZ rel" msgstr "添加交通分区关联( TAZ rel)" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1511 -msgid "' doesn't exist." -msgstr "'不存在。" - -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataInterval.cpp:173 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataInterval.cpp:173 msgid "GenericData was already inserted" msgstr "GenericData已经被插入" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataInterval.cpp:199 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataInterval.cpp:199 msgid "GenericData wasn't previously inserted" msgstr "GenericData之前没有被插入" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:214 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:214 msgid "DataInterval was already inserted" msgstr "已经插入数据区间(DataInterval)" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:231 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:255 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:231 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:255 msgid "DataInterval wasn't previously inserted" msgstr "数据区间(DataInterval)之前没有插入过" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:316 -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdgeType.cpp:155 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:136 +msgid "Open % Dialog" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:316 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdgeType.cpp:155 msgid "Invalid index" msgstr "无效指数" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:64 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:64 msgid "Could not build meanDataEdge; " msgstr "无法建立meanData路段; " -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:64 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:93 -msgid " already exists" +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:64 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:93 +#, c-format +msgid "% already exists" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:70 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:70 msgid "add meanDataEdge" msgstr "添加 meanData路段" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:93 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:93 msgid "Could not build meanDataLane; " msgstr "无法建立meanData车道; " -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:99 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:99 msgid "add meanDataLane" msgstr "添加 meanData车道" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:116 -msgid " in netedit; edge doesn't exist." -msgstr " 在netedit中;路段并不存在。" - -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -msgid " in netedit; attribute '" -msgstr " 在netedit中;属性'" +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:116 +msgid "Edge doesn't exist." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:132 +#, c-format +msgid "Attribute '%' doesn't exist." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEPersonTrip.cpp:306 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEPersonTrip.cpp:317 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEPersonTrip.cpp:312 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEPersonTrip.cpp:323 msgid "This personTrip use junctions" msgstr "这个人的行程中使用的路口" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:71 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:100 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1499 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1523 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1535 -msgid "There is another " -msgstr "还有另外一个 " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:71 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:100 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1499 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1523 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1535 -msgid " with the same ID='" -msgstr " 具有相同的ID='" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:76 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:126 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:161 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:206 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:258 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:299 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:345 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:389 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:436 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:480 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:516 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:547 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:593 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:609 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:625 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:677 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:694 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:709 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:725 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:741 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:778 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:794 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:827 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:858 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:893 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:909 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:949 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:966 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:982 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1107 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1122 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1142 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:71 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1608 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1632 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1644 +msgid "There is another % with the same ID='%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:76 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:126 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:152 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:197 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:250 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:291 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:337 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:381 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:428 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:472 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:508 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:539 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:591 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:607 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:623 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:639 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:697 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:714 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:729 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:745 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:761 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:777 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:820 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:836 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:852 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:885 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:916 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:951 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:967 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1007 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1024 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1040 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1189 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1209 msgid "add " msgstr "添加 " -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:102 -msgid " need at least one " -msgstr " 至少要有一个 " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:108 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:118 -msgid " with id '" -msgstr " ID为''" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:108 -msgid "' doesn't exist in " -msgstr "' 不存在于 " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:115 -msgid "Invalid definition for " -msgstr "无效的定义 " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:115 -msgid " in " -msgstr " 在 " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:118 -msgid "' cannot be created in " -msgstr "'不能创建在 " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:192 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:244 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:285 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:333 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:377 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:424 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:468 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:508 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:539 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:819 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:850 -msgid "VType distributions currently unsupported in netedit" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:102 +msgid "% needs at least one %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:108 +msgid "% with id '%' doesn't exist in % '%'" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:115 +msgid "Invalid definition for % in % '%'" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:118 +msgid "% with id '%' cannot be created in % '%'" msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:194 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:246 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:335 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:379 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:426 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:470 -msgid "Invalid vehicle type '" -msgstr "无效的车辆类型'" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:194 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:246 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:290 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:335 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:379 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:426 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:470 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:510 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:541 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:821 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:852 -msgid "' used in " -msgstr "'用在 " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:197 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:199 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:251 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:253 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:338 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:340 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:382 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:384 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:429 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:431 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:473 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:475 -msgid " used in " -msgstr " 用在 " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:183 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:236 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:277 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:325 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:369 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:416 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:460 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:500 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:531 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:877 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:908 +msgid "VType distributions currently unsupported in netedit" +msgstr "netedit 目前不支持车辆类型(VType)分配" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:238 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:279 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:327 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:371 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:418 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:462 +msgid "Invalid vehicle type '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:188 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:243 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:284 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:330 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:374 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:465 +msgid "Invalid % used in % '%'. % is greater than number of lanes" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:190 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:245 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:286 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:332 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:376 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:423 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:467 +msgid "Invalid % used in % '%'. % is greater than vType %" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:231 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:223 msgid "netedit doesn't support route distributions" msgstr "netedit 不支持路径分布" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:290 -msgid "Invalid route '" -msgstr "无效的路径'" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:251 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:253 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:338 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:340 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:382 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:384 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:429 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:431 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:473 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:475 -msgid "Invalid " -msgstr "无效的 " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -msgid " is greater than number of lanes" -msgstr " 大于车道数" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -msgid " is greater than vType" -msgstr " 大于vType" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:510 -msgid "Invalid person type '" -msgstr "无效的人的类型'" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:541 -msgid "Invalid personFlow type '" -msgstr "无效的人流类型'" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1039 -msgid "Containers don't support stops at busStops" -msgstr "容器不支持在公共汽车站停车" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:241 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:282 +msgid "Invalid route '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:502 +msgid "Invalid person type '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:533 +msgid "Invalid personFlow type '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:879 +msgid "Invalid container type '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:910 +msgid "Invalid containerFlow type '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1102 +msgid "Containers don't support stops at busStops or trainStops" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1047 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1110 msgid "Persons don't support stops at containerStops" msgstr "人员不支持在容器停靠处停车" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1055 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1118 msgid "Persons don't support stops at chargingStations" msgstr "人员不支持在充电站停车" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1058 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1121 msgid "Containers don't support stops at chargingStations" msgstr "容器不支持在充电站停车" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1066 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1129 msgid "Persons don't support stops at parkingAreas" msgstr "不支持在停车区域停车的人" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1069 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1132 msgid "Containers don't support stops at parkingAreas" msgstr "容器不支持在停车区停车" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1079 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1142 msgid "vehicles don't support stops at edges" msgstr "车辆不支持在路段停车" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1092 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1155 msgid "A stop must be defined either over a stoppingPlace, a edge or a lane" msgstr "停车必须在一个停车点、一路段或一条车道上定义一个停车点" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1094 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1157 msgid "A stop requires only a stoppingPlace, edge or lane" msgstr "一个停车点只需要一个停车地点、路段或车道" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1214 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1282 msgid "A person trip from edge to edge needs two edges edge" msgstr "一个人从路段到路段的行程需要两个路段" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1224 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1292 msgid "A person trip from edge to busStop needs one edge and one busStop" msgstr "一个人从路段到公共汽车站的行程需要一个路段和一个公共汽车站" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1234 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1302 +msgid "A person trip from edge to trainStop needs one edge and one trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1312 msgid "A person trip from junction to junction needs two junctions junction" msgstr "一个人从一个路口到另一个路口的行程需要两个路口" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1245 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1404 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1425 -msgid "A ride from busStop to edge needs a busStop and an edge" -msgstr "从公共汽车站到路段的乘车需要一个公共汽车站和一个路段" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1323 +msgid "A walk to edge needs a busStop and an edge" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1255 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1414 -msgid "A transport from busStop to busStop needs two busStops" -msgstr "从公共汽车站到公共汽车站的运载需要两个公共汽车站" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1333 +msgid "A walk to busStop needs two busStops" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1343 +msgid "A walk to trainStop needs two trainStops" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1353 +msgid "A walk with edges needs a list of edges" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1265 -msgid "A transport with edges attribute needs a list of edges" -msgstr "一个带有路段属性的运输工具需要一个路段的列表" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1275 -msgid "A route transport needs a route" -msgstr "一个路径运输需要路径" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1363 +msgid "A route walk needs a route" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1285 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1373 msgid "A ride from busStop to junction needs a busStop and an junction" msgstr "从公交站到路口的车程需要一个公交站和一个路口" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1296 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1384 msgid "A ride from edge to edge needs two edges edge" msgstr "一个从路段到路段的骑行需要两个路段的路段" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1306 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1394 msgid "A ride from edge to busStop needs one edge and one busStop" msgstr "从路段到公共汽车站的行程需要一个路段和一个公共汽车站" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1320 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1459 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1404 +msgid "A ride from edge to trainStop needs one edge and one trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1418 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1568 msgid "A stop has to be placed over an edge" msgstr "必须在一个路段上放置一个停止器" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1331 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1470 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1429 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1579 msgid "A stop has to be placed over a busStop" msgstr "一个停止器必须放置在一个公共汽车站之上" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1435 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1440 +msgid "A stop has to be placed over a trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1513 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1534 +msgid "A ride from busStop to edge needs a busStop and an edge" +msgstr "从公共汽车站到路段的乘车需要一个公共汽车站和一个路段" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1523 +msgid "A transport from busStop to busStop needs two busStops" +msgstr "从公共汽车站到公共汽车站的运载需要两个公共汽车站" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1544 msgid "A tranship from busStop to busStop needs two busStops" msgstr "从公交站到公交站的转运需要两个公交站" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1445 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1554 msgid "A tranship with edges attribute needs a list of edges" msgstr "一个带有路段属性的转换需要一个路段列表" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1511 -msgid "Via edge '" -msgstr "通过路段'" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1620 +#, c-format +msgid "Via edge '%' doesn't exist." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEStop.cpp:443 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEStop.cpp:446 msgid "Invalid Stop parent" msgstr "无效的 \"停止 \"母体" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEStop.cpp:458 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEStop.cpp:461 msgid "Invalid parent" msgstr "无效的母体" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEVehicle.cpp:645 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEVehicle.cpp:645 msgid "Invalid vehicle tag" msgstr "无效车辆标签" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEWalk.cpp:331 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEWalk.cpp:346 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEWalk.cpp:336 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEWalk.cpp:351 msgid "This walk use junctions" msgstr "这种步行方式使用的路口" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEConnection.cpp:679 +#: D:\Repos\sumo/src\netedit\elements\network\GNEConnection.cpp:679 msgid "Could not set attribute '%' (tls is broken)" msgstr "无法设置属性'%'(tls已损坏)" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdge.cpp:2180 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdge.cpp:2180 msgid "Could not compute smooth shape for edge '%'" msgstr "无法计算路段'%'的平滑形状" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdge.cpp:2198 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdge.cpp:2198 msgid "Could not compute smooth elevation for edge '%'" msgstr "无法计算路段'%'的平滑高程" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEInternalLane.cpp:241 +#: D:\Repos\sumo/src\netedit\elements\network\GNEInternalLane.cpp:241 msgid "invalid link state='%'" msgstr "无效链接状态='%'" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEJunction.cpp:335 +#: D:\Repos\sumo/src\netedit\elements\network\GNEJunction.cpp:335 msgid "Reset junction shapes" msgstr "重置路口形状" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:470 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:471 msgid "Unexpected LinkState '%'" msgstr "未预计到的链接状态'%'" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:810 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:672 +msgid "Copy parent edge name to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:681 +msgid "Remove Lane From Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:683 +msgid "Add Lane To Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:687 +msgid "Remove Edge From Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:689 +msgid "Add Edge To Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:706 +msgid "Reset edge end points" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:733 +msgid "Select state for all links from this edge:" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:743 +msgid "Additional options available in 'Inspect Mode'" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:758 +msgid "Shape pos: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:759 +msgid "Length pos: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:761 +msgid "Distance: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:763 +msgid "Height: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:764 +msgid "Angle: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:811 msgid "Lane Parametric Length cannot be never 0" msgstr "车道参数长度永远不能为0" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:972 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:973 msgid "Opposite lane '%' does not connect the same nodes as edge '%'!" msgstr "对面车道'%'与路段%'不能连接在同一节点!" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:49 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:738 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1846 +#, c-format +msgid "Edge operations (% selected)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1848 +msgid "Edge operations" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1851 +msgid "Split edge here" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1852 +msgid "Split edge in both directions here (no simmetric opposite edge)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1857 +msgid "Split edge in both directions here (no opposite edge)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1864 +msgid "Split edge in both directions here" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1868 +msgid "Set geometry endpoint here (shift-click)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1872 +msgid "Restore both geometry endpoints" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1874 +msgid "Restore geometry endpoints of all selected edges" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1877 +msgid "Restore geometry endpoint (shift-click)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1879 +msgid "Reverse %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1880 +msgid "Add reverse direction for %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1884 +msgid "Add reverse disconnected direction for %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1885 +msgid "Reset lengths for %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1886 +msgid "Straighten %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1887 +msgid "Smooth %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1888 +msgid "Straighten elevation of %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1889 +msgid "Smooth elevation of %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1936 +#, c-format +msgid "Lane operations (% selected)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1938 +msgid "Lane operations" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1940 +msgid "Duplicate lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1941 +msgid "Set custom lane shape" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1942 +msgid "Reset custom shape" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1946 +msgid "Reset opposite lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1958 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1969 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1978 +msgid "Sidewalk" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1959 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1971 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1979 +msgid "Bike lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1960 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1973 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1980 +msgid "Bus lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1963 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1975 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1981 +msgid "Green verge" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1965 +msgid "Green verge (front)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1966 +msgid "Green verge (back)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1983 +msgid "Add restricted %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1984 +msgid "Remove restricted %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1985 +msgid "Transform to restricted %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2026 +#, c-format +msgid "Template operations (% selected)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2028 +msgid "Template operations" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2031 +msgid "Use edge as template" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2032 +msgid "Apply template" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2047 +msgid "Select reachable" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2052 +msgid "Select reachable (compute junctions)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:746 msgid "Internal attributes" msgstr "内部属性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:175 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:177 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:176 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:178 msgid "Invalid input parameter of " msgstr "无效的输入参数 " -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:60 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:61 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:63 msgid "name" msgstr "名称" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:64 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:65 msgid "button" msgstr "按钮" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:70 msgid "Disabled" msgstr "残障人士" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:476 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:477 msgid "Unsupported additional ID" msgstr "不支持的附加ID" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:55 msgid "Consecutive lane selector" msgstr "连续车道选择器" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:59 -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:411 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:59 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:411 msgid "No lanes selected" msgstr "未选择车道" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:61 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:61 msgid "Finish path creation" msgstr "完成路径创建" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:64 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:64 msgid "Abort path creation" msgstr "终止创建路径" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:67 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:67 msgid "Remove last lane" msgstr "删除之前一条车道" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:70 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:70 msgid "Show candidate lanes" msgstr "显示候选车道" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:73 msgid "-BACKSPACE: undo click" msgstr "-BACKSPACE:撤消点击" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:73 msgid "-ESC: Abort path creation" msgstr "-ESC:终止创建路径" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:134 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:134 msgid "Invalid lane" msgstr "无效车道" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:151 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:151 msgid "Lane path needs at least two lanes" msgstr "车道路径至少需要两条车道" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:171 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:393 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:469 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:482 msgid "route creation" msgstr "创建路径" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:406 msgid "- Selected lanes: " msgstr "- 选定的车道: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:407 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:943 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:407 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:959 msgid "- Length: " msgstr "- 长度: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:48 msgid "Parent " msgstr "母体 " -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:65 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:65 msgid "Parent element" msgstr "親代元素(Parent element)" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:108 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:108 msgid "select item..." msgstr "请选择项目..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:110 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:110 msgid "-Select an item in the list or" msgstr "-在列表中选择一个项目或" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:110 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:110 msgid "click over an element in view" msgstr "点击视图中的要素" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:133 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:133 msgid "select sub-item..." msgstr "选择子项目..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:136 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:136 msgid "-Clicked over multiple" msgstr "-点击多个" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:137 msgid "elements" msgstr "元素(elements)" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:138 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:138 msgid " - Select an item in the" msgstr " - 选择一个项目,在" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:139 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:139 msgid " list or click over an" msgstr " 列表或点击一个" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:140 msgid " element in view" msgstr " 视图中的要素" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:333 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:337 msgid "Selected item '" msgstr "选定的项目'" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:333 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:337 msgid "' in DemandElementSelector" msgstr "' 在需求元素选择器 (DemandElementSelector)中" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:346 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:350 msgid "Selected invalid item in DemandElementSelector" msgstr "在需求元素选择器(DemandElementSelector)內选定的无效项目" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:49 msgid "Drawing" msgstr "绘图" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:52 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:53 msgid "Start drawing" msgstr "启动绘图" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:53 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:54 msgid "Stop drawing" msgstr "停止绘图" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:54 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:55 msgid "Abort drawing" msgstr "终止绘图" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:58 -msgid "- 'Start drawing' or ENTER" -msgstr "- '开始绘图'或回车键" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:59 -msgid " to create shape." -msgstr " t来创建形状。" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:60 -msgid "- 'Stop drawing' or ENTER to" -msgstr "- '停止绘图'或回车键来" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:61 -msgid " finish shape creation." -msgstr " 完成形状创建。" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:62 -msgid "- 'Abort drawing' or ESC to" -msgstr "- '中止绘图'或ESC来" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:63 -msgid " abort shape creation." -msgstr " 终止形状的创建。" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:64 -msgid "- 'Shift + Click' to remove" -msgstr "- 'Shift + Click'来删除" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:65 -msgid " last inserted point." -msgstr " 最后一个插入点。" +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:59 +msgid "'Start drawing' or ENTER to create a shape." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:60 +msgid "'Stop drawing' or ENTER to finish shape creation." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:61 +msgid "'Abort drawing' or ESC to abort shape creation." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:62 +msgid "'Shift + Click' to remove the last inserted point." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:134 msgid "A new point cannot be added if drawing wasn't started" msgstr "如果没有开始绘图,就不能添加新的点" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:34 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:34 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:614 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1402 -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:101 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:339 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:619 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:535 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:85 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:34 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:34 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:614 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1406 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:101 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:323 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:621 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:536 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:85 msgid "Information" msgstr "信息" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:38 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:38 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:38 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:38 msgid " edge candidate" msgstr " 候选路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:42 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:42 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:42 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:42 msgid " last edge selected" msgstr " 最后选定的路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:45 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:45 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:45 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:45 msgid " edge selected" msgstr " 路段选定" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:48 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:51 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:51 msgid " edge disconnected" msgstr " 路段断开" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:62 msgid "Hierarchy" msgstr "层次划分" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:211 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:211 #, c-format msgid "Default Vehicle Type '%' cannot be removed" msgstr "默认的车辆类型'%'不能被删除" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:316 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:84 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:316 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:276 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:84 msgid "Center" msgstr "中心" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:323 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:1252 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:323 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:1089 msgid "Inspect" msgstr "检查" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:324 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:259 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:96 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:440 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1356 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:324 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:98 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:442 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1384 msgid "Delete" msgstr "删除" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:397 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:416 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:477 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:397 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:477 msgid " origin" msgstr " 来源" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:398 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:417 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:478 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:398 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:417 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:478 msgid " destination" msgstr " 目的地" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:506 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:632 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:706 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:506 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:632 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:706 msgid " additionals..." msgstr " 额外的..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:520 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:583 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:646 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:720 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:520 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:583 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:646 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:720 msgid " demand elements..." msgstr " 需求元素..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:534 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:597 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:660 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:738 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:597 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:660 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:738 msgid " edges..." msgstr " 路段..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:548 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:611 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:674 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:756 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:548 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:611 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:674 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:756 msgid " lanes..." msgstr " 车道..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:569 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:569 msgid " TAZElements..." msgstr " 交通分区要素..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:815 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:815 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:911 msgid "Data elements" msgstr "数据要素" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:841 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:841 msgid "Incomings" msgstr "收入" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:851 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:851 msgid "Outgoing" msgstr "支出" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:890 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:65 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1325 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:890 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:65 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1322 msgid "Edges" msgstr "路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:890 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:890 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:71 msgid "Lanes" msgstr "车道" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:51 msgid "Flow attributes" msgstr "流量属性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:170 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:469 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:596 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:470 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:597 msgid "rate" msgstr "率" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:343 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:344 msgid "change multiple flow attributes" msgstr "改变多个流量属性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:369 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:370 msgid "enable multiple flow attributes" msgstr "启用多个流量属性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:385 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:386 msgid "disable multiple flow attributes" msgstr "禁用多个流量属性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:540 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:568 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:541 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:569 msgid "different: " msgstr "不同的 : " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:185 msgid "Parameters of " msgstr "的参数 " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:195 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:195 msgid "Attribute" msgstr "属性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:196 msgid "Description" msgstr "描述" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:197 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:197 msgid "Definition" msgstr "定义" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 msgid "Opening HelpAttributes dialog for tag '" msgstr "打开标签的HelpAttributes(帮助属性)对话框" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 msgid "' showing " msgstr "'展示 " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 msgid " attributes" msgstr " 属性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:247 msgid "Closing HelpAttributes dialog for tag '" msgstr "关闭标签 \"HelpAttributes\"(帮助属性)对话框" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:319 -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:417 -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:494 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:319 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:418 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:495 msgid "Scale: Min -> Max" msgstr "规模:最小->最大" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:159 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:160 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:168 msgid "Inspect vehicle " msgstr "检查车辆 " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:171 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:172 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:180 msgid "Open dialog for editing color" msgstr "打开编辑颜色的对话框" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:176 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:177 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:248 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:249 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:184 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:256 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:257 msgid "Open dialog for editing allowed vClasses" msgstr "打开编辑允许的vClasses的对话框" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:472 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:491 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:607 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:480 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:499 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:615 msgid "change multiple attributes" msgstr "更改多个属性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:610 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:618 msgid "change " msgstr "改变 " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:610 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:618 msgid " attribute" msgstr " 属性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid "Value '" msgstr "价值'" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid "' for attribute " msgstr "'为属性 " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid " of " msgstr " 的 " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid " isn't valid" msgstr " 不是有效的" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:681 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:689 msgid "enable attribute '" msgstr "启用属性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:689 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:697 msgid "disable attribute '" msgstr "禁用属性'" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:963 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:971 msgid "Extended attributes" msgstr "扩展属性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:966 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:974 msgid "Open attributes editor" msgstr "打开属性编辑器" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:997 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1005 msgid "Attributes" msgstr "属性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:1001 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1009 msgid "Edit attributes" msgstr "编辑属性" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:49 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:97 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1155 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1164 +msgid "Parameters" +msgstr "参数" + +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:93 msgid "Netedit attributes" msgstr "Netedit的属性" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:55 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:195 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:196 msgid "reference left" msgstr "参照左" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:56 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:201 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:57 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:201 msgid "reference right" msgstr "参照右" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:57 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:206 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:206 msgid "reference center" msgstr "参照中心" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:70 msgid "Center view" msgstr "中心视角" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:138 msgid "Current selected reference point isn't valid" msgstr "当前选定的参考点无效" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:231 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:231 msgid "- Reference point: Mark the initial position of the additional element." msgstr "- 参考点:标记附加元素的初始位置。" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:232 msgid "" " Example: If you want to create a busStop with a length of 30 in the point " "100 of the lane:" msgstr " 例子:如果您想在车道的100点处创建一个长度为30的公交站:" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:233 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:233 msgid " - Reference Left will create it with startPos = 70 and endPos = 100." msgstr " - 参考左图将以startPos = 70和endPos = 100来创建它。" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:234 msgid "" " - Reference Right will create it with startPos = 100 and endPos = 130." msgstr " - 参考右方将以startPos = 100和endPos = 130来创建它。" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:235 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:235 msgid "" " - Reference Center will create it with startPos = 85 and endPos = 115." msgstr " - 参考中心将以startPos = 85和endPos = 115来创建它。" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:236 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:236 msgid "" "- Block movement: if is enabled, the created additional element will be " "blocked. i.e. cannot be moved with" msgstr "- - 阻止移动:如果启用,创建的附加元素将被阻止,即不能用鼠标移动" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:237 msgid " the mouse. This option can be modified inspecting element." msgstr " 鼠标。这个选项可以修改检查元素。" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:238 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:238 msgid "- Center view: if is enabled, view will be center over created element." msgstr "- - 中心视图:如果启用,视图将以创建的元素为中心。" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:49 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:49 msgid "NetworkElements" msgstr "网络要素" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:56 msgid "Use selected" msgstr "使用选定的" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:63 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:63 msgid "-Click over an edge to select" msgstr "-在一个路段上点击选择" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:69 msgid "-Click over an lane to select" msgstr "-在一个车道上点击选择" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:74 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:183 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:183 msgid "Invalid NetworkElementType" msgstr "无效的网络要素类型" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:52 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:52 msgid "Overlapped elements" msgstr "重叠要素" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:62 msgid "Overlapped " msgstr "重叠的 " -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:275 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:275 msgid "GEO attributes Help" msgstr "GEO属性帮助" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:278 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:278 msgid " - Click in the same position" msgstr " - 在同一位置点击" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:279 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:279 msgid " for inspect next element" msgstr " 用于检查下一个元素" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:280 msgid " - Shift + Click in the same" msgstr " - 在相同的情况下,Shift + Click" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:281 msgid " position for inspect" msgstr " 检查的位置" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:282 msgid " previous element" msgstr " 前一个要素" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:145 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:145 msgid "Route creator" msgstr "路径创建器" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:152 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:948 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1156 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:964 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1153 msgid "No edges selected" msgstr "没有选择的路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:154 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:154 msgid "Use last route" msgstr "使用最后的路径" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:157 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:157 msgid "Finish route creation" msgstr "完成路径创建" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:160 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:160 msgid "Abort route creation" msgstr "终止创建路径" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:163 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:163 msgid "Remove last edge" msgstr "删除最后路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:166 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:166 msgid "Show candidate edges" msgstr "显示候选路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:374 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:387 msgid "Double junctions aren't allowed" msgstr "不允许有双重交叉口" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:382 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:395 msgid "Only two junctions are allowed" msgstr "只允许有两个路口" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:421 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:434 msgid "Double edges aren't allowed" msgstr "不允许有双侧路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:431 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:444 msgid "Only consecutives edges are allowed" msgstr "只允许连续的路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:440 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:453 msgid "Only two edges are allowed" msgstr "只允许有两个路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:449 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:462 msgid "Invalid edge (SHIFT + click to add an invalid vClass edge)" msgstr "无效的路段(SHIFT+ click 添加无效的vClass路段)" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:456 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:469 msgid "Invalid edge (CONTROL + click to add a disconnected edge)" msgstr "无效的路段(CONTROL+click添加断开的路段)" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:531 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:547 msgid "first select an edge" msgstr "首先选择一个路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:941 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:957 msgid "- Selected edges: " msgstr "- 选定的路段: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:942 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:958 msgid "- Path edges: " msgstr "- 路径路段: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:944 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:960 msgid "- Average speed: " msgstr "- 平均速度: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:48 msgid " edge conflict (vClass)" msgstr " 路段冲突 (vClass)" -#: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:36 +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:36 msgid "Parent selector" msgstr "母体选择器" -#: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:39 +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:39 msgid "No element selected" msgstr "没有选择任何要素" -#: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:82 +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:82 msgid "Parent type: " msgstr "母体类型: " -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:219 -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:230 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:219 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:230 msgid "Invalid row or column" msgstr "无效的行或列" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:254 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:254 msgid "Invalid row" msgstr "无效行" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:264 -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:264 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:274 msgid "Invalid column" msgstr "无效列" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:609 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:609 msgid "Accumulated: " msgstr "累积的: " -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:679 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:679 msgid "Add phase" msgstr "添加相位" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:679 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:679 msgid "Add new phase." msgstr "添加新相位。" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:684 msgid "Default phase" msgstr "默认相位" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:684 msgid "Add default phase." msgstr "增加默认相位。" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:689 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:689 msgid "Duplicate phase" msgstr "重复的相位" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:689 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:689 msgid "Duplicate this phase." msgstr "复制这个相位。" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:694 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:694 msgid "Red phase" msgstr "红灯相位" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:694 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:694 msgid "Add red phase." msgstr "添加红灯相位。" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:699 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:699 msgid "Yellow phase" msgstr "黄灯相位" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:699 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:699 msgid "Add yellow phase." msgstr "添加黄灯相位。" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:704 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:704 msgid "Green phase" msgstr "绿灯相位" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:704 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:704 msgid "Add green phase." msgstr "添加绿灯相位。" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:709 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:709 msgid "Green priority phase" msgstr "绿灯优先级相位" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:709 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:709 msgid "Add green priority phase." msgstr "添加绿灯优先相位。" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:910 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:910 msgid "Cannot be parsed to double" msgstr "不能解析为双倍" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:922 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:922 msgid "Tooltips only for TextFields" msgstr "只为文字字段(TextFields)提供的工具提示" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1252 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1252 msgid "Delete phase" msgstr "删除相位" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1252 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1252 msgid "Delete this phase." msgstr "删除这个相位。" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1261 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1261 msgid "Move phase up" msgstr "上移相位" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1261 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1261 msgid "Move this phase up." msgstr "将这个相位往上移。" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1270 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1270 msgid "Move phase down" msgstr "下移相位" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1270 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1270 msgid "Move this phase down." msgstr "把这个相位往下移。" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:89 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:89 msgid "Element" msgstr "元素(Element)" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:152 msgid "network elements" msgstr "路网要素" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:155 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:155 msgid "Additional elements" msgstr "附加的元素" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:158 msgid "Shape elements" msgstr "图形物件要素" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:161 msgid "TAZ elements" msgstr "交通分区要素" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:164 msgid "Wire elements" msgstr "通讯线要素" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:167 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1833 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:167 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1835 msgid "Vehicles" msgstr "车辆" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:170 msgid "Stops" msgstr "停" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:173 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1916 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:173 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1918 msgid "Persons" msgstr "人员" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:176 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:176 msgid "Person plans" msgstr "人员计划" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:182 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:182 msgid "Container plans" msgstr "货箱计划" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:185 msgid "Person trips" msgstr "人员行程" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:188 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:188 msgid "Walks" msgstr "步行" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:191 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:191 msgid "Rides" msgstr "骑行" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:194 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:194 msgid "Person stops" msgstr "人员停止" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:64 msgid "Delete geometry points" msgstr "删除几何点" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:230 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:238 msgid "Protect Elements" msgstr "保护要素" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:240 +msgid "Protect all" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:240 +msgid "Protect all elements" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:242 +msgid "Unprotect all" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:242 +msgid "Unprotect all elements" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:244 msgid "Protect additional elements" msgstr "保护附加要素" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:235 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:247 msgid "Protect TAZ elements" msgstr "保护交通分区(TAZ)要素" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:238 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:250 msgid "Protect demand elements" msgstr "保护需求要素" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:241 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:253 msgid "Protect data elements" msgstr "保护数据元素" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEElementSet.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\common\GNEElementSet.cpp:48 msgid "Element Set" msgstr "元素组" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEElementSet.cpp:75 +#: D:\Repos\sumo/src\netedit\frames\common\GNEElementSet.cpp:75 msgid "Invalid supermode" msgstr "无效的超级模式" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:100 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:96 msgid "Mark as front element" msgstr "标记为前部要素" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:181 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:310 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:177 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:306 msgid "Set new parent" msgstr "设置新的母体" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:372 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:368 msgid "" "- Mark as front element: Mark element as front element (Will be drawn over " "all other elements)\n" msgstr "" "- 标记为前面的元素:将元素标记为前面的元素(将被画在所有其他元素之上)\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:373 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:369 msgid "- Block movement: disable movement in move mode\n" msgstr "- 阻止移动:在移动模式下禁止移动\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:374 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:370 msgid "" "- Block shape: Disable moving of shape's vertices and edges. Entire shape " "can be moved'.\n" msgstr "- 块状形状:禁用移动形状的顶点和边缘。整个形状可以被移动'。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:375 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:371 msgid "" "- Close shape: Add or remove the last vertex with the same position of first " "edge'." msgstr "- 关闭形状。添加或删除与第一条路段相同位置的最后一个顶点'。" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:402 msgid "GEO Attributes" msgstr "GEO属性" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:470 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:90 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:466 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:91 msgid "No geo-conversion defined" msgstr "没有定义地理转换" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:551 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:547 msgid " SUMO uses the World Geodetic System 84 (WGS84/UTM).\n" msgstr " SUMO使用世界大地测量系统84(WGS84/UTM)。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:552 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:548 msgid "" " For a GEO-referenced network, geo coordinates are represented as pairs of " "Longitude and Latitude\n" msgstr " 对于GEO-referenced网络,地理坐标表示为一对经度和纬度\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:553 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:549 msgid " in decimal degrees without extra symbols. (N,W..)\n" msgstr " 以十进制度数为单位,没有额外的符号。(N,W.)\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:554 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:550 msgid " - Longitude: East-west position of a point on the Earth's surface.\n" msgstr " - 经度:地球表面一个点的东西方向的位置。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:551 msgid " - Latitude: North-south position of a point on the Earth's surface.\n" msgstr " - 纬度:地球表面上一个点的南北位置。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:556 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:552 msgid "" " - CheckBox 'geo' enables or disables saving position in GEO coordinates\n" msgstr " - 复选框 \"geo \"启用或禁用以GEO坐标保存位置。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:570 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:566 msgid "Templates" msgstr "模板" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:574 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:570 msgid "Set as Template" msgstr "设为模板" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:578 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:574 msgid "clear Edge Template" msgstr "清除路段模板" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:673 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:669 msgid "Only one edge must be inspected" msgstr "只有一路段必须被检查" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:737 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:733 msgid "No edge Template Set" msgstr "无路段模板组" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:749 -msgid "Parameters" -msgstr "参数" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:908 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:745 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:748 msgid "Additional dialog" msgstr "额外对话" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:927 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:764 msgid "Open rerouter dialog" msgstr "打开重定向器对话框" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:933 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:770 msgid "Open calibrator dialog" msgstr "打开校准器对话框" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:939 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:776 msgid "Open calibrator lane dialog" msgstr "打开校准器车道的对话框" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:945 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:782 msgid "Open VSS dialog" msgstr "打开VSS对话框" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:58 msgid "Apply selection" msgstr "应用选择" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:112 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:112 msgid "Unknown set" msgstr "未知数集" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:270 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:270 msgid "" "- The 'Match Attribute' controls allow to specify a set of objects which are " "then applied to the current selection\n" msgstr "- 匹配属性 \"控件允许指定一组对象,然后将其应用于当前选择。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:271 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:460 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:271 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:460 msgid " according to the current 'Modification Mode'.\n" msgstr " 根据当前的 \"修改模式\"。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:272 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:461 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:272 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:461 msgid " 1. Select an object type from the first input box\n" msgstr " 1. 从第一个输入框中选择一个对象类型\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:273 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:462 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:273 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:462 msgid " 2. Select an attribute from the second input box\n" msgstr " 2. 从第二个输入框中选择一个属性\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:274 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:463 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:463 msgid "" " 3. Enter a 'match expression' in the third input box and press " "\n" msgstr " 3. 在第三个输入框中输入一个 \"匹配表达式\",然后按<回车>。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:276 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:465 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:276 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:465 msgid "- The empty expression matches all objects\n" msgstr "- 空表达式可以匹配所有对象\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:277 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:466 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:277 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:466 msgid "" "- For numerical attributes the match expression must consist of a comparison " "operator ('<', '>', '=') and a number.\n" @@ -9629,8 +9958,8 @@ "- 对于数字属性,匹配表达式必须由一个比较运算符('<'、'>'、'=')和一个数字组" "成。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:278 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:467 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:278 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:467 msgid "" "- An object matches if the comparison between its attribute and the given " "number by the given operator evaluates to 'true'\n" @@ -9638,8 +9967,8 @@ "- 如果一个对象的属性与给定的数字通过给定的运算符进行比较后评估为'真',则该对" "象匹配。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:280 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:469 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:469 msgid "" "- For string attributes the match expression must consist of a comparison " "operator ('', '=', '!', '^') and a string.\n" @@ -9647,41 +9976,41 @@ "- 对于字符串属性,匹配表达式必须由一个比较运算符(''、'='、'!'、'^')和一个" "字符串组成。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:281 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:470 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:470 msgid "" " '' (no operator) matches if string is a substring of that object'ts " "attribute.\n" msgstr " ''(无操作符)如果字符串是该对象属性的子串,则匹配。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:282 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:471 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:471 msgid " '=' matches if string is an exact match.\n" msgstr " 如果字符串是完全匹配的,'='就会匹配。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:283 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:472 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:283 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:472 msgid " '!' matches if string is not a substring.\n" msgstr " 如果字符串不是子串,则'!'匹配。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:284 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:473 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:284 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:473 msgid " '^' matches if string is not an exact match.\n" msgstr " 如果字符串不是完全匹配,'^'就会匹配。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:286 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:475 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:286 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:475 msgid "- Examples:\n" msgstr "- 例子:\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:287 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:476 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:287 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:476 msgid "" " junction; id; 'foo' -> match all junctions that have 'foo' in their id\n" msgstr " junction; id; 'foo' -> 匹配所有id中带有'foo'的结点\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:288 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:477 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:288 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:477 msgid "" " junction; type; '=priority' -> match all junctions of type 'priority', " "but not of type 'priority_stop'\n" @@ -9689,16 +10018,16 @@ " junction; type; '=priority' -> 匹配所有'priority'类型的路口,但不匹" "配'priority_stop'类型的路口。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:289 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:478 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:289 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:478 msgid " edge; speed; '>10' -> match all edges with a speed above 10\n" msgstr " edge; speed; '>10' -> 匹配所有速度高于10的路段\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:87 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:87 msgid "speed" msgstr "速度" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:459 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:459 msgid "" "- The 'MatchGenericData Attribute' controls allow to specify a set of " "objects which are then applied to the current selection\n" @@ -9706,1466 +10035,1378 @@ "-- MatchGenericData Attribute \"控件允许指定一组对象,然后将其应用于当前选" "择。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:64 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:65 msgid "Common move options" msgstr "常见的移动选项" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:66 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:67 msgid "Allow change lanes" msgstr "允许改变车道" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:70 msgid "Merge geometry points" msgstr "合并几何点" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:93 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:94 msgid "Network move options" msgstr "网络移动选项" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:96 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:97 msgid "Move whole polygons" msgstr "移动整个多边形" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:132 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:133 msgid "Demand move options" msgstr "需求移动选项" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:135 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:136 msgid "Leave stopPersons connected" msgstr "离开停止的人的联系" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:172 msgid "Shift selected edges geometry" msgstr "移动所选边缘的几何形状" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:180 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:181 msgid "Apply shift value" msgstr "应用移位值" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:180 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:181 msgid "" "Shift edge geometry orthogonally to driving direction for all selected edges" msgstr "对于所有选定的路段,将路段的几何形状正交于驱动方向" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:251 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:252 msgid "Change Z in selection" msgstr "改变选择中的Z" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:261 msgid "Absolute value" msgstr "绝对值" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:261 msgid "Set Z value as absolute" msgstr "设置Z值为绝对值" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:262 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:263 msgid "Relative value" msgstr "相对值" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:262 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:263 msgid "Set Z value as relative" msgstr "设置Z值为相对值" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:265 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:266 msgid "Apply Z value" msgstr "应用Z值" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:265 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:266 msgid "Apply Z value to all selected junctions" msgstr "将Z值应用于所有选定的结点" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:518 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:518 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:534 msgid "Shift shape geometry" msgstr "转移形状的几何图形" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:534 msgid "" "Shift shape geometry orthogonally to driving direction for all selected " "shapes" msgstr "对于所有选定的形状,将形状的几何形状正交于驱动方向" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:619 -msgid "-Click over edge to" -msgstr "-点击路段上的" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:620 -msgid " create or edit" -msgstr " 创建或编辑" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:621 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:624 -msgid " geometry point." -msgstr " 几何点。" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:622 -msgid "-Shift+click over edge" -msgstr "-Shift+click 路段" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:623 -msgid " to edit start or end" -msgstr " 编辑开始或结束" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:616 +msgid "Click over edge to create or edit geometry point." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:616 +msgid "Shift+click over edge to edit start or end geometry point." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:628 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:618 msgid "-Move geometry point" msgstr "-移动几何点" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:631 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:621 msgid "-Merge geometry point" msgstr "-合并几何点" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:78 msgid "Selection information" msgstr "选择信息" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:149 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:150 msgid "Modification Mode" msgstr "修改模式" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:153 msgid "add" msgstr "添加" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:153 msgid "Selected objects are added to the previous selection" msgstr "被选中的对象被添加到前一个选择中" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:154 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:155 msgid "remove" msgstr "删除" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:154 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:155 msgid "Selected objects are removed from the previous selection" msgstr "选定的对象将从先前的选择中移除" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:156 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:662 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:157 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:661 msgid "keep" msgstr "保持" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:156 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:157 msgid "Restrict previous selection by the current selection" msgstr "通过当前的选择来限制以前的选择" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:159 msgid "replace" msgstr "替换" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:159 msgid "Replace previous selection by the current selection" msgstr "用当前的选择取代之前的选择" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:213 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:214 msgid "Visual Scaling" msgstr "视觉缩放" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:243 msgid "Selection operations" msgstr "选择操作" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:251 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:252 msgid "Deselect all objects (hotkey: ESC)" msgstr "取消选择所有对象(热键:ESC)" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:253 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:254 msgid "Invert" msgstr "反转" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:253 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:254 msgid "Invert selection status of all objects" msgstr "反转所有对象的选择状态" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:255 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:256 msgid "Save ids of currently selected objects to a file." msgstr "将当前选择的对象的ID保存到一个文件中。" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:257 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:258 msgid "Load ids from a file according to the current modification mode." msgstr "根据当前的修改模式,从文件中加载id。" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:259 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:260 msgid "Delete all selected objects (hotkey: DEL)" msgstr "删除所有选定的对象(热键:DEL)" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:261 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:262 msgid "Reduce" msgstr "减少" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:261 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:262 msgid "Reduce network to current selection." msgstr "将网络减少到当前的选择。" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:275 msgid "Could not open '%'." msgstr "无法打开'%'。" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:320 -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:125 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:324 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:125 msgid "Open List of Selected Items" msgstr "打开所选项目的清单" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:338 -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:148 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:342 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:148 msgid "Save List of selected Items" msgstr "保存所选项目的清单" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1120 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1124 msgid "Hierarchy operations" msgstr "层次结构操作" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1131 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1141 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1135 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1145 msgid "Select" msgstr "选择" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1133 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1143 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1137 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1147 msgid "Unselect" msgstr "未选择" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEEdgeDataFrame.cpp:51 +#: D:\Repos\sumo/src\netedit\frames\data\GNEEdgeDataFrame.cpp:51 msgid "There is already a % in edge '%'" msgstr "边缘'%'中已经有一个%" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:69 msgid "DataSet" msgstr "数据组" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:72 msgid "Create new dataSet" msgstr "创建新的数据组" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:83 msgid "Create dataSet" msgstr "创建数据组" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:140 msgid "Invalid dataSet ID" msgstr "无效的数据组ID" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:142 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:142 msgid "Invalid empty dataSet ID" msgstr "无效的空数据组ID" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:144 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:144 msgid "Invalid duplicated dataSet ID" msgstr "无效重复的数据组ID" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:198 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:198 msgid "Interval" msgstr "间隔" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:201 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:201 msgid "Create new interval" msgstr "创建新的间隔时间" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:219 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:219 msgid "create interval" msgstr "创建时间间隔" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:392 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:393 msgid "Data attributes" msgstr "数据属性" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:68 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:68 msgid "MeanData Type" msgstr "MeanData 类型" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:161 msgid "MeanData Editor" msgstr "MeanData编辑" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:164 msgid "Create MeanData" msgstr "创建MeanData" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:167 msgid "Delete MeanData" msgstr "删除MeanData" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:170 msgid "Copy MeanData" msgstr "复制MeanData" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:276 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:276 msgid "Current MeanData" msgstr "当前的 MeanData" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:54 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:54 msgid "Confirm TAZRelation" msgstr "确认交通分区(TAZ)的关系" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:56 msgid "Create TAZRelation" msgstr "创建交通分区关系(TAZRelation)" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:56 msgid "Click fromTaz and toTaz (confirm hotkey )" msgstr "点击从Taz到 Taz(确认热键)" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:58 msgid "Clear selection" msgstr "清除选择" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:58 msgid "Clear selected TAZs (hotkey )" msgstr "清除选定的TAZ(热键)" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:122 msgid "From TAZ" msgstr "来自TAZ" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:128 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:128 msgid "To TAZ" msgstr "至TAZ" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:177 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:177 #, c-format msgid "A % must be defined within an interval." msgstr "必须在一个区间内定义一个%。" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:179 msgid "There is already a % defined in TAZ'%'." msgstr "在交通分区(TAZ)'%'中已经有一个%的定义。" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:181 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:181 msgid "There is already a % defined between TAZ'%' and '%'." msgstr "在TAZ'%'和'%'之间已经定义了一个%。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:117 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerPlanFrame.cpp:114 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerPlanFrame.cpp:114 msgid "Current selected container isn't valid." msgstr "当前选择的容器无效。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:122 msgid "Current selected container type isn't valid." msgstr "当前选择的容器类型无效。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:127 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerPlanFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:127 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerPlanFrame.cpp:119 msgid "Current selected container plan isn't valid." msgstr "当前选择的容器计划无效。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:242 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:275 msgid "VType with vClass == 'pedestrian' is oriented to pedestrians" msgstr "带有vClass == 'pedestrian'的VType是面向行人的" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:244 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:244 msgid "VType with vClass != 'ignoring' is not oriented to containers" msgstr "带有vClass != 'ignoring'的VType不是面向容器的" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:267 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:267 msgid "Invalid container parameters." msgstr "无效的容器参数。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:117 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonPlanFrame.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonPlanFrame.cpp:140 msgid "Current selected person isn't valid." msgstr "目前被选中的人是无效的。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:122 msgid "Current selected person type isn't valid." msgstr "当前选择的人员类型无效。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:127 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonPlanFrame.cpp:146 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:127 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonPlanFrame.cpp:146 msgid "Current selected person plan isn't valid." msgstr "目前选定的人的计划是无效的。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:250 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:287 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:250 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:277 msgid "VType with vClass == 'ignoring' is oriented to containers" msgstr "带有vClass == 'ignoring'的VType是面向容器的" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:252 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:252 msgid "VType with vClass != 'pedestrian' is not oriented to persons" msgstr "带有vClass != 'pedestrian'的VType不是面向人的" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:275 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:275 msgid "Invalid person parameters." msgstr "无效的人员参数。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNERouteFrame.cpp:52 +#: D:\Repos\sumo/src\netedit\frames\demand\GNERouteFrame.cpp:52 msgid "Route mode" msgstr "路径模式" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:78 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:85 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:92 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:99 -msgid "- Shift+Click to select parent\n" -msgstr "- Shift+Click选择母体\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:72 -msgid "- Click over a bus stop to\n" -msgstr "- 点击公共汽车站上方的\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:73 -msgid " create a stop." -msgstr " 创建一个站位。" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:79 -msgid "- Click over a container stop\n" -msgstr "- 在一个容器上点击停止\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:80 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:87 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:94 -msgid " to create a stop." -msgstr " 来创建一个站。" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:86 -msgid "- Click over a charging station\n" -msgstr "- 点击进入充电站\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:93 -msgid "- Click over a parking area\n" -msgstr "- 在停车区上方点击\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:100 -msgid "- Click over a lane to create\n" -msgstr "- 在一个车道上点击,创建\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:101 -msgid " a stop." -msgstr " 一个停靠。" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:105 -msgid "- No stop parents in current\n" -msgstr "- 目前没有停靠的母体\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:106 -msgid " network." -msgstr " 网络。" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:89 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:101 +msgid "Shift+Click to select parent" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:72 +msgid "Click over a bus stop to create a stop." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:189 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:78 +msgid "Click over a train stop to create a stop." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:84 +msgid "Click over a container stop to create a stop." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:90 +msgid "Click over a charging station to create a stop." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:96 +msgid "Click over a parking area to create a stop." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:102 +msgid "Click over a lane to create a stop." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:106 +msgid "No stop parents in current network." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:189 msgid "Selected Stop type isn't valid." msgstr "所选停靠类型无效。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:197 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:197 msgid "Selected % '%' as stop parent." msgstr "选择了%'%'作为停靠的母体。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:200 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:200 msgid "Selected Stop parent isn't valid." msgstr "选定的 停靠母体是无效的。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:206 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:206 msgid "Current selected Stop parent isn't valid." msgstr "当前选定的 停靠母体是无效的。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:237 msgid "Current selected Stop type isn't valid." msgstr "当前选择的停靠类型无效。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:336 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:352 msgid "Stop must be placed over a route's edge" msgstr "停靠必须放在路径的路段上" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:349 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:365 msgid "Stop must be placed over an embedded route's edge" msgstr "必须在嵌入路线的路段上设置停车位" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:68 -msgid "Current Type" -msgstr "当前类型" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:225 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:63 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:218 msgid "Type Editor" msgstr "类型编辑" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:228 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:66 +msgid "Create type distribution" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:68 +msgid "Delete type distribution" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:62 +msgid "Current Type" +msgstr "当前类型" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:221 msgid "Create Type" msgstr "创建类型" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:230 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:275 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:223 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:268 msgid "Delete Type" msgstr "删除类型" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:225 msgid "Copy Type" msgstr "复制类型" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:263 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:256 msgid "Reset Type" msgstr "重置类型" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:420 -msgid "VType Distributions" -msgstr "V类型分布" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:423 -msgid "Show VType Distributions" -msgstr "显示V型分布" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:93 -msgid "- Click over a route to\n" -msgstr "- 在一条路线上点击,以\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:72 -msgid " create a vehicle." -msgstr " 创建一个车辆。" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:76 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:81 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:98 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:103 -msgid "- Select two edges to\n" -msgstr "- 选择两条路段来\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:77 -msgid " create a Trip." -msgstr " 创建一个行程。" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:82 -msgid " create a vehicle with\n" -msgstr " 创立一车辆带有\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:83 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:105 -msgid " embedded route." -msgstr " 嵌入的路径。" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:87 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:109 -msgid "- Select two junctions\n" -msgstr "- 选择两个路口\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:88 -msgid " to create a Trip." -msgstr " 来创建一个行程。" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:94 -msgid " create a routeFlow." -msgstr " 创建一个路径流。" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:99 -msgid " create a flow." -msgstr " 创造一个流。" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:104 -msgid " create a flow with\n" -msgstr " 创建一个具有以下特点的流\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:110 -msgid " to create a flow." -msgstr " 来创建一个流。" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:71 +msgid "Click over a route to create a vehicle." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:75 +msgid "Select two edges to create a trip." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:79 +msgid "Select two edges to create a vehicle with embedded route." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:83 +msgid "Select two junctions to create a trip." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:88 +msgid "Click over a route to create a routeFlow." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:92 +msgid "Select two edges to create a flow." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:96 +msgid "Select two edges to create a flow with embedded route." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:100 +msgid "Select two junctions to create a flow." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:191 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:181 msgid "Current selected vehicle isn't valid." msgstr "目前选择的车辆无效。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:186 msgid "Current selected vehicle type isn't valid." msgstr "当前选择的车辆类型无效。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:87 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:87 msgid "Current selected additional isn't valid." msgstr "当前所选的附加物无效。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:156 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:156 msgid "E2 multilane detectors need at least two consecutive lanes" msgstr "E2多车道探测器需要至少两个连续车道" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:282 msgid " must be selected before insertion of " msgstr " 必须在插入之前选择 " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:312 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:312 msgid "Attribute '" msgstr "属性 '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:312 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:312 msgid "' cannot be greater than attribute '" msgstr "'不能大于属性'" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:329 -msgid "List ofe dges cannot be empty" -msgstr "仪表盘列表不能是空的" +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:329 +msgid "List of edges cannot be empty" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:339 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:339 msgid "List of lanes cannot be empty" msgstr "车道列表不能为空" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:439 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:439 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:232 msgid "Currently unsupported. Create rerouter elements using rerouter dialog" msgstr "目前不支持。使用rerouter对话框创建rerouter元素" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:444 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:444 msgid "Currently unsupported. Create VSS steps using VSS dialog" msgstr "目前不支持。使用VSS对话框创建VSS步骤" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:449 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:449 msgid "Currently unsupported. Create calibratorFlows using calibrator dialog" msgstr "目前不支持。使用校验器对话框创建校验器流" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:66 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:67 msgid "Lane" msgstr "车道" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:68 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:78 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:79 msgid "No lane selected" msgstr "没有选择车道" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:80 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:81 msgid "Current Lane: " msgstr "当前车道: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:89 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:395 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:90 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:396 msgid "Modifications" msgstr "修改" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:93 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:94 msgid "Discard connection modifications (Esc)" msgstr "放弃连接的修改(Esc)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:96 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:97 msgid "Save connection modifications (Enter)" msgstr "保存连接的修改(回车)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:100 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:101 msgid "Protect routes" msgstr "保护路径" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:112 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:113 msgid "Changes reverted" msgstr "更改已被恢复" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:129 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:130 msgid "Error saving connection operations" msgstr "保存连接操作错误" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:130 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:131 msgid "Connection edition cannot be saved because route '" msgstr "连接版本 不能被保存,因为路径的'" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:130 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:131 msgid "' is broken." msgstr "'被打破。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:138 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:139 msgid "Changes accepted" msgstr "接受修改" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:151 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:152 msgid "Operations" msgstr "运作" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:155 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:156 msgid "Select Dead Ends" msgstr "选择死胡同" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:155 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:156 msgid "" "Selects all lanes that have no outgoing connection (clears previous " "selection)" msgstr "选择所有没有出站连接的车道(清除之前的选择)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:159 msgid "Select Dead Starts" msgstr "选择死机" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:159 msgid "" "Selects all lanes that have no incoming connection (clears previous " "selection)" msgstr "选择所有没有传入连接的车道(清除之前的选择)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:162 msgid "Select Conflicts" msgstr "选择冲突" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:162 msgid "" "Selects all lanes with more than one incoming connection from the same edge " "(clears previous selection)" msgstr "选择所有有一个以上来自同一路段的传入连接的车道(清除之前的选择)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:165 msgid "Select Passing" msgstr "选择通过" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:165 msgid "" "Selects all lanes with a connection that has has the 'pass' attribute set" msgstr "选择所有具有 \"通过 \"属性的连接的车道" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:168 msgid "Clear Selected" msgstr "清除选择" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:168 msgid "Clears all connections of all selected objects" msgstr "清除所有选定对象的所有连接" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:171 msgid "Reset Selected" msgstr "重置选择" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:171 msgid "Recomputes connections at all selected junctions" msgstr "重新计算所有选定路口的连接" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:262 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:263 msgid "clear connections from selected lanes, edges and junctions" msgstr "从选定的车道、路段和路口明确连接" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:289 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:290 msgid "reset connections from selected lanes" msgstr "从选定的车道重置连接" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:308 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:168 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2174 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:309 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:168 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2176 msgid "Selection" msgstr "选择" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:313 -msgid "-Hold while" -msgstr "-按住,同时" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:314 -msgid " clicking to create" -msgstr " 点击创建" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:315 -msgid " unyielding connections" -msgstr " 不屈不挠的连接" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:316 -msgid " (pass=true)." -msgstr " ((pass=true)。" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:321 -msgid "-Hold while" -msgstr "-按住,同时" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:322 -msgid " clicking to create " -msgstr " 点击创建 " - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:323 -msgid " conflicting connections" -msgstr " 矛盾的联系" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:324 -msgid " (i.e. at zipper nodes" -msgstr " (即在拉链结点上" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:325 -msgid " or with incompatible" -msgstr " 或有不相容的" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:326 -msgid " permissions" -msgstr " 权限" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:311 +msgid "" +"Hold while clicking to create unyielding connections (pass=true)." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:312 +msgid "" +"Hold while clicking to create conflicting connections (i.e. at zipper " +"nodes or with incompatible permissions" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:342 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:326 msgid "Possible Target" msgstr "可能的目标" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:347 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:331 msgid "Source lane" msgstr "来源于车道" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:351 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:335 msgid "Target lane" msgstr "目标车道" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:355 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:339 msgid "Target (pass)" msgstr "目标(通过)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:359 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:343 msgid "Conflict" msgstr "冲突" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:371 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:355 msgid "Edit Connections" msgstr "编辑连接" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:437 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:421 msgid "modify connections" msgstr "修改连接" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:488 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:472 msgid "Pedestrian connections are generated automatically" msgstr "行人连接是自动生成的" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:490 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:474 msgid "Incompatible vehicle class permissions" msgstr "不兼容的车辆类别权限" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:492 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:476 msgid "Another lane from the same edge already connects to that lane" msgstr "来自同一路段的另一条车道已经与该车道相连接" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:500 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:484 msgid "Invalid target for connection" msgstr "无效的连接目标" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:74 msgid "Template selector" msgstr "模板选择器" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:79 msgid "Create default edge" msgstr "创建默认路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:80 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:82 msgid "Disallow for pedestrians" msgstr "不允许行人进入" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:82 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:84 msgid "Add sidewalk" -msgstr "" +msgstr "增加人行道" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:85 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:87 msgid "Use edgeType/template" msgstr "使用路段类型/模板" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:93 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:437 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1245 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1310 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:439 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1247 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1312 msgid "Add" msgstr "添加" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:93 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:95 msgid "Add edge type" msgstr "添加路段类型" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:96 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:98 msgid "Delete edge type" msgstr "删除路段类型" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:99 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:101 msgid "Create from template" msgstr "根据模板创建" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:99 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:101 msgid "Create edgeType from template" msgstr "从模板创建路段类型" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:318 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:367 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:320 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:369 msgid "create new edge type" msgstr "创建新的路段类型" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:340 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:342 msgid "delete edge type" msgstr "删除路段类型" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:405 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:407 msgid "template: " msgstr "模板: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:429 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:431 msgid "LaneType selector" msgstr "车道类型选择器" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:437 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:439 msgid "Add lane type" msgstr "添加车道类型" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:440 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:442 msgid "Delete lane type" msgstr "删除车道类型" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:537 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:539 msgid "add laneType" msgstr "添加车道类型" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:574 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:576 msgid "remove laneType" msgstr "删除车道类型" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:623 -msgid "- ESC:" -msgstr "- 轉義鍵 (ESC):" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:624 -msgid " Deselect origin" -msgstr " 取消选择原点" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:625 -msgid "- Control+Click:" -msgstr "- 控制键+点击(Control+Click):" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:626 -msgid " Move view" -msgstr " 移动视图" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:627 -msgid "- Shift+Click:" -msgstr "- 移位键+点击 (Shift+Click):" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:628 -msgid " Splits edge in both directions" -msgstr " 在两个方向上分割路段" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:629 -msgid "- Alt+Shift+Click:" -msgstr "- Alt键+移位键+点击 (Alt+Shift+Click):" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:630 -msgid " Splits edge in one direction" -msgstr " 在一个方向上分割路段" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:625 +msgid "ESC:" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:626 +msgid "Deselect origin" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:627 +msgid "Control+Click:" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:628 +msgid "Move view" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:629 +msgid "Shift+Click:" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:630 +msgid "Splits edge in both directions" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:631 +msgid "Alt+Shift+Click:" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:632 +msgid "Splits edge in one direction" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:643 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:645 msgid "Create Edge" msgstr "创建路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:667 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:669 msgid "Select either default edgeType or a custom edgeType or template" msgstr "选择默认的路段类型或自定义的路段类型或模板" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:669 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:671 msgid "Invalid edge attributes" msgstr "无效的路段属性" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:671 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:673 msgid "Invalid lane attributes" msgstr "无效的车道属性" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:682 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:747 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:749 msgid "create new edge" msgstr "创建新的路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:752 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:754 msgid "An edge with the same geometry already exists!" msgstr "一个具有相同几何形状的路段已经存在了!" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:755 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:757 msgid "Start- and endpoint for an edge must be distinct!" msgstr "一个路段的起点和终点必须是不同的!" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:70 msgid "Junction" msgstr "枢纽" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:97 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:98 msgid "selection of edges" msgstr "选择路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:102 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:505 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:560 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:566 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:654 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:658 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:103 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:506 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:560 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:566 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:653 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:657 msgid "Use selected edges" msgstr "使用选定的路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:105 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:106 msgid "Clear edges" msgstr "清除路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:108 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:109 msgid "Invert edges" msgstr "反转路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:197 msgid "Crossing parameters" msgstr "交叉口的参数" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:484 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1580 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1584 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:485 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1608 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1612 msgid "Create" msgstr "创建" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:487 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:488 msgid "Create crossing" msgstr "创建交叉口" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:514 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:515 msgid "" "There is already another crossing with the same edges in the junction; " "Duplicated crossing aren't allowed." msgstr "在路口已经有另一个具有相同路段的交叉口;重复的交叉口是不允许的。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:540 -msgid "-Click over junction to" -msgstr "-点击路口,以" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:541 -msgid " mark candidate edges." -msgstr " 标出候选路段。" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:542 -msgid "-Click over candidate" -msgstr "-点击候选上方" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:543 -msgid " edges for selecting." -msgstr " 选择的路段。" +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:539 +msgid "Click over junction to mark candidate edges." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:539 +msgid "Click over candidate edges for selecting." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:547 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:541 msgid " Candidate" msgstr " 候选" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:551 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:545 msgid " Selected" msgstr " 选定的" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:554 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:548 msgid " Invalid" msgstr " 无效的" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:567 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:561 msgid "Crossings" msgstr "交叉" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:55 msgid "Selected connection" msgstr "选择连接" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:71 msgid "No Connection selected\n" msgstr "没有选择连接\n" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:74 msgid "- Junction: " msgstr "- 路口: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:75 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:75 msgid "- From lane: " msgstr "- 从车道: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:76 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:76 msgid "- To lane: " msgstr "- 到车道: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:94 msgid "Selected" msgstr "选定的" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:95 msgid "Current selected connection" msgstr "当前选定的连接" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:101 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:101 msgid "No conflict" msgstr "无冲突" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:102 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:102 msgid "No conflict with the selected connection" msgstr "与所选连接没有冲突" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:107 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:107 msgid "Yields" msgstr "收益率" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:108 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:108 msgid "Connection yields the selected connection" msgstr "连接产生选定的连接" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:113 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:113 msgid "Has right of way" msgstr "拥有路权" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:114 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:114 msgid "Connection has right of way with the selected connection" msgstr "连接处与所选连接处有路权" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:119 msgid "Unregulated conflict" msgstr "不受管制的冲突" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:120 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:120 msgid "Connection has a unregulated conflict with the selected connection" msgstr "连接与选定的连接有不规范的冲突" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:125 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:125 msgid "Mutual conflict" msgstr "相互冲突" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:126 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:126 msgid "Connection has a mutual conflict with the selected connection" msgstr "连接与所选择的连接有相互冲突" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:175 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:175 msgid "Save prohibition modifications (Enter)" -msgstr "保存禁止的修改(输入)。" +msgstr "存储修改的禁止事项 (登录键(Enter))" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:179 msgid "Unselect connection" msgstr "取消选择联系" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:181 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:181 msgid "Unselect connection (Esc)" msgstr "取消选择连接(Esc)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:229 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:229 msgid "Prohibitions" msgstr "禁止的事项" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:57 msgid "GEO POI Creator" msgstr "GEO 兴趣点创造器" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:59 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:60 msgid "Format: Lon-Lat" msgstr "格式:Lon-Lat" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:61 msgid "Format: Lat-Lon" msgstr "格式: Lat-Lon" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:66 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:67 msgid "Center View after creation" msgstr "创建后的中心视图" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:68 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:121 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:178 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:179 msgid "Create GEO POI (clipboard)" msgstr "创建GEO 兴趣点(剪贴板)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:136 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:141 msgid "Cartesian equivalence:" msgstr "笛卡尔等效:" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:72 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:141 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:142 msgid "- X = give valid longitude" msgstr "- X = 给出有效经度" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:73 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:142 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:143 msgid "- Y = give valid latitude" msgstr "- Y = 给出有效的纬度" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:120 msgid "Create GEO POI" msgstr "创建GEO兴趣点" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:172 msgid "Using clipboard" msgstr "使用剪贴板" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:330 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:228 +msgid "Shapes" +msgstr "形状" + +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:331 msgid "POILane can be only placed over lanes" msgstr "POILane只能放置在车道上" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:374 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:375 msgid "Current selected shape isn't valid." msgstr "当前选择的形状无效。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:422 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:423 msgid "Polygon shape cannot be empty" msgstr "多边形形状不能是空的" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:153 msgid "TAZ" msgstr "交通分区" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:160 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:204 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:205 msgid "No TAZ selected" msgstr "未选择交通分区(TAZ)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:173 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:174 msgid "Current TAZ: " msgstr "目前的交通分区(TAZ): " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:336 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:337 msgid "Invalid TAZ Child" msgstr "无效的子交通分区(TAZ)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:345 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:346 msgid "TAZ Statistics" msgstr "交通分区(TAYZ)统计数据" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:348 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:891 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:349 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:888 msgid "Statistics" msgstr "统计数据" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:375 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1132 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:376 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1129 msgid "- Number of edges: " msgstr "- 路段号: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:376 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1137 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:377 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1134 msgid "- Min source: " msgstr "- 最小(Min) 来源: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:377 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1138 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:378 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1135 msgid "- Max source: " msgstr "- 最大(Max) 来源: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:378 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1139 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:379 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1136 msgid "- Average source: " msgstr "- 平均来源: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:380 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1141 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:381 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1138 msgid "- Min sink: " msgstr "-- 最小的水槽(sink): " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:381 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1142 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:382 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1139 msgid "- Max sink: " msgstr "-- 最大的水槽(sink) : " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:382 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1143 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:383 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1140 msgid "- Average sink: " msgstr "-- 平均的水槽(sink): " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:386 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:387 msgid "No TAZ Selected" msgstr "未选交通分区(TAZ)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:398 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:399 msgid "Confirm changes" msgstr "确认更改" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:401 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:402 msgid "Cancel changes" msgstr "取消更改" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:431 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:432 msgid "TAZ changes" msgstr "j交通分区(TAZ)的变化" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:484 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:485 msgid "TAZ Sources/Sinks" msgstr "交通分区(TAZ)来源/汇" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:490 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:491 msgid "Membership" msgstr "会员" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:491 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:492 msgid "Toggle" msgstr "切换" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:496 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:497 msgid "New source" msgstr "新来源" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:501 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:502 msgid "New sink" msgstr "新水槽 (sink)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:507 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:508 msgid "Set zero fringe prob." msgstr "设定零边缘概率。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:511 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:646 -msgid "- Toggle Membership:" -msgstr "- 切换会员:" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:512 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:647 -msgid " Create new Sources/Sinks" -msgstr " 创建新的源/汇" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:513 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:648 -msgid " with given weights." -msgstr " 赋予的权重。" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:512 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:646 +msgid "Toggle Membership:" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:513 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:647 +msgid "Create new Sources/Sinks with given weights." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:563 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:656 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:655 msgid "Remove all edges" msgstr "去除所有的路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:582 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:582 msgid "Remove all edges from selection" msgstr "从选择中删除所有的路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:584 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:584 msgid "Add all edges to selection" msgstr "将所有路段添加到选择中" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:588 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:588 msgid "Remove edge from selection" msgstr "从选择中删除路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:590 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:590 msgid "Add edge to selection" msgstr "为选择添加路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:601 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:601 msgid "Remove " msgstr "删除 " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:601 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:601 msgid " edges from to selection" msgstr " 路段从到选择" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:603 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:603 msgid "Add " msgstr "添加 " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:603 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:603 msgid " edges to selection" msgstr " 路段的选择" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:639 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:639 msgid "toggle" msgstr "切换" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:669 -msgid "- Keep Membership:" -msgstr "- 保留会员资格:" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:668 +msgid "Keep Membership:" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:670 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:668 msgid " Select Sources/Sinks." msgstr " 选择源/汇。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:671 -msgid "- Press ESC to clear" -msgstr "- 按ESC键来清除" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:672 -msgid " current selection." -msgstr " 目前的选择。" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:669 +msgid "Press ESC to clear the current selection." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:849 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:846 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:849 msgid "Set weight 0 in " msgstr "设置权重为0的 " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:849 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:846 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:849 msgid " sources and " msgstr " 来源和 " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:850 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:847 msgid " sinks from TAZ '" msgstr " 来自交通分区(TAZ)的汇'" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:853 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:850 msgid " sinks from " msgstr " 跌落,从 " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:853 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:850 msgid " TAZs?" msgstr " 交通分区?" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:855 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:868 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:865 msgid "Set zero fringe probabilities" msgstr "设置零边缘概率" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:857 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:854 msgid "set zero fringe probabilities" msgstr "设置零边缘概率" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:868 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:865 msgid "No source/sinks to update." msgstr "没有需要更新的源/汇。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:878 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:875 msgid "Selection Statistics" msgstr "筛选统计" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:882 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:879 msgid "Source" msgstr "来源" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:887 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:884 msgid "Sink" msgstr "汇" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:919 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:916 msgid "TAZEdgeColor already selected" msgstr "已经选择了交通分区路段颜色(TAZEdgeColor)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:951 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:948 msgid "edge wasn't found" msgstr "没有找到路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:953 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:950 msgid "Invalid edge" msgstr "无效路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1130 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1127 msgid "- Edge ID: " msgstr "- 路段ID: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1165 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1162 msgid "TAZ parameters" msgstr "交通分区参数" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1190 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1187 msgid "Edges within" msgstr "路段内的" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1191 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1298 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1188 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1295 msgid "use" msgstr "用" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1300 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1297 msgid "not use" msgstr "不用" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1330 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1327 msgid "Non TAZ Edge" msgstr "无交通分区路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1334 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1331 msgid "Selected TAZ Edge" msgstr "选择交通分区路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1339 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1336 msgid "Color by Source" msgstr "按来源划分的颜色" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1341 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1338 msgid "Color by Sink" msgstr "按汇划分的颜色" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1343 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1340 msgid "Color by Source + Sink" msgstr "颜色由来源+汇决定" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1345 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1342 msgid "Color by Source - Sink" msgstr "颜色由来源-汇决定" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1448 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1445 msgid "TAZs" msgstr "交通分区" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1614 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1611 msgid "TAZ shape needs at least three points" msgstr "交通分区(TAZ)形状至少需要三个点" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:121 msgid "Edit Traffic Light" msgstr "编辑交通信号灯" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:183 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:185 msgid "Click over a junction to edit a TLS" msgstr "点击路口,编辑一个交通信号" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:195 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:197 msgid "Save TLS Changes" msgstr "保存交通信号(TLS)更改" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:198 msgid "" "There is unsaved changes in current edited traffic light.\n" "Do you want to save it before changing mode?" @@ -11173,243 +11414,251 @@ "在当前编辑的交通信号灯中存在未保存的变化。\n" "您想在改变模式之前保存它吗?" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:244 msgid "tlLogic '%', program '%' could not be built" msgstr "tlLogic '%', 程序'%'不能被建立" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:255 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2935 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:257 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2963 msgid "Loaded " msgstr "已加载 " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:255 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:257 msgid " programs" msgstr " 程序" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:418 msgid "Invalid phase index" msgstr "无效的相位指数" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:512 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:514 msgid "modifying TLS definition" msgstr "修改交通信号(TLS)定义" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:526 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:528 msgid "Unsaved modifications. Abort or Save" msgstr "未保存的修改。中止或保存" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:546 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:548 msgid "Traffic light Attributes" msgstr "交通灯属性" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:557 msgid "parameters" msgstr "参数" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 msgid "Assign E1 detectors" msgstr "指派E1检测器" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 msgid "Enable assign E1 mode" msgstr "启用指定的E1模式" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 msgid "Assign E1 detectors to the current TLS" msgstr "将E1检测器分配给当前的交通信号(TLS)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 msgid "Disable assign E1 mode" msgstr "禁用分配E1模式" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:879 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:881 msgid "Traffic Light" msgstr "交通信号灯" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:884 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:945 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:886 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:955 msgid "Junction ID" msgstr "路口ID" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:891 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:893 msgid "TLS ID" msgstr "交通信号(TLS)ID" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 msgid "Join" msgstr "加入" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 msgid "Enable join mode" msgstr "启用加入模式" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 msgid "Join TLS and junctions in the current junction." msgstr "在当前路口中加入交通信号(TLS)和路口。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 msgid "Disable join mode" msgstr "禁用加入模式" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 msgid "Disjoin" msgstr "剥离" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 msgid "Disjoin current TLS" msgstr "脱离当前的交通信号(TLS)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 msgid "Disjoin current TLS." msgstr "脱离当前的交通信号(TLS)。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:952 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:923 +msgid "Finish join." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:925 +msgid "Cancel Join." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:962 msgid "no junction selected" msgstr "未选择路口" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:974 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:984 msgid "Junction IDs" msgstr "路口的ID" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1061 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1064 msgid "rename TLS" msgstr "重命名交通信号(TLS)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1140 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1143 msgid "change TLS type" msgstr "改变交通信号(TLS)类型" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1216 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1227 msgid "join TLS" msgstr "加入交通信号(TLS)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1278 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1289 msgid "disjoin TLS" msgstr "脱离交通信号( TLS)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1340 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1368 msgid "Traffic Light Programs" msgstr "交通信号方案" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1353 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1381 msgid "Create TLS" msgstr "创建交通信号(TLS)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1353 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1381 msgid "Create a new traffic light program." msgstr "创建一个新的交通信号方案。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1356 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1384 msgid "" "Delete a traffic light program. If all programs are deleted the junction " "turns into a priority junction." msgstr "" "删除一个交通信号方案。如果所有控制方案都被删除,路口就会变成一个优先路口。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1359 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1387 msgid "Reset single" msgstr "重置信号" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1359 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1387 msgid "Reset current TLS program." msgstr "重置当前的交通信号(TLS)程序。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1362 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1390 msgid "Reset all" msgstr "重置所有" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1362 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1390 msgid "Reset all TLS programs." msgstr "重置所有交通信号(TLS)程序。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1365 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1393 msgid "Save program modifications. (Enter)" msgstr "保存程序的修改。(输入Enter)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1368 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1396 msgid "Discard program modifications. (Esc)" msgstr "放弃程序的修改。(Esc)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1463 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1491 msgid "TLSDefinition cannot be found" msgstr "找不到交通信号的定义(TLSDefinition)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1505 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1518 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1537 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1533 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1546 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1565 msgid "TLS cannot be created" msgstr "不能创建交通信号(TLS)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1506 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1534 msgid "Traffic Light cannot be created because junction must have" msgstr "不能创建交通灯,因为路口必须有" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1507 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1535 msgid "at least one incoming edge and one outgoing edge." msgstr "至少有一条入口路段和出口路段。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1519 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1538 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1547 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1566 msgid "Traffic Light cannot be created because junction" msgstr "不能创建交通灯,因为路口" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1520 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1548 msgid "must have at least one connection." msgstr "必须至少有一个连接。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1539 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1567 msgid "must have at least one controlled connection." msgstr "必须至少有一个受控连接。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1582 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1610 msgid "Duplicate" msgstr "复制的" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1622 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1650 msgid "reset current program" msgstr "重置当前程序" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1661 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1689 msgid "reset TLS" msgstr "重置交通信号(TLS)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1822 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1850 msgid "duplicate program '%' of traffic light '%'" msgstr "复制交通灯'%'的程序'%'" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1868 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1896 msgid "Traffic light does not control any links" msgstr "交通灯不控制任何链接" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1880 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1908 msgid "Phases" msgstr "相位" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1891 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1919 msgid "Clean States" msgstr "清洁状态" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1892 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1920 msgid "Clean unused states from all phase" msgstr "清除所有相位的未使用状态" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1893 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1921 msgid "Clean unused states from all phase. (Not allowed for multiple programs)" msgstr "从所有相位中清理未使用的状态。(不允许有多个程序)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1897 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1925 msgid "Add States" msgstr "添加状态" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1898 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1926 msgid "Extend the state vector for all phases by one entry" msgstr "为所有相位的状态向量扩展一个条目" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1899 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1927 msgid "" "Extend the state vector for all phases by one entry. (Unused until a " "connection or crossing is assigned to the new index)" @@ -11417,17 +11666,17 @@ "将所有相位的状态向量扩展一个条目。(在一个连接或交叉点被分配到新的指数之前未使" "用)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1903 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1931 msgid "Group Sig." msgstr "灯组。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1904 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1932 msgid "" "Shorten state definition by letting connections with the same signal states " "use the same index" msgstr "通过让具有相同信号状态的连接使用相同的指数来缩短状态定义" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1905 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1933 msgid "" "Shorten state definition by letting connections with the same signal states " "use the same index. (Not allowed for multiple programs)" @@ -11435,1166 +11684,1610 @@ "通过让具有相同信号状态的连接使用相同的指数来缩短状态定义。(对于多个程序来说不" "允许)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1909 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1937 msgid "Ungroup Sig." msgstr "未分组的信号灯。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1910 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1938 msgid "Let every connection use a distinct index (reverse state grouping)" msgstr "让每个连接使用一个不同的指数(反向状态分组)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1939 msgid "" "Let every connection use a distinct index (reverse state grouping). (Not " "allowed for multiple programs)" msgstr "让每个连接使用一个不同的指数(反向状态分组)。(对于多个程序不允许)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2039 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2067 msgid "invalid column" msgstr "无效栏" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2598 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2626 msgid "Error deleting phase '" msgstr "删除错误的相位" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2870 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2898 msgid "TLS Program File" msgstr "交通信号(TLS)程序文件" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2874 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2902 msgid "Load TLS program from additional file" msgstr "从附加文件中加载交通信号(TLS)程序" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2876 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2904 msgid "Save TLS program to additional file" msgstr "将交通信号(TLS)程序保存到其他文件中" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2935 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2963 msgid " new programs for tlLogic '" msgstr " 交通信号控制逻辑(tlLogic)的新程序'" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2940 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2968 msgid "Updated program '" msgstr "更新后的方案 '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2940 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2968 msgid "' for tlLogic '" msgstr "'为tlLogic'" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2944 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2972 msgid "No programs found for traffic light '" msgstr "没有找到 \"交通灯 \"的相关程序" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2963 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2991 msgid "Save TLS Program as" msgstr "将交通信号(TLS)程序保存为" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:75 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:75 msgid "Current selected wire isn't valid." msgstr "目前所选的线路是无效的。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:117 #, c-format msgid "A % needs at least two lane positions" msgstr "一个%需要至少两个车道位置" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:237 msgid "Currently unsupported. Create VSS steps elements using VSS dialog" msgstr "目前不支持。使用VSS对话框创建VSS步骤元素" -#: /home/micha/programming/sumo/src/netedit/netedit_main.cpp:49 +#: D:\Repos\sumo/src\netedit\netedit_main.cpp:49 msgid "" "Graphical editor for SUMO networks, demand and additional infrastructure." msgstr "用于SUMO网络、需求和额外基础设施的图形编辑器。" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:126 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:127 msgid "Original network" -msgstr "" +msgstr "原始路网" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:129 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:130 msgid "Modified network" -msgstr "" +msgstr "修改路网" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:132 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:133 msgid "Output prefix network" -msgstr "" +msgstr "输出字首(prefix)路网" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:136 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:137 msgid "Select modified elements" -msgstr "" +msgstr "选择修改元素" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:139 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:140 msgid "Select added elements" -msgstr "" +msgstr "选择增加元素" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:142 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:143 msgid "Select deleted elements" -msgstr "" +msgstr "选择刪除元素" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:146 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:147 msgid "Load shapes for elements" -msgstr "" +msgstr "载入元素的形状" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:149 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:150 msgid "Load shapes for added" -msgstr "" +msgstr "载入增加的形状" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:152 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:153 msgid "Load shapes for deleted elements" -msgstr "" +msgstr "载入刪除元素的形状" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:165 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:166 msgid "load shapes from '" -msgstr "" +msgstr "从 ' 载入形状" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:169 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:170 msgid "Loading of shape file failed: " -msgstr "" +msgstr "载入形狀文件失败: " -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:172 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:173 msgid "Loading of shape file sucessfully: " -msgstr "" +msgstr "成功地载入形状文件: " -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:42 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:43 msgid "Execute python tool '" -msgstr "" +msgstr "执行python工具 '" -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:153 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:177 #, c-format msgid "Loaded % configuration." -msgstr "" +msgstr "已载入 % 设定(configuration)。" -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:182 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:206 #, c-format msgid "Saved % configuration." -msgstr "" +msgstr "已存储 % 设定(configuration)。" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:71 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:55 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:76 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:60 msgid "cancelled by user\n" -msgstr "" - -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:102 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:86 -msgid "popen() failed!" -msgstr "" +msgstr "由使用者取消\n" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:114 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:98 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:119 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:103 msgid "starting process...\n" -msgstr "" +msgstr "开始处理...\n" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:124 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:108 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:137 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:121 msgid "error processing command\n" -msgstr "" +msgstr "错误处理指令\n" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:136 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:120 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:152 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:136 msgid "process finished\n" -msgstr "" +msgstr "处理完成\n" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:142 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:125 -msgid "starting process silently...\n" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:75 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:75 msgid "&Load selection" msgstr "&加载选择" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:77 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:77 msgid "&Save selection" msgstr "&保存选择" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:81 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:81 msgid "&Deselect chosen" msgstr "&选择了 取消选择(Deselect)" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:83 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:83 msgid "&Clear selection" msgstr "&清除选择" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:87 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:87 msgid "Cl&ose" msgstr "关闭" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:137 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:137 msgid "Errors while loading Selection" msgstr "加载选择时出现错误" -#: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:116 +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:116 msgid "Unknown object in GUISelectedStorage::select (id=%)." msgstr "GUISelectedStorage::select(id=%)中的未知对象。" -#: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:133 +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:133 msgid "Unknown object in GUISelectedStorage::deselect (id=%)." msgstr "GUISelectedStorage::deselect (id=%)中的未知对象。" -#: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:150 +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:150 msgid "Unknown object in GUISelectedStorage::toggleSelection (id=%)." msgstr "GUISelectedStorage::toggleSelection(id=%)中的未知对象。" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:74 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:74 msgid "Unknown format!" msgstr "不明格式!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:91 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:91 msgid "Unknown codec, falling back to HEVC!" msgstr "未知的编解码器,退回到HEVC!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:95 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:95 msgid "Unknown codec!" msgstr "未知的编解码器!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:100 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:100 msgid "Could not allocate video codec context!" msgstr "无法分配视频编解码器上下文!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:136 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:136 msgid "Could not open codec!" msgstr "无法打开编解码器!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:142 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:142 msgid "Could not allocate video frame!" msgstr "无法分配视频帧!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:148 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:148 msgid "Could not allocate the video frame data!" msgstr "无法分配视频帧数据!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:155 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:155 msgid "Failed to open output file!" msgstr "打开输出文件失败!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:160 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:160 msgid "Failed to write file header!" msgstr "写入文件头失败!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:165 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:165 msgid "Could not allocate video packet!" msgstr "无法分配视频数据包!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:175 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:175 msgid "Error sending final frame!" msgstr "发送最后一帧时出错!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:183 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:183 msgid "Error during final encoding step!" msgstr "在最后的编码步骤中出错!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:214 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:214 msgid "Error sending frame for encoding!" msgstr "发送编码帧时出错!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:222 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:222 msgid "Error during encoding!" msgstr "编码时出错!" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUIGLObjectPopupMenu.cpp:170 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGLObjectPopupMenu.cpp:170 msgid "Object must be a lane" msgstr "对象必须是一个车道" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:87 -msgid "&Save changes" +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:285 +msgid "Copy name to clipboard" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:88 -msgid "&Don't save" +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:286 +msgid "Copy typed name to clipboard" msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:89 -msgid "&Abort" +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:296 +msgid "Remove From Selected" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:298 +msgid "Add To Selected" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:308 +msgid "Show Parameter" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:317 +msgid "Show Type Parameter" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:326 +msgid "Copy cursor position to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:328 +msgid "Copy cursor geo-position to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:332 +msgid "Show cursor geo-position in " msgstr "" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUIShapeContainer.cpp:56 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:350 +msgid "Open Manipulator..." +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:389 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:412 +msgid "type: %" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:87 +msgid "&Save changes" +msgstr "&存储改变" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:88 +msgid "&Don't save" +msgstr "&不存储" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:89 +msgid "&Abort" +msgstr "&中止" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIShapeContainer.cpp:56 msgid "Replacing POI '%'" msgstr "取代兴趣点(POI)'%'" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUIShapeContainer.cpp:81 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIShapeContainer.cpp:81 msgid "Replacing polygon '%'" msgstr "取代多边形'%'" -#: /home/micha/programming/sumo/src/utils/gui/images/GUIIconSubSys.cpp:981 +#: D:\Repos\sumo/src\utils\gui\images\GUIIconSubSys.cpp:989 msgid "Instance was previously created" msgstr "实例是以前创建的" -#: /home/micha/programming/sumo/src/utils/gui/images/GUITextureSubSys.cpp:223 +#: D:\Repos\sumo/src\utils\gui\images\GUITextureSubSys.cpp:223 msgid "Undefined texture" msgstr "未定义的纹理" -#: /home/micha/programming/sumo/src/utils/gui/images/VClassIcons.cpp:91 +#: D:\Repos\sumo/src\utils\gui\images\VClassIcons.cpp:91 msgid "Invalid vClass" msgstr "无效的vClass" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:77 +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:77 msgid "The 'value' attribute is deprecated for breakpoints. Please use 'time'." msgstr "断点的'值(value)'属性已被废弃。请使用'时间(time)'。" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:383 +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:383 msgid "The 'filename' attribute is deprecated for decals. Please use 'file'." msgstr "对于贴花,'文件名'属性已被弃用。请使用'文件'。" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:559 +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:559 msgid " Could not decode breakpoint '%'" msgstr " 无法解码断点'%'" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUIVisualizationSettings.cpp:2348 +#: D:\Repos\sumo/src\utils\gui\settings\GUIVisualizationSettings.cpp:2348 msgid "No color defined for LinkState '%'" msgstr "没有为链接状态'%'定义颜色" -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:116 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:116 msgid "Save the data..." msgstr "保存数据..." -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:131 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:131 msgid "Multiplot" msgstr "多样化" -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:219 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:219 msgid "Save Data" msgstr "保存数据" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:85 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:85 msgid "Track" msgstr "轨迹" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:92 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:92 msgid "&Hide Unselected" msgstr "&隐藏未选择的" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:93 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:93 msgid "By &Name" msgstr "按&名称" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:93 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:93 msgid "Locate item by name" msgstr "按名称查找项目" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:94 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:94 msgid "&Select/deselect" msgstr "&选择/取消选择" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:94 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:94 msgid "Select/deselect current object" msgstr "选择/取消选择当前对象" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:95 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:95 msgid "&Filter substring" msgstr "&过滤器子串" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:96 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:96 msgid "Select &all" msgstr "选择 &所有" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:96 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:96 msgid "Select all items in list" msgstr "选择列表中的所有项目" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:97 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:97 msgid "&Deselect all" msgstr "&选择所有" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:97 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:97 msgid "Deselect all items in list" msgstr "取消选择列表中的所有项目" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:98 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:98 msgid "&Update" msgstr "&更新" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:98 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:98 msgid "Reload all ids" msgstr "重新加载所有ID" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:102 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:102 msgid "case-sensitive search" msgstr "区分大小写的搜索" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:104 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:104 msgid "auto-center" msgstr "汽车中心" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:329 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:329 #, c-format msgid "% objects" -msgstr "" +msgstr "% 物件" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:65 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:65 msgid "Load viewport from file" msgstr "从文件加载视口" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:67 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:67 msgid "Save viewport to file" msgstr "保存视口到文件" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:210 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:210 msgid "Load Viewport" msgstr "加载视口" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:229 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:229 msgid "Save Viewport" msgstr "保存视口" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:277 -msgid "Run tool" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:278 -msgid "Cancel tool" -msgstr "" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:280 -msgid "Accept settings" -msgstr "接受设置" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:87 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:87 msgid "View Settings" msgstr "查看设置" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:989 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:989 msgid "Enter a name" msgstr "输入一个名称" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:991 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:991 msgid "Please enter an alphanumeric name: " msgstr "请输入一个字母数字名称: " -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1070 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1070 msgid "Export view settings" msgstr "出口视图设置" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1121 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1121 msgid "Import view settings" msgstr "导入视图设置" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1138 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1155 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1138 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1155 msgid "Load Decals" msgstr "装载贴花" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1172 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1172 msgid "Save Decals" msgstr "保存贴花" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1242 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1307 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1244 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1309 msgid "No Data" msgstr "无数据" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1246 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1311 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1248 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1313 msgid "Remove" msgstr "删除" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1569 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1614 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1571 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1616 msgid "Only for selected" msgstr "仅用于选定的" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1571 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1573 msgid "constant text size" msgstr "恒定的文字大小" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1574 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1576 msgid "Size" msgstr "大小" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1579 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1692 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1730 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1851 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1933 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1973 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1999 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2119 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2154 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2217 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1581 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1694 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1732 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1853 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1935 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1975 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2001 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2121 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2156 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2219 msgid "Color" msgstr "颜色" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1581 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1687 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1583 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1689 msgid "Background" msgstr "背景" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1612 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1614 msgid "Draw with constant size when zoomed out" msgstr "缩放时以恒定的尺寸绘图" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1617 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1619 msgid "Minimum Size" msgstr "最小尺寸" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1621 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1623 msgid "Exaggerate by" msgstr "夸张的是" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1667 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1669 msgid "Save the setting to registry" msgstr "将设置保存到注册表" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1668 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1670 msgid "Remove the setting from registry" msgstr "从注册表中删除设置" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1669 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1671 msgid "Export setting to file" msgstr "将设置导出到文件" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1670 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1672 msgid "Load setting from file" msgstr "从文件中加载设置" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1673 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1675 msgid "Export includes:" msgstr "输出包括:" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1674 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1676 msgid "Viewport" msgstr "视口" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1675 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1677 msgid "Delay" msgstr "延迟" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1676 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1678 msgid "Decals" msgstr "贴花" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1677 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1679 msgid "Breakpoints" msgstr "分割点" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1696 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1698 msgid "Decals:" msgstr "贴花:" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1699 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1701 msgid "&Load XML Decals" msgstr "&加载XML贴花" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1700 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1702 msgid "&Save XML Decals" msgstr "&保存 XML 贴花" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1701 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1703 msgid "&Clear Decals" msgstr "&清空贴花" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1706 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1708 msgid "Toggle grid" msgstr "切换网格" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1710 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1712 msgid "x-spacing" msgstr "x-间隔" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1715 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1717 msgid "y-spacing" msgstr "y-间距" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1724 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1726 msgid "Streets" msgstr "街道" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1732 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1761 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1855 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1868 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1937 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1977 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2003 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2123 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2158 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2219 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1734 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1763 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1857 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1870 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1939 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1979 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2005 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2125 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2160 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2221 msgid "Interpolate" msgstr "插值" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1744 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2006 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2229 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1746 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2008 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2231 msgid "Recalibrate Rainbow" msgstr "重新校准彩虹" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1746 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1748 msgid "hide below" msgstr "隐藏在下面" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1750 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1752 msgid "hide above" msgstr "隐藏在上面" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1759 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1761 msgid "Scale width" msgstr "尺度宽度" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1782 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1784 msgid "Show bike markings" msgstr "显示自行车标识" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1784 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1786 msgid "Show turning arrows" msgstr "显示转向箭头" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1787 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1789 msgid "Show right-of-way rules" msgstr "显示路权规则" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1789 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1791 msgid "Realistic stop line colors" msgstr "真实的停止线颜色" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1792 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1794 msgid "Show lane borders" msgstr "显示车道边框" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1794 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1796 msgid "Show lane direction" msgstr "显示车道方向" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1797 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1799 msgid "Hide macro connectors" msgstr "隐藏macro连接器" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1799 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1801 msgid "Show sublanes" msgstr "显示辅车道" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1802 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1804 msgid "Show rails" msgstr "显示栏杆" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1804 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1806 msgid "Spread bidirectional railways/roads" msgstr "铺设双向铁路/公路" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1804 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1806 msgid "" "Make both directional edges for a bidirectional railways or roads visible" msgstr "使双向铁路或公路的两个方向的路段可见" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1807 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1809 msgid "Secondary shape" msgstr "次要形状" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1812 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1814 msgid "Exaggerate width by" msgstr "夸大宽度的方法有" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1818 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1820 msgid "Minimum size" msgstr "最小尺寸" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1824 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1826 msgid "Show edge id" msgstr "显示路段ID" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1825 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1827 msgid "Show street name" msgstr "显示街道名称" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1826 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1828 msgid "Show edge color value" msgstr "显示路段颜色值" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1827 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1829 msgid "Show edge scale value" msgstr "显示路段比例值" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1838 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1921 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1961 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1840 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1923 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1963 msgid "Show As" msgstr "显示为" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1840 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1923 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1963 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1842 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1925 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1965 msgid "'triangles'" msgstr "'三角形'" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1841 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1964 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1843 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1966 msgid "'boxes'" msgstr "'盒子'" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1842 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1925 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1965 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1844 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1927 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1967 msgid "'simple shapes'" msgstr "'简单的形状'" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1843 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1926 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1966 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1845 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1928 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1968 msgid "'raster images'" msgstr "'光栅图像'" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1844 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1924 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1846 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1926 msgid "'circles'" msgstr "'环线'" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1866 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1868 msgid "Scale size" msgstr "尺度大小" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1875 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1877 msgid "Show vehicle id" msgstr "显示车辆ID" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1876 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1878 msgid "Show vehicle color value" msgstr "显示车辆颜色值" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1877 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1879 msgid "Show vehicle scale value" msgstr "显示车辆比例值" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1878 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1880 msgid "Show vehicle text param" msgstr "显示车辆文本参数" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1885 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1887 msgid "Show blinker / brake lights" msgstr "显示转弯灯/制动灯" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1887 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1889 msgid "Show minimum gap" msgstr "显示最小间隙" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1889 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1891 msgid "Show brake gap" msgstr "显示制动间隙" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1891 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1893 msgid "Show Bluetooth range" msgstr "显示蓝牙范围" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1893 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1895 msgid "Show route index" msgstr "显示路径索引" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1895 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1897 msgid "Scale length with geometry" msgstr "具有几何形状的音阶长度" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1897 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1899 msgid "Show parking info" msgstr "显示停车信息" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1899 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1901 msgid "Draw reversed vehicles in reverse" msgstr "绘制反转的车辆倒车" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1944 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1946 msgid "Show person id" msgstr "显示个人ID" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1945 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1947 msgid "Show person color value" msgstr "显示人的颜色值" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1956 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1958 msgid "Containers" msgstr "容器" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1984 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1986 msgid "Show container id" msgstr "显示容器ID" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1995 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1997 msgid "Junctions" msgstr "交叉口" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2012 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2014 msgid "Draw junction shape" msgstr "绘制交叉口形状" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2014 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2016 msgid "Draw crossings/walkingareas" msgstr "绘制十字路口/步行区" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2016 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2018 msgid "Show lane to lane connections" msgstr "显示车道与车道的连接" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2020 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2022 msgid "Show link tls index" msgstr "显示链接tls索引" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2021 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2023 msgid "Show link junction index" msgstr "显示链接交叉口索引" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2022 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2024 msgid "Show junction id" msgstr "显示交叉口的ID" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2023 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2025 msgid "Show internal junction id" msgstr "显示内部交叉口的ID" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2024 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2026 msgid "Show internal edge id" msgstr "显示内部路段ID" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2025 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2027 msgid "Show crossing and walkingarea id" msgstr "显示十字路口和步行区ID" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2026 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2028 msgid "Show traffic light phase index" msgstr "显示交通信号灯相位索引" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2027 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2029 msgid "Show traffic light phase name" msgstr "显示交通灯相位名称" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2028 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2030 msgid "Show junction name" msgstr "显示交叉口名称" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2034 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2036 msgid "Additional" msgstr "补充" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2039 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2041 msgid "Show object id" msgstr "显示对象的ID" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2040 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2042 msgid "Show full name" msgstr "显示全名" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2047 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2049 msgid "StoppingPlace" msgstr "停靠地点" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2048 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2050 msgid "body" msgstr "体" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2049 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2051 msgid "sign" msgstr "标志" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2072 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2074 msgid "element" msgstr "要素" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2073 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2075 msgid "color" msgstr "颜色" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2074 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2076 msgid "width" msgstr "宽度" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2114 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2116 msgid "POIs" msgstr "兴趣点" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2130 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2132 msgid "POI detail" msgstr "兴趣点详情" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2135 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2137 msgid "Show poi id" msgstr "显示兴趣点 id" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2136 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2138 msgid "Show poi type" msgstr "显示兴趣点类型" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2137 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2139 msgid "Show poi text param" msgstr "显示兴趣点文本参数" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2149 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2151 msgid "Polygons" msgstr "多边形" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2164 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2166 msgid "Show polygon id" msgstr "显示多边形ID" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2165 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2167 msgid "Show polygon types" msgstr "显示多边形类型" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2179 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2181 msgid "Default Selection Color" msgstr "默认选择颜色" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2182 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2184 msgid "Miscellaneous" msgstr "其他事项" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2231 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2233 msgid "hide below threshold" msgstr "隐藏在阈值以下" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2238 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2240 msgid "Exaggerate edgeRelation width by" msgstr "夸大路段关系(edgeRelation)的宽度为" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2243 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2245 msgid "Exaggerate tazRelation width by" msgstr "夸大交通分区关系(tazRelation)的宽度为" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2249 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2251 msgid "Show data color value" msgstr "显示数据颜色值" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2255 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2257 msgid "Legend" msgstr "图例" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2260 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2262 msgid "Show Size Legend" msgstr "显示尺寸图例" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2263 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2265 msgid "Show Edge Color Legend" msgstr "显示路段颜色图例" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2266 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2268 msgid "Show Vehicle Color Legend" msgstr "显示车辆颜色图例" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2279 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2281 msgid "Dither" msgstr "抖动" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2285 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2287 msgid "Draw boundaries" msgstr "划定边界" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2288 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2290 msgid "Force draw for position selection" msgstr "强制抽签选取位置" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2291 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2293 msgid "Force draw for rectangle selection" msgstr "强制绘制的矩形选择" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2294 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2296 msgid "Disable dotted contours during selection/deletion" msgstr "在选择/删除过程中禁用点状的轮廓线" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2297 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2299 msgid "Recalculate boundaries" msgstr "重新计算界线" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2300 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2302 msgid "Show geometry point indices" msgstr "显示几何点的索引" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2306 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2308 msgid "3D view" msgstr "三维视图" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2311 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2313 msgid "Show TLS link markers" msgstr "显示交通信号灯(TLS)链接标记" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2314 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2316 msgid "Show domes around TLS models from decals" msgstr "从贴花中显示交通信号灯(TLS)模型周围的穹顶" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2317 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2319 msgid "Show auto-generated TLS models" msgstr "显示自动生成的交通信号灯(TLS)模型" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2319 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2321 msgid "Show head-up display" msgstr "显示平视显示器" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2325 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2327 msgid "Sun brightness" msgstr "阳光亮度" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2337 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2339 msgid "Sky color" msgstr "天空的颜色" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:120 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:120 msgid "Recenter View" -msgstr "" +msgstr "重新将视图置中" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:120 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:120 msgid "Recenter view to the simulated area." -msgstr "" +msgstr "重新将视图置于仿真区域。" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:124 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:124 msgid "Opens a menu which lets you edit the viewport. (Ctrl+I)" -msgstr "" +msgstr "打开一个选单,您可以在其中编辑检视区(viewport)。 (Ctrl+I)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:128 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:128 msgid "Toggle Zooming Style" -msgstr "" +msgstr "切换缩放样式" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:128 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:128 msgid "" "Toggles whether zooming is based at cursor position or at the center of the " "view." -msgstr "" +msgstr "切换是否缩放应基于游标位置,还是基于视图的中心。" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:135 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:135 msgid "Locate Structures" -msgstr "" +msgstr "定位结构(structures)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:135 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:135 msgid "Locate structures within the network." -msgstr "" +msgstr "在路网內定位结构(structures)。" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:139 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:139 msgid "Toggle View Tooltips" -msgstr "" +msgstr "切换查看工具提示" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:139 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:139 msgid "Toggles whether tooltips in the view shall be shown." -msgstr "" +msgstr "切换是否应显示视图中的工具提示。" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:145 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:145 msgid "Toggle Menu Tooltips" -msgstr "" +msgstr "切换选单工具提示" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:145 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:145 msgid "Toggles whether tooltips in the menu shall be shown." -msgstr "" +msgstr "切换是否显示选单中的工具提示。" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:161 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:161 msgid "Edit Coloring Schemes" -msgstr "" +msgstr "编辑著色方案(schemes)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:161 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:161 msgid "Opens a menu which lets you edit the coloring schemes. (F9)" -msgstr "" +msgstr "打开一个选单,您可以在其中编辑著色方案(schemes)。 (F9)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:172 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:172 msgid "Make Snapshot" -msgstr "" +msgstr "制作快照(snapshot)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:172 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:172 msgid "Makes a snapshot of the view." -msgstr "" +msgstr "制作视图的快照(snapshot)。" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:294 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:294 msgid "option window-size requires INT,INT" msgstr "选项窗口大小需要INT,INT" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:311 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:311 msgid "option window-pos requires INT,INT" msgstr "选项窗口位置(window-pos)需要INT,INT" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:340 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:340 msgid "Langua&ge" msgstr "语言" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:342 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:342 msgid "Change language to english. (en)" msgstr "将语言改为英文。(en)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:344 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:344 msgid "Change language to german. (de)" msgstr "将语言改为德文。(de)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:346 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:346 msgid "Change language to spanish. (es)" msgstr "将语言改为西班牙文。(es)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:348 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:348 msgid "Change language to french. (fr)" msgstr "将语言改为法语。(fr)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:350 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:350 msgid "Change language to italian. (it)" -msgstr "" +msgstr "改变为意大利语。 (it)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:352 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:352 msgid "简体中文 (zh)" -msgstr "简体中文 (zh)" +msgstr "简体中文" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:354 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:354 msgid "繁體中文 (zh-Hant)" msgstr "繁体中文 (zh-Hant)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:356 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:356 msgid "Change language to turkish. (tr)" msgstr "将语言改为土耳其语。(tr)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:358 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:358 msgid "Change language to hungarian. (hu)" msgstr "将语言改为匈牙利语。(hu)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:372 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:372 msgid "german" msgstr "德文" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:376 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:376 msgid "spanish" msgstr "西班牙文" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:380 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:380 msgid "french" msgstr "法文" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:384 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:384 msgid "italian" -msgstr "" +msgstr "意大利语" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:388 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:388 msgid "chinese" msgstr "中文" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:392 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:392 msgid "chinese simplified" msgstr "简体中文" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:396 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:396 msgid "turkish" msgstr "土耳其文" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:400 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:400 msgid "hungarian" msgstr "匈牙利语" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:404 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:404 msgid "english" msgstr "英文" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:412 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:412 msgid "Language changed to " msgstr "语言改为 " -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:414 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:414 msgid "Restart needed" msgstr "需要重新启动" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:415 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:415 msgid "Changing display language needs restart to take effect." msgstr "改变显示语言需要重新启动才能生效。" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:418 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:418 msgid "" "For the Debug build you might also need to set the LANG environment variable." msgstr "对于調試(Debug)构建,您可能还需要设置LANG环境变量。" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:421 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:421 msgid "Under development. You can help to improve the translation at:" msgstr "正在开发中。可以在以下网站帮助改进翻译:" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:254 +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:254 msgid " (No projection defined)" msgstr " (未定義投影方式)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:1738 +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:1747 msgid "Could not convert coordinates in %." msgstr "无法转换以%为单位的坐标。" +#~ msgid "Emissions" +#~ msgstr "排放物" + +#~ msgid "Mode for creating person plans. (C)" +#~ msgstr "建立人员旅行计划的模式。(C)" + +#~ msgid "Mode for creating containers. (P)" +#~ msgstr "创建集装箱的模式。(P)" + +#~ msgid "Undo enable " +#~ msgstr "启用撤消功能 " + +#~ msgid " attribute in '" +#~ msgstr " '中的属性" + +#~ msgid "Redo enable " +#~ msgstr "启用重做功能 " + +#~ msgid "Copy " +#~ msgstr "复制 " + +#~ msgid " name to clipboard" +#~ msgstr " 名称至剪贴板" + +#~ msgid " typed name to clipboard" +#~ msgstr " 输入名字到剪贴板上" + +#~ msgid "Could not build access in netedit; The lane '" +#~ msgstr "无法在netedit中建立访问;车道'" + +#~ msgid "' doesn't support pedestrians" +#~ msgstr "'不支持行人" + +#~ msgid "Could not build parking area with ID '" +#~ msgstr "不能用ID建立停车区 '" + +#~ msgid "' in netedit; Invalid departPos over lane." +#~ msgstr "netedit中的';在车道上无效的出发位置。" + +#~ msgid "Could not build lane area detector with ID '" +#~ msgstr "无法建立ID为''的车道区检测器" + +#~ msgid "' in netedit; invalid traffic light ID." +#~ msgstr "'在netedit中;无效的交通信号灯ID。" + +#~ msgid "' in netedit; Lanes aren't consecutives." +#~ msgstr "netedit中的';车道不是连续的。" + +#~ msgid "Could not build interval with ID '" +#~ msgstr "无法用ID' 建立时间间隔" + +#~ msgid "' in netedit; begin is greather than end." +#~ msgstr "netedit中的';开始(begin)比结束(end)要大。" + +#~ msgid "Could not build interval with begin '" +#~ msgstr "无法建立以'开始'为开头的间隔" + +#~ msgid "' in '" +#~ msgstr "'在 '" + +#~ msgid "' due overlapping." +#~ msgstr "'由于有重叠。" + +#~ msgid "Could not build Vaporizer with ID '" +#~ msgstr "无法建立具有ID的汽化器'" + +#~ msgid "Could not build TAZ with ID '" +#~ msgstr "无法建立ID为'的交通分区(TAZ)" + +#~ msgid "' in netedit; Invalid Shape." +#~ msgstr "netedit中的';无效的形状。" + +#~ msgid "Could not build overhead wire with ID '" +#~ msgstr "无法用ID建立高架线'" + +#~ msgid "Could not build POI with ID '" +#~ msgstr "无法建立ID为''的兴趣点" + +#~ msgid "' in netedit; Network requires a geo projection." +#~ msgstr "'在netedit中;网络需要一个地理投影。" + +#~ msgid "Could not build " +#~ msgstr "无法建立 " + +#~ msgid " with ID '" +#~ msgstr " ID为 '" + +#~ msgid "' in netedit; ID contains invalid characters." +#~ msgstr "'在netedit中;ID包含无效的字符。" + +#~ msgid "' in netedit; Invalid position over lane." +#~ msgstr "netedit中的';在车道上的位置无效。" + +#~ msgid "' in netedit; declared twice." +#~ msgstr "' 在netedit中;声明了两次。" + +#~ msgid " doesn't exist." +#~ msgstr " 不存在。" + +#~ msgid "' in netedit; attribute " +#~ msgstr "'在netedit中;属性 " + +#~ msgid " cannot be negative." +#~ msgstr " 不能是负数。" + +#~ msgid "' in netedit; list of VTypes isn't valid." +#~ msgstr "netedit中的';VTypes的列表是无效的。" + +#~ msgid "' in netedit; filename is invalid." +#~ msgstr "'在netedit中;文件名是无效的。" + +#~ msgid "' in netedit; list of lanes isn't valid." +#~ msgstr "'在netedit中;车道的列表是无效的。" + +#~ msgid " in netedit; " +#~ msgstr " 在netedit中; " + +#~ msgid "calibratorFlow of calibrator '" +#~ msgstr "校准器 的校准流程'" + +#~ msgid "" +#~ "' cannot be written. Either type or vehsPerHour or speed must be enabled" +#~ msgstr "'不能被写入。任意类型或vehsPerHour或速度必须被启用" + +#~ msgid "There is already a TAZ rel defined between '" +#~ msgstr "''之间已经定义了一个交通分区(TAZ)的关系" + +#~ msgid "There is already a TAZ rel defined in '" +#~ msgstr "已经有一个交通分区关联(TAZ rel)定义在'" + +#~ msgid "' doesn't exist." +#~ msgstr "'不存在。" + +#~ msgid " already exists" +#~ msgstr " 已经存在" + +#~ msgid " in netedit; edge doesn't exist." +#~ msgstr " 在netedit中;路段并不存在。" + +#~ msgid " in netedit; attribute '" +#~ msgstr " 在netedit中;属性'" + +#~ msgid "There is another " +#~ msgstr "还有另外一个 " + +#~ msgid " with the same ID='" +#~ msgstr " 具有相同的ID='" + +#~ msgid " need at least one " +#~ msgstr " 至少要有一个 " + +#~ msgid " with id '" +#~ msgstr " ID为''" + +#~ msgid "' doesn't exist in " +#~ msgstr "' 不存在于 " + +#~ msgid "Invalid definition for " +#~ msgstr "无效的定义 " + +#~ msgid " in " +#~ msgstr " 在 " + +#~ msgid "' cannot be created in " +#~ msgstr "'不能创建在 " + +#~ msgid "Invalid vehicle type '" +#~ msgstr "无效的车辆类型'" + +#~ msgid "' used in " +#~ msgstr "'用在 " + +#~ msgid " used in " +#~ msgstr " 用在 " + +#~ msgid "Invalid route '" +#~ msgstr "无效的路径'" + +#~ msgid "Invalid " +#~ msgstr "无效的 " + +#~ msgid " is greater than number of lanes" +#~ msgstr " 大于车道数" + +#~ msgid " is greater than vType" +#~ msgstr " 大于vType" + +#~ msgid "Invalid person type '" +#~ msgstr "无效的人的类型'" + +#~ msgid "Invalid personFlow type '" +#~ msgstr "无效的人流类型'" + +#~ msgid "Containers don't support stops at busStops" +#~ msgstr "容器不支持在公共汽车站停车" + +#~ msgid "A transport with edges attribute needs a list of edges" +#~ msgstr "一个带有路段属性的运输工具需要一个路段的列表" + +#~ msgid "A route transport needs a route" +#~ msgstr "一个路径运输需要路径" + +#~ msgid "Via edge '" +#~ msgstr "通过路段'" + +#~ msgid "- 'Start drawing' or ENTER" +#~ msgstr "- '开始绘图'或回车键" + +#~ msgid " to create shape." +#~ msgstr " t来创建形状。" + +#~ msgid "- 'Stop drawing' or ENTER to" +#~ msgstr "- '停止绘图'或回车键来" + +#~ msgid " finish shape creation." +#~ msgstr " 完成形状创建。" + +#~ msgid "- 'Abort drawing' or ESC to" +#~ msgstr "- '中止绘图'或ESC来" + +#~ msgid " abort shape creation." +#~ msgstr " 终止形状的创建。" + +#~ msgid "- 'Shift + Click' to remove" +#~ msgstr "- 'Shift + Click'来删除" + +#~ msgid " last inserted point." +#~ msgstr " 最后一个插入点。" + +#~ msgid "-Click over edge to" +#~ msgstr "-点击路段上的" + +#~ msgid " create or edit" +#~ msgstr " 创建或编辑" + +#~ msgid " geometry point." +#~ msgstr " 几何点。" + +#~ msgid "-Shift+click over edge" +#~ msgstr "-Shift+click 路段" + +#~ msgid " to edit start or end" +#~ msgstr " 编辑开始或结束" + +#~ msgid "- Shift+Click to select parent\n" +#~ msgstr "- Shift+Click选择母体\n" + +#~ msgid "- Click over a bus stop to\n" +#~ msgstr "- 点击公共汽车站上方的\n" + +#~ msgid " create a stop." +#~ msgstr " 创建一个站位。" + +#~ msgid "- Click over a container stop\n" +#~ msgstr "- 在一个容器上点击停止\n" + +#~ msgid " to create a stop." +#~ msgstr " 来创建一个站。" + +#~ msgid "- Click over a charging station\n" +#~ msgstr "- 点击进入充电站\n" + +#~ msgid "- Click over a parking area\n" +#~ msgstr "- 在停车区上方点击\n" + +#~ msgid "- Click over a lane to create\n" +#~ msgstr "- 在一个车道上点击,创建\n" + +#~ msgid " a stop." +#~ msgstr " 一个停靠。" + +#~ msgid "- No stop parents in current\n" +#~ msgstr "- 目前没有停靠的母体\n" + +#~ msgid " network." +#~ msgstr " 网络。" + +#~ msgid "VType Distributions" +#~ msgstr "V类型分布" + +#~ msgid "Show VType Distributions" +#~ msgstr "显示V型分布" + +#~ msgid "- Click over a route to\n" +#~ msgstr "- 在一条路线上点击,以\n" + +#~ msgid " create a vehicle." +#~ msgstr " 创建一个车辆。" + +#~ msgid "- Select two edges to\n" +#~ msgstr "- 选择两条路段来\n" + +#~ msgid " create a Trip." +#~ msgstr " 创建一个行程。" + +#~ msgid " create a vehicle with\n" +#~ msgstr " 创立一车辆带有\n" + +#~ msgid " embedded route." +#~ msgstr " 嵌入的路径。" + +#~ msgid "- Select two junctions\n" +#~ msgstr "- 选择两个路口\n" + +#~ msgid " to create a Trip." +#~ msgstr " 来创建一个行程。" + +#~ msgid " create a routeFlow." +#~ msgstr " 创建一个路径流。" + +#~ msgid " create a flow." +#~ msgstr " 创造一个流。" + +#~ msgid " create a flow with\n" +#~ msgstr " 创建一个具有以下特点的流\n" + +#~ msgid " to create a flow." +#~ msgstr " 来创建一个流。" + +#~ msgid "List ofe dges cannot be empty" +#~ msgstr "仪表盘列表不能是空的" + +#~ msgid "-Hold while" +#~ msgstr "-按住,同时" + +#~ msgid " clicking to create" +#~ msgstr " 点击创建" + +#~ msgid " unyielding connections" +#~ msgstr " 不屈不挠的连接" + +#~ msgid " (pass=true)." +#~ msgstr " ((pass=true)。" + +#~ msgid "-Hold while" +#~ msgstr "-按住,同时" + +#~ msgid " clicking to create " +#~ msgstr " 点击创建 " + +#~ msgid " conflicting connections" +#~ msgstr " 矛盾的联系" + +#~ msgid " (i.e. at zipper nodes" +#~ msgstr " (即在拉链结点上" + +#~ msgid " or with incompatible" +#~ msgstr " 或有不相容的" + +#~ msgid " permissions" +#~ msgstr " 权限" + +#~ msgid "- ESC:" +#~ msgstr "- 轉義鍵 (ESC):" + +#~ msgid " Deselect origin" +#~ msgstr " 取消选择原点" + +#~ msgid "- Control+Click:" +#~ msgstr "- 控制键+点击(Control+Click):" + +#~ msgid " Move view" +#~ msgstr " 移动视图" + +#~ msgid "- Shift+Click:" +#~ msgstr "- 移位键+点击 (Shift+Click):" + +#~ msgid " Splits edge in both directions" +#~ msgstr " 在两个方向上分割路段" + +#~ msgid "- Alt+Shift+Click:" +#~ msgstr "- Alt键+移位键+点击 (Alt+Shift+Click):" + +#~ msgid " Splits edge in one direction" +#~ msgstr " 在一个方向上分割路段" + +#~ msgid "-Click over junction to" +#~ msgstr "-点击路口,以" + +#~ msgid " mark candidate edges." +#~ msgstr " 标出候选路段。" + +#~ msgid "-Click over candidate" +#~ msgstr "-点击候选上方" + +#~ msgid " edges for selecting." +#~ msgstr " 选择的路段。" + +#~ msgid "- Toggle Membership:" +#~ msgstr "- 切换会员:" + +#~ msgid " Create new Sources/Sinks" +#~ msgstr " 创建新的源/汇" + +#~ msgid " with given weights." +#~ msgstr " 赋予的权重。" + +#~ msgid "- Keep Membership:" +#~ msgstr "- 保留会员资格:" + +#~ msgid "- Press ESC to clear" +#~ msgstr "- 按ESC键来清除" + +#~ msgid " current selection." +#~ msgstr " 目前的选择。" + +#~ msgid "popen() failed!" +#~ msgstr "popen() 失败!" + +#~ msgid "starting process silently...\n" +#~ msgstr "靜靜地开始处理...\n" + +#~ msgid "Run tool" +#~ msgstr "执行工具" + +#~ msgid "Cancel tool" +#~ msgstr "取消工具" + +#~ msgid "Accept settings" +#~ msgstr "接受设置" + #~ msgid "Configure Options" #~ msgstr "设定选项" diff -Nru sumo-1.17.0/data/po/zh-Hant_gui.po sumo-1.18.0/data/po/zh-Hant_gui.po --- sumo-1.17.0/data/po/zh-Hant_gui.po 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/po/zh-Hant_gui.po 2023-06-28 20:02:17.000000000 +0000 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: sumo\n" "Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" -"POT-Creation-Date: 2023-04-15 12:21+0200\n" -"PO-Revision-Date: 2023-04-24 13:10+0000\n" +"POT-Creation-Date: 2023-06-15 09:59+0200\n" +"PO-Revision-Date: 2023-04-26 09:39+0000\n" "Last-Translator: yunpangfloetteroed \n" "Language-Team: Chinese (Traditional) \n" @@ -19,583 +19,581 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.18-dev\n" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:292 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:295 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2208 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2209 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2211 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:507 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:510 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:513 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1558 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1559 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1560 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:292 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:295 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2218 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2219 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2221 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:513 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:516 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:519 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1567 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1568 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1569 msgid "N/A" msgstr "不適用" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:292 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:507 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:292 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:513 msgid "Original coordinate (before coordinate transformation in netconvert)" msgstr "原始坐標(在 netconvert 軟體中進行坐標轉換之前)" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:295 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:510 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:295 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:516 msgid "Network coordinate" msgstr "路網坐標" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:323 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:528 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:323 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:534 msgid "Ready." msgstr "準備完成。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:444 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1322 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:444 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1329 msgid "&File" msgstr "&檔案" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:446 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:200 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:446 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:200 msgid "New Window" msgstr "新视窗" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:446 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:446 msgid "Open a new sumo-gui window." msgstr "開啟一個新的 sumo-gui 视窗。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:450 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:450 msgid "&Open Simulation..." msgstr "&開啟模擬..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:450 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:450 msgid "Open a simulation (Configuration file)." msgstr "開啟模擬(設定檔)。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:453 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:453 msgid "Open &Network..." msgstr "開啟 &路網..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:453 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:453 msgid "Open a network." msgstr "開啟路網。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:456 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:456 msgid "Open Shapes " msgstr "開啟形狀檔案。 " -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:456 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:456 msgid "Load POIs and Polygons for visualization." msgstr "載入興趣點(POIs)和多邊形以進行視覺化。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:459 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:459 msgid "Open EdgeData " msgstr "開啟 EdgeData檔案。 " -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:459 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:459 msgid "Load edge related data for visualization." msgstr "載入路段相關資料以進行視覺化。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:462 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1009 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:256 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:462 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1015 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:256 msgid "&Reload" msgstr "&重新載入" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:462 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:462 msgid "Reloads the simulation / the network." msgstr "重新載入模擬和路網。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:465 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:465 msgid "Quick-Reload" msgstr "快速重新載入" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:465 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:465 msgid "Reloads the simulation (but not network)." msgstr "重新載入模擬(不含路網)。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:469 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:469 msgid "Save Configuration" msgstr "儲存設定檔" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:469 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:469 msgid "Save current options as a configuration file." msgstr "儲存目前選項於設定檔。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:472 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:300 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:91 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:87 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:88 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:472 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:300 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:95 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:95 msgid "Close" msgstr "關閉" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:472 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:472 msgid "Close the simulation." msgstr "關閉模擬。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:480 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1343 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:480 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1350 msgid "&Quit" msgstr "&退出" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:480 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1343 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:480 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1350 msgid "Quit the Application." msgstr "退出應用程式。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:489 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1357 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:489 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1364 msgid "&Edit" msgstr "&編輯" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:491 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:491 msgid "Edit Selected..." msgstr "編輯 Selected..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:491 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:491 msgid "Opens a dialog for editing the list of selected items." msgstr "開啟用於編輯所選項目表的對話框。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:494 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:494 msgid "Select lanes which allow..." msgstr "選擇車道, 其允許..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:494 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:494 msgid "Opens a menu for selecting a vehicle class by which to selected lanes." msgstr "開啟選單選擇所選車道上允許的車種類別。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:498 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:498 msgid "Edit Breakpoints" msgstr "編輯暫停點" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:498 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:498 msgid "Opens a dialog for editing breakpoints." msgstr "開啟對話窗以編輯暫停點。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:501 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1268 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:501 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1302 msgid "Edit Visualisation" msgstr "編輯視覺化展示" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:501 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1268 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:501 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1302 msgid "Opens a dialog for editing visualization settings." msgstr "開啟對話窗以編輯視覺展示選項。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:504 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1271 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:124 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:1587 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1305 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:124 +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:1596 msgid "Edit Viewport" msgstr "編輯檢視區" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:504 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1271 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1305 msgid "Opens a dialog for editing viewing area, zoom and rotation." msgstr "開啟對話窗以編輯觀看區域, 放大和旋轉。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:508 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:508 msgid "Open network in netedit" msgstr "在netedit內開啟路網" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:508 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:508 msgid "Opens current network in NETEDIT." msgstr "在 NETEDIT 內開啟現有路網。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:515 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:515 msgid "&Settings" msgstr "&設定" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:517 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:53 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:517 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:53 msgid "Application Settings" msgstr "應用程式設定" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:517 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:517 msgid "Open a Dialog for Application Settings editing." msgstr "開啟對話窗以編輯Application Settings。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:520 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:520 msgid "Gaming Mode\tCtrl+G\tToggle gaming mode on/off." msgstr "遊戲模式\tCtrl+G\t開啟/關閉遊戲模式。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:523 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:523 msgid "Full Screen Mode" msgstr "全螢幕模式" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:523 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:523 msgid "Toggle full screen mode on/off." msgstr "切換全螢幕模式 開啟/關閉。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:527 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1393 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:527 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1400 msgid "&Locate" msgstr "&定位" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:529 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1314 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1945 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1348 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1979 msgid "&Junctions" msgstr "&路口" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:529 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:529 msgid "Open a Dialog for Locating a Junction." msgstr "開啟對話窗以進行路口定位。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:532 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1319 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1948 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1353 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1982 msgid "&Edges" msgstr "&路段" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:532 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:532 msgid "Open a Dialog for Locating an Edge." msgstr "開啟對話窗以進行路段定位。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:535 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1374 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1954 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:535 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1408 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1988 msgid "&Vehicles" msgstr "&車輛" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:535 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:535 msgid "Open a Dialog for Locating a Vehicle." msgstr "開啟對話窗以進行車輛定位。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:538 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1379 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1957 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:538 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1413 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1991 msgid "&Persons" msgstr "&人員" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:538 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:538 msgid "Open a Dialog for Locating a Person." msgstr "開啟對話窗以進行人員定位。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:541 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:541 msgid "&Container" msgstr "&貨櫃" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:541 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:541 msgid "Open a Dialog for Locating a Container." msgstr "開啟對話窗以進行貨櫃定位。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:544 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1966 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:544 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2000 msgid "&TLS" msgstr "&號誌" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:544 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:544 msgid "Open a Dialog for Locating a Traffic Light." msgstr "開啟對話窗以進行號誌定位。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:547 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:604 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1969 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:547 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:630 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2003 msgid "&Additional" msgstr "&額外的" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:547 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:547 msgid "Open a Dialog for Locating an Additional Structure." msgstr "開啟對話窗以進行附加結構定位。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:550 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1972 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:550 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2006 msgid "P&oI" msgstr "P&oI" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:550 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:550 msgid "Open a Dialog for Locating a Point of Interest." msgstr "開啟對話窗以進行興趣點定位。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:553 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1975 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:553 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2009 msgid "Po&lygon" msgstr "多邊形" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:553 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:553 msgid "Open a Dialog for Locating a Polygon." msgstr "開啟對話窗以進行多邊形物件定位。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:557 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:557 msgid "Show Internal Structures" msgstr "顯示內部結構" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:557 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:557 msgid "Show internal junctions and streets in locator dialog." msgstr "在定位對話窗中顯示內部路口和道路。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:560 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:560 msgid "Show Parking Vehicles" msgstr "顯示停車車輛" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:560 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:560 msgid "Show parking vehicles in locator dialog." msgstr "在定位對話窗中顯示停車車輛。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:564 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:564 msgid "Show vehicles outside the road network" msgstr "顯示路網外的車輛" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:564 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:564 msgid "" "Show vehicles that are teleporting or driving remote-controlled outside the " "road network in locator dialog." msgstr "在定位對話窗中顯示在路網外被遣送(teleporting)或被遠程控制的車輛。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:570 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:570 msgid "Simulation" msgstr "模擬" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:572 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:90 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:89 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:277 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:572 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:373 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:90 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:93 msgid "Run" msgstr "執行" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:572 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:572 msgid "Start/ Resume the simulation." msgstr "開始/恢復模擬。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:575 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:575 msgctxt "Simulation" msgid "Stop" msgstr "停止" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:575 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:575 msgid "Halt the simulation." msgstr "暫停模擬。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:578 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:578 msgid "Step" msgstr "時間節距" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:578 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:578 msgid "Perform one simulation step." msgstr "執行一個模擬時間節距。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:581 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:581 msgid "Delay+" msgstr "延遲+" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:581 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:581 msgid "Increase simulation step delay." msgstr "增加模擬時間節距的延遲。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:583 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:583 msgid "Delay-" msgstr "延遲-" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:583 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:583 msgid "Decrease simulation step delay." msgstr "減少模擬時間節距的延遲。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:585 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:288 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:284 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:281 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:255 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1365 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2876 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:67 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:585 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:289 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:286 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:256 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1393 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2904 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:67 msgid "Save" msgstr "儲存" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:585 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:585 msgid "Save the current simulation state to a file." msgstr "現有模擬狀態另存新檔。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:588 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:287 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:283 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:280 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:73 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:257 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2874 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:65 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:588 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:288 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:285 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:258 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2902 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:65 msgid "Load" msgstr "載入" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:588 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:588 msgid "Load simulation state for the current network from file." msgstr "將模擬狀態檔案載入於目前路網內。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:592 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1458 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1465 msgid "&Window" msgstr "&視窗" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:593 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:747 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:593 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:747 msgid "Open new view" msgstr "開啟新視窗" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:595 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:750 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:595 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:750 msgid "Open new 3D view" msgstr "開啟新的3維視窗" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:598 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:598 msgid "Tile &Horizontally" msgstr "圖磚&水平方向" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:601 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:601 msgid "Tile &Vertically" msgstr "圖磚&垂直方向" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:604 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:604 msgid "Cascade" msgstr "級聯 (Cascade)" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:608 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:97 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:100 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:608 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:98 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:100 msgid "&Close" msgstr "&關閉" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:618 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:618 msgid "&Others..." msgstr "&其它..." -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:622 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2092 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:622 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2126 msgid "Show Status Line" msgstr "顯示狀態列" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:622 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:622 msgid "Toggle the Status Bar on/off." msgstr "切換狀態控制桿(開啟/關閉)。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:625 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2095 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:625 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2129 msgid "Show Message Window" msgstr "顯示訊息窗" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:625 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2095 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:625 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2129 msgid "Toggle the Message Window on/off." msgstr "切換訊息窗(開啟/關閉)。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:628 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:628 msgid "Show Simulation Time" msgstr "顯示模擬時間" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:628 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:628 msgid "Toggle the Simulation Time on/off." msgstr "切換模擬時間(開啟/關閉)。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:631 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:631 msgid "Show Simulation Delay" msgstr "顯示模擬延遲" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:631 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:631 msgid "Toggle the Simulation Delay Entry on/off." msgstr "切換模擬延遲輸入(開啟/關閉)。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:637 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2099 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:637 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2133 msgid "Clear Message Window" msgstr "清除訊息窗內訊息" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:637 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:637 msgid "Clear the message window." msgstr "清除訊息窗內訊息。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:644 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1463 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:644 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1470 msgid "&Help" msgstr "&求助" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:646 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2115 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:646 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2149 msgid "&Online Documentation" msgstr "&線上使用手冊" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:646 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2115 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:646 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2149 msgid "Open Online documentation." msgstr "開啟線上使用手冊。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:649 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2118 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:649 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2152 msgid "&Changelog" msgstr "&變更記錄" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:649 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2118 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:649 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2152 msgid "Open Changelog." msgstr "開啟變更記錄。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:651 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2120 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:651 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2154 msgid "&Hotkeys" msgstr "&快捷鍵" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:651 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2120 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:651 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2154 msgid "Open Hotkeys." msgstr "開啟快捷鍵。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:653 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2122 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:653 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2156 msgid "&Tutorial" msgstr "&範例教學" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:653 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2122 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:653 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2156 msgid "Open Tutorial." msgstr "開啟範例教學。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:655 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2124 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:655 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2158 msgid "&Feedback" msgstr "&回饋意見" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:655 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:655 msgid "Open feedback dialog." msgstr "開啟回饋意見對話窗。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:658 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2127 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:658 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2161 msgid "&About" msgstr "&關於" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:658 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:658 msgid "About sumo-gui." msgstr "關於sumo-gui。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:673 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:673 msgid "\tOpen simulation\tOpen a simulation (Configuration file)." msgstr "\t開啟模擬\t開啟一個模擬 (設定檔)。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:675 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:675 msgid "\tOpen network\tOpen a network." msgstr "\t開啟路網\t開啟一個路網。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:677 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:677 msgid "\tReload\tReloads the simulation / the network." msgstr "\t重新載入\t重新載入模擬 / 路網。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:686 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:686 msgid "\tRun\tStart/Resume the loaded simulation." msgstr "\t執行\t開始/恢復已載入的模擬。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:688 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:688 msgid "\tStop\tHalt the running simulation." msgstr "\t停止\t暫停執行中的模擬。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:690 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:690 msgid "\tStep\tPerform a single simulation step." msgstr "\t時間節距\t執行單一模擬時間節距。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:698 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:698 msgid "" "Time:\tToggle between time formats\tToggle between seconds and hour:minute:" "seconds display." msgstr "時間:\t切換時間格式\t時間顯示切換:秒 或 小時:分鐘:秒。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:712 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:712 msgid "" "Delay (ms):\tDelay per simulated second\tDelay per simulated second. Click " "to toggle between the last two delay values." @@ -603,2586 +601,2625 @@ "延遲(毫秒):\t每個模擬秒(simulated second)的延遲\t每個模擬秒的延遲. 按鍵進行最" "後兩個延遲值的切換。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:735 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:735 msgid "Scale Traffic:" msgstr "依比例增減交通:" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:735 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:735 msgid "" "Scale traffic from flows and vehicles that are loaded incrementally from " "route files." msgstr "依據從路徑檔案中逐量载入的流量和车辆數來增減交通量。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:747 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:747 msgid "Open a new microscopic view." msgstr "開啟新的微觀模擬视窗。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:750 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:750 msgid "Open a new 3D view." msgstr "開啟新的3維視窗。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:760 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:760 msgid "Waiting Time:" msgstr "停等時間:" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:760 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:760 msgid "Time spent waiting accumulated for all vehicles" msgstr "所有車輛累計的等待時間" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:771 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:771 msgid "Time Loss:" msgstr "損失時間:" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:771 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:771 msgid "" "Time lost due to being unable to drive with maximum speed for all vehicles" msgstr "所有車輛由於無法以最大速度行駛而損失的時間" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:782 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:782 msgid "Distance (km):" msgstr "距離(公里):" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:782 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:782 msgid "Total distance driven by DRT vehicles" msgstr "需求反應運輸(DRT)車輛的總行駛距離" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:793 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:793 msgid "Emergency Vehicle waiting time:" msgstr "緊急救援車輛的等候時間:" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:793 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:793 msgid "Time spent waiting accumulated for emergency vehicles" msgstr "緊急救援車輛累計的等待時間" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:818 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:150 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:818 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:150 msgid "Cl&ear Recent Networks" msgstr "清除最近開啟過的路網" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:819 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:151 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:819 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:151 msgid "No Recent Networks" msgstr "無最近開啟過的路網" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:823 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:155 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:823 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:155 msgid "Recent Networks" msgstr "最近開啟過的路網" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:841 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:173 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:841 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:173 msgid "Cl&ear Recent Configs" msgstr "清除最近開啟過的設定檔案" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:842 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:174 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:842 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:174 msgid "No Recent Configs" msgstr "無最近開啟過的設定檔案" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:846 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:178 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:846 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:178 msgid "Recent Configs" msgstr "最近開啟過的設定檔案" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:986 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1021 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1058 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:986 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1021 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1058 msgid "Running %." msgstr "執行中 %。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1068 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1068 msgid "Open Simulation Configuration" msgstr "開啟模擬設定檔" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1088 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1088 msgid "Open Network" msgstr "開啟路網" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1108 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1108 msgid "Open Shapes" msgstr "開啟幾何物件(shape)" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1122 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1150 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4634 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4669 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4704 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4736 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1122 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1150 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4650 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4685 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4720 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4752 #, c-format msgid "Loading of % failed." msgstr "% 檔案載入失敗。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1139 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1139 msgid "Open EdgeData" msgstr "開啟 EdgeData檔案" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1173 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1174 +msgid "Auto-Reloading." +msgstr "" + +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1174 +msgid "TraCI-Loading." +msgstr "" + +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1176 msgid "Reloading." msgstr "重新載入。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1183 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1187 msgid "Quick-Reloading." msgstr "快速重新載入。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1193 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1081 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1197 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1087 msgid "Already loading!" msgstr "已經載入!" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1205 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1209 msgid "Save SUMO Configuration" msgstr "儲存SUMO設定檔" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1220 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1224 msgid "Configuration saved to %." msgstr "設定檔案儲存於%。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1222 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1226 msgid "Could not save configuration to %." msgstr "無法將設定檔案儲存於%。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1278 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1304 -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2134 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1282 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1308 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2144 msgid "No simulation loaded!" msgstr "沒有載入任何模擬檔案!" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1320 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1324 msgid "Save Simulation State" msgstr "儲存模擬狀態" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1334 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1338 msgid "Simulation state saved to '%'." msgstr "模擬狀態保存到 '%'。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1342 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1346 msgid "Load Simulation State" msgstr "載入模擬狀態" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1354 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1358 msgid "State loaded from '%'." msgstr "從 '%' 載入模擬狀態(state)。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1356 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1360 msgid "Failed to load state from '%' (%)." msgstr "無法從 '%' 載入模擬狀態(state) (%)。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1813 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1817 #, c-format msgid "Loading of '%' failed!" msgstr "'%' 檔案載入失敗!" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:1827 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:1831 #, c-format msgid "'%' loaded." msgstr "'%' 已載入。" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2027 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2031 +msgid "Simulation ended at time: %. (%)" +msgstr "" + +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2037 msgid "Simulation ended" msgstr "模擬結束" -#: /home/micha/programming/sumo/src/gui/GUIApplicationWindow.cpp:2125 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2135 msgid "Loading '%'." msgstr "'%' 載入中。" -#: /home/micha/programming/sumo/src/gui/GUILoadThread.cpp:206 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2288 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2290 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2291 +#: D:\Repos\sumo/src\gui\GUIApplicationWindow.cpp:2292 +msgid "seconds" +msgstr "" + +#: D:\Repos\sumo/src\gui\GUILoadThread.cpp:206 msgid "Could not load edgedata-files '%'" msgstr "無法載入路段資料檔案(edgedata-files) '%'" -#: /home/micha/programming/sumo/src/gui/GUIRunThread.cpp:100 -#: /home/micha/programming/sumo/src/gui/GUIRunThread.cpp:106 +#: D:\Repos\sumo/src\gui\GUIRunThread.cpp:100 +#: D:\Repos\sumo/src\gui\GUIRunThread.cpp:106 msgid "Quitting (on error)." msgstr "退出 (由於錯誤)。" -#: /home/micha/programming/sumo/src/gui/GUIRunThread.cpp:265 +#: D:\Repos\sumo/src\gui\GUIRunThread.cpp:265 msgid "Simulation started with time: %." msgstr "模擬開始時間: %。" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:142 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:448 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:142 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:455 msgid "Save Snapshot" msgstr "儲存快照(snapshot)" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:167 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:468 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:167 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:475 msgid "No file extension was specified - saving Snapshot as PNG." msgstr "未指定副檔名 – 快照儲存為可攜式網路圖像格式(PNG)。" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:173 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:475 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:173 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:482 msgid "Saving failed." msgstr "儲存失敗。" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:175 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:479 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:175 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:486 msgid "Snapshot successfully saved!" msgstr "快照已成功地儲存!" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:219 -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:268 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:219 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:268 msgid "Unknown Message ID in onCmdLocate" msgstr "未知訊息ID 存在於onCmdLocate" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:233 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:505 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:233 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:512 msgid "Junction Chooser" msgstr "路口選擇器" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:237 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:513 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:237 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:520 msgid "Edge Chooser" msgstr "路段選擇器" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:241 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:529 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:87 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:241 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:536 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:87 msgid "Vehicle Chooser" msgstr "車輛選擇器" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:245 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:576 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:245 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:583 msgid "Person Chooser" msgstr "人員選擇器" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:249 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:249 msgid "Container Chooser" msgstr "貨櫃選擇器" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:253 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:253 msgid "Traffic Lights Chooser" msgstr "交通號誌選擇器" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:257 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:257 msgid "Additional Objects Chooser" msgstr "附加物件選擇器" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:261 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:655 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:261 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:667 msgid "POI Chooser" msgstr "興趣點選擇器" -#: /home/micha/programming/sumo/src/gui/GUISUMOViewParent.cpp:265 +#: D:\Repos\sumo/src\gui\GUISUMOViewParent.cpp:265 msgid "Polygon Chooser" msgstr "多邊形選擇器" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:269 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:269 msgid "phase names" msgstr "相位名稱" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:272 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:272 msgid "detectors" msgstr "偵測器" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:273 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:273 msgid "conditions" msgstr "條件" -#: /home/micha/programming/sumo/src/gui/GUITLLogicPhasesTrackerWindow.cpp:336 +#: D:\Repos\sumo/src\gui\GUITLLogicPhasesTrackerWindow.cpp:336 msgid "Overflow in time computation occurred." msgstr "時間計算發生溢位。" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:114 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:332 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:114 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:334 msgid "Locate Junctions" msgstr "定位路口" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:114 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:114 msgid "Locate a junction within the network." msgstr "在路網內定位一個路口。" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:119 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:336 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:119 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:338 msgid "Locate Edges" msgstr "定位路段" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:119 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:119 msgid "Locate an edge within the network." msgstr "在路網內定位一個路段。" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:124 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:344 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:124 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:346 msgid "Locate Vehicles" msgstr "定位車輛" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:124 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:124 msgid "Locate a vehicle within the network." msgstr "在路網內定位一輛車。" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:129 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:348 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:129 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:350 msgid "Locate Persons" msgstr "定位人員" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:129 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:129 msgid "Locate a person within the network." msgstr "在路網內定位一位人員。" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:134 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:134 msgid "Locate Container" msgstr "定位貨櫃" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:134 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:134 msgid "Locate a container within the network." msgstr "在路網內定位一個貨櫃。" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:139 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:367 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:139 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:369 msgid "Locate TLS" msgstr "定位交通號誌" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:139 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:139 msgid "Locate a tls within the network." msgstr "在路網內定位一個交通號誌。" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:144 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:371 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:144 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:373 msgid "Locate Additional" msgstr "定位附加物" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:144 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:144 msgid "Locate an additional structure within the network." msgstr "在路網內定位一個附加的結構。" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:149 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:375 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:149 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:377 msgid "Locate PoI" msgstr "定位興趣點" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:149 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:149 msgid "Locate a PoI within the network." msgstr "在路網內定位一個興趣點。" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:154 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:379 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:154 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:381 msgid "Locate Polygon" msgstr "定位多邊形" -#: /home/micha/programming/sumo/src/gui/GUIViewTraffic.cpp:154 +#: D:\Repos\sumo/src\gui\GUIViewTraffic.cpp:154 msgid "Locate a Polygon within the network." msgstr "在路網內定位一個多邊形。" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AboutSUMO.cpp:69 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:58 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_HallOfFame.cpp:57 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:415 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:411 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:408 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:234 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:247 -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:285 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:384 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:559 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:298 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:487 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:96 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:173 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:280 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AboutSUMO.cpp:69 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:58 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_HallOfFame.cpp:57 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:416 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:413 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:408 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:375 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:380 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:298 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:487 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:97 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:173 msgid "OK" msgstr "確定" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:62 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:62 msgid "Quit on Simulation End" msgstr "由於模擬結束而退出" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:64 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:64 msgid "Autostart Simulation on Load and Reload" msgstr "載入和重新載入後自動起動模擬" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:66 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:66 msgid "Reload Simulation after finish (Demo mode)" msgstr "結束後重新載入模擬(展示模式)" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:68 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:68 msgid "Locate elements when clicking on messages" msgstr "點擊訊息時進行元素(element)定位" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:74 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:74 msgid "Breakpoint offset when clicking on time message" msgstr "點擊時間訊息時,暫停點偏移值" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:98 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:98 msgid "Allow Textures" msgstr "允許紋理" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:101 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:76 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:133 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:995 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2352 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:101 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:76 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:133 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:995 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2354 msgid "&OK" msgstr "&確定" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_AppSettings.cpp:102 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:64 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:72 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:639 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:390 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:134 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:996 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2353 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_AppSettings.cpp:102 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:72 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:639 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:390 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:134 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:996 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2355 msgid "&Cancel" msgstr "&取消" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:69 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:69 msgid "Breakpoints Editor" msgstr "暫停點編輯器" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:89 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:90 msgid "&Load" msgstr "&載入" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:91 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:92 msgid "&Save" msgstr "&儲存" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:94 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:95 msgid "Clea&r" msgstr "清除" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:126 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2391 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2397 msgid "Time" msgstr "時間" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:141 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:142 msgid "Load Breakpoints" msgstr "載入暫停點" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:162 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:163 msgid "Save Breakpoints" msgstr "儲存暫停點" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:172 -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:155 -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:258 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:240 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1102 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1183 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:173 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:155 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:258 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:240 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1102 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1183 msgid "Storing failed!" msgstr "儲存失敗!" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:241 -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Breakpoints.cpp:244 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:242 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Breakpoints.cpp:245 msgid "Time format error" msgstr "時間格式錯誤" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:46 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:46 msgid "- General problem solving" msgstr "- 一般問題解決" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:50 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:50 msgid "- Sumo-user mailing list" msgstr "- Sumo使用者郵件討論群(mailing list)" -#: /home/micha/programming/sumo/src/gui/dialogs/GUIDialog_Feedback.cpp:54 +#: D:\Repos\sumo/src\gui\dialogs\GUIDialog_Feedback.cpp:54 msgid "- Send us an Email" msgstr "寄郵件給我們" -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_InductionLoop.cpp:55 -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_InductionLoop.cpp:59 -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_TrafficLight.cpp:56 -#: /home/micha/programming/sumo/src/guisim/Command_Hotkey_TrafficLight.cpp:60 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_InductionLoop.cpp:55 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_InductionLoop.cpp:59 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_TrafficLight.cpp:56 +#: D:\Repos\sumo/src\guisim\Command_Hotkey_TrafficLight.cpp:60 #, c-format msgid "Hotkey '%' is not supported" msgstr "不支援快捷鍵 '%'" -#: /home/micha/programming/sumo/src/guisim/GUIBaseVehicle.cpp:300 +#: D:\Repos\sumo/src\guisim\GUIBaseVehicle.cpp:300 msgid "GUI-triggered stop not implemented for meso" msgstr "透過圖像使用介面(GUI) 觸發的停止指令尚未完成於meso內" -#: /home/micha/programming/sumo/src/guisim/GUIBaseVehicle.cpp:876 -#: /home/micha/programming/sumo/src/guisim/GUIVehicle.cpp:668 +#: D:\Repos\sumo/src\guisim\GUIBaseVehicle.cpp:876 +#: D:\Repos\sumo/src\guisim\GUIVehicle.cpp:663 msgid "Vehicle parameter '%' key '%' is not a number for vehicle '%'." msgstr "車輛參數 '% ' 鍵 '% ' 不是車輛 '% ' 的數字。" -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:326 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:326 msgid "Network size exceeds 1 Lightyear. Please reconsider your inputs.\n" msgstr "路網規模超過 1 光年。 請重新考慮您的輸入。\n" -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:666 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:666 msgid "Trying to set data value for the unknown edge '%'." msgstr "嘗試為未知路段 '%' 設定數據值。" -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:690 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:690 msgid "" "Trying to set data value for the unknown relation from edge '%' to edge '%'." msgstr "嘗試為從路段 '%' 到路段 '%' 的未知關係(relation)設定資料值。" -#: /home/micha/programming/sumo/src/guisim/GUINet.cpp:708 +#: D:\Repos\sumo/src\guisim\GUINet.cpp:708 msgid "No data defined after simulation begin time." msgstr "模擬開始時間後沒有資料被定義。" -#: /home/micha/programming/sumo/src/guisim_main.cpp:57 +#: D:\Repos\sumo/src\guisim_main.cpp:57 msgid "GUI version of the microscopic, multi-modal traffic simulation SUMO." msgstr "微觀多運具交通模擬軟體SUMO 的圖形用戶界面 (GUI) 版本。" -#: /home/micha/programming/sumo/src/guisim_main.cpp:77 -#: /home/micha/programming/sumo/src/netedit/netedit_main.cpp:81 +#: D:\Repos\sumo/src\guisim_main.cpp:77 +#: D:\Repos\sumo/src\netedit\netedit_main.cpp:81 msgid "This system has no OpenGL support. Exiting." msgstr "此系統不支援開放圖形語言 (OpenGL)。 退出中。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:468 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:469 msgid "A microscopic, multi-modal traffic simulation." msgstr "微觀多運具模式交通模擬軟體。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:510 msgid "Recomputing" msgstr "重新計算" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:504 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:510 msgid "Recomputing is needed" msgstr "需要重新計算" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:513 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:519 msgid "Test coordinate" msgstr "測試坐標" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:827 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:850 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:833 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:856 msgid "loading TLS Programs from '" msgstr "從...載入交通號誌計畫" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:892 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:898 msgid "Loaded edge types from '" msgstr "載入的路段類型從 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:894 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:927 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:900 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:933 msgid "load edgeTypes" msgstr "載入edgeTypes" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:925 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:931 msgid "Reloaded edge types from '" msgstr "重新載入的路段類型從 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:982 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:988 msgid "Reloading netedit config file '" msgstr "重新載入netedit 的設定檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:986 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:992 msgid "Reloading sumo config file '" msgstr "重新載入sumo的設定檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:990 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1051 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:996 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1057 msgid "Reloading network file '" msgstr "重新載入路網檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1006 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1012 msgid "&Reload Netedit config" msgstr "&重新載入 Netedit 的設定檔" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1007 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1013 msgid "&Reload Sumo config" msgstr "&重新載入Sumo的設定檔" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1008 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1014 msgid "&Reload Network" msgstr "&重新載入路網" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1253 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1260 msgid "Loading of '" msgstr "...載入中" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1258 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1265 msgid "'" msgstr "'" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1258 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1265 msgid "' loaded." msgstr "已載入。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1347 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1354 msgid "&Modes" msgstr "&運具" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1382 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1389 msgid "L&ock" msgstr "鎖定" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1389 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1396 msgid "&Processing" msgstr "&處理中" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1414 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1421 msgid "&Tools" msgstr "&工具" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1416 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1423 msgid "Detectors" msgstr "偵測器" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1417 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1424 msgid "Districts" msgstr "分區" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1418 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1425 msgid "DRT" msgstr "需求反應運輸(DRT)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1419 -msgid "Emissions" -msgstr "排放物" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1420 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1427 msgid "CityBrain" msgstr "城市大腦(CityBrain)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1421 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1428 msgid "GTFS" msgstr "一般公共交通數據規範(GTFS)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1422 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1429 msgid "Vissim" msgstr "Vissim" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1423 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1430 msgid "Visum" msgstr "Visum" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1431 msgid "Import" msgstr "導入" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1425 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1432 msgid "Net" msgstr "路網" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1426 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:673 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2744 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1433 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:699 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2750 msgid "Route" msgstr "路徑" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1427 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1434 msgid "Output" msgstr "輸出" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1428 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:227 -msgid "Shapes" -msgstr "形狀物(shapes)" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1429 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1436 msgid "TLS" msgstr "交通號誌" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1430 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1437 msgid "Turn-defs" msgstr "轉向定義(Turn-defs)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1431 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1438 msgid "Visualization" msgstr "視覺化" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1432 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1439 msgid "XML" msgstr "可延伸標示語言(XML)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1519 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1526 msgid "Network computed" msgstr "路網已計算完成" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1523 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1530 msgid "Press F5" msgstr "按F5按鍵" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1524 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1531 msgid "Network requires recomputing" msgstr "路網需要重新計算" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1591 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1600 msgid "Loading console arguments" msgstr "載入控制引數" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1619 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1628 msgid "Creating new network." msgstr "建立新路網。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1630 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1639 msgid "Trying to load an empty network" msgstr "嘗試載入一個空白路網" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1646 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1655 msgid "Loading network file '" msgstr "載入路網檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1658 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1667 msgid "Trying to load an empty configuration" msgstr "嘗試載入一個空白設定檔" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1674 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1683 msgid "Loading configuration file '" msgstr "載入設定檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1704 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1713 msgid "Select Import Options" msgstr "選擇匯入選項" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1710 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1719 msgid "Loading OSM file '" msgstr "載入開放街圖(OSM)檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1732 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1739 msgid "Recompute with volatile options" msgstr "使用易失變數選項進行重新計算" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1733 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1740 msgid "" "Changes produced in the net due a recomputing with volatile options cannot " "be undone. Continue?" msgstr "由於使用可變選項重新計算而在網絡中產生的更改將無法復原。 繼續執行?" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1973 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2033 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:1980 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2040 msgid "Running " msgstr "執行中 " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1996 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2003 msgid "Loading network '" msgstr "載入路網 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:1996 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2005 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2003 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2012 msgid "' in SUMO-GUI" msgstr "' 在 SUMO-GUI 中" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2005 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2012 msgid "Loading sumo config '" msgstr "載入Sumo的設定檔" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2317 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2325 msgid "Netedit options" msgstr "Netedit 選項" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2334 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1826 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2342 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1860 msgid "Sumo options" msgstr "sumo選項" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2351 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2359 msgid "Netgenerate options" msgstr "Netgenerate 選項" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2368 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1253 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:102 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2376 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1287 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:103 msgid "Undo" msgstr "還原" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:2400 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1256 -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:105 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:2408 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1290 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:106 msgid "Redo" msgstr "重做" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3072 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3080 msgid "Saving Network failed!" msgstr "儲存路網失敗!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3078 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3086 msgid "Network saved in '" msgstr "路網儲存於 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3084 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3092 msgid "Could not save network in '" msgstr "無法將路網儲存於 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3130 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3148 msgid "Plain XML saved with prefix '" msgstr "以前置字為基礎儲存的純 XML檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3135 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3153 msgid "Saving plain xml failed!" msgstr "儲存純 xml 檔案失敗!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3159 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3177 msgid "Joined junctions saved to '" msgstr "整合路口儲存於" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3164 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3182 msgid "Saving joined junctions failed!" msgstr "儲存整合路口失敗!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3227 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3245 msgid "Netedit configuration saved in '" msgstr "netedit的設定檔案儲存於" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3233 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3251 msgid "Could not save netedit configuration in '" msgstr "無法將netedit的設定檔案儲存於" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3337 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3355 msgid "SUMO configuration saved in '" msgstr "SUMO設定檔儲存於" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3345 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3363 msgid "Could not save SUMO configuration in '" msgstr "無法將SUMO 設定檔儲存於" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3399 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3417 msgid "TLS Programs saved in '" msgstr "號誌時制計畫儲存於" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3422 msgid "Saving TLS Programs failed!" msgstr "儲存號誌時制計畫失敗!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3447 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3465 msgid "EdgeType saved in '" msgstr "EdgeType 儲存於" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3452 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3470 msgid "Saving edgeTypes failed!" msgstr "儲存EdgeType失敗!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3556 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3574 msgid "load additionals from '" msgstr "從 ' 載入附加物(additionals)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3560 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1304 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3578 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1307 msgid "Loading of additional file failed: " msgstr "載入附加檔案失敗: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3566 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1306 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3584 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1309 msgid "Loading of additional file sucessfully: " msgstr "成功載入附加檔案: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3610 msgid "reloading additionals from '" msgstr "從 ' 重新載入附加物" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3597 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3615 msgid "Reloading of additional file failed: " msgstr "重新載入附加檔案失敗: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3640 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3658 msgid "Additionals saved in '" msgstr "附加物(additionals)儲存於" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3650 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3667 msgid "Saving additionals failed!" msgstr "儲存附加物(additional)失敗!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3720 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4659 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4662 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3737 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4675 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4678 msgid "loading demand elements from '" msgstr "從 ' 載入交通需求元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3724 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1315 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3741 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1318 msgid "Loading of route file failed: " msgstr "載入路徑檔案失敗: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3730 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1317 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3747 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1320 msgid "Loading of route file sucessfully: " msgstr "成功載入路徑檔案: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3761 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3778 msgid "Reloading of route file failed: " msgstr "重新載入路徑檔案失敗: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3802 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3819 msgid "Demand elements saved in '" msgstr "交通需求元素儲存於 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3812 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3828 msgid "Saving demand elements failed!" msgstr "儲存需求元素失敗!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3884 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4728 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3900 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4744 msgid "loading data elements from '" msgstr "從 '載入資料元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3888 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1326 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3904 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1329 msgid "Loading of data file failed: " msgstr "載入資料檔案失敗: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3894 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1328 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3910 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1331 msgid "Loading of data file sucessfully: " msgstr "成功載入資料檔案: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3924 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3940 msgid "reloading data elements from '" msgstr "從 ' 重新載入資料元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3929 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3945 msgid "Reloading of data file failed: " msgstr "載入資料檔案失敗: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3971 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3987 msgid "Data elements saved in '" msgstr "資料元素儲存於 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:3976 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:3992 msgid "Saving data elements failed!" msgstr "儲存資料元素失敗!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4048 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4064 msgid "load meanDatas from '" msgstr "從 ' 載入meanDatas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4052 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1337 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4068 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1340 msgid "Loading of meandata file failed: " msgstr "載入meandata檔案失敗: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4058 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4089 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1339 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4074 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4105 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1342 msgid "Loading of meandata file sucessfully: " msgstr "成功載入meandata檔案: " -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4084 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4100 msgid "reloading meanDatas from '" msgstr "從 ' 重新載入 meanDatas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4128 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4144 msgid "MeanDatas saved in '" msgstr "MeanDatas儲存於 '" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4133 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4149 msgid "Saving meanData failed!" msgstr "儲存平均資料(meanData)失敗!" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4182 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4198 msgid "Confirm close Network" msgstr "確認關閉路網" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4183 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4199 msgid "You have unsaved changes in the network." msgstr "您在路網中有尚未儲存的變更。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4184 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4250 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4294 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4338 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4382 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4200 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4266 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4310 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4354 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4398 msgid "Do you wish to close and discard all changes?" msgstr "您要關閉並放棄所有變更嗎?" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4248 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4264 msgid "Save additional elements before close" msgstr "關閉前儲存附加元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4249 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4265 msgid "You have unsaved additional elements." msgstr "您有尚未儲存的附加元素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4292 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4308 msgid "Save demand elements before close" msgstr "關閉前儲存需求元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4293 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4309 msgid "You have unsaved demand elements." msgstr "您有尚未儲存的需要元素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4336 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4352 msgid "Save data elements before close" msgstr "關閉前儲存資料元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4337 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4353 msgid "You have unsaved data elements." msgstr "您有尚未儲存的資料元素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4380 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4396 msgid "Save meanData elements before close" msgstr "關閉前儲存meanData元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4381 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4397 msgid "You have unsaved meanData elements." msgstr "您有尚未儲存的meanData元素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4624 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4640 msgid "loading additional elements from '" msgstr "從 ' 載入附加元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4627 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4643 msgid "loading additionals from '" msgstr "從 ' 載入附加物" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4694 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4710 msgid "loading meanDatas from '" msgstr "從 ' 載入meanDatas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4697 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4713 msgid "loading meandatas from '" msgstr "從 ' 載入meandatas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindow.cpp:4731 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindow.cpp:4747 msgid "Loading data elements from '" msgstr "從 ' 載入資料元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:130 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:130 msgid "nets" msgstr "路網" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:131 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:131 msgid "configs" msgstr "設定檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:196 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:196 msgid "&New Network" msgstr "&新路網" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:196 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:196 msgid "Create a new network." msgstr "建立新路網。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:200 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:200 msgid "Open a new netedit window." msgstr "開啟新的netedit 視窗。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:204 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:204 msgid "Generate Network" msgstr "產生路網" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:204 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:204 msgid "Create network using netgenerate." msgstr "使用netgenerate建立路網。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:211 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:211 msgid "Load Netedit config..." msgstr "載入Netedit 設定檔案..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:211 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:211 msgid "Load a netedit configuration file." msgstr "載入netedit 設定檔。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:215 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:215 msgid "Load Sumo config..." msgstr "載入Sumo設定檔案..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:215 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:215 msgid "Load a SUMO configuration file." msgstr "載入 SUMO 設定檔。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:222 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:222 msgid "&Open Network..." msgstr "&開啟路網..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:222 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:222 msgid "Open a SUMO network." msgstr "開啟SUMO路網。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:226 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:226 msgid "Open Netconvert Configura&tion..." msgstr "開啟Netconvert設定檔案..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:226 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:226 msgid "Open a configuration file with NETCONVERT options." msgstr "使用NETCONVERT選項開啟設定檔案。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:230 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:230 msgid "Import &Foreign Network..." msgstr "匯入 &外部路網..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:230 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:230 msgid "Import a foreign network such as OSM." -msgstr "匯入外部路網,例如 OSM。" +msgstr "匯入外部路網,例如 開放街圖(OSM)。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:237 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:237 msgid "&Save Network" msgstr "&儲存路網" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:237 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:237 msgid "Save the network." msgstr "儲存路網。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:241 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:241 msgid "Save Net&work As..." msgstr "將路網另存為..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:241 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:241 msgid "Save the network to another file." msgstr "將路網儲存到另一個檔案。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:245 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:245 msgid "Save Plain XM&L..." msgstr "儲存純XML檔案..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:245 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:245 msgid "Save a plain XML representation of the network." msgstr "將路網以純 XML形式進行儲存。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:249 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:249 msgid "Save &Joined Junctions..." msgstr "儲存整合的路口..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:249 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:249 msgid "Save log of joined junctions (allows reproduction of joins)." msgstr "儲存整合路口的紀錄(允許連接點重現)。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:256 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:260 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:256 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:260 msgid "Reload the network." msgstr "重新載入路網。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:260 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:260 msgid "Reload Network" msgstr "重新載入路網" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:267 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:267 msgid "Netedit Config" msgstr "Netedit設定檔" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:271 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:271 msgid "Sumo Config" msgstr "Sumo設定檔" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:275 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:275 msgid "Traffic Lights" msgstr "交通號誌" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:279 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:279 msgid "Edge Types" msgstr "路段類型" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:283 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:283 msgid "Additionals and Shapes" msgstr "附加物及圖形物件" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:287 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:287 msgid "Demand Elements" msgstr "交通需求元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:291 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:291 msgid "Data Elements" msgstr "資料元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:295 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:295 msgid "MeanData Elements" msgstr "MeanData元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:300 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:300 msgid "Close the network." msgstr "關閉路網。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:334 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:334 msgid "Save Netedit Config" msgstr "儲存Netedit設定檔" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:334 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:334 msgid "Save netedit configuration file." msgstr "儲存netedit設定檔。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:338 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:338 msgid "Save Netedit Config As..." msgstr "將 Netedit 設定檔另存為..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:338 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:338 msgid "Save netedit configuration in a new file." msgstr "將 netedit 設定檔儲存為一個新檔案。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:344 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:344 msgid "Reload Netedit Config" msgstr "重新載入 Netedit 的設定檔" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:344 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:344 msgid "Reload netedit configuration." msgstr "重新載入 netedit 的設定檔。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:352 msgid "Save Sumo Config" msgstr "儲存Sumo設定檔" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:352 msgid "Save sumo configuration file." msgstr "儲存sumo設定檔。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:356 msgid "Save Sumo Config As..." msgstr "將Sumo設定檔另存為..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:356 msgid "Save sumo configuration in a new file." msgstr "將 sumo 設定檔儲存為一個新檔案。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:362 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:362 msgid "Reload Sumo Config" msgstr "重新載入Sumo的設定檔" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:362 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:362 msgid "Reload sumo configuration." msgstr "重新載入Sumo的設定檔。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:370 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:370 msgid "Load TLS Programs..." msgstr "載入號誌時制計畫..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:370 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:370 msgid "Load programs for traffic lights in the current net." msgstr "於現有路網內載入交通號誌計畫。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:376 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:376 msgid "Save TLS Programs" msgstr "儲存交通號誌計畫" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:376 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:376 msgid "Save all traffic light programs of the current network." msgstr "儲存現有路網內所有交通號誌計畫。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:380 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:380 msgid "Save TLS Programs As..." msgstr "將交通號誌計畫另存為..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:380 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:380 msgid "Save all traffic light programs of the current network to another file." msgstr "現有路網內所有交通號誌計畫另存新檔。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:386 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:386 msgid "Reload TLS Programs" msgstr "重新載入交通號誌計畫" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:386 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:386 msgid "Reload TLS Programs." msgstr "重新載入交通號誌計畫。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:394 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:394 msgid "Load Edge Types..." msgstr "載入路段類型..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:394 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:394 msgid "Load edge types in the current net." msgstr "於現有路網內載入路段類型。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:400 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:400 msgid "Save Edge Types" msgstr "儲存路段類型" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:400 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:400 msgid "Save edge types of the current net." msgstr "儲存現有路網內的路段類型。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:404 msgid "Save Edge Types As..." msgstr "將路段類型另存為…" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:404 msgid "Save edge types of the current net to another file." msgstr "將現有路網內的路段類型另存新檔。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:410 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:410 msgid "Reload edge types" msgstr "重新載入路段類型" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:410 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:410 msgid "Reload edge types." msgstr "重新載入路段類型。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:418 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:418 msgid "Load Additionals..." msgstr "載入附加物…" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:418 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:418 msgid "Load additionals and shapes." msgstr "載入附加物及形狀。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:424 msgid "Save Additionals" msgstr "儲存附加物" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:424 msgid "Save additionals and shapes." msgstr "儲存附加物及形狀。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:428 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:428 msgid "Save Additionals As..." msgstr "將附加物另存為..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:428 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:428 msgid "Save additional elements to another file." msgstr "將附加元素(element)另存新檔。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:434 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:434 msgid "Reload Additionals" msgstr "重新載入附加物" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:434 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:434 msgid "Reload additionals." msgstr "重新載入附加物。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:442 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:442 msgid "Load Demand Elements..." msgstr "載入需求元素..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:442 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:442 msgid "Load demand elements." msgstr "載入需求元素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:448 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:448 msgid "Save Demand Elements" msgstr "儲存需求元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:448 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:448 msgid "Save demand elements." msgstr "儲存需求元素 。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:452 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:452 msgid "Save Demand Elements As..." msgstr "將需求元素另存為…" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:452 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:452 msgid "Save demand elements to another file." msgstr "將需求元素另存新檔。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:458 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:458 msgid "Reload Demand Elements" msgstr "重新載入需求元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:458 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:458 msgid "Reload demand elements." msgstr "重新載入需求元素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:466 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:466 msgid "Load Data Elements..." msgstr "載入資料元素..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:466 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:466 msgid "Load data elements." msgstr "載入資料元素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:472 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:472 msgid "Save Data Elements" msgstr "儲存資料元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:472 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:472 msgid "Save data elements." msgstr "儲存資料元素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:476 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:476 msgid "Save Data Elements As..." msgstr "將資料元素另存為…" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:476 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:476 msgid "Save data elements to another file." msgstr "將資料元素另存新檔。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:482 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:482 msgid "Reload Data Elements" msgstr "重新載入資料元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:482 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:482 msgid "Reload data elements." msgstr "重新載入資料元素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:490 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:490 msgid "Load MeanDatas..." msgstr "載入 MeanDatas..." -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:490 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:490 msgid "Load meanDatas and shapes." msgstr "載入 MeanDatas及圖形物件檔案。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:496 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:496 msgid "Save MeanDatas" msgstr "儲存MeanDatas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:496 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:496 msgid "Save meanDatas and shapes." msgstr "儲存MeanDatas及圖形物件檔案。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:500 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:500 msgid "Save MeanDatas As..." msgstr "將MeanDatas另存為…" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:500 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:500 msgid "Save meanData elements to another file." msgstr "將meanDatas元素另存新檔。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:506 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:506 msgid "Reload MeanDatas" msgstr "重新載入MeanDatas" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:506 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:506 msgid "Reload meanDatas." msgstr "重新載入MeanDatas。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:526 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:526 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2197 +msgid "&Network" +msgstr "&路網" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:526 +msgid "Supermode network." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2200 +msgid "&Demand" +msgstr "&需求" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:529 +msgid "Sueprmode demand." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2203 +msgid "&Data" +msgstr "&資料" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:532 +msgid "Supermode data." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:552 msgid "&Inspect" msgstr "&檢查" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:526 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:552 msgid "Inspect elements and change their attributes." msgstr "檢查元素並更改其屬性。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:555 msgid "&Delete" msgstr "&刪除" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:529 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:555 msgid "Delete elements." msgstr "刪除元素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:558 msgid "&Select" msgstr "&選擇" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:532 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:558 msgid "Select elements." msgstr "選擇元素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:589 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:670 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:615 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:696 msgid "&Move" msgstr "&移動" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:589 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:670 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:615 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:696 msgid "Move elements." msgstr "移動元素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:618 msgid "&Edge" msgstr "&路段" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:592 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:618 msgid "Create junction and edges." msgstr "建立路口及路段。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:595 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:621 msgid "&Connection" msgstr "&連接" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:595 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:621 msgid "Modes connections between lanes." msgstr "車道之間的運具連接。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:598 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:624 msgid "Pro&hibition" msgstr "禁止" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:598 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:624 msgid "Modes connection prohibitions." msgstr "禁止的運具連接。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:601 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:627 msgid "Modes traffic lights over junctions." msgstr "模式 交通號誌位於路口。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:604 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:630 msgid "Create additional elements." msgstr "建立附加元素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:607 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:633 msgid "C&rossing" msgstr "跨越" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:607 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:633 msgid "Create crossings between edges." msgstr "在路段之間建立人行穿越道。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:610 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:636 msgid "TA&Z" msgstr "TAZ" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:610 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:636 msgid "Create Traffic Assignment Zones." msgstr "建立交通指派分區。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:613 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:639 msgid "Create Points-Of-Interest and polygons." msgstr "建立興趣點及多邊形物件。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:616 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:642 msgid "&Wire" msgstr "&通訊線(Wire)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:616 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:642 msgid "Create wires." msgstr "建立通訊線。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:673 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:699 msgid "Create Routes." msgstr "建立路徑。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:676 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:702 msgid "Vehicle" msgstr "車輛" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:676 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:702 msgid "Create vehicles." msgstr "建立車輛。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:679 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:705 msgid "Type" msgstr "類型" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:679 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:705 msgid "Create types (vehicles, person an containers)." msgstr "建立類型(車輛, 人和貨櫃)。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:682 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:708 +msgid "TypeDistribution" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:708 +msgid "Create type distributions." +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:711 msgid "Stop" msgstr "停止" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:682 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:711 msgid "Create stops." msgstr "建立停靠點。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:685 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:714 msgid "Person" msgstr "人員" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:685 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:714 msgid "Create persons." msgstr "建立人員。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:688 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:717 msgid "Person plan" msgstr "人員旅運計畫" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:688 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:717 msgid "Create person plans." msgstr "建立人員旅運計畫。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:691 -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:179 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:720 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:179 msgid "Container" msgstr "貨櫃" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:691 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:720 msgid "Create containers." msgstr "建立貨櫃。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:694 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:723 msgid "Container plan" msgstr "貨櫃計劃" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:694 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:723 msgid "Create container plans." msgstr "建立貨櫃計畫。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:729 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:758 msgid "&EdgeData" msgstr "&路段資料(EdgeData)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:729 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:758 msgid "Create edgeData elements." msgstr "建立edgeData 元素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:732 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:761 msgid "Edge&Relation" msgstr "路段&關係" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:732 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:761 msgid "Create edgeRelation elements." msgstr "建立edgeRelation元素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:735 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:764 msgid "TA&ZRelation" msgstr "交通分區關係線" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:735 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:764 msgid "Create TAZRelation elements." msgstr "建立TAZRelation 元素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:738 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:767 msgid "&MeanData" msgstr "&平均值資料" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:738 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:767 msgid "Create MeanData edge/lanes." msgstr "建立MeanData路段/車道。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:800 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:997 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2316 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2627 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:834 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1031 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2316 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2627 msgid "Show grid" msgstr "顯示網格" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:805 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1002 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1137 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2324 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2635 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2922 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:839 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1036 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1171 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2324 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2635 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2922 msgid "Hide junction shape" msgstr "隱藏路口形狀" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:810 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:844 msgid "Draw vehicles spread in lane or in depart position" msgstr "繪製在車道上或是在出發位置上的車輛" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:815 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1152 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2340 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2944 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:849 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1186 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2340 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2944 msgid "Show demand elements" msgstr "顯示需求元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:820 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:854 msgid "Clicking should target lanes" msgstr "點選目標車道" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:825 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2355 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:859 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2355 msgid "Show connections over junctions" msgstr "顯示路口內的連接線(connection)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:830 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2363 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:864 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2363 msgid "Hide connections" msgstr "隱藏連接線(connection)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:835 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:869 msgid "Show sub-additional elements" msgstr "顯示次要附加元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:840 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2379 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:874 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2379 msgid "Show TAZ elements" msgstr "顯示TAZ元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:845 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:879 msgid "Selecting multiple edges automatically select their junctions" msgstr "選擇多個路段時即會自動選擇其相交路口" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:850 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:884 msgid "Clicking should apply state changes to all phases of TLS plan" msgstr "點選後號誌計畫內所有相位(phase)將使用改變的狀態(state)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:855 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:889 msgid "Ask for confirmation before merging junction" msgstr "合併路口前要求確認" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:860 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:894 msgid "Show bubbles over junctions shapes" msgstr "在路口形狀上顯示氣泡(bubble)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:865 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:899 msgid "Apply mouse movement to elevation" msgstr "將滑鼠移動應用為高程" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:870 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:904 msgid "Create consecutive edges" msgstr "建立連續路段" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:875 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:909 msgid "Create an edge in the opposite direction" msgstr "在相反方向建立一個路段" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1007 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2643 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1041 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2643 msgid "Draw vehicles spread/depart position" msgstr "繪製車輛散佈/出發位置" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1012 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1147 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2651 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2937 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1046 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1181 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2651 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2937 msgid "Show shapes" msgstr "顯示形狀物件" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1017 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2659 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1051 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2659 msgid "Show all trips" msgstr "顯示所有旅次" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1022 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2667 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1056 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2667 msgid "Show all person plans" msgstr "顯示所有旅運者計劃" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1027 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2675 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1061 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2675 msgid "Lock selected person" msgstr "鎖定選取的人" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1032 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1066 msgid "Show all container plans" msgstr "顯示所有貨櫃(container)運送計劃" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1037 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2691 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1071 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2691 msgid "Lock selected container" msgstr "鎖定選定的貨櫃" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1042 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2699 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1076 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2699 msgid "Show non-inspected demand elements" msgstr "顯示非檢查的需求元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1047 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2707 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1081 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2707 msgid "Show number of overlapped routes" msgstr "顯示重疊路線的數量" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1142 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2930 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1176 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2930 msgid "Show additionals" msgstr "顯示附加物" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1157 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1191 msgid "Draw TAZRel from center" msgstr "從中心點繪製交通分區關係線" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1162 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1196 msgid "Draw TAZ fill" msgstr "繪製填充的交通分區" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1167 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1201 msgid "Only draw TAZRel from" msgstr "僅從....分區繪製交通分區關係線" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1172 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1206 msgid "Only draw TAZRel to" msgstr "僅繪製交通分區關係線到...分區" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1253 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1287 msgid "Undo the last change." msgstr "復原上次的更改。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1256 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1290 msgid "Redo the last change." msgstr "重覆上次的更改。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1259 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1293 msgid "Show undo/redo history" msgstr "顯示復原/重做歷史紀錄" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1259 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1293 msgid "Open undo/redo history dialog." msgstr "開啟復原/重錯做的歷史對話框。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1280 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1314 msgid "Clear front element" msgstr "清除前面的元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1280 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1314 msgid "Clear current front element" msgstr "清除目前前面的元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1289 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1323 msgid "Load additionals in sumo-gui" msgstr "於 sumo-gui 內載入附加物" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1289 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1323 msgid "Load additionals in sumo-gui." msgstr "於 sumo-gui 內載入附加物。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1293 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1327 msgid "Load demand in sumo-gui" msgstr "於 sumo-gui 內載入需求" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1293 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1327 msgid "Load demand in sumo-gui." msgstr "於 sumo-gui 內載入需求。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1297 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1331 msgid "Open in sumo-gui" msgstr "於 sumo-gui 內開啟" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1297 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1331 msgid "Opens the sumo-gui application with the current network." msgstr "使用現有路網開啟 sumo-gui 應用程式。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1324 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1358 msgid "&Lanes" msgstr "&車道" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1329 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1363 msgid "&Connections" msgstr "&連接線" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1334 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1368 msgid "C&rossings" msgstr "人行道" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1339 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1373 msgid "Walkin&gAreas" msgstr "步行區" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1344 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1378 msgid "&Additionals" msgstr "&附加物" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1349 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1383 msgid "&TAZs" msgstr "&交通分區" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1354 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1388 msgid "&Wires" msgstr "&通訊線" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1359 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1393 msgid "&Polygons" msgstr "&多邊形物件" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1364 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1398 msgid "P&OIs" msgstr "興趣點" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1369 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1403 msgid "&Routes" msgstr "&路徑" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1384 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1418 msgid "Person&Trips" msgstr "個人&旅次" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1389 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1423 msgid "&Walks" msgstr "&行走" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1394 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1428 msgid "Ri&des" msgstr "&搭乘" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1399 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1433 msgid "&Containers" msgstr "&貨櫃" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1404 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1438 msgid "Tra&nsports" msgstr "運輸" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1409 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1443 msgid "Trans&hips" msgstr "&轉運" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1414 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1448 msgid "Stop&s" msgstr "停靠點&" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1419 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1453 msgid "&EdgeDatas" msgstr "&路段資料" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1424 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1458 msgid "E&dgeRelDatas" msgstr "路段關係資料(EdgeRelDatas)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1429 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1463 msgid "Edge&TAZRel" msgstr "路段&交通分區關係" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1437 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1471 msgid "Lock selected elements" msgstr "鎖住選定的要件" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1437 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1471 msgid "selected elements" msgstr "選定的元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1444 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1478 msgid "Lock all elements" msgstr "鎖住所有元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1444 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1478 msgid "all elements" msgstr "所有元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1448 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1482 msgid "Unlock all elements" msgstr "解除鎖定所有的元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1784 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1818 msgid "Compute Junctions" msgstr "計算路口" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1784 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1818 msgid "Compute junction shape and logic." msgstr "計算路口的形狀和邏輯。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1821 msgid "Compute Junctions with volatile options" msgstr "根據可變選項計算路口" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1821 msgid "Compute junction shape and logic using volatile junctions." msgstr "根據可變路口計算路口形狀和邏輯。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1790 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1824 msgid "Clean Junctions" msgstr "清除路口" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1790 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1824 msgid "Remove solitary junctions." msgstr "移除孤立的路口。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1793 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1827 msgid "Join Selected Junctions" msgstr "合併選定的路口" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1793 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1827 msgid "Join selected junctions into a single junction." msgstr "將選定的路口合併為一個單一路口。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1796 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1830 msgid "Clean invalid crossings" msgstr "清除無效的人行道" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1796 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1830 msgid "Clear invalid crossings." msgstr "清除無效的人行道。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1802 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1836 msgid "Recompute Network in Data Mode" msgstr "在資料模式下重新計算路網" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1808 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1842 msgid "Compute demand" msgstr "計算需求" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1808 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1842 msgid "Computes demand elements." msgstr "計算需求元素。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1811 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1845 msgid "Clean routes" msgstr "清除路徑" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1811 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1845 msgid "Removes routes without vehicles." msgstr "移除沒有車輛的路徑。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1814 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1848 msgid "Join routes" msgstr "合併路徑" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1814 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1848 msgid "Joins routes with the same edges." msgstr "合併具有相同路段的路徑。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1817 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1851 msgid "Adjust person plans" msgstr "調整個人旅運計劃" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1817 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1851 msgid "Adjust person plans (start/end positions, arrival positions, etc.)" msgstr "調整個人旅運計劃(起始/结束位置、抵達位置等)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1820 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1854 msgid "Clean invalid route elements" msgstr "清除無效的路徑元素" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1820 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1854 msgid "Clear elements with an invalid path (routes, Trips, Flows...)." msgstr "清除與無效路線相關的元素(路徑、旅程、流量...)。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1826 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1860 msgid "Configure sumo Options." msgstr "設定sumo的選項。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1832 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:53 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1866 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:312 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:61 msgid "Options" msgstr "選項" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1832 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1866 msgid "Configure netedit Options." msgstr "設定netedit 的選項。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1945 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1979 msgid "Open a dialog for locating a Junction." msgstr "開啟對話框以進行路口定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1948 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1982 msgid "Open a dialog for locating an Edge." msgstr "開啟對話框以進行路段定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1951 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1985 msgid "&WalkingAreas" msgstr "&步行區" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1951 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1985 msgid "Open a dialog for locating a Walking Area." msgstr "開啟對話框以進行步行區定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1954 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1988 msgid "Open a dialog for locating a Vehicle." msgstr "開啟對話框以進行車輛定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1957 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1991 msgid "Open a dialog for locating a Person." msgstr "開啟對話框以進行人員定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1960 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1994 msgid "&Route" msgstr "&路徑" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1960 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1994 msgid "Open a dialog for locating a Route." msgstr "開啟對話框以進行路徑定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1963 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1997 msgid "&Stops" msgstr "&停靠點" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1963 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:1997 msgid "Open a dialog for locating a Stop." msgstr "開啟對話框以進行停靠點定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1966 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2000 msgid "Open a dialog for locating a Traffic Light." msgstr "開啟對話框以進行交通號誌定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1969 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2003 msgid "Open a dialog for locating an Additional Structure." msgstr "開啟對話框以進行附加結構定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1972 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2006 msgid "Open a dialog for locating a Point of Interest." msgstr "開啟對話框以進行興趣點定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:1975 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2009 msgid "Open a dialog for locating a Polygon." msgstr "開啟對話框以進行多邊形物件定位。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2092 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2126 msgid "Toggle this Status Bar on/off." msgstr "切換狀態控制桿(開啟/關閉)。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2099 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2133 msgid "Clear the Message Window." msgstr "清除訊息窗內訊息。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2124 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2158 msgid "Open feedback channels." msgstr "打開反饋管道。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2127 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2161 msgid "About netedit." msgstr "關於netedit。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2163 -msgid "&Network" -msgstr "&路網" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2163 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2197 msgid "Select network mode." msgstr "選擇路網模式。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2166 -msgid "&Demand" -msgstr "&需求" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2166 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2200 msgid "Select demand mode." msgstr "選擇需求模式。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2169 -msgid "&Data" -msgstr "&資料" - -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2169 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2203 msgid "Select data mode." msgstr "選擇資料模式。" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2201 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2205 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2238 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2242 msgid "Could not load SUMO configuration '" msgstr "無法載入SUMO 設定檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2250 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2254 -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:145 -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:149 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2289 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2293 msgid "Could not load netedit configuration '" msgstr "無法載入netedit的設定檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2700 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2739 msgid "Save file as" msgstr "將檔案另存為" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2701 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2705 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2721 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2731 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2746 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2799 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2804 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2815 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2820 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2831 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2836 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2847 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2852 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2863 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2868 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2879 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2884 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2894 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2898 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2740 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2744 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2760 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2770 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2778 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2841 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2846 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2857 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2862 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2873 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2878 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2889 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2894 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2905 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2910 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2921 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2926 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2936 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2940 msgid "XML files (*.xml)" msgstr "XML檔案 (*.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2702 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2706 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2722 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2732 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2747 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2755 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2771 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2775 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2785 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2789 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2800 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2805 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2816 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2821 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2832 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2837 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2848 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2853 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2864 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2869 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2880 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2885 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2895 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2899 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2741 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2761 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2771 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2779 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2788 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2796 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2812 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2817 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2827 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2831 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2842 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2847 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2858 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2863 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2874 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2879 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2890 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2895 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2906 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2911 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2922 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2927 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2937 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2941 msgid "All files (*)" msgstr "所有檔案 (*)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2704 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2743 msgid "Open file" msgstr "開啟檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2714 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2753 msgid "Save Network file as" msgstr "將路網檔案另存為" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2715 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2754 msgid "SUMO Network files (*.net.xml)" msgstr "SUMO 路網檔案 (*.net.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2716 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2755 msgid "SUMO Network files zipped (*.net.xml.gz)" msgstr "SUMO 路網壓縮檔案 (*.net.xml.gz)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2717 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2756 msgid "" "XML files (*.xml)\n" "All files (*)" -msgstr "XML 檔案(*.xml)\n" +msgstr "" +"XML 檔案(*.xml)\n" "所有檔案 (*)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2719 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2758 msgid "Open Network file" msgstr "開啟路網檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2720 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2759 msgid "SUMO Network files (*.net.xml,*.net.xml.gz)" msgstr "SUMO 路網檔案 (*.net.xml,*.net.xml.gz)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2729 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2768 msgid "Open NetConvert file" msgstr "開啟NetConvert 檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2730 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2769 msgid "Netconvert files (*.netccfg)" msgstr "NetConvert 設定檔案(*.netccfg)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2738 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2777 msgid "Save plain XML as" msgstr "將純 XML 另存為" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2744 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2785 msgid "Save joined Junctions as" msgstr "將合併的路口另存為" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2786 msgid "Junction files (*.nod.xml)" msgstr "路口檔案(*.nod.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2753 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2794 msgid "Save tool log" msgstr "儲存工具紀錄(log)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2754 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2795 msgid "Text file (*.txt)" msgstr "文字檔(*.txt)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2761 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2802 msgid "Open OSM file" -msgstr "開啟OSM檔案" +msgstr "開啟開放街圖(OSM)檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2762 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2803 msgid "OSM net (*.osm.xml,*.osm)" msgstr "OSM路網 (*.osm.xml,*.osm)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2769 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2810 msgid "Save netedit Config file as" msgstr "將netedit的設定檔案儲存為" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2770 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2774 -msgid "Netedit Config files (*.neteditcfg)" -msgstr "netedit的設定檔案 (*.neteditcfg)" +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2811 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2815 +msgid "Netedit Config files (*.netecfg)" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2773 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2814 msgid "Open netedit Config file" msgstr "開啟netedit的設定檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2783 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2816 +msgid "Netedit Config files (*.neteditcfg)" +msgstr "netedit的設定檔案 (*.neteditcfg)" + +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2825 msgid "Save SUMO Config file as" msgstr "將SUMO設定檔案另存為" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2784 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2788 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2826 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2830 msgid "SUMO Config files (*.sumocfg)" msgstr "SUMO設定檔案 (*.sumocfg)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2787 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2829 msgid "Open SUMO Config file" msgstr "開啟SUMO設定檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2797 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2839 msgid "Save TLS file as" msgstr "將交通號誌檔案另存為" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2798 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2803 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2840 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2845 msgid "TLS files (*.tll.xml)" msgstr "交通號誌檔案 (*.tll.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2802 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2844 msgid "Open TLS file" msgstr "開啟交通號誌檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2813 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2855 msgid "Save EdgeType file as" msgstr "將EdgeType檔案另存為" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2814 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2856 msgid "EdgeType files (*.tll.xml)" msgstr "EdgeType檔案 (*.tll.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2818 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2860 msgid "Open EdgeType file" msgstr "開啟EdgeType檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2819 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2861 msgid "EdgeType files (*.typ.xml)" msgstr "EdgeType檔案 (*.typ.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2829 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2871 msgid "Save Additionals file as" msgstr "將附加(additionals)檔案另存為" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2830 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2835 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2872 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2877 msgid "Additional files (*.add.xml)" msgstr "附加檔案 (*.add.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2834 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2876 msgid "Open Additionals file" msgstr "開啟附加檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2845 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2887 msgid "Save Route file as" msgstr "將路徑檔案另存為" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2846 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2851 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2888 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2893 msgid "Route files (*.rou.xml)" msgstr "路徑檔案(*.rou.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2850 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2892 msgid "Open Route file" msgstr "開啟路徑檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2861 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2903 msgid "Save Data file as" msgstr "將資料檔案另存為" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2862 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2867 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2904 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2909 msgid "Data files (*.dat.xml)" msgstr "資料檔案 (*.dat.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2866 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2908 msgid "Open Data file" msgstr "開啟資料檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2877 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2919 msgid "Save MeanData file as" msgstr "將MeanData檔案另存為" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2878 -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2883 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2920 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2925 msgid "Meandata files (*.add.xml)" msgstr "MeanData檔案 (*.add.xml)" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2882 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2924 msgid "Open MeanData file" msgstr "開啟MeanData檔案" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2893 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2935 msgid "Save options file as" msgstr "將選項檔案另存於" -#: /home/micha/programming/sumo/src/netedit/GNEApplicationWindowHelper.cpp:2897 +#: D:\Repos\sumo/src\netedit\GNEApplicationWindowHelper.cpp:2939 msgid "Open options file" msgstr "開啟選項檔案" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:95 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:100 #, c-format msgid "Loading of sumo config file '%' failed." msgstr "載入 SUMO 設定檔 '%' 失敗。" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:108 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:113 #, c-format msgid "Loading of netedit config file '%' failed." msgstr "載入 netedit 設定檔 '%' 失敗。" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:117 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:122 msgid "" "Invalid input network option. Load with either sumo/netedit/netconvert " "config or with -new option" msgstr "" "輸入路網選項無效。使用 sumo/netedit/netconvert 設定檔案或 -new 選項載入" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:130 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:136 msgid "Invalid Options. Nothing loaded" msgstr "無效的選項。未載入任何內容" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:144 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:150 msgid "Could not build projection!" msgstr "無法建立投影!" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:172 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:178 msgid "Performing initial computation ..." msgstr "進行初始計算..." -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:206 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:212 msgid "Failed to build network." msgstr "無法建立路網。" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:251 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:257 msgid "Start plain GUI with empty net" msgstr "使用空白路網開啟普通GUI" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:252 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:258 msgid "Open a SUMO network" msgstr "開啟SUMO路網" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:253 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:259 msgid "Open a configuration file (netedit or netconvert config)" msgstr "開啟一個設定檔案(netedit或是netconvert config)" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:254 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:260 msgid "Open a SUMO config file" msgstr "開啟SUMO設定檔案" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:279 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:285 msgid "Load sumo config" msgstr "載入sumo設定檔案" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:283 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:289 msgid "Load additional and shapes descriptions from FILE(s)" msgstr "從檔案載入附加物及形狀的描述" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:287 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:293 msgid "Load demand elements descriptions from FILE(s)" msgstr "由檔案載入需求元素的描述" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:291 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:297 msgid "Load data elements descriptions from FILE(s)" msgstr "由檔案載入資料元素的描述" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:295 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:301 msgid "Load meanData descriptions from FILE(s)" msgstr "從檔案載入meanData的描述" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:300 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:306 msgid "File in which TLS Programs must be saved" msgstr "交通號誌計畫檔案必須儲存" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:303 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:309 msgid "File in which edgeTypes must be saved" msgstr "edgeTypes檔案必須儲存" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:309 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:315 msgid "Start netedit with a new network" msgstr "使用新路網開啟netedit" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:312 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:318 msgid "Write attribute help to file" msgstr "將屬性幫助(attribute help)寫入檔案" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:317 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:323 msgid "Prefix for node naming" msgstr "節點的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:320 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:326 msgid "Prefix for edge naming" msgstr "路段的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:323 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:329 msgid "Enable edge-infix ()" msgstr "使用路段中綴()" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:328 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:334 msgid "Prefix for busStop naming" msgstr "公車站的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:331 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:337 msgid "Prefix for trainStop naming" msgstr "火車站的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:334 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:340 msgid "Prefix for containerStop naming" msgstr "貨櫃停靠站(containerStop)的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:337 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:343 msgid "Prefix for chargingStation naming" msgstr "充電站的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:340 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:346 msgid "Prefix for parkingArea naming" msgstr "停車區域的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:343 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:349 msgid "Prefix for e1Detector naming" msgstr "e1偵測器的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:346 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:352 msgid "Prefix for e2Detector naming" msgstr "e2偵測器的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:349 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:355 msgid "Prefix for e3Detector naming" msgstr "e3偵測器的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:352 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:358 msgid "Prefix for e1InstantDetector naming" msgstr "e1InstantDetector的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:355 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:361 msgid "Prefix for rerouter naming" msgstr "改道裝置(rerouter)的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:358 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:364 msgid "Prefix for calibrator naming" msgstr "校估裝置(calibrator)的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:361 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:367 msgid "Prefix for routeProbe naming" msgstr "路徑取樣裝置的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:364 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:370 msgid "Prefix for variable speed sign naming" msgstr "可變速度標誌的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:367 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:373 msgid "prefix for traction substation naming" msgstr "牽引變電站的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:370 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:376 msgid "Prefix for overhead wire naming" msgstr "架空線的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:373 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:379 msgid "Prefix for polygon naming" msgstr "多邊形物件的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:376 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:382 msgid "Prefix for poi naming" msgstr "興趣點的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:381 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:387 msgid "Prefix for route naming" msgstr "路徑的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:384 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:390 msgid "Prefix for vType naming" msgstr "vType的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:387 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:393 msgid "Prefix for vehicle naming" msgstr "車輛的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:390 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:396 msgid "Prefix for trip naming" msgstr "旅次的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:393 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:399 msgid "Prefix for flow naming" msgstr "流量的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:396 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:402 msgid "Prefix for person naming" msgstr "人員的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:399 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:405 msgid "Prefix for personFlow naming" msgstr "personFlow的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:402 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:408 msgid "Prefix for container naming" msgstr "貨櫃的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:405 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:411 msgid "Prefix for containerFlow naming" msgstr "containerFlow的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:412 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:418 msgid "Prefix for meanDataEdge naming" msgstr "meanDataEdge的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:415 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:421 msgid "Prefix for meanDataLane naming" msgstr "meanDataLane的命名前綴" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:422 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:428 msgid "Disable icons of special lanes" msgstr "禁用特殊車道的圖示" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:425 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:431 msgid "Disable textures" msgstr "禁用貼圖(textures)" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:428 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:434 msgid "Load visualisation settings from FILE" msgstr "從檔案載入視覺化設定" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:433 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:439 msgid "Load current viewport from registry" msgstr "從註冊表載入目前檢視區" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:436 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:442 msgid "Create initial window with the given x,y size" msgstr "使用給定的 x, y 尺寸建立初始視窗" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:439 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:445 msgid "Create initial window at the given x,y position" msgstr "在給定的 x, y 位置建立初始視窗" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:444 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:450 msgid "Enable overlay for screen recognition" msgstr "允許銀幕辨識的覆蓋" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:447 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:453 msgid "Enable output messages during GUI-Testing" msgstr "允許在 GUI 測試期間輸出訊息" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:450 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:456 msgid "Enable output messages during GUI-Testing specific of gl functions" msgstr "允許在特定於 gl 函數的 GUI 測試期間輸出消息" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:453 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:459 msgid "Save gui settings in the given settings-output file" msgstr "將gui設定儲存於指定的設定輸出檔案(settings-output)" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:460 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:466 msgid "Defines the begin time in seconds; The simulation starts at this time" msgstr "定義開始時間(以秒為單位);模擬於此時間開始" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:463 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:469 msgid "Defines the end time in seconds; The simulation ends at this time" msgstr "定義結束時間(以秒為單位);模擬於此時間結束" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:466 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:472 msgid "" "Length of the default interval length between action points for the car-" "following and lane-change models (in seconds). If not specified, the " @@ -3190,859 +3227,858 @@ "settings override the default. Must be a multiple of the simulation step-" "length." msgstr "" -"在跟車模式及車道變換模式內行動點(action point)之間的預設區間長度(以秒為單位" -")。如果沒有指定,模擬步長將作為預設值。車輛或是VType的特殊設定值會改寫預設值" -"。必須是模擬步長的倍數。" +"在跟車模式及車道變換模式內行動點(action point)之間的預設區間長度(以秒為單" +"位)。如果沒有指定,模擬步長將作為預設值。車輛或是VType的特殊設定值會改寫預設" +"值。必須是模擬步長的倍數。" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:469 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:475 msgid "" "Select default speed deviation. A negative value implies vClass specific " "defaults (0.1 for the default passenger class" -msgstr "選擇速度偏差的預設值。負值表示 車輛類別(vClass)特定預設值( 0." -"1為小客車等級的預設值" +msgstr "" +"選擇速度偏差的預設值。負值表示 車輛類別(vClass)特定預設值( 0.1為小客車等級的" +"預設值" -#: /home/micha/programming/sumo/src/netedit/GNELoadThread.cpp:508 +#: D:\Repos\sumo/src\netedit\GNELoadThread.cpp:514 msgid "Failed to reset options." msgstr "無法重置選項。" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:370 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:370 msgid "delete junction" msgstr "刪除路口" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:412 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:412 msgid "delete edge" msgstr "刪除路段" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:491 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:491 msgid "replace edge" msgstr "替換路段" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:553 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:553 msgid "delete lane" msgstr "刪除車道" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:588 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:588 msgid "delete connection" msgstr "刪除連接線" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:603 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:603 msgid "delete crossing" msgstr "刪除人行道" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:621 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:650 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:672 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:685 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:698 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:728 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:621 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:650 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:672 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:685 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:698 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:728 msgid "delete " msgstr "刪除 " -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:644 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:644 msgid "Trying to delete a default Vehicle Type" msgstr "嘗試刪除預設的車輛類型" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:737 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2685 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:737 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2690 msgid "duplicate lane" msgstr "複製車道" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:856 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:856 msgid "split edge" msgstr "分割路段" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:973 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:973 msgid "split edges" msgstr "分割路段" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:995 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:995 msgid "reverse edge" msgstr "反向路段" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1008 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1012 msgid "add reversed edge" msgstr "新增反向路段" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1043 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1046 msgid "merge junctions" msgstr "合併路口" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1079 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1082 msgid "select roundabout" msgstr "選擇圓環" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1095 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1098 msgid "create roundabout" msgstr "建立圓環" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1273 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1276 msgid "Forced computing junctions with volatile options ..." msgstr "根據可變選項強制計算路口..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1275 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1278 msgid "Forced computing junctions ..." msgstr "強制計算路口..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1282 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1285 msgid "Computing junctions with volatile options ..." msgstr "根據可變選項計算路口..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1284 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1287 msgid "Computing junctions ..." msgstr "計算路口..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1347 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1350 msgid "Finished computing junctions." msgstr "完成路口計算。" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1353 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1356 msgid "Computing demand elements ..." msgstr "計算需求元素..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1367 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1370 msgid "Finished computing demand elements." msgstr "完成計算需求元素。" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1373 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1376 msgid "Computing data elements ..." msgstr "計算資料元素..." -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1380 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1383 msgid "Finished computing data elements." msgstr "完成計算資料元素。" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1459 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1462 msgid "Position of joined junction" msgstr "合併路口的位置" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1460 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1463 msgid "" "There is another unselected junction in the same position of joined junction." msgstr "在合併路口的相同位置上有另外一個未被選擇的路口。" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1461 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1464 msgid "It will be joined with the other selected junctions. Continue?" msgstr "此路口將與其它已選擇的路口一起進行合併。繼續執行?" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1582 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1592 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1585 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1595 msgid "Clear crossings" msgstr "清除人行道" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1583 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1586 msgid "There are no invalid crossings to remove." msgstr "沒有要移除的無效人行道。" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1593 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1596 msgid "Crossings will be cleared. Continue?" msgstr "人行道將被清除。繼續執行?" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1604 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1607 msgid "clear crossings" msgstr "清除人行道" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1617 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1620 msgid "clear junctions" msgstr "清除路口" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1646 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1649 msgid "clear unused routes" msgstr "清除未使用的路徑" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1701 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1704 msgid "merge routes" msgstr "合併路徑" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1755 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1758 msgid "adjust person plans" msgstr "調整個人旅運計劃" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1795 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1798 msgid "remove invalid demand elements" msgstr "移除無效的需求元素" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1810 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1813 msgid "replace junction by geometry" msgstr "用幾何形狀替換路口" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1855 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1858 msgid "Junction isn't removable" msgstr "路口無法被移除" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1867 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1870 msgid "split junction" msgstr "分割路口" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1907 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1910 msgid "Could not rename split node to '%'" msgstr "無法將分割的節點重新命名為 '%'" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1946 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1949 msgid "clear junction connections" msgstr "清除路口內的連結線" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1958 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1961 msgid "reset junction connections" msgstr "重置路口內連接線" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1969 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1972 msgid "clear additional elements" msgstr "清除附加元素" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1982 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1985 msgid "clear demand elements" msgstr "清除需求元素" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:1995 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:1998 msgid "clear data elements" msgstr "清除資料元素" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2006 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2009 msgid "clear meanData elements" msgstr "清除meanData元素" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2326 -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2403 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2331 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2413 msgid "Duplicated ID" msgstr "複製的ID" -#: /home/micha/programming/sumo/src/netedit/GNENet.cpp:2689 +#: D:\Repos\sumo/src\netedit\GNENet.cpp:2689 msgid "Network size exceeds 1 Lightyear. Please reconsider your inputs." msgstr "路網規模超過 1 光年。 請重新考慮您的輸入。" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:1461 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:1468 msgid "Default vType doesn't exist" msgstr "預設的vType 不存在" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2478 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2486 msgid "Invalid meanData pointer" msgstr "無效的meanData指標" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2739 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2747 msgid "Redo replace in TLS" msgstr "重作在TLS內的替換" -#: /home/micha/programming/sumo/src/netedit/GNENetHelper.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNENetHelper.cpp:2753 msgid "Undo replace in TLS" msgstr "取消在TLS內的替換" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:332 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:334 msgid "Locate a junction within the network. (Shift+J)" msgstr "在路網內定位一個路口路口。(Shift+J)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:336 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:338 msgid "Locate an edge within the network. (Shift+E)" msgstr "在路網內定位一個路段。(Shift+E)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:340 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:342 msgid "Locate WalkingAreas" msgstr "定位步行區域" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:340 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:342 msgid "Locate a walkingArea within the network. (Shift+W)" msgstr "在路網內定位步行區域。(Shift+W)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:344 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:346 msgid "Locate a vehicle within the network. (Shift+V)" msgstr "在路網內定位車輛。(Shift+V)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:348 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:350 msgid "Locate a person within the network. (Shift+P)" msgstr "在路網內定位人員。(Shift+P)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:354 msgid "Locate Route" msgstr "定位路徑" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:352 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:354 msgid "Locate a route within the network. (Shift+R)" msgstr "在路網內定位路徑。(Shift+R)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:358 msgid "Locate Stops" msgstr "定位停靠點" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:356 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:358 msgid "Locate a stop within the network. (Shift+S)" msgstr "在路網內定位停靠點。(Shift+S)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:367 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:369 msgid "Locate a tls within the network. (Shift+T)" msgstr "在路網內定位交通號誌。(Shift+T)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:371 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:373 msgid "Locate an additional structure within the network. (Shift+A)" msgstr "在路網內定位一個附加結構。(Shift+A)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:375 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:377 msgid "Locate a PoI within the network. (Shift+O)" msgstr "在路網內定位興趣點。(Shift+O)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:379 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:381 msgid "Locate a Polygon within the network. (Shift+L)" msgstr "在路網內定位多邊形物件。(Shift+L)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:453 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:455 msgid "Remove from Selected" msgstr "從選定項中刪除" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:455 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:457 msgid "Add to Selected" msgstr "新增到選定項內" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:612 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:614 msgid "GUI-Settings cannot be saved in " msgstr "GUI-設定無法儲存於 " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:805 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:807 msgid "Confirm Junction Merger" msgstr "確認路口合併" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:806 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:808 msgid "Do you wish to merge junctions '" msgstr "您是否希望合併路口" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:807 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:205 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:809 msgid "' and '" msgstr "' 和 '" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:808 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:810 msgid "' will be eliminated and its roads added to '" msgstr "'將被消除,其道路將增加到 '" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:836 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:838 msgid " requires switch to network mode. Continue?" msgstr " 要求切換到路網模式。繼續執行?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:838 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:840 msgid " requires switch to demand mode. Continue?" msgstr " 要求切换到需求模式。繼續執行?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:840 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:842 msgid " requires switch to data mode. Continue?" msgstr " 要求切换到資料模式。繼續執行?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:845 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:847 msgid "Confirm switch mode" msgstr "確認切換模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1423 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1425 msgid "Cannot delete in this mode" msgstr "在此模式下無法刪除" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1426 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1428 msgid "delete network inspected elements" msgstr "刪除檢視的路網元素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1434 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1436 msgid "delete network selection" msgstr "刪除路網選擇" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1442 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1444 msgid "delete demand inspected elements" msgstr "刪除檢視的需求元素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1450 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1452 msgid "delete demand selection" msgstr "刪除需求選擇" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1458 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1460 msgid "delete data inspected elements" msgstr "刪除檢視的資料元素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:1466 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:1468 msgid "delete data selection" msgstr "刪除資料選擇" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2101 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2106 msgid "Reverse selected edges" msgstr "反轉選定的路段" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2108 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2113 msgid "Reverse edge" msgstr "反向路段" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2122 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2127 msgid "Add Reverse edge for selected edges" msgstr "為選定的路段新增反向路段" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2129 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2134 msgid "Add reverse edge" msgstr "新增反向路段" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2143 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2148 msgid "Add Reverse disconnected edge for selected edges" msgstr "為選定的路段新增不相互連接的反向路段" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2150 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2155 msgid "Add reverse disconnected edge" msgstr "新增不相互連接的反向路段" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2179 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2184 msgid "reset geometry points" msgstr "重置幾何點" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2200 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2205 msgid "straighten selected edges" msgstr "拉直所選定的路段" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2208 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2213 msgid "straighten edge" msgstr "拉直路段" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2222 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2227 msgid "smooth selected edges" msgstr "使選定的路段平滑" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2229 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2234 msgid "smooth edge" msgstr "使路段平滑" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2243 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2248 msgid "straighten elevation of selected edges" msgstr "拉直所選定路段的高程" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2250 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2255 msgid "straighten edge elevation" msgstr "拉直路段高程" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2264 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2269 msgid "smooth elevation of selected edges" msgstr "平滑所選定路段的高程" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2271 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2276 msgid "smooth edge elevation" msgstr "平滑路段高程" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2285 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2290 msgid "reset edge lengths" msgstr "重置路段長度" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2314 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2319 msgid "copy edge template" msgstr "複製路段範本" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2335 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2340 msgid "simplify shapes" msgstr "簡化形狀" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2377 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2382 msgid "close polygon shapes" msgstr "關閉多邊形形形狀" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2408 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2413 msgid "open polygon shapes" msgstr "開啟多邊形形狀" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2457 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2462 msgid "select within polygon boundary" msgstr "在多邊形邊界內選擇" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2502 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2507 #, c-format msgid "No lanes around % to attach it" msgstr "在 % t的周圍沒有車道附接它" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2525 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2530 msgid "attach POI into lane" msgstr "將興趣點附接到車道" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2538 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2543 msgid "release POI from lane" msgstr "從車道上釋放興趣點" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2572 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2577 msgid "change edge Geometry Point position" msgstr "改變路段幾何點位置" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2604 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2609 msgid "change polygon Geometry Point position" msgstr "改變多邊形幾何點位置" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2624 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2629 msgid "change TAZ Geometry Point position" msgstr "改變交通分區幾何點位置" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2648 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2653 msgid "reset end points of selected edges" msgstr "重設選定路段的終點" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2659 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2664 msgid "reset end points of edge '" msgstr "重設路段終點 '" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2678 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2683 msgid "duplicate selected lanes" msgstr "複製選擇的車道" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2715 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2720 msgid "reset custom lane shapes" msgstr "重設自訂的車道形狀" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2722 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2727 msgid "reset custom lane shape" msgstr "重設自訂的車道形狀" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2738 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2743 msgid "reset opposite lanes" msgstr "重設對向車道" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2745 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2750 msgid "reset opposite lane" msgstr "重設對向車道" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2799 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2804 msgid "select lane reachability" msgstr "選擇車道可及性" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2841 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2846 msgid "Multiple lane in the same edge selected" msgstr "在同一路段上選定多個車道" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2842 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2847 msgid "There are selected lanes that belong to the same edge." msgstr "有些選定的車道屬於同一個路段。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2843 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2848 msgid "Only one lane per edge will be restricted for " msgstr "每路段只有一個車道將被限制為 " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2858 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2866 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2863 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2871 msgid "Set vclass for " msgstr "設定vclass為 " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2859 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2867 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2940 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2948 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2864 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2872 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2945 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2953 msgid " to selected lanes" msgstr " 到選定的車道" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2860 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2941 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2865 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2946 msgid "" "All lanes own already another lane in the same edge with a restriction for " msgstr "在有受一個限制的同一路段上的所有車道已經有另一條車道 " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2868 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2873 msgid " lanes will be restricted for " msgstr " 車道將被限制為 " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2869 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2874 msgid ". Continue?" msgstr ".繼續執行?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2896 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2901 msgid "restrict lane to " msgstr "將車道限制為 " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2939 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2947 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2944 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2952 msgid "Add vclass for " msgstr "新增vclass 為 " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2949 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3044 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2954 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3049 msgid " restrictions for " msgstr " 對...進行限制 " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2950 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2955 msgid " will be added. Continue?" msgstr " 將新增。繼續執行?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2967 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2972 msgid "add restrictions for " msgstr "為...新增限制 " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:2977 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:2982 msgid "add vclass for " msgstr "為...新增vclass " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3034 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3042 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3072 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3039 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3047 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3077 msgid "Remove vclass for " msgstr "為...刪除車輛類別(vclass) " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3035 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3040 msgid " from selected lanes" msgstr " 從選定的車道" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3036 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3041 msgid "Selected lanes and edges haven't a restriction for " msgstr "選定的車道和路段對於....沒有限制 " -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3043 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3048 msgid " in selected lanes" msgstr " 在選定的車道們內" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3045 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3050 msgid " will be removed. Continue?" msgstr " 將被刪除。繼續執行?" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3214 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3219 msgid "reset edge endpoints" msgstr "重新設定路段端點" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3259 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3526 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3561 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3584 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3264 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3531 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3566 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3589 msgid "Grid is still active, press ctrl+g to deactivate" msgstr "網格仍處於使用中狀態,按 ctrl+g 停用" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3278 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3283 msgid "reset custom junction shapes" msgstr "重置自定的路口形狀" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3285 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3290 msgid "reset custom junction shape" msgstr "重置自定的路口形狀" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3396 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3401 msgid "clear connections of selected junctions" msgstr "清除所選路口的連接線(connections)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3428 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3433 msgid "reset connections of selected junctions" msgstr "重置所選路口的連接線(connections)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3452 -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:3479 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3457 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:3484 msgid "add TLS in multiple junctions" msgstr "於多個路口上新增交通號誌(TLS)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:5564 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:5579 msgid "Shift + click to create two additionals in the same position" msgstr "" "移位鍵(shift) + 點選(click) 將在同一個位置上新稱兩個附加物(additionals)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNet.cpp:5813 +#: D:\Repos\sumo/src\netedit\GNEViewNet.cpp:5828 msgid "Control + click to create two stop in the same position" msgstr "控制鍵 (Control)+ 點選(click)將在同一位置上新增兩個停靠站" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1467 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1488 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1467 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1488 msgid "moving selection" msgstr "移動選擇" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1668 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1668 msgid "Selection width:" msgstr "選擇寬度:" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1669 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1669 msgid " height:" msgstr " 高度:" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1670 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1670 msgid " diagonal:" msgstr " 對角線:" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1834 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1834 msgid "selection using rectangle" msgstr "使用矩形進行選擇" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1868 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1868 #, c-format msgid "Invalid windows size-format: %for option 'window-size'" msgstr "無效的視窗尺寸格式:% 選項 '視窗尺寸 '" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1946 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1946 msgid "Save NETEDITConfig" msgstr "儲存netedit的設定檔案" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1946 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1946 msgid "Save NETEDITConfig. (Ctrl+Shift+E)" msgstr "儲存neteidt設定檔案。 (Ctrl+Shift+E)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1952 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1952 msgid "Save SumoConfig" msgstr "儲存sumo設定檔案" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1952 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1952 msgid "Save SumoConfig. (Ctrl+Shift+S)" msgstr "儲存sumo設定檔案。 (Ctrl+Shift+S)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1958 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1958 msgid "Save network" msgstr "儲存路網" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1958 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1958 msgid "Save network. (Ctrl+S)" msgstr "儲存路網。(Ctrl+S)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1966 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1966 msgid "Save individual files" msgstr "儲存個別檔案" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1966 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1966 msgid "Save individual files." msgstr "儲存個別檔案。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1972 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1972 msgid "Save additional elements" msgstr "儲存附加的元素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1972 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1972 msgid "Save additional elements. (Ctrl+Shift+A)" msgstr "儲存附加的元素。(Ctrl+Shift+A)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1978 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1978 msgid "Save demand elements" msgstr "儲存需求元素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1978 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1978 msgid "Save demand elements. (Ctrl+Shift+D)" msgstr "儲存需求元素。(Ctrl+Shift+D)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1984 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1984 msgid "Save data elements" msgstr "儲存資料元素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1984 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1984 msgid "Save data elements. (Ctrl+Shift+B)" msgstr "儲存資料元素。(Ctrl+Shift+D)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1990 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1990 msgid "Save mean data elements" msgstr "儲存meanData元素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:1990 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:1990 msgid "Save mean data elements. (Ctrl+Shift+M)" msgstr "儲存meanData元素。(Ctrl+Shift+M)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 msgid "Network" msgstr "路網" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 msgid "Edit network elements" msgstr "編輯路網元素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2038 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2038 msgid "Set mode for edit network elements. (F2)" msgstr "設定編輯路網元素的模式。(F2)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2067 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2069 msgid "Demand" msgstr "需求" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 msgid "Edit traffic demand elements" msgstr "編輯交通需求元素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2045 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2045 msgid "Set mode for edit traffic demand. (F3)" msgstr "設定編輯交通需求的模式。(F3)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2211 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2213 msgid "Data" msgstr "資料" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 msgid "Edit data elements" msgstr "編輯資料元素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2052 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2052 msgid "Set mode for edit data demand. (F4)" msgstr "設定編輯資料需求的模式。(F4)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2065 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2065 msgid "Mode already selected" msgstr "已經選定模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2150 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2150 msgid "Network mode already selected" msgstr "已選擇路網模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2155 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2155 msgid "Save modifications in TLS before change mode" msgstr "在改變模式前將修改的交通號誌(TLS)進行儲存" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2200 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2200 msgid "Demand mode already selected" msgstr "已選擇需求模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2235 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2235 msgid "Data mode already selected" msgstr "已選擇資料模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2316 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2627 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2316 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2627 msgid "" "Show grid and restrict movement to the grid - define grid size in " "visualization options. (Ctrl+G)" msgstr "顯示網格及限制到網格的移動 - 在視覺化選項中定義網格尺寸。(按 Ctrl+G)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2324 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2635 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2922 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2324 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2635 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2922 msgid "Toggle hiding junction shape. (Ctrl+J)" msgstr "切換隱藏路口形狀。(按 Ctrl+J)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2332 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2332 msgid "Draw vehicles spread in lane or depart position" msgstr "繪製在車道上或是在出發位置上的車輛" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2332 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2643 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2332 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2643 msgid "Draw vehicles spread in lane or in depart position." msgstr "繪製在車道上或是在出發位置上的車輛。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2340 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2944 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2340 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2944 msgid "Toggle show demand elements." msgstr "切換顯示需求元素。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2348 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2348 msgid "Clicks target lanes" msgstr "點擊目標車道" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2348 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2348 msgid "" "Toggle whether clicking should inspect/select/delete lanes instead of edges." msgstr "切換是否應檢查/選擇/刪除車道, 而不是路段。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2355 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2355 msgid "Toggle show connections over junctions." msgstr "切換顯示路口內的連接線(connection)。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2363 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2363 msgid "Toggle hide connections." msgstr "切換隱藏連接線(connections)。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2371 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2371 msgid "Show additional sub-elements" msgstr "顯示附加子元素" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2371 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2371 msgid "Toggle show additional sub-elements." msgstr "切換顯示附加子元素。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2379 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2379 msgid "Toggle show TAZ elements." msgstr "切換顯示分區(TAZ)元素。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2387 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2387 msgid "Automatic select junctions" msgstr "自動選擇路口" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2387 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2387 msgid "" "Toggle whether selecting multiple edges should automatically select their " "junctions." msgstr "切換選擇多條路段時, 是否應自動選擇它們的交匯路口。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2395 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2395 msgid "Apply state to all phases" msgstr "將狀態應用於所有相位(phases)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2395 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2395 msgid "" "Toggle whether clicking should apply state changes to all phases of the " "current TLS plan." @@ -4050,940 +4086,944 @@ "切換是否點擊時應將更改的狀態(state)應用於現有交通號誌(TLS) 計劃的所有相位" "(phase)。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2403 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2403 msgid "Automatic merging junction" msgstr "自動合併路口" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2403 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2403 msgid "Toggle ask for confirmation before merging junction." msgstr "切換合併路口前要求確認。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2410 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2410 msgid "Show bubbles" msgstr "顯示氣泡(bubbles)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2410 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2410 msgid "Toggle show bubbles over junctions shapes." msgstr "切換在路口形狀上顯示氣泡(bubble)。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2418 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2418 msgid "Move elevation" msgstr "移動高程" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2418 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2418 msgid "Apply mouse movement to elevation instead of x,y position." msgstr "將滑鼠移動功能用於高程而不是 x,y 位置。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2426 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2426 msgid "Edge chain mode" msgstr "路段鏈(chain)模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2426 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2426 msgid "Create consecutive edges with a single click (hit ESC to cancel chain)." msgstr "單擊一下即可建立連續的路段(按 ESC 取消鏈(chain))。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2434 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2434 msgid "Edge opposite direction" msgstr "路段相反方向" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2434 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2434 msgid "Automatically create an edge in the opposite direction." msgstr "自動建立相反方向的路段。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2651 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2937 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2651 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2937 msgid "Toggle show shapes (Polygons and POIs)." msgstr "切換顯示形狀(多邊形和興趣點)。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2659 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2659 msgid "Toggle show all trips (requires updated demand - F5)." msgstr "切換顯示所有旅次(trips)(需要更新需求 - F5)。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2667 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2667 msgid "Toggle show all person plans." msgstr "切換顯示所有人員旅運計劃。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2675 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2675 msgid "Toggle lock selected person." msgstr "切換鎖定選擇的人員(person)。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2683 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2683 msgid "Show all containers plans" msgstr "顯示所有貨櫃(container)運送計劃" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2683 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2683 msgid "Toggle show all container plans." msgstr "切換顯示所有貨櫃(container)運送計劃。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2691 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2691 msgid "Toggle lock selected container." msgstr "切換鎖定選擇的貨櫃(container)。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2699 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2699 msgid "Toggle show non-inspected demand elements." msgstr "切換顯示非檢視的需求元素。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2707 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2707 msgid "Toggle show number of overlapped routes." msgstr "切換顯示重疊路線的數量。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2930 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2930 msgid "Toggle show additionals." msgstr "切換顯示附加物(additionals)。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2951 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2951 msgid "Draw TAZREL drawing mode" msgstr "繪製交通分區關係線(TAZREL)繪圖模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2951 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2951 msgid "Toggle draw TAZREL drawing mode." msgstr "切換繪製交通分區關係線(TAZREL)繪圖模式。" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2958 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2958 msgid "Toggle draw TAZ fill" msgstr "切換繪製交通分區(TAZ)填滿" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2965 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2965 msgid "Toggle draw TAZRel only from" msgstr "切換繪製僅來自...分區的交通分區關係線(TAZRel)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:2972 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:2972 msgid "Toggle draw TAZRel only to" msgstr "切換繪製僅到達...分區的交通分區關係線(TAZRel)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3471 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3471 msgid "Set inspect mode" msgstr "設定檢查模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3471 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3471 msgid "Mode for inspect elements and change their attributes. (I)" msgstr "檢視元素及更改其屬性的模式。(I)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3477 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3477 msgid "Set delete mode" msgstr "設定刪除模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3477 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3477 msgid "Mode for delete elements. (D)" msgstr "刪除元素的模式。(D)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3546 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3690 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3546 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3681 msgid "Set move mode" msgstr "設定移動模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3546 -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3690 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3546 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3681 msgid "Mode for move elements. (M)" msgstr "移動元素的模式。(M)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3552 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3552 msgid "Set create edge mode" msgstr "設定建立路段模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3552 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3552 msgid "Mode for creating junction and edges. (E)" msgstr "建立路口及路段的模式。(E)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3558 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3558 msgid "Set connection mode" msgstr "設定連接線(connection)模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3558 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3558 msgid "Mode for edit connections between lanes. (C)" msgstr "編輯車道間連接線(connections)的模式。(C)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3564 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3564 msgid "Set prohibition mode" msgstr "設定禁止模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3564 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3564 msgid "Mode for editing connection prohibitions. (H)" msgstr "編輯禁止的連接線(connection)的模式。(H)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3570 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3570 msgid "Set traffic light mode" msgstr "設定交通號誌的模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3570 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3570 msgid "Mode for edit traffic lights over junctions. (T)" msgstr "編輯路口號誌的模式。(T)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3576 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3576 msgid "Set additional mode" msgstr "設定附加物(additional)的模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3576 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3576 msgid "Mode for adding additional elements. (A)" msgstr "新增附加元素的模式。(A)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3582 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3582 msgid "Set crossing mode" msgstr "設定人行道的模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3582 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3582 msgid "Mode for creating crossings between edges. (R)" msgstr "建立路段間人行道的模式。(R)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3588 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3588 msgid "Set TAZ mode" msgstr "設定交通分區(TAZ)的模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3588 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3588 msgid "Mode for creating Traffic Assignment Zones. (Z)" msgstr "建立交通指派分區的模式。(Z)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3594 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3594 msgid "Set polygon mode" msgstr "設定多邊形物件的模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3594 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3594 msgid "Mode for creating polygons and POIs. (P)" msgstr "建立多邊形物件及興趣點的模式。(P)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3600 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3600 msgid "Set wire mode" msgstr "設定通訊線(wires)的模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3600 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3600 msgid "Mode for editing wires. (W)" msgstr "編輯通訊線(wires)的模式。(W)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3696 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3687 msgid "Create route mode" msgstr "建立路徑的模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3696 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3687 msgid "Mode for creating routes. (R)" msgstr "建立路徑的模式。 (R)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3702 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3693 msgid "Create vehicle mode" msgstr "建立車輛模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3702 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3693 msgid "Mode for creating vehicles. (V)" msgstr "建立車輛模式。(V)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3708 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3699 msgid "Create type mode" msgstr "建立類型模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3708 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3699 msgid "Mode for creating types (vehicles, person and containers). (T)" msgstr "建立類型模式(車輛, 人員(person)及貨櫃(containers))。(T)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3714 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3705 +msgid "Create type distribution mode" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3705 +msgid "Mode for creating type distribution. (U)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3711 msgid "Create stop mode" msgstr "建立停靠點模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3714 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3711 msgid "Mode for creating stops. (A)" msgstr "建立停靠點模式。(A)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3720 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3717 msgid "Create person mode" msgstr "建立人員(person)模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3720 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3717 msgid "Mode for creating persons. (P)" msgstr "建立人員(person)模式。(P)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3726 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3723 msgid "Create person plan mode" msgstr "建立人員旅運計畫的模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3726 -msgid "Mode for creating person plans. (C)" -msgstr "建立人員旅運計畫的模式。(C)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3723 +msgid "Mode for creating person plans. (L)" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3732 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3729 msgid "Create container mode" msgstr "建立貨櫃(container)模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3732 -msgid "Mode for creating containers. (P)" -msgstr "用於建立貨櫃的模式。 (P)" +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3729 +msgid "Mode for creating containers. (C)" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3738 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3735 msgid "Create container plan mode" msgstr "建立貨櫃運送計畫模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3738 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3735 msgid "Mode for creating container plans. (H)" msgstr "用於建立貨櫃運送計畫的模式。 (H)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3815 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3816 msgid "Create edge data mode" msgstr "建立路段資料模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3815 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3816 msgid "Mode for creating edge datas. (E)" msgstr "用於建立路段資料的模式。 (E)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3821 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3822 msgid "Create edge relation data mode" msgstr "建立路段關係資料模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3821 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3822 msgid "Mode for creating edge relation datas. (R)" msgstr "用於建立路段關係資料的模式。 (R)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3827 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3828 msgid "Create TAZ relation data mode" msgstr "建立交通分區關係資料模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3827 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3828 msgid "Mode for creating TAZ relation datas. (Z)" msgstr "用於建立交通分區關係資料的模式。 (Z)" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3833 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3834 msgid "MeanData mode" msgstr "平均資料(MeanData)模式" -#: /home/micha/programming/sumo/src/netedit/GNEViewNetHelper.cpp:3833 +#: D:\Repos\sumo/src\netedit\GNEViewNetHelper.cpp:3834 msgid "Mode for MeanData elements. (M)" msgstr "MeanData 元素的模式。(M)" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:102 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:103 msgid "Undo the last change. (Ctrl+Z)" msgstr "復原上次的更改" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:105 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:106 msgid "Redo the last change. (Ctrl+Y)" msgstr "重覆上次的更改" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:113 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:114 msgid "Compute path manager" msgstr "計算路徑管理器" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:113 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:114 msgid "Compute path manager." msgstr "計算路徑管理器。" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:521 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:528 msgid "WalkingArea Chooser" msgstr "步行區域選擇器" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:590 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:597 msgid "Route Chooser" msgstr "路徑選擇器" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:598 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:605 msgid "Stop Chooser" msgstr "停靠點選擇器" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:629 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:641 msgid "TLS Chooser" msgstr "交通號誌選擇器" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:640 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:652 msgid "Additional Chooser" msgstr "附加物(additional)選擇器" -#: /home/micha/programming/sumo/src/netedit/GNEViewParent.cpp:669 +#: D:\Repos\sumo/src\netedit\GNEViewParent.cpp:681 msgid "Poly Chooser" msgstr "多邊形選擇器" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:120 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:96 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:108 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:97 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:145 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:128 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:118 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:96 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:108 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:97 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:145 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:128 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:118 msgid "Undo create " msgstr "取消建立 " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:122 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:99 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:110 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:99 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:147 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:130 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:122 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:99 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:110 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:99 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:147 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:120 msgid "Undo delete " msgstr "取消刪除 " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:130 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:118 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:107 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:155 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:138 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:128 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:118 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:107 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:155 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:138 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:128 msgid "Redo create " msgstr "重做建立 " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Additional.cpp:132 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataInterval.cpp:120 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DataSet.cpp:109 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_DemandElement.cpp:157 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_GenericData.cpp:140 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_MeanData.cpp:130 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Additional.cpp:132 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataInterval.cpp:120 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DataSet.cpp:109 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_DemandElement.cpp:157 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_GenericData.cpp:140 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_MeanData.cpp:130 msgid "Redo delete " msgstr "重做刪除 " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Attribute.cpp:158 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Attribute.cpp:158 msgid "Undo change " msgstr "取消更改 " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Attribute.cpp:164 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Attribute.cpp:164 msgid "Redo change " msgstr "重做更改 " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:147 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:158 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:147 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:158 msgid "Undo moving up " msgstr "取消向上移動 " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:149 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:156 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:149 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:156 msgid "Undo moving down " msgstr "取消向下移動 " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:151 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:160 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:175 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:184 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:151 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:160 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:175 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:184 msgid "Invalid operation" msgstr "無效的操作" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:171 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:180 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:171 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:180 msgid "Redo moving front " msgstr "重做向前移動 " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:173 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Children.cpp:182 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:173 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Children.cpp:182 msgid "Redo moving back " msgstr "重做向後移動 " -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:108 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:108 msgid "Redo create connection '" msgstr "重做建立連接線(connection) '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Connection.cpp:111 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Connection.cpp:111 msgid "Redo delete connection '" msgstr "重做刪除(connection) '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:163 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:163 msgid "Undo create crossing" msgstr "取消建立人行穿越道" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:165 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:165 msgid "Undo delete crossing" msgstr "取消刪除人行穿越道" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:173 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:173 msgid "Redo create crossing" msgstr "重做建立人行穿越道" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Crossing.cpp:175 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Crossing.cpp:175 msgid "Redo delete crossing" msgstr "重做刪除人行穿越道" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:136 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:136 msgid "Undo create edge '" msgstr "取消建立路段 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:138 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:138 msgid "Undo delete edge '" msgstr "取消刪除路段 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:146 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:146 msgid "Redo create edge '" msgstr "重做建立路段 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Edge.cpp:148 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Edge.cpp:148 msgid "Redo delete edge '" msgstr "重做刪除路段 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:111 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:111 msgid "Undo create edgeType '" msgstr "取消建立路段類型(edgeType) '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:113 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:113 msgid "Undo delete edgeType '" msgstr "取消刪除路段類型(edgeType) '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:121 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:121 msgid "Redo create edgeType '" msgstr "重做建立路段類型(edgeType) '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EdgeType.cpp:123 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EdgeType.cpp:123 msgid "Redo delete edgeType '" msgstr "重做刪除路段類型(edgeType) '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:113 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:115 -msgid "Undo enable " -msgstr "取消啟用 " - -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:113 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:115 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:123 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:125 -msgid " attribute in '" -msgstr " 屬性在 '" - -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:123 -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_EnableAttribute.cpp:125 -msgid "Redo enable " -msgstr "重做啟用 " +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:113 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:115 +msgid "Undo enable % attribute in '%'" +msgstr "" + +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:123 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_EnableAttribute.cpp:125 +msgid "Redo enable % attribute in '%'" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:109 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:109 msgid "Undo create junction '" msgstr "取消建立路口 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:111 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:111 msgid "Undo delete junction '" msgstr "取消刪除路口 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:119 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:119 msgid "Redo create junction '" msgstr "重做建立路口 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Junction.cpp:121 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Junction.cpp:121 msgid "Redo delete junction '" msgstr "重做刪除路口 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:158 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:158 msgid "Undo create lane '" msgstr "取消建立車道 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:160 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:160 msgid "Undo delete lane '" msgstr "取消刪除車道 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:168 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:168 msgid "Redo create lane '" msgstr "重做建立車道 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_Lane.cpp:170 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_Lane.cpp:170 msgid "Redo delete lane '" msgstr "重做刪除車道 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:172 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:172 msgid "Undo create TLS '" msgstr "取消建立交通號誌 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:174 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:174 msgid "Undo delete TLS '" msgstr "取消刪除交通號誌 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:182 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:182 msgid "Redo create TLS '" msgstr "重做建立交通號誌 '" -#: /home/micha/programming/sumo/src/netedit/changes/GNEChange_TLS.cpp:184 +#: D:\Repos\sumo/src\netedit\changes\GNEChange_TLS.cpp:184 msgid "Redo delete TLS '" msgstr "重做刪除交通號誌 '" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:38 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:38 msgid "About Eclipse SUMO netedit" msgstr "有關Eclipse SUMO netedit" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:53 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:53 msgid "Network editor for Eclipse SUMO, the Simulation of Urban MObility" msgstr "Eclipse SUMO, the Simulation of Urban MObility,的路網編輯軟體" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:54 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:54 msgid "Graphical editor for road networks and infrastructure." msgstr "道路路網和基礎設施的圖形編輯軟體。" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:66 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:66 msgid "This application is based on code provided by the Eclipse SUMO project." msgstr "此應用軟體是以Eclipse SUMO專案提供的代碼為基礎開發的。" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAbout.cpp:67 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAbout.cpp:67 msgid "" "These core components are available under the conditions of the Eclipse " "Public License v2." msgstr "此些核心組件在符合Eclipse Public License v2的條件下始可使用。" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:923 msgid "Accept" msgstr "接受" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:62 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:62 msgid "Close accepting changes" msgstr "關閉接受的更改" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:94 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:93 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1368 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:377 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:925 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1396 msgid "Cancel" msgstr "取消" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:63 msgid "Close discarding changes" msgstr "關閉放棄的更改" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:64 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:93 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:378 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:97 msgid "Reset" msgstr "重設" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAdditionalDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAdditionalDialog.cpp:64 msgid "Reset to previous values" msgstr "重設為先前的值" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:276 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:649 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:59 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:690 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:494 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:133 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:276 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:650 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:59 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:713 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:494 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:133 msgid "accept" msgstr "接受" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:276 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:277 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:278 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:415 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:649 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:650 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:651 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:411 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:690 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:691 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:692 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:408 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:494 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:495 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:234 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:247 -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:285 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:384 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:559 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:298 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:487 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:134 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:276 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:277 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:416 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:650 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:651 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:652 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:413 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:713 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:714 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:715 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:408 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:494 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:495 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:380 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:298 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:487 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:134 msgid "close" msgstr "關閉" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:277 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:650 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:60 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:691 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:495 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:277 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:651 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:60 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:714 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:495 msgid "cancel" msgstr "取消" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEAllowVClassesDialog.cpp:278 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:651 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:692 +#: D:\Repos\sumo/src\netedit\dialogs\GNEAllowVClassesDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:652 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:715 msgid "reset" msgstr "重設" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNECalibratorDialog.cpp:237 +#: D:\Repos\sumo/src\netedit\dialogs\GNECalibratorDialog.cpp:237 msgid "routes cannot be empty" msgstr "路徑無法是空白的" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNECalibratorDialog.cpp:472 +#: D:\Repos\sumo/src\netedit\dialogs\GNECalibratorDialog.cpp:472 msgid "No routes defined" msgstr "沒有定義路徑" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:71 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:638 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:389 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:71 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:638 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:389 msgid "&Accept" msgstr "&接受" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:75 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:90 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:75 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:90 msgid "close accepting changes" msgstr "關閉接受的更改" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:64 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:76 msgid "close discarding changes" msgstr "關閉放棄的更改" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:65 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:65 msgid "&Reset" msgstr "&重設" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDemandElementDialog.cpp:65 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEGeometryPointDialog.cpp:77 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDemandElementDialog.cpp:65 +#: D:\Repos\sumo/src\netedit\dialogs\GNEGeometryPointDialog.cpp:77 msgid "reset to previous values" msgstr "重設為先前的值" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDialogACChooser.cpp:111 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDialogACChooser.cpp:111 msgid "Invalid Junction" msgstr "無效的路口" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEDialogACChooser.cpp:117 +#: D:\Repos\sumo/src\netedit\dialogs\GNEDialogACChooser.cpp:117 msgid "Invalid number of TLSs" msgstr "無效的交通號誌數量" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:257 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:333 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:457 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:257 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:333 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:457 msgid "Activate friendlyPos and save" msgstr "使用合理位置(friendlyPos)並儲存" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:257 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:333 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:257 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:333 msgid "" "Friendly pos parameter will be activated in all stopping places and E2 " "detectors" msgstr "friendlyPos參數會在所有停靠點位置及使用E2偵測器時使用" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:259 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:460 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:259 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:460 msgid "Save invalid positions" msgstr "儲存無效的位置" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:259 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:259 msgid "Save stopping places and E2 detectors with invalid positions" msgstr "儲存停靠點及E2偵測器的無效的位置" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:263 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:335 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:466 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:263 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:335 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:466 msgid "Fix positions and save" msgstr "修復位置及儲存" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:263 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:335 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:263 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:335 msgid "Position of stopping places and E2 detectors will be fixed" msgstr "停靠點和E2偵測器的位置將會被適度調整" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:265 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:265 msgid "Select invalid additionals" msgstr "選擇無效附加的項目(additionals)" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:265 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:265 msgid "" "Cancel saving of additionals and select invalid stopping places and E2 " "detectors" msgstr "取消儲存附加項目及選擇無效停靠點與E2偵測器" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:325 msgid "Build connections between lanes" msgstr "建立車道間的連接線(connections)" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:325 msgid "New connections will be created between non-connected lanes" msgstr "新的連接線(connections)會建立在未連接的車道之間" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:327 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:327 msgid "Remove invalid E2 detectors" msgstr "移除無效的E2偵測器" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixAdditionalElements.cpp:327 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixAdditionalElements.cpp:327 msgid "Remove Multilane E2 Detectors with non-connected lanes" msgstr "移除未連接車道的多車道E2偵測器" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:202 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:189 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:202 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:189 msgid "Save list of conflicted items" msgstr "儲存衝突項目清單" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:240 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:240 msgid "Remove invalid routes" msgstr "移除無效的路徑" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:243 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:243 msgid "Save invalid routes" msgstr "儲存無效的路徑" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:246 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:246 msgid "Select conflicted routes" msgstr "選擇衝突的路徑" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:249 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:249 msgid "Remove stops out of route" msgstr "移除在路徑之外的停靠點" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:351 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:351 msgid "Remove invalid vehicles" msgstr "移除無效的車輛" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:354 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:354 msgid "Save invalid vehicles" msgstr "儲存無效的車輛" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:357 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:357 msgid "Select conflicted vehicle" msgstr "選擇衝突的車輛" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:360 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:360 msgid "Remove stops out of vehicle's route" msgstr "移除在車輛路徑之外的停靠點" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:463 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:463 msgid "Select conflicted Stops" msgstr "選擇衝突的停靠點" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:557 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:557 msgid "Delete person plan" msgstr "移除人員出行計畫" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:560 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:560 msgid "Save invalid person plans" msgstr "儲存無效的人員出行計畫" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixDemandElements.cpp:563 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixDemandElements.cpp:563 msgid "Select conflicted person plans" msgstr "選擇衝突的人員出行計畫" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:52 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:52 msgid "Fix network elements problems" msgstr "修正路網元素問題" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:206 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:206 msgid "Saving successfully" msgstr "儲存成功" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:213 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:213 msgid "Saving list of conflicted items failed" msgstr "儲存衝突項目清單失敗" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:227 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:227 msgid "Remove invalid edges" msgstr "移除無效的路段" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:230 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:230 msgid "Save invalid edges" msgstr "儲存無效的路段" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:233 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:233 msgid "Select conflicted edges" msgstr "選擇衝突的路段" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:308 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:308 msgid "Remove invalid crossings" msgstr "移除無效的人行穿越道" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:311 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:311 msgid "Save invalid crossings" msgstr "儲存無效的人行穿越道" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEFixNetworkElements.cpp:314 +#: D:\Repos\sumo/src\netedit\dialogs\GNEFixNetworkElements.cpp:314 msgid "Select conflicted crossing" msgstr "選擇衝突的人行穿越道" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:285 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:281 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:278 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:286 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:283 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:278 msgid "Sort" msgstr "排序" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:286 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:282 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:279 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:55 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:251 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:287 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:284 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:279 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:252 msgid "Clear" msgstr "清除" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:289 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:285 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:282 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:59 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:748 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:73 -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:318 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:113 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:420 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:60 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:83 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:37 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:39 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:222 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1194 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:290 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:287 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:756 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:318 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:109 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:37 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:39 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:223 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1191 msgid "Help" msgstr "求助" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:299 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:295 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:292 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:300 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:297 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:292 msgid "Open Parameter Template" msgstr "開啟參數範本" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:314 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:310 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:307 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:315 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:312 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:307 #, c-format msgid "Loading of Parameters From % failed." msgstr "從% 載入參數失敗。" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:317 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:313 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:310 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:318 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:315 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:310 msgid "Loaded % Parameters." msgstr "已載入的變數。" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:327 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:323 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:320 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:328 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:325 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:320 msgid "Save Parameter Template file" msgstr "儲存變數範本(template)檔案" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:403 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:399 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:396 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:404 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:401 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:396 msgid "- Parameters are defined by a Key and a Value.\n" msgstr "變數是由一個密鑰(key)及值(value)定義的。\n" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:404 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:400 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:397 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:405 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:402 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:397 msgid "" "- In Netedit can be defined using format key1=parameter1|" "key2=parameter2|...\n" msgstr "- 在netedit 內可以用格式密鑰 1=變數1|密鑰 2=變數2|...定義\n" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:405 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:401 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:398 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:406 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:403 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:398 msgid " - Duplicated and empty Keys aren't valid.\n" msgstr " - 重複的和空的密鑰是無效的。\n" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:406 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:402 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:399 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:407 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:404 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:399 msgid " - Whitespace and certain characters aren't allowed (@$%^&/|\\....)\n" msgstr " - 不允許使用空格和某些字元 (@$%^&/|\\....)\n" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:448 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:447 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:444 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:449 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:449 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:444 msgid "Key of Parameter not defined" msgstr "變數鍵未定義" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:450 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:449 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:446 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:451 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:451 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:446 msgid "Value of Parameter not defined" msgstr "變數值未定義" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:458 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:457 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:454 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:454 msgid "Key of Parameter cannot be empty" msgstr "參數值不能是空的" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:460 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:459 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:456 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:461 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:461 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:456 #, c-format msgid "Key '%' of Parameter contains invalid characters" msgstr "參數的鍵 '%' 含有無效字元" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:463 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNESingleParametersDialog.cpp:462 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:464 +#: D:\Repos\sumo/src\netedit\dialogs\GNESingleParametersDialog.cpp:464 #, c-format msgid "Key '%' already exist" msgstr "'%' 鍵已存在" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEMultipleParametersDialog.cpp:478 +#: D:\Repos\sumo/src\netedit\dialogs\GNEMultipleParametersDialog.cpp:479 msgid "" "Only for\n" "existent keys" @@ -4991,368 +5031,453 @@ "僅適用於\n" "存在的密鑰(keys)" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:59 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:59 msgid "load elements" msgstr "載入元素" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:60 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:60 msgid "cancel loading of elements" msgstr "取消載入元素" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:61 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:61 msgid "overwrite" msgstr "覆蓋" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEOverwriteElementsDialog.cpp:61 +#: D:\Repos\sumo/src\netedit\dialogs\GNEOverwriteElementsDialog.cpp:61 msgid "overwrite elements" msgstr "覆蓋元素" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:182 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:182 msgid "Rerouter has more than one edge" msgstr "改道裝置(rerouter) 有一個以上的路段" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:321 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:321 msgid "There are no lanes in the network" msgstr "路網內沒有車道" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:341 -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:361 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:341 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:361 msgid "There are no edges in the network" msgstr "路網內沒有路段" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNERerouterIntervalDialog.cpp:398 +#: D:\Repos\sumo/src\netedit\dialogs\GNERerouterIntervalDialog.cpp:398 msgid "There are no parking areas in the network" msgstr "路網內沒有停車區域" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEUndoListDialog.cpp:58 +#: D:\Repos\sumo/src\netedit\dialogs\GNEUndoListDialog.cpp:58 msgid "OK\tclose dialog" msgstr "確定\t關閉對話窗" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVTypeDistributionsDialog.cpp:459 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVTypeDistributionsDialog.cpp:459 #, c-format msgid "Key '%' already exists" msgstr "鍵(key) '%' 已經存在" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:446 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:753 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:446 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1159 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1168 msgid "Edit parameters" msgstr "編輯變數" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:466 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:466 msgid "Invalid row type" msgstr "無效的列類型" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:635 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:425 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:455 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1252 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:635 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:426 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:463 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1249 msgid "Color Dialog" msgstr "顏色對話框" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:660 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:660 msgid "Open Image" msgstr "開啟圖片" -#: /home/micha/programming/sumo/src/netedit/dialogs/GNEVehicleTypeDialog.cpp:687 +#: D:\Repos\sumo/src\netedit\dialogs\GNEVehicleTypeDialog.cpp:687 msgid "Open OSG File" msgstr "開啟OSG檔案" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:63 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:266 +msgid "Could not load configuration '" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:271 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:169 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:173 +msgid "Could not load tool configuration '" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:275 +msgid "Loaded configuration." +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:295 +msgid "Save options" +msgstr "儲存選項" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:297 +msgid "Save configuration file" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:298 +msgid "Load options" +msgstr "載入選項" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:300 +msgid "Load configuration file" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:301 +msgid "Default options" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:303 +msgid "Reset all options to default" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:311 +msgid "Topics" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:362 +msgid "Search" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialog.cpp:364 +msgid "Include description in search" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:81 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:138 +msgid "Reset value" +msgstr "重設值" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:226 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:238 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:251 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:272 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:734 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:746 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:760 +msgid "true" +msgstr "真值" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:229 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:241 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:254 +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:275 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:737 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:749 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:766 +msgid "false" +msgstr "偽值" + +#: D:\Repos\sumo/src\netedit\dialogs\options\GNEOptionsDialogElements.cpp:458 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:82 +msgid "Select filename" +msgstr "選擇檔案名稱" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:63 msgid "Grid" msgstr "網格" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:64 msgid "Spider" msgstr "蜘蛛網" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:65 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:65 msgid "Random grid" msgstr "隨機網格" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:66 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:66 msgid "Random" msgstr "隨機" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:82 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:232 -msgid "Select filename" -msgstr "選擇檔案名稱" - -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:92 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:92 msgid "Advanced" msgstr "進階的(advanced)" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:92 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:92 msgid "open advance netgenerate dialog" msgstr "開啟進階的 netgenerate 對話窗" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNENetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNENetgenerateDialog.cpp:94 msgid "Close dialog" msgstr "關閉對話窗" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:71 -msgid "Save options" -msgstr "儲存選項" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:71 +msgid "Save toolcfg" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:73 -msgid "Load options" -msgstr "載入選項" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:73 +msgid "Save file with tool configuration" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:75 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:74 +msgid "Load toolcfg" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:76 +msgid "Load file with tool configuration" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:77 msgid "Sorted by name" msgstr "按名稱排序" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:78 msgid "Grouped by categories" msgstr "按類別分組" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:89 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:90 +msgid "Blue options are mandatory" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:93 msgid "run python tool" msgstr "執行 python 工具" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:91 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:95 msgid "close tool dialog" msgstr "關閉工具對話窗" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialog.cpp:93 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialog.cpp:97 msgid "reset to default values" msgstr "重新設回為預設值" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:122 -msgid "Reset value" -msgstr "重設值" - -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:227 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:245 #, c-format msgid "Use current % file" msgstr "使用目前 % 檔案" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:253 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:251 +#, c-format +msgid "Select % file" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:274 +msgid "Use current selected edges" +msgstr "" + +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:349 msgid "network" msgstr "路網" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:296 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:392 msgid "additional" msgstr "附加物(additional)" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:339 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:435 msgid "route" msgstr "路徑" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:382 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:478 msgid "data" msgstr "資料" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:556 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:568 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:582 -msgid "true" -msgstr "真值" - -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:559 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:571 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNEPythonToolDialogElements.cpp:585 -msgid "false" -msgstr "偽值" +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNEPythonToolDialogElements.cpp:521 +msgid "sumo config" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:63 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:64 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:70 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:71 msgid "Save output" msgstr "儲存輸出" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:65 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:66 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:72 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:73 msgid "Console output" msgstr "控制台輸出" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:75 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:82 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:83 msgid "Abort" msgstr "放棄" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:75 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:76 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:82 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:83 msgid "abort running" msgstr "放棄執行" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:77 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:78 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:84 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:85 msgid "Rerun" msgstr "重新執行" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:77 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:78 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:84 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:85 msgid "rerun tool" msgstr "重新執行工具" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:79 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:80 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:86 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:87 msgid "Back" msgstr "返回" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:79 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:80 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:86 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:87 msgid "back to tool dialog" msgstr "返回到工具對話框" -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunNetgenerateDialog.cpp:87 -#: /home/micha/programming/sumo/src/netedit/dialogs/tools/GNERunPythonToolDialog.cpp:88 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunNetgenerateDialog.cpp:94 +#: D:\Repos\sumo/src\netedit\dialogs\tools\GNERunPythonToolDialog.cpp:95 msgid "close dialog" msgstr "關閉對話框" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:134 msgid "Nothing to enable, implement in Children" msgstr "無需啟用, 完成子類別(children))" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:141 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:141 msgid "Nothing to disable, implement in Children" msgstr "無需禁用, 子(children)類別" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:631 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:631 #, c-format msgid "TagProperty for tag '%' not defined" msgstr "標記 '%' 的標記屬性(TagProperty)尚未定義" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:849 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:849 msgid "Nothing to toggle, implement in Children" msgstr "無需切換,完成於子(children)類別" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:913 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:913 msgid "The id of the node" msgstr "節點的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:918 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1903 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1909 msgid "The x-y-z position of the node on the plane in meters" msgstr "在平面上節點的x,y,z位置(以公尺為單位)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:923 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:923 msgid "An optional type for the node" msgstr "一個可任選的節點類型" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:929 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:929 msgid "A custom shape for that node" msgstr "節點的自定形狀(shape)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:934 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:934 msgid "Optional turning radius (for all corners) for that node in meters" msgstr "該節點可任選的轉彎半徑(適用於所有角落) (單位為公尺)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:940 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:940 msgid "" "Whether the junction-blocking-heuristic should be activated at this node" msgstr "是否應在該節點啟用路口阻檔啟發法(junction-blocking-heuristic)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:946 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:946 msgid "How to compute right of way rules at this node" msgstr "如何計算該點的路權規則" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:953 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:953 msgid "Whether this junction is at the fringe of the network" msgstr "此路口是否位於路網邊界" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:960 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:960 msgid "Optional name of junction" msgstr "路口的自選名" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:965 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:965 msgid "An optional type for the traffic light algorithm" msgstr "交通號誌演算法的可選類型" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:971 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:971 msgid "An optional layout for the traffic light plan" msgstr "交通號誌計畫的可自選配置(layout)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:980 msgid "An optional id for the traffic light program" msgstr "交通號誌計畫的可自選識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:993 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:993 msgid "The id of the edge" msgstr "路段的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:998 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1116 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:998 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1116 msgid "The number of lanes of the edge" msgstr "路段上的車道數" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1004 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1104 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1004 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1104 msgid "The maximum speed allowed on the edge in m/s" msgstr "路段上允許的最大速度(公尺/秒)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1010 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1064 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1127 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1230 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1446 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1064 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1230 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1446 msgid "" "Explicitly allows the given vehicle classes (not given will be not allowed)" msgstr "明確允許給定的車輛類別(若未給定車輛類別, 將不允許)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1016 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1070 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1133 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1236 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1452 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1016 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1070 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1133 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1236 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1452 msgid "" "Explicitly disallows the given vehicle classes (not given will be allowed)" msgstr "明確禁止給定的車輛類別(不給定的,將被允許)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1021 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1148 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1021 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1148 msgid "" "The spreadType defines how to compute the lane geometry from the edge " "geometry (used for visualization)" msgstr "展開類型(spreadType)定義如何由路段幾何計算車道幾何 (用於視覺化)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1028 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1110 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1110 msgid "The priority of the edge" msgstr "路段的優先順序" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1034 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1160 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1160 msgid "" "Lane width for all lanes of this edge in meters (used for visualization)" msgstr "路段上所有車道的車道寬度(用於視覺化)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1040 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1040 msgid "The width of the sidewalk that should be added as an additional lane" msgstr "應添加為附加車道的人行道寬度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1045 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1045 msgid "The width of the bike lane that should be added as an additional lane" msgstr "應添加為附加車道的腳踏車道寬度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1058 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1058 msgid "The maximum speed allowed on the lane in m/s" msgstr "車道上允許的最大速度(公尺/秒)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1075 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1075 msgid "" "Lane width for all lanes of this lane in meters (used for visualization)" msgstr "此車道上所有車道的車道寬度 (以公尺為單位) (用於視覺化)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1089 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2650 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2698 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1089 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2656 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2704 msgid "Edge ID" msgstr "路段識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1094 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1094 msgid "The name of a node within the nodes-file the edge shall start at" msgstr "在節點檔案內, 路段開始的節點的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1099 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1099 msgid "The name of a node within the nodes-file the edge shall end at" msgstr "在節點檔案內, 路段結束的節點的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1122 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1122 msgid "The name of a type within the SUMO edge type file" msgstr "在SUMO路段類型檔案內的一個類型名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1138 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1138 msgid "" "If the shape is given it should start and end with the positions of the from-" "node and to-node" @@ -5360,159 +5485,159 @@ "如果給定形狀(shape),則應以起始節點(from-node)和終止節點(to-node)的位置開始和" "結束" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1143 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1143 msgid "The length of the edge in meter" msgstr "路段的長度(單位為公尺)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1155 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1155 msgid "street name (does not need to be unique, used for visualization)" msgstr "街道名 (不需要是唯一的, 作為視覺化使用)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1166 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1247 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1166 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1247 msgid "Move the stop line back from the intersection by the given amount" msgstr "依據給定的量, 將停等線移到路口前方" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1172 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1172 msgid "" "Custom position in which shape start (by default position of junction from)" msgstr "形狀(shape)開始的自定位置(路口起始(from)為預設位置)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1177 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1177 msgid "" "Custom position in which shape end (by default position of junction from)" msgstr "形狀(shape)結束的自定位置(路口起始(from)為預設位置)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1182 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1182 msgid "Show if edge is bidirectional" msgstr "顯示是否路段是雙向的(bidirectional)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1188 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1188 msgid "Distance" msgstr "距離" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1194 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1288 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1194 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1288 msgid "The stop offset as positive value in meters" msgstr "停靠點偏移量(stop offset)為正值,以公尺為單位" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1200 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1294 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1200 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1294 msgid "Specifies, for which vehicle classes the stopOffset does NOT apply." msgstr "指定停靠點偏移量( stopOffset)不適用的車輛類別。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1214 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1214 msgid "Lane ID (Automatic, non editable)" msgstr "車道識別名(自動產生, 無法編輯)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1219 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1219 msgid "" "The enumeration index of the lane (0 is the rightmost lane, -1 " "is the leftmost one)" msgstr "車道的列舉索引(0是最右邊的車道, 車道數減去1是最左邊的車道)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1224 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1224 msgid "Speed in meters per second" msgstr "速度(公尺/秒)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1241 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1241 msgid "Width in meters (used for visualization)" msgstr "寬度(公尺) (用於視覺化)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1253 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1253 msgid "Enable or disable lane as acceleration lane" msgstr "啟用或禁用車道作為加速車道" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1259 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1259 msgid "If the shape is given it overrides the computation based on edge shape" msgstr "若給定形狀(shape), 它將會覆蓋依據路段計算出來的形狀(shape)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1264 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1264 msgid "If given, this defines the opposite direction lane" msgstr "若有給定, 其將會定義對向車道" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1269 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1474 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1269 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1474 msgid "Permit changing left only for to the given vehicle classes" msgstr "允許給定的車輛類別改變為僅能左轉(left only)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1276 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1481 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1276 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1481 msgid "Permit changing right only for to the given vehicle classes" msgstr "允許給定的車輛類別改變為僅能右轉(right only)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1283 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1283 msgid "Lane type description (optional)" msgstr "車道類型說明(可自選(optional))" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1308 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1308 msgid "Crossing ID" msgstr "穿越道識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1313 msgid "The (road) edges which are crossed" msgstr "被穿越的路段" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1318 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1318 msgid "" "Whether the pedestrians have priority over the vehicles (automatically set " "to true at tls-controlled intersections)" msgstr "行人是否優先於車輛(在號誌控制的路口會自動設置為真值(true))" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1324 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1324 msgid "The width of the crossings" msgstr "穿越道的寬度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1330 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1330 msgid "sets the tls-index for this crossing" msgstr "設定穿越道的號誌索引(tls-index)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1336 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1336 msgid "sets the opposite-direction tls-index for this crossing" msgstr "設定此穿越道的對向號誌索引(tls-index)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1342 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1342 msgid "Overrides default shape of pedestrian crossing" msgstr "覆蓋預設的人行穿越道形狀" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1355 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1355 msgid "Walking Area ID" msgstr "步行區的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1360 msgid "The width of the WalkingArea" msgstr "步行區(WalkingArea)的寬度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1366 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1366 msgid "The length of the WalkingArea in meter" msgstr "步行區(WalkingArea)的長度(公尺)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1371 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1371 msgid "Overrides default shape of pedestrian sidewalk" msgstr "覆蓋預設的人行道形狀" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1384 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1384 msgid "The ID of the edge the vehicles leave" msgstr "車輛離開的路段的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1389 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1389 msgid "The ID of the edge the vehicles may reach when leaving 'from'" msgstr "車輛離開 'from' 時,可能到達的路段的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1394 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1394 msgid "the lane index of the incoming lane (numbers starting with 0)" msgstr "進來的(incoming)車道的車道索引(lane index) (數字從0開始)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1399 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1399 msgid "the lane index of the outgoing lane (numbers starting with 0)" msgstr "往外去(outgoing)的車道的車道索引(數字從0開始)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1404 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1404 msgid "" "if set, vehicles which pass this (lane-2-lane) connection) will not wait" msgstr "如果設定, 車輛通過此車道與車道連接的連接線(connection)時, 將不會等待" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1410 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1410 msgid "" "if set to false, vehicles which pass this (lane-2-lane) connection) will not " "worry about blocking the intersection" @@ -5520,7 +5645,7 @@ "如果設定為假值(false), 車輛通過此車道與車道連接的連接線(connection)時, 將不會" "擔心是否會阻塞路口" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1416 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1416 msgid "" "If set to a more than 0 value, an internal junction will be built at this " "position (in m)/n from the start of the internal lane for this connection" @@ -5528,7 +5653,7 @@ "如果設定為大於0的值, 內部路口將會被建立在此連接線(connection)的內部車道起點的" "位置(公尺為單位)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1422 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1422 msgid "" "If set to true, This connection will not be TLS-controlled despite its node " "being controlled" @@ -5536,75 +5661,75 @@ "如果設為真值(true), 儘管節點路口受號誌控制, 此連接線(connection)不會受到號誌" "控制" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1428 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1428 msgid "Vision distance between vehicles" msgstr "車輛之間的視距" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1434 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1434 msgid "sets index of this connection within the controlling traffic light" msgstr "設定交通號誌內的連接線(connection )的索引" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1440 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1440 msgid "" "sets index for the internal junction of this connection within the " "controlling traffic light" msgstr "設定在交通號誌內的連接線的內部路口的索引" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1457 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1457 msgid "sets custom speed limit for the connection" msgstr "設定連接線(connection)的自定速限" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1463 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1463 msgid "sets custom length for the connection" msgstr "設定連接線(connection)的自定長度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1469 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1469 msgid "sets custom shape for the connection" msgstr "設定連接線(connection)的自定形狀(shape)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1488 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1488 msgid "if set to true, vehicles will make a turn in 2 steps" msgstr "若設定為真值(true), 車輛將分兩步轉彎" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1494 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1494 msgid "" "set a custom edge type (for applying vClass-specific speed restrictions)" msgstr "設定自定的路段類型(用於指定的車輛類型速限)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1500 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1500 msgid "turning direction for this connection (computed)" msgstr "此連接線(connection)的轉向(計算過的)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1505 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1505 msgid "link state for this connection (computed)" msgstr "此連接線(connection)的鏈接狀態(link state) (計算過的)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1535 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1535 msgid "The id of bus stop" msgstr "公車站的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1540 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1540 msgid "The name of the lane the bus stop shall be located at" msgstr "公車站應位於的車道的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1545 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1609 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1707 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1836 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3962 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4073 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1545 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1609 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1707 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3968 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4095 msgid "" "The begin position on the lane (the lower position on the lane) in meters" msgstr "車道上的起始位置(車道上較低位置)(以公尺為單位)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1550 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1614 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1712 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1841 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3967 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4078 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4432 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4802 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1550 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1614 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1712 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1841 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3973 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4100 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4470 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4916 msgid "" "The end position on the lane (the higher position on the lane) in meters, " "must be larger than startPos by more than 0.1m" @@ -5612,555 +5737,560 @@ "車道上的結束位置(車道上較高的位置) (以公尺為單位), 必須比起始位置(startPos)大" "於 0.1公尺以上" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1555 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1555 msgid "Name of busStop" msgstr "公車停靠站(busStop)的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1560 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1624 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1680 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1722 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1785 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1868 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1979 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2060 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2140 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2219 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2246 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2293 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2959 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3266 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3972 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4083 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4437 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4807 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1560 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1680 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1722 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1785 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1868 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1985 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2066 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2146 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2225 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2252 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2299 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2965 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3272 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3978 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4105 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4475 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4921 msgid "If set, no error will be reported if element is placed behind the lane." msgstr "如果設定,若元素放置在車道後面,不會報告任何錯誤。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1561 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1561 msgid "" "Instead, it will be placed 0.1 meters from the lanes end or at position 0.1" msgstr "相反地,它將放置在距離車道盡頭 0.1 米處或 0.1位置(position)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1562 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1626 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1682 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1724 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1787 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1870 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1981 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2062 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2142 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2221 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2248 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2295 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2961 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3268 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3974 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4085 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4439 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4809 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1562 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1626 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1682 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1724 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1787 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1870 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1987 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2148 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2227 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2254 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2301 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2967 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3274 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4477 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4923 msgid "" "if the position was negative and larger than the lanes length after " "multiplication with - 1" msgstr "如果位置為負值且大於乘以 - 1 後的車道長度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1568 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1568 msgid "" "Meant to be the names of the bus lines that stop at this bus stop. This is " "only used for visualization purposes" msgstr "意思是在這個公車停靠站的公車線路的名稱。這僅用於視覺化目的" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1573 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1637 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1573 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1637 msgid "" "Larger numbers of persons trying to enter will create an upstream jam on the " "sidewalk" msgstr "大量人群試圖進入將會在人行道上造成上游堵塞" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1579 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1643 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1741 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1579 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1741 msgid "Optional space definition for vehicles that park at this stop" msgstr "停於此停靠點的車輛的自選空間定義(space defintion)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1585 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1585 msgid "The RGBA color with which the busStop shall be displayed" msgstr "公車站(busStop)的RGBA顏色將會被顯示" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1599 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1599 msgid "The id of train stop" msgstr "火車站的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1604 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1604 msgid "The name of the lane the train stop shall be located at" msgstr "火車站所在車道的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1619 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1619 msgid "Name of trainStop" msgstr "火車站(trainStop)名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1625 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1681 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1723 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1786 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1869 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1980 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2061 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2141 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2220 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2247 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2294 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2960 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3267 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3973 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4084 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4438 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4808 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1625 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1681 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1723 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1786 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1869 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1986 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2147 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2226 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2253 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2300 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2966 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3273 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3979 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4106 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4476 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4922 msgid "" "Instead, it will be placed 0.1 meters from the lanes end or at position 0.1," msgstr "相反地,它將放置在距離車道末端 0.1 米處或 0.1 米位置," -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1632 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1632 msgid "" "Meant to be the names of the train lines that stop at this train stop. This " "is only used for visualization purposes" msgstr "意為停靠該火車站的火車線路的名稱。這僅用於視覺化目的" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1649 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1649 msgid "The RGBA color with which the trainStop shall be displayed" msgstr "火車站(trainStop)的RGBA顏色將會被顯示" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1663 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1663 msgid "The name of the lane the stop access shall be located at" msgstr "停靠站通道(access)應位於的車道的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1668 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1668 msgid "The position on the lane (the lower position on the lane) in meters" msgstr "車道上的位置(車道上較低的位置) (以公尺為單位)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1674 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1674 msgid "The walking length of the access in meters" msgstr "通道的步行長度(公尺)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1697 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1697 msgid "The id of container stop" msgstr "貨櫃(container)停靠站的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1702 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1702 msgid "The name of the lane the container stop shall be located at" msgstr "貨櫃(container)停靠站應位於的車道的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1717 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1717 msgid "Name of containerStop" msgstr "貨櫃停靠站(containerStop)的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1730 msgid "" "meant to be the names of the bus lines that stop at this container stop. " "This is only used for visualization purposes" msgstr "意思是停靠此貨櫃停靠站的公車路線的名稱。這僅用於視覺化目的" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1735 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1735 msgid "" "Larger numbers of container trying to enter will create an upstream jam on " "the sidewalk" msgstr "大量貨櫃(container)試圖進入將會在人行道上造成上游堵塞" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1747 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1747 msgid "The RGBA color with which the containerStop shall be displayed" msgstr "貨櫃停靠站(containerStop)的RGBA顏色將會被顯示" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1760 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1760 msgid "The id of charging station" msgstr "充電站的識別名" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1765 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1765 msgid "Lane of the charging station location" msgstr "充電站所在車道" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1770 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1770 msgid "Begin position in the specified lane" msgstr "指定車道的起始位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1775 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1775 msgid "End position in the specified lane" msgstr "指定車道的結束位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1780 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1780 msgid "Name of chargingStation" msgstr "充電站名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1793 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1793 msgid "Charging power in W" msgstr "充電功率(W)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1799 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1799 msgid "Charging efficiency [0,1]" msgstr "充電效率 [0,1]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1806 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1806 msgid "" "Enable or disable charge in transit, i.e. vehicle must or must not to stop " "for charging" msgstr "在運輸過程中啟用或禁用充電,即車輛必須或不得停車充電" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1812 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1812 msgid "" "Time delay after the vehicles has reached / stopped on the charging station, " "before the energy transfer (charging) begins" msgstr "車輛到達/停在充電站後,能量傳輸(充電)開始之前的時間延遲" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1826 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1826 msgid "The id of ParkingArea" msgstr "停車場的id" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1831 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1831 msgid "The name of the lane the Parking Area shall be located at" msgstr "停車場所在的車道名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1846 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1846 msgid "Lane position in that vehicle must depart when leaves parkingArea" msgstr "離開停車場時,車輛駛離的車道位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1851 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1851 msgid "Name of parkingArea" msgstr "停車場名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1856 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1856 msgid " The number of parking spaces for road-side parking" msgstr " 路邊停車位數量" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1862 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1862 msgid "" "If set, vehicles will park on the road lane and thereby reducing capacity" msgstr "如果設定,車輛將停在車道上,從而減少容量" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1876 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1913 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1876 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1919 msgid "The width of the road-side parking spaces" msgstr "路邊停車位的寬度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1882 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1882 msgid "" "The length of the road-side parking spaces. By default (endPos - startPos) / " "roadsideCapacity" msgstr "路邊停車位的長度。預設情況下為(終點位置 - 開始位置)/路邊容量" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1888 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1923 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1888 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1929 msgid "" "The angle of the road-side parking spaces relative to the lane angle, " "positive means clockwise" msgstr "路邊停車位相對於車道的角度,正值表示順時針方向" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1908 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1894 +msgid "Enable or disable lefthand position" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1914 msgid "Name of parking space" msgstr "停車位名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1924 msgid "The length of the road-side parking spaces" msgstr "路邊停車位的長度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1928 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1934 msgid "The slope of the road-side parking spaces" msgstr "路邊停車位的坡度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1943 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1949 msgid "The id of E1" msgstr "E1 的id" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1948 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2000 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2209 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2236 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2268 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1954 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2006 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2215 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2242 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2274 msgid "" "The id of the lane the detector shall be laid on. The lane must be a part of " "the network used" msgstr "偵測器所在車道的 ID。車道必須位於所用路網內" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1953 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2273 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1959 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2279 msgid "" "The position on the lane the detector shall be laid on in meters. The " "position must be a value between -1*lane's length and the lane's length" msgstr "" "偵測器在車道上的位置應以米為單位設置。該位置必須是在正負一個車道長度之間" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1958 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2016 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2096 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2168 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5770 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1964 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2022 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2102 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5916 msgid "" "The aggregation period the values the detector collects shall be summed up" msgstr "在匯總週期內偵測器採集的值應相加" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1964 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1970 msgid "Name of induction loop" msgstr "偵測器名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1969 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2032 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2112 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2179 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2283 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1975 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2038 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2118 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2289 msgid "The path to the output file" msgstr "輸出檔案的路徑" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1974 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2037 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2117 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2184 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2288 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:1980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2043 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2123 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2190 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2294 msgid "Space separated list of vehicle type ids to consider" msgstr "要考慮的車輛類型ID的空格分隔清單" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:1995 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2001 msgid "The id of E2" msgstr "E2的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2005 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2086 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2214 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2241 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2011 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2092 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2220 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2247 msgid "The position on the lane the detector shall be laid on in meters" msgstr "偵測器在車道上的位置應以米為單位" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2016 msgid "The length of the detector in meters" msgstr "偵測器的長度(以米為單位)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2102 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2108 msgid "The traffic light that triggers aggregation when switching" msgstr "切換時觸發聚合(aggregation)的紅綠燈" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2027 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2033 msgid "Name of lane area detector" msgstr "車道區域偵測器名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2042 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2122 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2048 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2128 msgid "" "The time-based threshold that describes how much time has to pass until a " "vehicle is recognized as halting)" msgstr "時間為基礎的閾值用來定義車輛必須停等多少時間才會被認為是停等" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2048 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2128 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2195 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2054 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2201 msgid "" "The speed-based threshold that describes how slow a vehicle has to be to be " "recognized as halting) in m/s" msgstr "" "速度為基礎的閾值用來定義車輛必需行駛多慢才會被認為是停等 (單位為 公尺/秒)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2054 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2060 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2140 msgid "" "The minimum distance to the next standing vehicle in order to make this " "vehicle count as a participant to the jam) in m" -msgstr "車輛到下一個停等的車輛得最短距離(公尺), " -"此距離用於計算該車輛是否被視為堵塞的參與者" +msgstr "" +"車輛到下一個停等的車輛得最短距離(公尺), 此距離用於計算該車輛是否被視為堵塞的" +"參與者" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2076 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2082 msgid "The id of Multilane E2" msgstr "多車道偵測器E2 (Multilane E2)的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2081 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2087 msgid "The sequence of lane ids in which the detector shall be laid on" msgstr "偵測器應放置的車道識別名(ID)順序" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2091 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2097 msgid "The end position on the lane the detector shall be laid on in meters" msgstr "偵測器在車道上的終點位置 (公尺為單位)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2113 msgid "Name of Multilane E2 detector" msgstr "多車道偵測器E2 (Multilane E2) 名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2157 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2163 msgid "The id of E3" msgstr "E3的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2162 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2354 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3213 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2168 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3219 msgid "X-Y position of detector in editor (Only used in netedit)" msgstr "在編輯器(editor)內,偵測器的x,y位置 (只用於netedit)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2180 msgid "Name of Entry Exit detector" msgstr "進出(Entry Exit)偵測器名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2189 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2195 msgid "" "The time-based threshold that describes how much time has to pass until a " "vehicle is recognized as halting) in s" msgstr "以時間為基礎的閾值, 用來定義車輛必須停等多少時間才會被認為是停等" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2263 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2269 msgid "The id of Instant Induction Loop (E1Instant)" msgstr "即時偵測器(E1Instant)的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2278 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2284 msgid "Name of instant induction loop" msgstr "即時偵測器(instant induction loop)的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2309 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2315 msgid "The id of RouteProbe" msgstr "路徑取樣(RouteProbe)的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2314 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2320 msgid "The id of an edge in the simulation network" msgstr "模擬路網內的路段識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2319 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2325 msgid "The frequency in which to report the distribution" msgstr "報告分佈的頻率" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2325 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2331 msgid "Name of route probe" msgstr "路徑取樣(route probe)的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2330 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2336 msgid "The file for generated output" msgstr "用於儲存輸出(output)的檔案" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2335 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2341 msgid "The time at which to start generating output" msgstr "開始產生輸出的時間" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2349 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2355 msgid "The id of Variable Speed Signal" msgstr "可變速度號誌的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2360 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2366 msgid "List of Variable Speed Sign lanes" msgstr "設有可變速度標誌的車道清單" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2365 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2371 msgid "Name of Variable Speed Signal" msgstr "可變速度號誌的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2370 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2376 msgid "" "Space separated list of vehicle type ids to consider (empty to affect all " "types)" msgstr "考慮的車輛類型 ID , 並以空格分隔的清單(空的(empty)表示影響所有類型)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2396 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2402 msgid "Speed" msgstr "速度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2410 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2466 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2416 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2472 msgid "The id of Calibrator" msgstr "校估器(Calibrator)的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2415 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3159 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3179 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2421 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3165 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3185 msgid "The id of edge in the simulation network" msgstr "模擬路網內的路段的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2420 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2476 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2426 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2482 msgid "The position of the calibrator on the specified lane" msgstr "在指定車道上的校估器(calibrator)的位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2426 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2482 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2432 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2488 msgid "" "The aggregation interval in which to calibrate the flows. Default is step-" "length" msgstr "用於校估流量時的聚合時間區間(aggregation interval)。預設值為步長" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2432 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2438 msgid "Name of Calibrator" msgstr "校估器名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2437 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2493 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2443 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2499 msgid "" "The id of the routeProbe element from which to determine the route " "distribution for generated vehicles" msgstr "決定所產生車輛的路徑分布的routeProbe元素的識別名稱(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2442 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2498 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2504 msgid "The output file for writing calibrator information or NULL" msgstr "用於寫入校估資訊或是無效資訊(NULL)的輸出檔案" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2447 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2503 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2453 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2509 msgid "A threshold value to detect and clear unexpected jamming" msgstr "用於偵測及清除無預期阻塞的閾值" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2453 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2509 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2459 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2515 msgid "" "space separated list of vehicle type ids to consider (empty to affect all " "types)" msgstr "考慮的車輛類型 ID , 並以空格分隔的清單(空的(empty)表示影響所有類型)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2471 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2477 msgid "The id of lane in the simulation network" msgstr "模擬路網內的路段的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2488 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2494 msgid "Name of calibrator lane" msgstr "校估器所在車道的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2522 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2528 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3715 msgid "The id of the route the vehicle shall drive along" msgstr "車輛行駛路徑的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2527 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2533 msgid "First calibrator flow departure time" msgstr "第一個校估器流量離開時間" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2533 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4962 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2539 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5108 msgid "End of departure interval" msgstr "出發區間結束" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2543 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2549 msgid "The id of the vehicle type to use for this calibrator flow" msgstr "用於此校估器流量的車輛類型的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2555 msgid "Number of vehicles per hour, equally spaced" msgstr "每小時車輛數,等間距" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2555 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2561 msgid "Vehicle's speed" msgstr "車速" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2576 msgid "The id of Rerouter" msgstr "改道裝置的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2581 msgid "An edge id or a list of edge ids where vehicles shall be rerouted" msgstr "車輛應改道的路段識別名(id)或是清單" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2580 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2586 msgid "X,Y position in editor (Only used in netedit)" msgstr "編輯器中的 X,Y 位置(僅用於netedit )" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2586 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2592 msgid "Name of Rerouter" msgstr "改道裝置名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2591 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2597 msgid "The probability for vehicle rerouting (0-1)" msgstr "車輛重新搜尋路徑(rerouting)機率(0-1)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2597 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2603 msgid "" "The waiting time threshold (in s) that must be reached to activate rerouting " "(default -1 which disables the threshold)" @@ -6168,1219 +6298,1252 @@ "啟動路徑重新搜尋必須達到的等待時間閾值, 以秒為單位(預設值為-1, 表示禁用此閾" "值)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2603 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2609 msgid "" "The list of vehicle types that shall be affected by this rerouter (empty to " "affect all types)" msgstr "" -"受此重新搜尋路徑裝置(rerouter)影響的車輛類型清單(空的表示所有車輛類型將被影響)" +"受此重新搜尋路徑裝置(rerouter)影響的車輛類型清單(空的表示所有車輛類型將被影" +"響)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2608 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2614 msgid "" "Whether the router should be inactive initially (and switched on in the gui)" msgstr "路徑重新搜尋裝置(rerouter)是否最初應處於非活動狀態(並在 gui 中開啟)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2630 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2636 msgid "Begin" msgstr "開始" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2636 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2642 msgid "End" msgstr "結束" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2656 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2680 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2662 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2686 msgid "allowed vehicles" msgstr "允許的車輛" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2661 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2685 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2667 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2691 msgid "disallowed vehicles" msgstr "不允許的車輛" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2674 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2680 msgid "Lane ID" msgstr "車道識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2704 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2724 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2750 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2710 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2756 msgid "SUMO Probability" msgstr "SUMO機率" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2718 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2724 msgid "ParkingArea ID" msgstr "停車區域識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2730 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2736 msgid "Enable or disable visibility for parking area reroutes" msgstr "啟用或是禁用於停車區域重新搜尋路徑的可見性( visibility)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2770 msgid "Edge in which vaporizer is placed" msgstr "設置蒸發裝置(vaporizer)的路段" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2769 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2775 msgid "Start Time" msgstr "開始時間" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2775 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2781 msgid "End Time" msgstr "結束時間" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2781 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2787 msgid "Name of vaporizer" msgstr "蒸發裝置名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2802 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2808 msgid "The id of the polygon" msgstr "多邊形物件的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2807 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2813 msgid "The shape of the polygon" msgstr "多邊形物件的形狀" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2812 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2818 msgid "The RGBA color with which the polygon shall be displayed" msgstr "應被顯示的多邊形物件的顏色(RGBA)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2818 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2824 msgid "An information whether the polygon shall be filled" msgstr "多邊形物件是否被填滿的資訊" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2824 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2830 msgid "The default line width for drawing an unfilled polygon" msgstr "繪製未填滿的多邊形的預設線寬" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2830 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2836 msgid "The layer in which the polygon lies" msgstr "多邊形物件所在的圖層" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2842 msgid "A typename for the polygon" msgstr "多邊形物件的類型名稱(typename)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2842 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2848 msgid "Polygon's name" msgstr "多邊形的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2847 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2853 msgid "A bitmap to use for rendering this polygon" msgstr "用於呈現此多邊形的點陣圖" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2853 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2924 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3014 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3091 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2859 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2930 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3020 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3097 msgid "Enable or disable use image file as a relative path" msgstr "允許或禁止使用圖像檔案作為相對路徑" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2859 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2930 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3020 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3097 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2865 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2936 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3026 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3103 msgid "Angle of rendered image in degree" msgstr "呈現的圖像的角度 (以度為單位)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2873 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2944 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2879 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2950 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3040 msgid "The id of the POI" msgstr "興趣點的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2878 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2884 msgid "The position in view" msgstr "視圖中的位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2883 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2973 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3050 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2889 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2979 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3056 msgid "The color with which the POI shall be displayed" msgstr "應被顯示的興趣點的顏色" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2889 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2979 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3056 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2895 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2985 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3062 msgid "A typename for the POI" msgstr "興趣點的類型名稱(typename)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2895 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2985 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3062 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3146 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2901 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2991 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3152 msgid "Name of POI" msgstr "興趣點的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2900 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2990 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2906 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2996 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3073 msgid "The layer of the POI for drawing and selecting" msgstr "用於繪製或選擇的興趣點的圖層" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2906 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2996 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3073 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2912 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3002 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3079 msgid "Width of rendered image in meters" msgstr "呈現的圖像的寬度(以公尺為單位)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2912 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3002 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3079 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2918 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3008 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3085 msgid "Height of rendered image in meters" msgstr "呈現的圖像的高度(以公尺為單位)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2918 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3008 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3085 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2924 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3014 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3091 msgid "A bitmap to use for rendering this POI" msgstr "用於呈現此興趣點的點陣圖" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2949 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2955 msgid "The name of the lane at which the POI is located at" msgstr "興趣點所在車道的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2954 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2960 msgid "" "The position on the named lane or in the net in meters at which the POI is " "located at" msgstr "興趣點在已命名車道或路網的位置(以公尺為單位)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:2967 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:2973 msgid "The lateral offset on the named lane at which the POI is located at" msgstr "興趣點所在的已命名車道的側向偏移值(lateral offset)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3040 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3046 msgid "The longitude position of the parking vehicle on the view" msgstr "視圖中停車車輛的經度位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3045 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3051 msgid "The latitude position of the parking vehicle on the view" msgstr "視圖中停車車輛的緯度位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3119 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3125 msgid "The id of the TAZ" msgstr "交通分區(TAZ)的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3124 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3130 msgid "The shape of the TAZ" msgstr "交通分區(TAZ)的形狀" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3129 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3135 msgid "TAZ center" msgstr "交通分區(TAZ)中心" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3134 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3140 msgid "An information whether the TAZ shall be filled" msgstr "交通分區(TAZ)是否應被填滿的資訊" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3140 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3146 msgid "The RGBA color with which the TAZ shall be displayed" msgstr "應被顯示的交通分區(TAZ)的顏色(RGBA)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3165 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3171 msgid "Depart weight associated to this Edge" msgstr "與此路段相關的出發權重(depart weight)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3185 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3191 msgid "Arrival weight associated to this Edget" msgstr "與此路段相關的抵達權重(arrival weight)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3208 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3214 msgid "Traction substation ID" msgstr "牽引變電站的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3219 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3225 msgid "Voltage of at connection point for the overhead wire" msgstr "用於架空電線的接觸點的電壓" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3225 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3231 msgid "Current limit of the feeder line" msgstr "饋電導線的電流限制" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3239 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3245 msgid "Overhead wire segment ID" msgstr "架空電線區段識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3244 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3250 msgid "Substation to which the circuit is connected" msgstr "電路所連接的變電站" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3249 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3255 msgid "List of consecutive lanes of the circuit" msgstr "電路(circuit)所在的連續車道清單" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3254 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3260 msgid "Starting position in the specified lane" msgstr "在指定車道上的開始位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3260 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3266 msgid "Ending position in the specified lane" msgstr "在指定車道上的結束位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3274 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3280 msgid "Inner lanes, where placing of overhead wire is restricted" msgstr "限制設置架空電線的內車道" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3287 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3293 msgid "Overhead wire clamp ID" msgstr "架空電線夾的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3292 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3298 msgid "" "ID of the overhead wire segment, to the start of which the overhead wire " "clamp is connected" msgstr "與架空電線夾起點連接的架空電線區段的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3297 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3303 msgid "ID of the overhead wire segment lane of overheadWireIDStartClamp" msgstr "架空電線開始夾(overheadWireIDStartClamp)的架空電線區段車道的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3302 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3308 msgid "" "ID of the overhead wire segment, to the end of which the overhead wire clamp " "is connected" msgstr "與架空電線夾終點連結的架空電線區段的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3313 msgid "ID of the overhead wire segment lane of overheadWireIDEndClamp" msgstr "架空電線終點夾(overheadWireIDEndClamp)的架空電線區段車道的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3330 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3336 msgid "The id of Route" msgstr "路徑識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3335 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3367 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3341 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3373 msgid "" "The edges the vehicle shall drive along, given as their ids, separated using " "spaces" msgstr "車輛行經的路段(使用空格分隔)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3340 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3372 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3346 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3378 msgid "This route's color" msgstr "路徑的顏色" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3345 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3377 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3351 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3383 msgid "The number of times that the edges of this route shall be repeated" msgstr "此路徑上的路段應該重複的次數" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3351 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3383 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3389 msgid "" "When defining a repeating route with stops and those stops use the until " "attribute," msgstr "在定義帶有停靠點的重複路徑時,這些停靠點使用 until 屬性," -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3352 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3384 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3358 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3390 msgid "the times will be shifted forward by 'cycleTime' on each repeat" msgstr "每次重複時,時間將通過週期時間'cycleTime'向前移動" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3399 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3405 msgid "The id of VehicleType distribution" msgstr "車輛類型(VehicleType)分布的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3421 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3427 msgid "The id of VehicleType" msgstr "車輛類型(VehicleType)的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3426 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3432 msgid "Vehicle Type Distribution" msgstr "車輛類型分布" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3431 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3437 msgid "An abstract vehicle class" msgstr "抽象的車輛類別" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3438 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3444 msgid "This vehicle type's color" msgstr "此車輛類型的顏色" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3443 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3449 msgid "The vehicle's netto-length (length) [m]" msgstr "車輛的淨長度(長度)[公尺]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3454 msgid "Empty space after leader [m]" msgstr "領前者(leader)後的空白空間[公尺]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3453 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3459 msgid "The vehicle's maximum velocity [m/s]" msgstr "車輛的最大速度[公尺/秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3458 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3464 msgid "" "The vehicle's expected multiplicator for lane speed limits (or a " "distribution specifier)" -msgstr "車輛預期的車道速度限制乘數(multiplicator) (或一個分佈說明符(specifier))" +msgstr "" +"車輛預期的車道速度限制乘數(multiplicator) (或一個分佈說明符(specifier))" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3463 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3469 msgid "The vehicle's desired maximum velocity (interacts with speedFactor)." msgstr "車輛所需的最大速度 (與 speedFactor 交互作用)。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3464 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3470 msgid "Applicable when no speed limit applies (bicycles, some motorways) [m/s]" msgstr "適用於沒有速度限制的情況 (腳踏車, 某些高速公路) [m/s]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3469 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3475 msgid "An abstract emission class" msgstr "抽象的排放物類別" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3475 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3481 msgid "How this vehicle is rendered" msgstr "此車輛如何被呈現" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3481 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3487 msgid "The vehicle's width [m] (only used for drawing)" msgstr "車輛寬度 [公尺] (只用於繪製)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3487 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3493 msgid "The vehicle's height [m] (only used for drawing)" msgstr "車輛長度 [公尺] (只用於繪製)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3493 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3499 msgid "" "Image file for rendering vehicles of this type (should be grayscale to allow " "functional coloring)" msgstr "用於呈現此類別車輛的圖像檔案(應為灰階標度以允許功能性著色)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3498 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3504 msgid "The model used for changing lanes" msgstr "用於車道變換的模式" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3505 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3511 msgid "The model used for car-following" msgstr "使用的跟車模式" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3512 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3518 msgid "" "The number of persons (excluding an autonomous driver) the vehicle can " "transport" msgstr "車輛能運載的人數(不含自動駕駛車的駕駛者)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3517 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3523 msgid "The number of containers the vehicle can transport" msgstr "車輛能載運的貨櫃(containers)數量" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3522 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3528 msgid "The time required by a person to board the vehicle" msgstr "乘客上車需要的時間" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3528 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3534 msgid "The time required to load a container onto the vehicle" msgstr "將貨櫃(container)裝載到車輛上所需的時間" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3534 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3540 msgid "The preferred lateral alignment when using the sublane-model" msgstr "使用sublane模式時的優先選擇的側向對齊方式" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3541 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3547 msgid "" "The minimum lateral gap at a speed difference of 50km/h when using the " "sublane-model" msgstr "使用sublane模式時, 在速差為50公里/小時下的最小側向間距" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3547 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3553 msgid "The maximum lateral speed when using the sublane-model" msgstr "使用sublane模式時, 最大側向速度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3553 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3559 msgid "" "The interval length for which vehicle performs its decision logic " "(acceleration and lane-changing)" msgstr "車輛執行決策邏輯(加速和車道變化)的時間區間長度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3559 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3565 msgid "" "The probability when being added to a distribution without an explicit " "probability" msgstr "在沒有明確機率的情況下, 加入到分佈中的機率" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3565 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3571 msgid "3D model file for this class" msgstr "用於此類別的三維模式" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3576 msgid "Carriage lengths" msgstr "車廂長度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3581 msgid "Locomotive lengths" msgstr "火車長度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3580 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3586 msgid "Gap between carriages" msgstr "車廂之間的距離" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3613 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3619 msgid "The ID of trip" msgstr "旅次的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3618 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3663 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3669 msgid "The id of the vehicle type to use for this trip" msgstr "用於此旅次的車輛類型識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3624 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3630 msgid "The ID of the edge the trip starts at" msgstr "旅次開始的路段的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3629 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3635 msgid "The ID of the edge the trip ends at" msgstr "旅次結束的路段的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3634 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3640 msgid "List of intermediate edge ids which shall be part of the trip" msgstr "應作為旅次一部分的中間路段的清單" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3642 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3682 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3648 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3688 msgid "" "The departure time of the (first) trip which is generated using this trip " "definition" msgstr "使用旅次定義所產生的(第一個)旅次出發時間" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3658 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3664 msgid "The id of trip" msgstr "旅次識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3669 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3675 msgid "The name of the junction the trip starts at" msgstr "旅次開始的路口的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3674 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3680 msgid "The name of the junction the trip ends at" msgstr "旅次結束的路口的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3698 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3743 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3704 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3749 msgid "The ID of the vehicle" msgstr "車輛的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3703 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3748 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3754 msgid "The id of the vehicle type to use for this vehicle" msgstr "使用此車輛的車輛類型識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3714 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3754 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3720 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3760 msgid "The index of the edge within route the vehicle starts at" msgstr "在路徑上, 車輛開始的路段的索引(index)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3719 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3759 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3725 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3765 msgid "The index of the edge within route the vehicle ends at" msgstr "在路徑上, 車輛結束的路段的索引(index)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3727 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3767 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3733 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3773 msgid "The time step at which the vehicle shall enter the network" msgstr "車輛應進入路網時的時間步長(time step)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3783 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3789 msgid "The ID of the flow" msgstr "流量的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3788 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3830 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3867 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3909 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3794 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3873 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3915 msgid "The id of the flow type to use for this flow" msgstr "用於此流量的流量類型的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3794 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3800 msgid "The ID of the edge the flow starts at" msgstr "流量開始的路段的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3799 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3805 msgid "The ID of the edge the flow ends at" msgstr "流量結束的路段的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3804 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3810 msgid "List of intermediate edge ids which shall be part of the flow" msgstr "流量使用的中間路段的識別名(id)清單" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3825 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3862 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3831 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3868 msgid "The id of the flow" msgstr "流量識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3836 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3842 msgid "The name of the junction the flow starts at" msgstr "流量開始的路口的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3841 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3847 msgid "The name of the junction the flow ends at" msgstr "流量結束的路口的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3873 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3879 msgid "The id of the route the flow shall drive along" msgstr "流量應該行經的路徑的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3878 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3915 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3884 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3921 msgid "The index of the edge within route the flow starts at" msgstr "流量在其路徑上開始的路段的索引(index)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3883 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3920 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3889 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3926 msgid "The index of the edge within route the flow ends at" msgstr "流量在其路徑上結束的路段的索引(index)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3904 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3910 msgid "The name of the flow" msgstr "流量的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3957 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3963 msgid "The name of the lane the stop shall be located at" msgstr "停靠站應位於的車道的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3980 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:3986 msgid "The lateral offset on the named lane at which the vehicle must stop" msgstr "車輛必須停靠於指定車道的側向偏移值" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:3996 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4842 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4002 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4956 msgid "BusStop associated with this stop" msgstr "與此停靠點相關的公車站" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4012 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4472 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4018 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4988 +msgid "TrainStop associated with this stop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4034 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4510 msgid "ContainerStop associated with this stop" msgstr "與此停靠點相關的貨櫃停靠點(ContainerStop)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4050 msgid "ChargingStation associated with this stop" msgstr "與此停靠點相關的充電站(ChargingStation)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4044 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4066 msgid "ParkingArea associated with this stop" msgstr "與此停靠點相關的停車區域" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4068 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4090 msgid "The name of the lane the waypoint shall be located at" msgstr "定位點(waypoint)應位於的車道的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4091 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4113 msgid "The lateral offset on the named lane at which the vehicle must waypoint" msgstr "車輛必須在已指定車道上定點的側向偏移值" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4107 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4129 msgid "BusWaypoint associated with this waypoint" msgstr "與此定位點相關的公車定點(BusWaypoint)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4123 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4145 +msgid "TrainWaypoint associated with this waypoint" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4161 msgid "ContainerWaypoint associated with this waypoint" msgstr "與此定位點相關的貨櫃定點(ContainerWaypoint)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4139 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4177 msgid "ChargingStation associated with this waypoint" msgstr "與此定點相關的充電站" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4155 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4193 msgid "ParkingArea associated with this waypoint" msgstr "與此定點相關的停車場區域" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4183 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4221 msgid "The time step at which the person shall enter the network" msgstr "人員應進入路網的時間步長" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4223 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4261 msgid "The time step at which the container shall enter the network" msgstr "貨櫃(container)應該進入路網的時間步長(time step)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4259 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4289 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4297 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4327 msgid "The ID of the edge the transport starts at" msgstr "運送開始的路段的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4264 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4302 msgid "The ID of the edge the transport ends at" msgstr "運送結束的路段的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4269 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4337 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4521 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4637 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4744 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4559 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4709 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4834 msgid "arrival position on the destination edge" msgstr "目標路段上的抵達位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4275 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4299 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4337 msgid "list of vehicle alternatives to take for the transport" msgstr "運送的替代車輛清單" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4294 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4332 msgid "ID of the destination container stop" msgstr "貨櫃(container)目的地停靠點的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4321 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4359 msgid "The ID of the edge the tranship starts at" msgstr "轉運開始的路段的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4326 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4364 msgid "The ID of the edge the tranship ends at" msgstr "轉運結束的路段的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4331 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4367 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4392 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4405 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4430 msgid "The position at which the tranship shall enter the net" msgstr "轉運應進入路網時的位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4343 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4373 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4404 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4381 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4411 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4442 msgid "speed of the container for this tranship in m/s" msgstr "貨櫃(container)的轉運速度(公尺/秒)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4395 msgid "The name of the edge the tranship starts at" msgstr "轉運開始的路段的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4362 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4400 msgid "Id of the destination container stop" msgstr "貨櫃(container)目的地停靠點的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4387 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4669 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4425 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4759 msgid "id of the edges to walk" msgstr "行走的路段的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4398 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4674 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4693 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4436 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4783 msgid "Arrival position on the destination edge" msgstr "目的地路段上的抵達位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4427 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4797 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4465 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4911 msgid "The ID of the edge the stop shall be located at" msgstr "停靠站應該位於的路段的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4445 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4477 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4815 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4847 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4483 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4515 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4929 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4961 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4993 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5695 msgid "Minimum duration for stopping" msgstr "最短停靠時間" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4452 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4484 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4822 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4854 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5556 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4490 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4522 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4936 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4968 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5000 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5702 msgid "The time step at which the route continues" msgstr "路徑繼續時的時間長度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4458 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4490 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4496 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4528 msgid "Activity displayed for stopped container in GUI and output files " msgstr "在圖形顯示介面(GUI)及輸入檔案中顯示停靠的貨櫃(container)的活動 " -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4511 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4551 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4549 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4589 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4623 msgid "The ID of the edge the person trip starts at" msgstr "人旅次開始的路段的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4516 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4554 msgid "The ID of the edge the person trip ends at" msgstr "人旅次結束的路段的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4527 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4561 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4595 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4565 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4599 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4633 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4667 msgid "List of possible vehicle types to take" msgstr "可供使用的車輛類型的清單" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4532 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4566 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4600 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4570 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4604 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4638 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4672 msgid "" "List of possible traffic modes. Walking is always possible regardless of " "this value" msgstr "可能的交通運具清單。無論此值如何,步行始終是可能的" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4537 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4571 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4605 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4609 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4677 msgid "list of vehicle alternatives to take for the person trip" msgstr "人旅次可以使用的替代車輛清單" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4556 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4594 msgid "Id of the destination busStop" msgstr "公車終點站的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4585 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4628 +msgid "Id of the destination trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4657 msgid "The name of the junction the person trip starts at" msgstr "人旅次開始的路口的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4590 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4662 msgid "The name of the junction the person trip ends at" msgstr "人旅次結束的路口的名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4627 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4651 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4699 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4723 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4741 msgid "The ID of the edge the walk starts at" msgstr "步行開始的路段的名稱(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4632 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4704 msgid "The ID of the edge the walk ends at" msgstr "步行結束的路段的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4656 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4728 msgid "Id of the destination bus stop" msgstr "公車終點站的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4688 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4746 +msgid "Id of the destination train stop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4778 msgid "The id of the route to walk" msgstr "步行路徑的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4708 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4798 msgid "The name of the junction the walk starts at" msgstr "步行開始的路口的名稱(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4713 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4803 msgid "The name of the junction the walk ends at" msgstr "步行結束的路口的名稱(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4734 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4764 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4824 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4854 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4878 msgid "The ID of the edge the ride starts at" msgstr "乘車(ride)開始的路段的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4739 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4829 msgid "The ID of the edge the ride ends at" msgstr "乘車(ride)結束的路段的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4750 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4774 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4840 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4864 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4888 msgid "list of vehicle alternatives to take for the ride" msgstr "乘車時可以使用的替代車輛清單" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4769 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4859 msgid "ID of the destination bus stop" msgstr "目的地公車站的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4828 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4860 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4883 +msgid "ID of the destination train stop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4942 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:4974 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5006 msgid "Activity displayed for stopped person in GUI and output files " msgstr "在GUI及輸出檔案中為停等人員顯示的活動 " -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4872 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5018 msgid "This vehicle's color" msgstr "此車輛的顏色" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4878 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5024 msgid "The lane on which thevehicle shall be inserted" msgstr "車輛應該被置入的車道" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4884 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5030 msgid "The position at which the vehicle shall enter the net" msgstr "車輛應進入路網時的所在位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4890 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5036 msgid "The speed with which the vehicle shall enter the network" msgstr "車輛進入路網時的應有速度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4896 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5042 msgid "The lane at which the vehicle shall leave the network" msgstr "車輛應離開路網時的所在車道" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4902 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5048 msgid "The position at which the vehicle shall leave the network" msgstr "車輛離開路網時的應有位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4908 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5054 msgid "The speed with which the vehicle shall leave the network" msgstr "車輛離該路網時的應有速度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4914 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5060 msgid "" "A string specifying the id of a public transport line which can be used when " "specifying person rides" msgstr "當指定人員乘車(ride)時, 一個用於指定公共運輸路線的識別名的字串" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4919 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5065 msgid "The number of occupied seats when the vehicle is inserted" msgstr "當車輛被置入路網時,已佔用的座位數" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4925 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5071 msgid "The number of occupied container places when the vehicle is inserted" msgstr "車輛置入時, 已被佔用的貨櫃數" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4931 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5077 msgid "" "The lateral position on the departure lane at which the vehicle shall enter " "the net" msgstr "車輛進入路網時於出發車道的側向位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4937 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5083 msgid "" "The lateral position on the arrival lane at which the vehicle shall arrive" msgstr "車輛抵達時於抵達車道的側向位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4943 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5089 msgid "Insertion checks" msgstr "插入檢查" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4956 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5102 msgid "First flow departure time" msgstr "第一個流量的出發時間" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4968 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4989 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5114 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5135 msgid "probability for emitting a flow each second" msgstr "每秒注入流量的機率" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4969 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5115 msgid "(not together with vehsPerHour or period)" msgstr "(不與 vehsPerHour 或週期一起使用)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4975 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5121 msgid "Number of flows per hour, equally spaced" msgstr "每小時流量的數量,等間隔" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4976 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5122 msgid "(not together with period or probability or poisson)" msgstr "(不與週期,機率或帕松分布(poisson)一起使用)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4982 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5128 msgid "Insert equally spaced flows at that period" msgstr "在該周期內注入等間距的流量" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4983 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5129 msgid "(not together with vehsPerHour or probability or poisson)" msgstr "(不與 vehsPerHour , 機率或帕松(poisson)分配一起使用)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4990 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5136 msgid "(not together with vehsPerHour or period or poisson)" msgstr "(不與 vehsPerHour ,週期或帕松(poisson)分配一起使用)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4996 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5142 msgid "" "Insert flow expected vehicles per second with poisson distributed insertion " "rate" msgstr "根據帕松(poisson)分配注入率, 每秒注入預期車輛的流量" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:4997 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5143 msgid "(not together with period or vehsPerHour or probability)" msgstr "(不與週期, 每小時車輛數(vehsPerHour)或機率一起使用)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5010 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5156 msgid "The acceleration ability of vehicles of this type [m/s^2]" msgstr "此類型車輛的加速能力 [公尺/平方秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5016 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5162 msgid "The deceleration ability of vehicles of this type [m/s^2]" msgstr "此類型車輛的減速能力[公尺/平方秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5022 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5168 msgid "" "The apparent deceleration of the vehicle as used by the standard model [m/" "s^2]" msgstr "標準模式使用的車輛視在減速 [公尺/平方秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5028 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5174 msgid "The maximal physically possible deceleration for the vehicle [m/s^2]" msgstr "車輛的最大物理可能減速度 [公尺/平方秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5034 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5041 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5180 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5187 msgid "Car-following model parameter" msgstr "跟車模式變數" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5047 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5193 msgid "SKRAUSSX parameter 1" msgstr "SKRAUSSX變數1" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5052 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5198 msgid "SKRAUSSX parameter 2" msgstr "SKRAUSSX變數2" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5057 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5203 msgid "SKRAUSSX parameter 3" msgstr "SKRAUSSX變數3" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5062 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5208 msgid "SKRAUSSX parameter 4" msgstr "SKRAUSSX變數4" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5067 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5213 msgid "SKRAUSSX parameter 5" msgstr "SKRAUSSX變數5" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5072 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5218 msgid "EIDM Look ahead / preview parameter [s]" msgstr "EIDM 前瞻/預覽變數 [秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5078 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5224 msgid "EIDM AP Reaction Time parameter [s]" msgstr "EIDM AP 反應時間變數 [秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5084 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5230 msgid "EIDM Wiener Process parameter for the Driving Error [s]" msgstr "駕駛誤差的EIDM 維納過程(Wiener process)變數 [秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5090 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5236 msgid "EIDM Wiener Process parameter for the Estimation Error [s]" msgstr "預測錯誤的EIDM 維納過程(Wiener process)變數 [秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5096 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5242 msgid "EIDM Coolness parameter of the Enhanced IDM [-]" msgstr "改善的IDM模式的EIDM 冷卻度參數 [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5103 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5249 msgid "EIDM leader speed estimation error parameter [-]" msgstr "EIDM前領車速度的預測錯誤變數[-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5109 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5255 msgid "EIDM gap estimation error parameter [-]" msgstr "EIDM 間距預測錯誤變數 [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5115 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5261 msgid "EIDM driving error parameter [-]" msgstr "EIDM 駕駛錯誤變數 [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5121 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5267 msgid "EIDM maximal jerk parameter [m/s^3]" msgstr "EIDM 最大急衝變數 [公尺/立方秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5127 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5273 msgid "" "EIDM maximal negative acceleration between two Action Points (threshold) [m/" "s^2]" msgstr "" "在兩個動作點(action points)之間的EIDM模式最大負加速度(閾值) [公尺/平方秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5133 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5279 msgid "" "EIDM Time parameter until vehicle reaches amax after startup/driveoff [s]" msgstr "在啟動//行駛後車輛達到最大加速度的EIDM時間變數[秒]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5139 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5285 msgid "EIDM Flatness parameter of startup/driveoff curve [-]" msgstr "EIDM 啟動/起步曲線平坦度變數 [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5145 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5291 msgid "EIDM Shift parameter of startup/driveoff curve [-]" msgstr "EIDM 啟動/起步曲線的偏移變數 [-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5151 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5297 msgid "" "EIDM parameter if model shall include vehicle dynamics into the acceleration " "calculation [0/1]" msgstr "EIDM 變數,如果模式應將車輛動力學納入加速度計算 [0/1]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5157 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5303 msgid "" "EIDM parameter how many vehicles are taken into the preview calculation of " "the driver (at least always 1!) [-]" msgstr "EIDM 參數, 有多少車輛被納入驅動程序的預覽計算(至少總是 1!)[-]" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5163 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5169 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5309 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5315 msgid "Peter Wagner 2009 parameter" msgstr "彼得·華格納 (Peter Wagner) 2009 變數" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5175 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5181 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5321 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5327 msgid "IDMM parameter" msgstr "IDMM變數" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5187 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5193 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5199 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5205 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5211 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5217 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5223 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5229 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5235 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5333 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5339 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5345 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5351 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5363 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5381 msgid "W99 parameter" msgstr "W99 變數" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5241 -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5246 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5387 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5392 msgid "Wiedemann parameter" msgstr "魏德曼(Wiedemann)變數" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5251 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5397 msgid "MinGap factor parameter" msgstr "最小間距(MinGap)因素變數" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5256 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5402 msgid "K parameter" msgstr "K 變數" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5261 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5407 msgid "Kerner Phi parameter" msgstr "克納(Kerner)斐(Phi)變數" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5266 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5412 msgid "IDM Delta parameter" msgstr "IDM 德爾塔(Delta)變數" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5271 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5417 msgid "IDM Stepping parameter" msgstr "IDM步進變數" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5276 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5422 msgid "Train Types" msgstr "火車類型" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5289 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5435 msgid "" "Minimum distance to pedestrians that are walking towards the conflict point " "with the ego vehicle." msgstr "行人走向與自我(ego)車輛的衝突點的最小距離。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5295 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5441 msgid "" "The accumulated waiting time after which a vehicle will drive onto an " "intersection even though this might cause jamming." msgstr "即使這可能會導致擁塞,車輛將駛進路口的累積等待時間。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5301 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5447 msgid "" "This value causes vehicles to violate a yellow light if the duration of the " "yellow phase is lower than the given threshold." msgstr "如果黃燈相位的時間低於給定的閾值,則此值會導致車輛闖黃燈。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5307 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5453 msgid "" "This value causes vehicles to violate a red light if the duration of the red " "phase is lower than the given threshold." msgstr "如果紅燈相位的時間低於給定的閾值,則此值會導致車輛闖紅燈。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5313 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5459 msgid "" "This value causes vehicles affected by jmDriveAfterRedTime to slow down when " "violating a red light." msgstr "此值會導致受 jmDriveAfterRedTime 影響的車輛在闖紅燈時減速。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5319 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5465 msgid "" "This value causes vehicles to ignore foe vehicles that have right-of-way " "with the given probability." msgstr "此值會導致車輛忽略具有給定機率的行駛路權的對手(foe)車輛。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5325 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5471 msgid "This value is used in conjunction with jmIgnoreFoeProb." msgstr "此值與 jmIgnoreFoeProb 聯合使用。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5326 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5472 msgid "" "Only vehicles with a speed below or equal to the given value may be ignored." msgstr "只有速度低於或等於給定值的車輛才能被忽略。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5332 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5478 msgid "" "This value configures driving imperfection (dawdling) while passing a minor " "link." msgstr "此值用於設定駕駛者在經過次要路段時, 不完善的駕駛情況(磨蹭 dawdling) 。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5338 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5484 msgid "" "This value defines the minimum time gap when passing ahead of a prioritized " "vehicle. " msgstr "此值定義在優先車輛前面超車時的最小時間間隔。 " -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5344 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5490 msgid "Willingess of drivers to impede vehicles with higher priority" msgstr "駕駛員阻礙具有更高優先權車輛的意願" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5357 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5503 msgid "" "The eagerness for performing strategic lane changing. Higher values result " "in earlier lane-changing." msgstr "渴望進行策略性車道變換的程度。較高的值會導致較早的車道變換。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5363 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5509 msgid "" "The willingness for performing cooperative lane changing. Lower values " "result in reduced cooperation." msgstr "進行合作性的車道變換的意願。較低的值會導致合作減少。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5369 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5515 msgid "" "The eagerness for performing lane changing to gain speed. Higher values " "result in more lane-changing." msgstr "渴望進行車道變化以提高速度的程度。值越高,車道變換越多。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5375 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5521 msgid "" "The eagerness for following the obligation to keep right. Higher values " "result in earlier lane-changing." msgstr "渴望遵循靠右的義務的程度。值越高,車道變換越早。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5381 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5527 msgid "" "The eagerness for using the configured lateral alignment within the lane." msgstr "渴望使用已設定( configured)的車道內側向對齊方式的程度。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5382 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5528 msgid "" "Higher values result in increased willingness to sacrifice speed for " "alignment." msgstr "值越高,則犧牲速度以進行對齊(alignment)的意願就越高。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5388 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5534 msgid "" "The eagerness for overtaking through the opposite-direction lane. Higher " "values result in more lane-changing." msgstr "渴望利用對向車道超車的程度。值越高,車道變換越多。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5394 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5540 msgid "Willingness to encroach laterally on other drivers." msgstr "側向的侵犯干擾其他駕駛者的意願。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5400 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5546 msgid "" "Minimum lateral gap when encroaching laterally on other drives (alternative " "way to define lcPushy)" msgstr "側向地侵犯干擾其他駕駛者的最小側向間距(也可以用lcPushy來定義)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5406 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5552 msgid "Willingness to accept lower front and rear gaps on the target lane." msgstr "接受目標車道上較低的前後間距的意願。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5412 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5558 msgid "Dynamic factor for modifying lcAssertive and lcPushy." msgstr "用於修改lcAssertive和lcPushy的動態系數。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5418 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5564 msgid "" "Time to reach maximum impatience (of 1). Impatience grows whenever a lane-" "change manoeuvre is blocked." msgstr "達到最大不耐煩的時間(1)。每當車道變換被阻止時,不耐煩的程度就會增加。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5424 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5570 msgid "Maximum lateral acceleration per second." msgstr "每秒最大側向加速度。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5430 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5576 msgid "" "Factor for configuring the strategic lookahead distance when a change to the " "left is necessary (relative to right lookahead)." msgstr "" "當需要向左變換(相對於向右前看)時, 用於設定策略性向前看距離的係數(factor)。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5436 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5582 msgid "" "Factor for configuring the threshold asymmetry when changing to the left or " "to the right for speed gain." msgstr "當為了提高速豆而向左或向右變換時, 為了設定閾值不對稱的係數。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5442 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5588 msgid "Upper bound on lateral speed when standing." msgstr "站立時側向速度的上限。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5448 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5594 msgid "" "Upper bound on lateral speed while moving computed as lcMaxSpeedLatStanding " "+ lcMaxSpeedLatFactor * getSpeed()" @@ -7388,2262 +7551,2437 @@ "移動時側向速度上限的計算為lcMaxSpeedLatStanding + lcMaxSpeedLatFactor * " "getSpeed()" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5454 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5600 msgid "" "Distance to an upcoming turn on the vehicles route, below which the alignment" msgstr "在車輛路徑上,到即將轉彎的距離,低於該距離的對齊方式" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5455 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5601 msgid "should be dynamically adapted to match the turn direction." msgstr "應該動態地調整以符合轉彎方向。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5461 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5607 msgid "The probability for violating rules gainst overtaking on the right." msgstr "違反規則的機率以能進行右側超車。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5467 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5613 msgid "Time threshold for the willingness to change right." msgstr "願意向右變換的時間閾值。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5473 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5619 msgid "" "Speed difference factor for the eagerness of overtaking a neighbor vehicle " "before changing lanes (threshold = factor*speedlimit)." msgstr "渴望超車的速度差異係數在改變車道之前(閾值 = 係數*速限)。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5495 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5641 msgid "The name of the person" msgstr "人員名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5500 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5646 msgid "The id of the person type to use for this person" msgstr "為此人員使用的人員類型識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5506 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5652 msgid "This person's color" msgstr "此人員的顏色" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5512 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5658 msgid "The position at which the person shall enter the net" msgstr "人員進入路網時的位置" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5525 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5671 msgid "The name of the container" msgstr "貨櫃名稱" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5530 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5676 msgid "The id of the container type to use for this container" msgstr "此貨櫃的貨櫃類型識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5536 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5682 msgid "This container's color" msgstr "此貨櫃的顏色" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5562 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5708 msgid "" "If set to a non-negative time value, then the stop duration can be extended " "at most by the extension value in seconds" msgstr "" "如果設定一個非負數的時間值,則停等的時間可以被延長 最多以秒為單位的延長值" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5568 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5714 msgid "Whether a person or container or bth may end the stop" msgstr "是否人員,貨櫃或兩者可能結束於停靠點" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5575 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5721 msgid "List of elements that must board the vehicle before it may continue" msgstr "在車輛繼續之前,必須登上車輛的元素清單" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5580 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5726 msgid "List of elements that can board the vehicle before it may continue" msgstr "在車輛繼續之前,可以登上車輛的元素清單" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5585 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5731 msgid "Whether the vehicle stops on the road or beside" msgstr "車輛是否停在路上或是路肩" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5592 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5738 msgid "Activity displayed for stopped person in GUI and output files" msgstr "在 GUI 和輸出檔案中,顯示停止人員的活動" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5597 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5743 msgid "" "Parameter to be applied to the vehicle to track the trip id within a " "cyclical public transport route" msgstr "使用於車輛的的參數,用於追蹤於循環大眾運輸路線上的旅次識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5602 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5748 msgid "" "New line attribute to be set on the vehicle when reaching this stop (for " "cyclical public transport route)" msgstr "設定到達此停靠站的車輛的新路線屬性 (對於循環大眾運輸路線)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5608 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5754 msgid "Speed to be kept while driving between startPos and endPos" msgstr "在開始位置(startPos)和 結束位置(endPos)之間行駛時要保持的速度" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5614 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5760 msgid "" "Whether the stop may be skipped if no passengers wants to embark or disembark" msgstr "如果沒有乘客要上下車,是否可以跳過該站" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5621 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5767 msgid "" "transfer time if there shall be a jump from this stop to the next route edge" msgstr "如果應該從該停靠點跳到下一個路徑路段,則轉移(transfer)時間" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5643 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5789 msgid "Data set ID" msgstr "資料集合識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5659 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5805 msgid "Interval ID" msgstr "區間識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5665 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5811 msgid "Data interval begin time" msgstr "資料區間開始時間" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5671 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5817 msgid "Data interval end time" msgstr "資料區間結束時間" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5687 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5833 msgid "edge ID" msgstr "路段識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5701 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5847 msgid "The ID of the edge the edgeRel starts at" msgstr "路段關係(edgeRel)開始的路段的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5706 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5852 msgid "The ID of the edge the edgeRel ends at" msgstr "路段關係(edgeRel)結束的路段的識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5720 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5866 msgid "The name of the TAZ the TAZRel starts at" msgstr "交通分區(TAZ)的名稱,其分區關係(TAZRel)開始於" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5725 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5871 msgid "The name of the TAZ the TAZRel ends at" msgstr "TAZ的名稱,其TAZRel結束於" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5760 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5906 msgid "The id of this set of measurements" msgstr "此測量值集合的識別名(id)" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5765 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5911 msgid "The path to the output file. The path may be relative" msgstr "輸出檔案的路徑。路徑可能可以是相對路徑" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5775 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5921 msgid "" "The time to start writing. If not given, the simulation's begin is used." msgstr "開始寫出的時間。如果沒有給定,將使用模擬開始的時間。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5780 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5926 msgid "The time to end writing. If not given the simulation's end is used." msgstr "結束寫出的時間。如果沒有給定,將使用模擬結束的時間。" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5785 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5931 msgid "" "If set to true, edges/lanes which were not use by a vehicle during this " "period will not be written" msgstr "如果設定為真值(true),則在此區間未被車輛使用的路段及車道將不會被寫出" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5792 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5938 msgid "If set, junction internal edges/lanes will be written as well" msgstr "如果設定,路口內部路段/車道將也被寫出" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5798 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5944 msgid "" "The maximum travel time in seconds to write if only very small movements " "occur" msgstr "如果僅發生非常小的移動, 則寫出以秒為單位最長旅行時間" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5804 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5950 msgid "" "Consider an edge/lane unused if it has at most this many sampled seconds" msgstr "如果路段/車道最多具有這麼多取樣秒數,則考慮此未使用的路段/車道" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5810 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5956 msgid "The maximum speed to consider a vehicle halting;" msgstr "考慮車輛停止的最大速度;" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5816 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5962 msgid "space separated list of vehicle type ids to consider" msgstr "考慮以空白分隔的車輛類型清單" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5821 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5967 msgid "" "whether aggregation should be performed over all vehicles that entered the " "edge/lane in the aggregation interval" msgstr "是否應該對所有進入路段/車道的車輛在聚合時間區間內進行匯總內進行匯總" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5827 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5973 msgid "" "Whether pedestrians shall be recorded instead of vehicles. Allowed value is " "walk" msgstr "是否應該紀錄行人,而非車輛。允許值為 行走" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5832 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5978 msgid "List of attribute names that shall be written" msgstr "應寫入的屬性名稱清單" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5837 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5983 msgid "Restrict output to the given list of edge ids" msgstr "僅對給定清單內的路段識別名(ID)輸出結果" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5842 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5988 msgid "Restrict output to the given the list of edges given in file" msgstr "僅對給定檔案內的路段識別名(ID)輸出結果" -#: /home/micha/programming/sumo/src/netedit/elements/GNEAttributeCarrier.cpp:5847 +#: D:\Repos\sumo/src\netedit\elements\GNEAttributeCarrier.cpp:5993 msgid "" "Whether the traffic statistic of all edges shall be aggregated into a single " "value" msgstr "是否所有路段的交通統計應被彙整為一個單一 值" -#: /home/micha/programming/sumo/src/netedit/elements/GNEHierarchicalElement.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\GNEHierarchicalElement.cpp:421 msgid "Some child meanData were lost during sorting" msgstr "一些子級的平均資料(meanData)在排序時遺失" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:96 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:96 msgid "" "element must be at least networkElement, additional, TAZ, demandElement, " "dataElement or meanData" msgstr "" -"元素必須至少是路網元素(networkElement), 附加物(additional), 交通分區(TAZ)," -"需求元素(demandElement), 資料元素(dataElement) 或平均資料(meanData)" +"元素必須至少是路網元素(networkElement), 附加物(additional), 交通分區(TAZ),需" +"求元素(demandElement), 資料元素(dataElement) 或平均資料(meanData)" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:100 msgid "" "element can be only a networkElement, additional, demandElement, dataElement " "or meanData at the same time" msgstr "" -"元素只能同時是路網元素(networkElement), 附加物(additional)," -"需求元素(demandElement), 資料元素(dataElement) 或平均資料(meanData)" +"元素只能同時是路網元素(networkElement), 附加物(additional),需求元素" +"(demandElement), 資料元素(dataElement) 或平均資料(meanData)" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:104 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:104 msgid "element can be only a shape, TAZ or wire element at the same time" msgstr "元素只能同時是圖形物件、分區或是通訊線" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:108 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:108 msgid "" "If attributes mask the start and end position, both attributes have to be " "defined" msgstr "如果屬性掩蓋了開始和結束位置,則兩個屬性都必須要定義" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:134 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:134 msgid "Attributes aren't combinables" msgstr "屬性無法組合" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:136 msgid "allow need a disallow attribute in the same tag" msgstr "允許在同一個標記中需要一個禁止的屬性" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:138 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:138 msgid "disallow need an allow attribute in the same tag" msgstr "不允許在同一個標記中需要一個允許的屬性" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:152 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:152 #, c-format msgid "attribute '%' doesn't have a default value" msgstr "屬性 '%' 沒有預設值" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:158 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:158 #, c-format msgid "Attribute '%' not defined" msgstr "屬性 '%' 沒有被定義" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:165 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:165 #, c-format msgid "Maximum number of attributes for tag % exceeded" msgstr "已超出標記 % 的最大屬性數量" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:170 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:170 #, c-format msgid "Attribute '%' already inserted" msgstr "已插入屬性 '%'" -#: /home/micha/programming/sumo/src/netedit/elements/GNETagProperties.cpp:207 +#: D:\Repos\sumo/src\netedit\elements\GNETagProperties.cpp:207 #, c-format msgid "Attribute '%' doesn't exist" msgstr "屬性 '%' 不存在" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAccess.cpp:173 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEEntryExitDetector.cpp:97 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEInductionLoopDetector.cpp:115 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEInstantInductionLoopDetector.cpp:111 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:174 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:190 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:197 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:136 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:143 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:201 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:132 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:137 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAccess.cpp:173 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEEntryExitDetector.cpp:97 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEInductionLoopDetector.cpp:115 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEInstantInductionLoopDetector.cpp:111 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:174 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:190 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:197 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:143 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:201 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:132 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:137 msgid " > lanes's length" msgstr " > 車道長度" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:148 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:149 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:146 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:128 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:129 -msgid "Copy " -msgstr "複製 " - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:148 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:146 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:128 -msgid " name to clipboard" -msgstr " 剪輯板的名稱" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:149 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZSourceSink.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:129 -msgid " typed name to clipboard" -msgstr " 剪輯板的類型名稱" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZSourceSink.cpp:146 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:128 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:129 +#, c-format +msgid "Copy % name to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:148 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZSourceSink.cpp:147 +msgid "Copy % typed name to clipboard" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:156 msgid "Open " msgstr "開啟 " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:136 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:156 msgid " Dialog" msgstr " 對話" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:164 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:174 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:164 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:174 msgid "Cursor position over additional shape: " msgstr "游標在附加形狀物上的位置: " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:168 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:168 msgid "Cursor position over lane: " msgstr "游標在車道上的位置: " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:178 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:178 msgid "Mouse position over edge: " msgstr "滑鼠在路段上的位置: " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:181 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:139 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:181 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:139 msgid "Cursor position in view: " msgstr "游標在檢視窗內的位置: " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditional.cpp:398 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditional.cpp:398 msgid "Invalid number of edges" msgstr "無效的路段數量" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:104 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:104 msgid "add bus stop '" msgstr "新增公車站 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:148 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:148 msgid "add train stop '" msgstr "新增火車站 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:186 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:186 msgid "" "Could not build access in netedit; busStop parent already owns an access in " "the edge '" msgstr "" -"無法在 netedit 中建立連通通道(access); 公車站的親代(parent)在路段上已有連通通道(access) '" +"無法在 netedit 中建立連通通道(access); 公車站的親代(parent)在路段上已有連通" +"通道(access) '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:188 -msgid "Could not build access in netedit; The lane '" -msgstr "無法在 netedit 中建立通路(access); 車道 '" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:188 -msgid "' doesn't support pedestrians" -msgstr "' 不支援行人" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:188 +#, c-format +msgid "" +"Could not build access in netedit; The lane '%' doesn't support pedestrians" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:194 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:194 msgid "add access in '" msgstr "新增通路(access)於 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:235 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:235 msgid "add container stop '" msgstr "新增貨櫃停靠點 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:279 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:279 msgid "add charging station '" msgstr "新增充電站 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:322 -msgid "Could not build parking area with ID '" -msgstr "無法建立識別名為..的停車區域 '" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:322 -msgid "' in netedit; Invalid departPos over lane." -msgstr "' 在netedit; 在車道上無效的出發位置。" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:323 +#, c-format +msgid "" +"Could not build parking area with ID '%' in netedit; Invalid departPos over " +"lane." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:330 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:331 msgid "add parking area '" msgstr "新增停車區域 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:352 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:353 msgid "" "Could not build parking space in netedit; attribute width cannot be parse to " "float." msgstr "無法在netedit建立停車區域; 屬性寬度無法解析為浮點數。" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:354 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:355 msgid "" "Could not build parking space in netedit; attribute length cannot be parse " "to float." msgstr "無法在netedit內建立停車空間; 屬性長度無法剖析為浮點數。" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:356 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:357 msgid "" "Could not build parking space in netedit; attribute angle cannot be parse to " "float." msgstr "浮點數。" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:377 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:378 msgid "add parking space in '" msgstr "新增停車空間於 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:422 msgid "add induction loop '" msgstr "新增偵測器 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:461 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:519 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:528 -msgid "Could not build lane area detector with ID '" -msgstr "無法建立車道區域(lane area)偵測器, 其識別名(ID)為 '" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:461 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:528 -msgid "' in netedit; invalid traffic light ID." -msgstr "' 在 netedit; 無效的交通號誌識別名(ID)。" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:462 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:529 +#, c-format +msgid "" +"Could not build lane area detector with ID '%' in netedit; invalid traffic " +"light ID." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:486 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:547 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:487 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:548 msgid "add lane area detector '" msgstr "新增車道區域(lane area)偵測器 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:519 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1543 -msgid "' in netedit; Lanes aren't consecutives." -msgstr "' 在 netedit; 車道不連續。" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:520 +#, c-format +msgid "" +"Could not build lane area detector with ID '%' in netedit; Lanes aren't " +"consecutives." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:592 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:593 msgid "add entry-exit detector '" msgstr "新增出入口偵測器 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:627 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:628 msgid "add entry detector in '" msgstr "新增入口偵測器 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:662 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:663 msgid "add exit detector in '" msgstr "新增出口偵測器 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:699 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:700 msgid "add instant induction loop '" msgstr "新增即時偵測器 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:749 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:750 msgid "add lane calibrator '" msgstr "新增車道校估器 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:803 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:804 msgid "add calibrator '" msgstr "新增校估器 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:844 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:845 msgid "add calibrator flow in '" msgstr "新增校估流量於 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:900 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:901 msgid "add rerouter '" msgstr "新增改道裝置 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:939 -msgid "Could not build interval with ID '" -msgstr "無法建立區間,其識別名(ID)為" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:939 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1244 -msgid "' in netedit; begin is greather than end." -msgstr "' 在netedit中; 開始時間大於結束時間。" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:940 +#, c-format +msgid "" +"Could not build interval with ID '%' in netedit; begin is greather than end." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:947 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:948 msgid "add rerouter interval in '" msgstr "新增改道裝置區間於 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "Could not build interval with begin '" -msgstr "無法以'開始'建立區間" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "' in '" -msgstr "' 在 '" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:956 -msgid "' due overlapping." -msgstr "' 由於重疊。" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:957 +#, c-format +msgid "" +"Could not build interval with begin '%' and end '%' in '%' due overlapping." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:978 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:979 msgid "add closing lane reroute in '" msgstr "新增封閉車道的改道路徑裝置於 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1006 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1007 msgid "add closing reroute in '" msgstr "新增封閉車道的改道路徑裝置於 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1033 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1034 msgid "add dest prob reroute in '" msgstr "新增改道路徑裝置的目的地機率(dest prob)於 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1061 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1062 msgid "add parking area reroute in '" msgstr "新增停車場改道路徑裝置於 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1089 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1090 msgid "add route prob reroute in '" msgstr "新增改道路徑裝置的路徑選擇機率(route prob)於 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1126 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1127 msgid "add route probe '" msgstr "新增路徑取樣裝置 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1172 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1173 msgid "add Variable Speed Sign '" msgstr "新增可變速度標誌 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1213 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1214 msgid "add VSS Step in '" msgstr "新增可變速度標誌(VSS)時間步長於 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1244 -msgid "Could not build Vaporizer with ID '" -msgstr "無法建立車輛移除裝置(vaporizer),其識別名(ID)為 '" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1245 +#, c-format +msgid "" +"Could not build Vaporizer with ID '%' in netedit; begin is greather than end." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1250 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1251 msgid "add vaporizer in '" msgstr "新增車輛移除裝置(vaporizer)於 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1305 -msgid "Could not build TAZ with ID '" -msgstr "無法建立交通分區,其識別名(ID)為 '" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1305 -msgid "' in netedit; Invalid Shape." -msgstr "' 在 netedit; 無效的形狀物(shape)。" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1306 +#, c-format +msgid "Could not build TAZ with ID '%' in netedit; Invalid Shape." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1316 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1317 msgid "add TAZ '" msgstr "新增交通分區" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1377 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1471 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1378 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1472 msgid "add TAZ Sink in '" msgstr "新增交通分區迄點於 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1400 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1449 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1401 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1450 msgid "add TAZ Source in '" msgstr "新增交通分區起點於 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1411 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1412 msgid "update TAZ Source in '" msgstr "更新交通分區起點於 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1482 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1483 msgid "update TAZ Sink in '" msgstr "更新交通分區迄點於 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1511 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1512 msgid "add taction substation '" msgstr "新增牽引變電站 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1543 -msgid "Could not build overhead wire with ID '" -msgstr "無法建立架空線,其識別名(ID)為 '" +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1544 +#, c-format +msgid "" +"Could not build overhead wire with ID '%' in netedit; Lanes aren't " +"consecutives." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1555 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1556 msgid "add overhead wire '" msgstr "新增架空線 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1604 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1605 msgid "add polygon '" msgstr "新增多邊形物件 '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1637 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1680 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1719 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1638 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1681 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1720 msgid "add POI '" msgstr "新增興趣點(POI) '" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1711 -msgid "Could not build POI with ID '" -msgstr "無法建立興趣點(POI),其識別名(ID)為 '" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1711 -msgid "' in netedit; Network requires a geo projection." -msgstr "' 在 netedit; 路網需要幾何地圖投影。" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1925 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:116 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -msgid "Could not build " -msgstr "無法建立 " - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -msgid " with ID '" -msgstr " 識別名(ID)為 '" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1907 -msgid "' in netedit; ID contains invalid characters." -msgstr "' 在 netedit; 識別名(ID)含有無效的字元。" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1913 -msgid "' in netedit; Invalid position over lane." -msgstr "' 在 netedit; 車道上的位置無效。" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1919 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:243 -msgid "' in netedit; declared twice." -msgstr "' 在 netedit; 已宣告兩次。" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1925 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -msgid " doesn't exist." -msgstr " 不存在。" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -msgid "' in netedit; attribute " -msgstr "' 在 netedit; 屬性 " - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1931 -msgid " cannot be negative." -msgstr " 不能為負值。" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1937 -msgid "' in netedit; list of VTypes isn't valid." -msgstr "' 在 netedit; 車輛類型(VTypes)清單無效。" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1943 -msgid "' in netedit; filename is invalid." -msgstr "' 在 netedit; 檔案名稱無效。" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:1949 -msgid "' in netedit; list of lanes isn't valid." -msgstr "' 在 netedit; 車道清單無效。" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2004 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEAdditionalHandler.cpp:2022 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -msgid " in netedit; " -msgstr " ' 在 netedit; " +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1712 +#, c-format +msgid "Could not build POI with ID '%' in netedit" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1712 +msgid "Network requires a geo projection." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1908 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1914 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1920 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1932 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1938 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1944 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1950 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:245 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:257 +msgid "Could not build % with ID '%' in netedit" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1908 +msgid "ID contains invalid characters." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1914 +msgid "Invalid position over lane." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1920 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:245 +msgid "Declared twice." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1926 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2005 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2023 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:251 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:116 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:132 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2198 +#, c-format +msgid "Could not build % in netedit" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1926 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2005 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:2023 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:251 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:257 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:2198 +#, c-format +msgid "% doesn't exist." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1932 +#, c-format +msgid "Attribute % cannot be negative." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1938 +msgid "List of VTypes isn't valid." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1944 +msgid "Filename is invalid." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\additional\GNEAdditionalHandler.cpp:1950 +msgid "List of lanes isn't valid." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:194 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:194 msgid "Both edges and lanes aren't defined" msgstr "路段及車道均未定義" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:238 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibrator.cpp:480 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:238 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibrator.cpp:480 msgid "Both myEdge and myLane aren't defined" msgstr "myEdge及myLane均未定義" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibratorFlow.cpp:94 -msgid "calibratorFlow of calibrator '" -msgstr "校估裝置的較估流量(calibratorFlow) '" - -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNECalibratorFlow.cpp:95 +#: D:\Repos\sumo/src\netedit\elements\additional\GNECalibratorFlow.cpp:94 +#, c-format msgid "" -"' cannot be written. Either type or vehsPerHour or speed must be enabled" -msgstr "無法寫入。必須啟用 type, vehsPerHour 或 speed" +"calibratorFlow of calibrator '%' cannot be written. Either type or " +"vehsPerHour or speed must be enabled" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:179 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:125 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:179 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:125 msgid "lanes aren't consecutives" msgstr "車道之間不連續" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:183 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:129 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:183 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:129 msgid "lanes aren't connected" msgstr "車道之間未銜接" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNELaneAreaDetector.cpp:202 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEOverheadWire.cpp:147 -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEStoppingPlace.cpp:141 +#: D:\Repos\sumo/src\netedit\elements\additional\GNELaneAreaDetector.cpp:202 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEOverheadWire.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEStoppingPlace.cpp:141 msgid " and " msgstr " 和 " -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:115 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:115 msgid "' needs at least one entry and one exit" msgstr "' 需要至少一個入口及一個出口" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:317 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:317 msgid "An entry-exit detector needs at least one entry detector" msgstr "一個出入口偵測器(entry-exit detector)需要至少一個入口偵測器" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEMultiEntryExitDetector.cpp:320 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEMultiEntryExitDetector.cpp:320 msgid "An entry-exit detector needs at least one exit detector" msgstr "一個出入口偵測器(entry-exit detector)需要至少一個出口偵測器" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:319 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:319 msgid "Release from lane" msgstr "從車道釋放" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPOI.cpp:323 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPOI.cpp:323 msgid "Attach to nearest lane" msgstr "附加到最近的車道" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:214 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:214 msgid "Simplify Shape" msgstr "簡化形狀物" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:214 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:214 msgid "Replace current shape with a rectangle" msgstr "用長方形替代目前的形狀" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:220 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:220 msgid "Open shape" msgstr "開啟形狀(shape)" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:220 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:220 msgid "Open polygon's shape" msgstr "開啟多邊形的形狀" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:222 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:65 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:222 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:66 msgid "Close shape" msgstr "關閉形狀(shape)" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:222 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:222 msgid "Close polygon's shape" msgstr "關閉多邊形的形狀" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:224 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:224 msgid "Select elements within polygon" msgstr "在多邊形內選擇元素(elements)" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:224 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:224 msgid "Select elements within polygon boundary" msgstr "在多邊形的邊界內選擇元素(elements)" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:234 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:234 msgid "Remove geometry point" msgstr "移除幾何點" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:234 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:234 msgid "Remove geometry point under mouse" msgstr "移除滑鼠下的幾何點" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:235 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:235 msgid "Set first geometry point" msgstr "設定第一個幾何點" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:447 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:447 msgid "Number of remaining points insufficient" msgstr "剩餘的點數不足" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:474 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:474 msgid "Polygon already opened" msgstr "多邊形已開啟" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:495 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:495 msgid "Polygon already closed" msgstr "多邊形已關閉" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:506 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:506 msgid "Selected point must be different of the first point" msgstr "所選擇的點必須不同於第一個點" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNEPoly.cpp:571 +#: D:\Repos\sumo/src\netedit\elements\additional\GNEPoly.cpp:571 msgid "Polygon already simplified" msgstr "多邊形已簡化" -#: /home/micha/programming/sumo/src/netedit/elements/additional/GNETAZ.cpp:282 +#: D:\Repos\sumo/src\netedit\elements\additional\GNETAZ.cpp:282 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:715 msgid "Set custom Geometry Point" msgstr "設定自行定義的幾何點" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:62 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:62 msgid "add data set" msgstr "新增資料集" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:87 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:87 msgid "add data set and data interval" msgstr "新增資料集及資料區間" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:102 msgid "add data interval" msgstr "新增資料區間" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:128 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:165 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:130 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:167 msgid "add edge rel" msgstr "新增路段關係(edge rel)" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:205 -msgid "There is already a TAZ rel defined between '" -msgstr "已經有一個分區關係存在於 '" - -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:207 -msgid "There is already a TAZ rel defined in '" -msgstr "已經有一個分區關係定義於 '" +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:207 +msgid "There is already a TAZ rel defined between '%' and '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:209 +msgid "There is already a TAZ rel defined in '%'." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:211 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:222 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:213 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataHandler.cpp:224 msgid "add TAZ rel" msgstr "新增分區關係(TAZ rel)" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataHandler.cpp:255 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1511 -msgid "' doesn't exist." -msgstr "' 不存在。" - -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataInterval.cpp:173 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataInterval.cpp:173 msgid "GenericData was already inserted" msgstr "通用資料(GenericData)已被添入" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataInterval.cpp:199 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataInterval.cpp:199 msgid "GenericData wasn't previously inserted" msgstr "通用資料(GenericData)先前未被添入" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:214 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:214 msgid "DataInterval was already inserted" msgstr "資料區間(DataInterval)已被添入" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:231 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEDataSet.cpp:255 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:231 +#: D:\Repos\sumo/src\netedit\elements\data\GNEDataSet.cpp:255 msgid "DataInterval wasn't previously inserted" msgstr "資料區間(DataInterval)先前未被添入" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEGenericData.cpp:316 -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdgeType.cpp:155 +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:136 +msgid "Open % Dialog" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\data\GNEGenericData.cpp:316 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdgeType.cpp:155 msgid "Invalid index" msgstr "無效的索引" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:64 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:64 msgid "Could not build meanDataEdge; " msgstr "無法建立平均資料路段(meanDataEdge); " -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:64 -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:93 -msgid " already exists" -msgstr " 已經存在" +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:64 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:93 +#, c-format +msgid "% already exists" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:70 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:70 msgid "add meanDataEdge" msgstr "新增平均資料路段(meanDataEdge)" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:93 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:93 msgid "Could not build meanDataLane; " msgstr "無法建立平均資料車道(meanDataLane); " -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:99 +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:99 msgid "add meanDataLane" msgstr "新增平均資料車道(meanDataLane)" -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:116 -msgid " in netedit; edge doesn't exist." -msgstr " 在netedit; 路段不存在。" - -#: /home/micha/programming/sumo/src/netedit/elements/data/GNEMeanDataHandler.cpp:132 -msgid " in netedit; attribute '" -msgstr " 在netedit; 屬性 '" +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:116 +msgid "Edge doesn't exist." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\data\GNEMeanDataHandler.cpp:132 +#, c-format +msgid "Attribute '%' doesn't exist." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEPersonTrip.cpp:306 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEPersonTrip.cpp:317 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEPersonTrip.cpp:312 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEPersonTrip.cpp:323 msgid "This personTrip use junctions" msgstr "此人旅次(personTrip)使用路口" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:71 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:100 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1499 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1523 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1535 -msgid "There is another " -msgstr "有另一個 " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:71 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:100 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:156 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1499 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1523 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1535 -msgid " with the same ID='" -msgstr " 有相同識別名(ID)='" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:76 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:126 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:161 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:206 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:258 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:299 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:345 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:389 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:436 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:480 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:516 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:547 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:593 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:609 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:625 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:677 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:694 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:709 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:725 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:741 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:778 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:794 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:827 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:858 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:893 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:909 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:949 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:966 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:982 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1107 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1122 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1142 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:71 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:100 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:147 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1608 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1632 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1644 +msgid "There is another % with the same ID='%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:76 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:126 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:152 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:197 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:250 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:291 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:337 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:381 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:428 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:472 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:508 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:539 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:591 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:607 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:623 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:639 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:697 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:714 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:729 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:745 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:761 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:777 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:820 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:836 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:852 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:885 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:916 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:951 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:967 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1007 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1024 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1040 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1174 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1189 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1209 msgid "add " msgstr "新增 " -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:102 -msgid " need at least one " -msgstr " 需要至少一個 " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:108 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:118 -msgid " with id '" -msgstr " 帶有識別名(id) '" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:108 -msgid "' doesn't exist in " -msgstr "' 不存在於 " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:115 -msgid "Invalid definition for " -msgstr "無效的定義 " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:115 -msgid " in " -msgstr " 在 " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:118 -msgid "' cannot be created in " -msgstr "' 無法建立於 " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:192 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:244 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:285 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:333 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:377 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:424 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:468 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:508 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:539 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:819 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:850 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:102 +msgid "% needs at least one %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:108 +msgid "% with id '%' doesn't exist in % '%'" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:115 +msgid "Invalid definition for % in % '%'" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:118 +msgid "% with id '%' cannot be created in % '%'" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:183 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:236 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:277 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:325 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:369 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:416 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:460 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:500 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:531 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:877 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:908 msgid "VType distributions currently unsupported in netedit" msgstr "netedit 目前不支援車輛類型(VType)分配" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:194 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:246 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:335 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:379 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:426 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:470 -msgid "Invalid vehicle type '" -msgstr "無效的車輛類型 '" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:194 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:246 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:290 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:335 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:379 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:426 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:470 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:510 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:541 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:821 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:852 -msgid "' used in " -msgstr "' 使用於 " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:197 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:199 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:251 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:253 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:338 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:340 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:382 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:384 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:429 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:431 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:473 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:475 -msgid " used in " -msgstr " 使用於 " +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:185 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:238 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:279 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:327 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:371 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:418 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:462 +msgid "Invalid vehicle type '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:188 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:243 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:284 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:330 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:374 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:421 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:465 +msgid "Invalid % used in % '%'. % is greater than number of lanes" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:190 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:245 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:286 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:332 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:376 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:423 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:467 +msgid "Invalid % used in % '%'. % is greater than vType %" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:231 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:223 msgid "netedit doesn't support route distributions" msgstr "netedit 不支援路徑分布" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:249 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:290 -msgid "Invalid route '" -msgstr "無效的路徑 '" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:251 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:253 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:338 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:340 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:382 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:384 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:429 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:431 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:473 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:475 -msgid "Invalid " -msgstr "無效 " - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:292 -msgid " is greater than number of lanes" -msgstr " 大於車道數" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:294 -msgid " is greater than vType" -msgstr " 大於車輛類型(vType)" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:510 -msgid "Invalid person type '" -msgstr "無效的人員類型 '" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:541 -msgid "Invalid personFlow type '" -msgstr "無效的人流量類型 '" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1039 -msgid "Containers don't support stops at busStops" -msgstr "貨櫃不支援停靠站設於公車站" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:241 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:282 +msgid "Invalid route '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:502 +msgid "Invalid person type '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:533 +msgid "Invalid personFlow type '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:879 +msgid "Invalid container type '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:910 +msgid "Invalid containerFlow type '%' used in % '%'." +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1102 +msgid "Containers don't support stops at busStops or trainStops" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1047 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1110 msgid "Persons don't support stops at containerStops" msgstr "人員不支援停靠於貨櫃停靠點" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1055 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1118 msgid "Persons don't support stops at chargingStations" msgstr "人員不支援停靠於充電站" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1058 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1121 msgid "Containers don't support stops at chargingStations" msgstr "貨櫃不支援停靠於充電站" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1066 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1129 msgid "Persons don't support stops at parkingAreas" msgstr "人員不支援停靠於停車區域" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1069 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1132 msgid "Containers don't support stops at parkingAreas" msgstr "貨櫃不支援停靠於停車區域" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1079 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1142 msgid "vehicles don't support stops at edges" msgstr "車輛不支援停靠點位於路段上" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1092 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1155 msgid "A stop must be defined either over a stoppingPlace, a edge or a lane" msgstr "" "一個停靠點必須定義在一個停靠位置(stoppingPlace), 一個路段或是一個車道上" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1094 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1157 msgid "A stop requires only a stoppingPlace, edge or lane" msgstr "一個停靠點只需要一個停靠位置(stoppingPlace), 一個路段或是一個車道" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1214 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1282 msgid "A person trip from edge to edge needs two edges edge" msgstr "一個從路段到路段的人旅次需要兩個路段" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1224 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1292 msgid "A person trip from edge to busStop needs one edge and one busStop" msgstr "一個從路段到公車站的人旅次需要一個路段及一個公車停靠站" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1234 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1302 +msgid "A person trip from edge to trainStop needs one edge and one trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1312 msgid "A person trip from junction to junction needs two junctions junction" msgstr "一個從路口到路口的人旅次需要兩個路口" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1245 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1404 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1425 -msgid "A ride from busStop to edge needs a busStop and an edge" -msgstr "一個從公車站到公車站的車程需要兩個公車停靠站" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1323 +msgid "A walk to edge needs a busStop and an edge" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1255 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1414 -msgid "A transport from busStop to busStop needs two busStops" -msgstr "一個從公車站到公車站的運送需要兩個公車停靠站" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1333 +msgid "A walk to busStop needs two busStops" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1343 +msgid "A walk to trainStop needs two trainStops" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1353 +msgid "A walk with edges needs a list of edges" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1265 -msgid "A transport with edges attribute needs a list of edges" -msgstr "一個以路段為主的運送需要一個路段清單" - -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1275 -msgid "A route transport needs a route" -msgstr "一個路徑運送需要一個路徑" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1363 +msgid "A route walk needs a route" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1285 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1373 msgid "A ride from busStop to junction needs a busStop and an junction" msgstr "一個從公車站到路口的車程需要一個公車站及一個路口" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1296 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1384 msgid "A ride from edge to edge needs two edges edge" msgstr "一個從路段到路段的車程需要兩個路段" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1306 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1394 msgid "A ride from edge to busStop needs one edge and one busStop" msgstr "一個從路段到公車站的車程需要一個路段及一個公車停靠站" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1320 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1459 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1404 +msgid "A ride from edge to trainStop needs one edge and one trainStop" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1418 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1568 msgid "A stop has to be placed over an edge" msgstr "一個停靠點必須設置於路段上" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1331 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1470 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1429 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1579 msgid "A stop has to be placed over a busStop" msgstr "一個停靠點必須設置於公車停靠站" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1435 -msgid "A tranship from busStop to busStop needs two busStops" -msgstr "一個從公車站到公車站的轉運需要兩個公車站" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1440 +msgid "A stop has to be placed over a trainStop" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1445 -msgid "A tranship with edges attribute needs a list of edges" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1513 +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1534 +msgid "A ride from busStop to edge needs a busStop and an edge" +msgstr "一個從公車站到公車站的車程需要兩個公車停靠站" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1523 +msgid "A transport from busStop to busStop needs two busStops" +msgstr "一個從公車站到公車站的運送需要兩個公車停靠站" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1544 +msgid "A tranship from busStop to busStop needs two busStops" +msgstr "一個從公車站到公車站的轉運需要兩個公車站" + +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1554 +msgid "A tranship with edges attribute needs a list of edges" msgstr "一個以路段屬性為主的轉運需要一個路段清單" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNERouteHandler.cpp:1511 -msgid "Via edge '" -msgstr "經過路段 '" +#: D:\Repos\sumo/src\netedit\elements\demand\GNERouteHandler.cpp:1620 +#, c-format +msgid "Via edge '%' doesn't exist." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEStop.cpp:443 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEStop.cpp:446 msgid "Invalid Stop parent" msgstr "無效的停靠點親代(Stop parent)" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEStop.cpp:458 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEStop.cpp:461 msgid "Invalid parent" msgstr "無效的親代(parent)" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEVehicle.cpp:645 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEVehicle.cpp:645 msgid "Invalid vehicle tag" msgstr "無效的車輛標記(tag)" -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEWalk.cpp:331 -#: /home/micha/programming/sumo/src/netedit/elements/demand/GNEWalk.cpp:346 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEWalk.cpp:336 +#: D:\Repos\sumo/src\netedit\elements\demand\GNEWalk.cpp:351 msgid "This walk use junctions" msgstr "此步行使用路口" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEConnection.cpp:679 +#: D:\Repos\sumo/src\netedit\elements\network\GNEConnection.cpp:679 msgid "Could not set attribute '%' (tls is broken)" msgstr "無法設定屬性 '%' (交通號誌(tls)損壞)" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdge.cpp:2180 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdge.cpp:2180 msgid "Could not compute smooth shape for edge '%'" msgstr "無法計算路段 '%' 的平滑形狀" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEEdge.cpp:2198 +#: D:\Repos\sumo/src\netedit\elements\network\GNEEdge.cpp:2198 msgid "Could not compute smooth elevation for edge '%'" msgstr "無法計算路段 '%' 的平滑高程" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEInternalLane.cpp:241 +#: D:\Repos\sumo/src\netedit\elements\network\GNEInternalLane.cpp:241 msgid "invalid link state='%'" msgstr "無效的連結狀態(link state) ='%'" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNEJunction.cpp:335 +#: D:\Repos\sumo/src\netedit\elements\network\GNEJunction.cpp:335 msgid "Reset junction shapes" msgstr "重新設定路口形狀" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:470 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:471 msgid "Unexpected LinkState '%'" msgstr "無預期的連結狀態(LinkState) '%'" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:810 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:672 +msgid "Copy parent edge name to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:681 +msgid "Remove Lane From Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:683 +msgid "Add Lane To Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:687 +msgid "Remove Edge From Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:689 +msgid "Add Edge To Selected" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:706 +msgid "Reset edge end points" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:733 +msgid "Select state for all links from this edge:" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:743 +msgid "Additional options available in 'Inspect Mode'" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:758 +msgid "Shape pos: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:759 +msgid "Length pos: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:761 +msgid "Distance: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:763 +msgid "Height: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:764 +msgid "Angle: " +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:811 msgid "Lane Parametric Length cannot be never 0" msgstr "車道參數長度永遠不能為 0" -#: /home/micha/programming/sumo/src/netedit/elements/network/GNELane.cpp:972 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:973 msgid "Opposite lane '%' does not connect the same nodes as edge '%'!" msgstr "對向車道 '%' 不與路段 '%' 相同的節點連接!" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:49 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:738 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1846 +#, c-format +msgid "Edge operations (% selected)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1848 +msgid "Edge operations" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1851 +msgid "Split edge here" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1852 +msgid "Split edge in both directions here (no simmetric opposite edge)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1857 +msgid "Split edge in both directions here (no opposite edge)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1864 +msgid "Split edge in both directions here" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1868 +msgid "Set geometry endpoint here (shift-click)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1872 +msgid "Restore both geometry endpoints" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1874 +msgid "Restore geometry endpoints of all selected edges" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1877 +msgid "Restore geometry endpoint (shift-click)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1879 +msgid "Reverse %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1880 +msgid "Add reverse direction for %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1884 +msgid "Add reverse disconnected direction for %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1885 +msgid "Reset lengths for %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1886 +msgid "Straighten %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1887 +msgid "Smooth %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1888 +msgid "Straighten elevation of %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1889 +msgid "Smooth elevation of %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1936 +#, c-format +msgid "Lane operations (% selected)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1938 +msgid "Lane operations" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1940 +msgid "Duplicate lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1941 +msgid "Set custom lane shape" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1942 +msgid "Reset custom shape" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1946 +msgid "Reset opposite lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1958 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1969 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1978 +msgid "Sidewalk" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1959 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1971 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1979 +msgid "Bike lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1960 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1973 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1980 +msgid "Bus lane" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1963 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1975 +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1981 +msgid "Green verge" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1965 +msgid "Green verge (front)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1966 +msgid "Green verge (back)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1983 +msgid "Add restricted %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1984 +msgid "Remove restricted %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:1985 +msgid "Transform to restricted %" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2026 +#, c-format +msgid "Template operations (% selected)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2028 +msgid "Template operations" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2031 +msgid "Use edge as template" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2032 +msgid "Apply template" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2047 +msgid "Select reachable" +msgstr "" + +#: D:\Repos\sumo/src\netedit\elements\network\GNELane.cpp:2052 +msgid "Select reachable (compute junctions)" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:746 msgid "Internal attributes" msgstr "內部屬性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:175 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreator.cpp:177 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:176 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreator.cpp:178 msgid "Invalid input parameter of " msgstr "無效的輸入參數 " -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:60 -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:61 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:63 msgid "name" msgstr "名稱" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:64 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:65 msgid "button" msgstr "按鈕" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:70 msgid "Disabled" msgstr "禁用" -#: /home/micha/programming/sumo/src/netedit/frames/GNEAttributesCreatorRow.cpp:476 +#: D:\Repos\sumo/src\netedit\frames\GNEAttributesCreatorRow.cpp:477 msgid "Unsupported additional ID" msgstr "未支援的附加物識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:55 msgid "Consecutive lane selector" msgstr "連續車道選擇器" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:59 -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:411 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:59 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:411 msgid "No lanes selected" msgstr "無車道被選擇" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:61 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:61 msgid "Finish path creation" msgstr "完成路徑建立" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:64 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:64 msgid "Abort path creation" msgstr "中止路徑建立" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:67 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:67 msgid "Remove last lane" msgstr "移除最後的車道" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:70 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:70 msgid "Show candidate lanes" msgstr "顯示候選車道" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:73 msgid "-BACKSPACE: undo click" msgstr "-退格鍵(BACKSPACE): 點擊取消(undo)" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:73 msgid "-ESC: Abort path creation" msgstr "-跳脫鍵(ESC): 中止路徑建立" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:134 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:134 msgid "Invalid lane" msgstr "無效的車道" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:151 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:151 msgid "Lane path needs at least two lanes" msgstr "車道路徑至少需要兩條車道" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:171 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:393 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:469 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:482 msgid "route creation" msgstr "路徑建立" -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:406 msgid "- Selected lanes: " msgstr "- 以選擇的車道: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEConsecutiveSelector.cpp:407 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:943 +#: D:\Repos\sumo/src\netedit\frames\GNEConsecutiveSelector.cpp:407 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:959 msgid "- Length: " msgstr "- 長度: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:48 msgid "Parent " msgstr "親代 " -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:65 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:65 msgid "Parent element" msgstr "親代元素" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:108 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:108 msgid "select item..." msgstr "選擇項目..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:110 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:110 msgid "-Select an item in the list or" msgstr "-從一個清單或其他內選擇一個項目" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:110 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:110 msgid "click over an element in view" msgstr "點擊視圖中的元素" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:133 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:133 msgid "select sub-item..." msgstr "選擇次項目..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:136 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:136 msgid "-Clicked over multiple" msgstr "-點擊多個" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:137 msgid "elements" msgstr "元素" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:138 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:138 msgid " - Select an item in the" msgstr " - 從...選擇一個項目" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:139 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:139 msgid " list or click over an" msgstr " 列出或點擊" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:140 msgid " element in view" msgstr " 視圖中的元素" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:333 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:337 msgid "Selected item '" msgstr "選擇的項目 '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:333 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:337 msgid "' in DemandElementSelector" msgstr "' 在需求元素選擇器(emandElementSelector)內" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDemandSelector.cpp:346 +#: D:\Repos\sumo/src\netedit\frames\GNEDemandSelector.cpp:350 msgid "Selected invalid item in DemandElementSelector" msgstr "在需求元素選擇器(DemandElementSelector)內選定的無效項目" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:49 msgid "Drawing" msgstr "繪製" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:52 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:53 msgid "Start drawing" msgstr "開始繪製" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:53 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:54 msgid "Stop drawing" msgstr "停止繪製" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:54 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:55 msgid "Abort drawing" msgstr "中止繪製" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:58 -msgid "- 'Start drawing' or ENTER" -msgstr "- '開始繪製' 或 進入" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:59 -msgid " to create shape." -msgstr " 建立形狀。" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:60 -msgid "- 'Stop drawing' or ENTER to" -msgstr "- '停止繪製' 或 進入到" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:61 -msgid " finish shape creation." -msgstr " 完成形狀物建立。" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:62 -msgid "- 'Abort drawing' or ESC to" -msgstr "- '中止繪製' 或 跳離到 (ESC)" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:63 -msgid " abort shape creation." -msgstr " 中止形狀物建立。" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:64 -msgid "- 'Shift + Click' to remove" -msgstr "- 'Shift + Click' 以移除" - -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:65 -msgid " last inserted point." -msgstr " 最後置入的點。" +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:59 +msgid "'Start drawing' or ENTER to create a shape." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:60 +msgid "'Stop drawing' or ENTER to finish shape creation." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/GNEDrawingShape.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:61 +msgid "'Abort drawing' or ESC to abort shape creation." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:62 +msgid "'Shift + Click' to remove the last inserted point." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\GNEDrawingShape.cpp:134 msgid "A new point cannot be added if drawing wasn't started" msgstr "如果未開始繪圖,則無法添加新點" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:34 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:34 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:614 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1402 -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:101 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:339 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:619 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:535 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:85 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:34 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:34 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:614 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1406 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:101 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:323 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:621 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:536 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:85 msgid "Information" msgstr "資訊" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:38 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:38 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:38 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:38 msgid " edge candidate" msgstr " 候選路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:42 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:42 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:42 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:42 msgid " last edge selected" msgstr " 最後選擇的路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:45 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:45 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:45 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:45 msgid " edge selected" msgstr " 選擇的路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEE2DetectorLegendModule.cpp:48 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:51 +#: D:\Repos\sumo/src\netedit\frames\GNEE2DetectorLegendModule.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:51 msgid " edge disconnected" msgstr " 不連接的路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:62 msgid "Hierarchy" msgstr "階層" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:211 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:211 #, c-format msgid "Default Vehicle Type '%' cannot be removed" msgstr "預設車輛類型 '%' 無法移除" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:316 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:84 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:316 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:276 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:84 msgid "Center" msgstr "中心" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:323 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:1252 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:323 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:1089 msgid "Inspect" msgstr "檢視" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:324 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:259 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:96 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:440 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1356 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:324 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:98 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:442 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1384 msgid "Delete" msgstr "刪除" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:397 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:416 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:477 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:397 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:477 msgid " origin" msgstr " 起點" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:398 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:417 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:478 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:398 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:417 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:478 msgid " destination" msgstr " 迄點" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:506 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:632 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:706 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:506 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:632 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:706 msgid " additionals..." msgstr " 附加物(additionals)..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:520 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:583 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:646 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:720 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:520 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:583 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:646 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:720 msgid " demand elements..." msgstr " 需求元素..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:534 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:597 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:660 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:738 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:597 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:660 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:738 msgid " edges..." msgstr " 路段..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:548 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:611 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:674 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:756 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:548 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:611 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:674 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:756 msgid " lanes..." msgstr " 車道..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:569 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:569 msgid " TAZElements..." msgstr " 分區元素(TAZElements)..." -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:815 -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:815 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:911 msgid "Data elements" msgstr "資料元素" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:841 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:841 msgid "Incomings" msgstr "進入的路段/連接線" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:851 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:851 msgid "Outgoing" msgstr "離開的路段/連接線" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:890 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:65 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1325 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:890 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:65 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1322 msgid "Edges" msgstr "路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEElementTree.cpp:890 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\GNEElementTree.cpp:890 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:71 msgid "Lanes" msgstr "車道" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:51 msgid "Flow attributes" msgstr "流量屬性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:170 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:469 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:596 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:470 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:597 msgid "rate" msgstr "比率" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:343 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:344 msgid "change multiple flow attributes" msgstr "更改多個流量屬性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:369 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:370 msgid "enable multiple flow attributes" msgstr "啟用多個流量屬性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:385 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:386 msgid "disable multiple flow attributes" msgstr "禁用多個流量屬性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:540 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFlowEditor.cpp:568 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:541 +#: D:\Repos\sumo/src\netedit\frames\GNEFlowEditor.cpp:569 msgid "different: " msgstr "不同的: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:185 msgid "Parameters of " msgstr "參數的 " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:195 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:195 msgid "Attribute" msgstr "屬性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:196 msgid "Description" msgstr "描述" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:197 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:197 msgid "Definition" msgstr "定義" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 msgid "Opening HelpAttributes dialog for tag '" msgstr "正在開啟標記..的幫助屬性(HelpAttributes)對話窗 '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 msgid "' showing " msgstr "' 展示 " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:237 msgid " attributes" msgstr " 屬性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:247 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:247 msgid "Closing HelpAttributes dialog for tag '" msgstr "正在關閉標記..的幫助屬性(HelpAttributes)對話窗 '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrame.cpp:319 -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:417 -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:494 +#: D:\Repos\sumo/src\netedit\frames\GNEFrame.cpp:319 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:418 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:495 msgid "Scale: Min -> Max" msgstr "比例: 最小 -> 最大" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:159 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:160 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:168 msgid "Inspect vehicle " msgstr "檢視車輛 " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:171 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:172 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:180 msgid "Open dialog for editing color" msgstr "開啟編輯顏色的對話窗" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:176 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:177 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:248 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:249 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:184 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:256 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:257 msgid "Open dialog for editing allowed vClasses" msgstr "開啟編輯允許車輛類別的對話窗" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:472 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:491 -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:607 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:480 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:499 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:615 msgid "change multiple attributes" msgstr "更改多個屬性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:610 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:618 msgid "change " msgstr "更改 " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:610 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:618 msgid " attribute" msgstr " 屬性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid "Value '" msgstr "值 '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid "' for attribute " msgstr "' 對於屬性 " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid " of " msgstr " 的 " -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:664 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:672 msgid " isn't valid" msgstr " 無效" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:681 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:689 msgid "enable attribute '" msgstr "啟用屬性 '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:689 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:697 msgid "disable attribute '" msgstr "禁用屬性 '" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:963 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:971 msgid "Extended attributes" msgstr "延伸屬性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:966 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:974 msgid "Open attributes editor" msgstr "開啟屬性編輯器" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:997 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1005 msgid "Attributes" msgstr "屬性" -#: /home/micha/programming/sumo/src/netedit/frames/GNEFrameAttributeModules.cpp:1001 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1009 msgid "Edit attributes" msgstr "編輯屬性" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:49 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:97 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1155 +#: D:\Repos\sumo/src\netedit\frames\GNEFrameAttributeModules.cpp:1164 +msgid "Parameters" +msgstr "參數" + +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:50 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:93 msgid "Netedit attributes" msgstr "Netedit屬性" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:55 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:195 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:196 msgid "reference left" msgstr "以左邊為主的參考點" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:56 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:201 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:57 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:201 msgid "reference right" msgstr "以右邊為主的參考點" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:57 -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:206 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:206 msgid "reference center" msgstr "以中心為主的參考點" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:70 msgid "Center view" msgstr "中心視圖(view)" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:138 msgid "Current selected reference point isn't valid" msgstr "目前選擇的參考點無效" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:231 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:231 msgid "- Reference point: Mark the initial position of the additional element." msgstr "- 參考點:標記附加元素的初始位置。" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:232 msgid "" " Example: If you want to create a busStop with a length of 30 in the point " "100 of the lane:" -msgstr " 範例: 如果要在100公尺長的車道上建立一個長度為30公尺的公車站(busStop):" +msgstr "" +" 範例: 如果要在100公尺長的車道上建立一個長度為30公尺的公車站(busStop):" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:233 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:233 msgid " - Reference Left will create it with startPos = 70 and endPos = 100." -msgstr " 開始位置為70(startPos=70)及結束位置為100(endPos=100)的以左邊為準的參考點將" +msgstr "" +" 開始位置為70(startPos=70)及結束位置為100(endPos=100)的以左邊為準的參考點將" "會建立。" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:234 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:234 msgid "" " - Reference Right will create it with startPos = 100 and endPos = 130." -msgstr " - 開始位置為100(startPos=100)及結束位置為130(endPos=130)的以右邊為準的參考" +msgstr "" +" - 開始位置為100(startPos=100)及結束位置為130(endPos=130)的以右邊為準的參考" "點將會建立。" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:235 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:235 msgid "" " - Reference Center will create it with startPos = 85 and endPos = 115." -msgstr " - 開始位置為85(startPos=85)及結束位置為115(endPos=115)的以中心為準的參考點" +msgstr "" +" - 開始位置為85(startPos=85)及結束位置為115(endPos=115)的以中心為準的參考點" "將會建立。" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:236 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:236 msgid "" "- Block movement: if is enabled, the created additional element will be " "blocked. i.e. cannot be moved with" msgstr "- 阻止移動:如果啟用,建立的附加元素將被阻止,即不能移動" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:237 msgid " the mouse. This option can be modified inspecting element." msgstr " 滑鼠。這個選項可以修改檢視的元素。" -#: /home/micha/programming/sumo/src/netedit/frames/GNENeteditAttributes.cpp:238 +#: D:\Repos\sumo/src\netedit\frames\GNENeteditAttributes.cpp:238 msgid "- Center view: if is enabled, view will be center over created element." msgstr "- 中心視圖:如果啟用,建立的元素將展示於中間位置。" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:49 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:49 msgid "NetworkElements" msgstr "路網元素(NetworkElements)" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:56 msgid "Use selected" msgstr "使用已選擇的項目" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:63 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:63 msgid "-Click over an edge to select" msgstr "-在一個路段上點擊以進行選擇" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:69 msgid "-Click over an lane to select" msgstr "-在一個車道上點擊以進行選擇" -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:74 -#: /home/micha/programming/sumo/src/netedit/frames/GNENetworkSelector.cpp:183 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\GNENetworkSelector.cpp:183 msgid "Invalid NetworkElementType" msgstr "無效的NetworkElementType" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:52 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:52 msgid "Overlapped elements" msgstr "重疊元素" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:62 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:62 msgid "Overlapped " msgstr "已重疊 " -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:275 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:275 msgid "GEO attributes Help" msgstr "地理坐標屬性 求助" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:278 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:278 msgid " - Click in the same position" msgstr " - 點擊相同位置" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:279 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:279 msgid " for inspect next element" msgstr " 用於檢視下一個元素" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:280 msgid " - Shift + Click in the same" msgstr " - 按移動鍵及點選" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:281 msgid " position for inspect" msgstr " 檢查的位置" -#: /home/micha/programming/sumo/src/netedit/frames/GNEOverlappedInspection.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\GNEOverlappedInspection.cpp:282 msgid " previous element" msgstr " 前一個元素" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:145 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:145 msgid "Route creator" msgstr "路徑產生器" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:152 -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:948 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1156 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:964 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1153 msgid "No edges selected" msgstr "未選擇路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:154 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:154 msgid "Use last route" msgstr "使用最後一個路徑" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:157 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:157 msgid "Finish route creation" msgstr "完成路徑建立" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:160 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:160 msgid "Abort route creation" msgstr "中止路徑建立" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:163 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:163 msgid "Remove last edge" msgstr "移除最後一個路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:166 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:166 msgid "Show candidate edges" msgstr "顯示候選路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:374 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:387 msgid "Double junctions aren't allowed" msgstr "不允許雙重的路口" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:382 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:395 msgid "Only two junctions are allowed" msgstr "僅允許兩個路口" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:421 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:434 msgid "Double edges aren't allowed" msgstr "不允許雙重的路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:431 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:444 msgid "Only consecutives edges are allowed" msgstr "僅允許連續的路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:440 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:453 msgid "Only two edges are allowed" msgstr "僅允許兩個路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:449 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:462 msgid "Invalid edge (SHIFT + click to add an invalid vClass edge)" msgstr "無效路段 (SHIFT + click 增加一個無效的車輛類別路段(vClass edge))" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:456 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:469 msgid "Invalid edge (CONTROL + click to add a disconnected edge)" msgstr "無效路段 (CONTROL + click 增加一個無連結的路段)" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:531 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:547 msgid "first select an edge" msgstr "首先選擇一個路段" -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:941 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:957 msgid "- Selected edges: " msgstr "- 選擇的路段: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:942 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:958 msgid "- Path edges: " msgstr "路徑路段: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathCreator.cpp:944 +#: D:\Repos\sumo/src\netedit\frames\GNEPathCreator.cpp:960 msgid "- Average speed: " msgstr "平均速度: " -#: /home/micha/programming/sumo/src/netedit/frames/GNEPathLegendModule.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\GNEPathLegendModule.cpp:48 msgid " edge conflict (vClass)" msgstr " 路段衝突 (車輛類別)" -#: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:36 +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:36 msgid "Parent selector" msgstr "親代選擇器" -#: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:39 +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:39 msgid "No element selected" msgstr "沒有被選定的元素" -#: /home/micha/programming/sumo/src/netedit/frames/GNESelectorParent.cpp:82 +#: D:\Repos\sumo/src\netedit\frames\GNESelectorParent.cpp:82 msgid "Parent type: " msgstr "親代類型 (parent type): " -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:219 -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:230 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:219 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:230 msgid "Invalid row or column" msgstr "無效列或行" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:254 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:254 msgid "Invalid row" msgstr "無效列" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:264 -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:264 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:274 msgid "Invalid column" msgstr "無效行" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:609 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:609 msgid "Accumulated: " msgstr "累計: " -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:679 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:679 msgid "Add phase" msgstr "新增相位" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:679 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:679 msgid "Add new phase." msgstr "新增相位。" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:684 msgid "Default phase" msgstr "預設相位" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:684 msgid "Add default phase." msgstr "新增預設相位。" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:689 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:689 msgid "Duplicate phase" msgstr "複製相位" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:689 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:689 msgid "Duplicate this phase." msgstr "複製此相位。" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:694 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:694 msgid "Red phase" msgstr "紅燈相位" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:694 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:694 msgid "Add red phase." msgstr "新增紅燈相位。" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:699 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:699 msgid "Yellow phase" msgstr "黃燈相位" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:699 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:699 msgid "Add yellow phase." msgstr "新增黃燈相位。" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:704 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:704 msgid "Green phase" msgstr "綠燈相位" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:704 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:704 msgid "Add green phase." msgstr "新增綠燈相位。" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:709 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:709 msgid "Green priority phase" msgstr "綠燈優先相位" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:709 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:709 msgid "Add green priority phase." msgstr "新增綠燈優先相位。" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:910 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:910 msgid "Cannot be parsed to double" msgstr "無法解析成雙精度浮點數(double)" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:922 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:922 msgid "Tooltips only for TextFields" msgstr "僅適用於文字區域(TextField)的工具提示" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1252 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1252 msgid "Delete phase" msgstr "刪除相位" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1252 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1252 msgid "Delete this phase." msgstr "刪除此相位。" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1261 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1261 msgid "Move phase up" msgstr "相位向上移動" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1261 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1261 msgid "Move this phase up." msgstr "將此相位向上移動。" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1270 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1270 msgid "Move phase down" msgstr "相位向下移動" -#: /home/micha/programming/sumo/src/netedit/frames/GNETLSTable.cpp:1270 +#: D:\Repos\sumo/src\netedit\frames\GNETLSTable.cpp:1270 msgid "Move this phase down." msgstr "將此時相向下移動。" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:89 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:89 msgid "Element" msgstr "元素" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:152 msgid "network elements" msgstr "路網元素" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:155 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:155 msgid "Additional elements" msgstr "附加的元素" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:158 msgid "Shape elements" msgstr "圖形物件元素" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:161 msgid "TAZ elements" msgstr "分區元素" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:164 msgid "Wire elements" msgstr "通訊線元素" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:167 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1833 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:167 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1835 msgid "Vehicles" msgstr "車輛" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:170 msgid "Stops" msgstr "停靠點" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:173 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1916 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:173 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1918 msgid "Persons" msgstr "人員" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:176 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:176 msgid "Person plans" msgstr "人員出行計畫" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:182 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:182 msgid "Container plans" msgstr "貨櫃運送計畫" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:185 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:185 msgid "Person trips" msgstr "人旅次" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:188 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:188 msgid "Walks" msgstr "步行" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:191 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:191 msgid "Rides" msgstr "車程(rides)" -#: /home/micha/programming/sumo/src/netedit/frames/GNETagSelector.cpp:194 +#: D:\Repos\sumo/src\netedit\frames\GNETagSelector.cpp:194 msgid "Person stops" msgstr "人員停靠點" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:64 msgid "Delete geometry points" msgstr "刪除幾何點" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:230 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:238 msgid "Protect Elements" msgstr "保護元素" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:240 +msgid "Protect all" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:240 +msgid "Protect all elements" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:242 +msgid "Unprotect all" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:242 +msgid "Unprotect all elements" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:244 msgid "Protect additional elements" msgstr "保護附加(additional)元素" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:235 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:247 msgid "Protect TAZ elements" msgstr "保護交通分區(TAZ)元素" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:238 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:250 msgid "Protect demand elements" msgstr "保護需求元素" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEDeleteFrame.cpp:241 +#: D:\Repos\sumo/src\netedit\frames\common\GNEDeleteFrame.cpp:253 msgid "Protect data elements" msgstr "保護資料元素" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEElementSet.cpp:48 +#: D:\Repos\sumo/src\netedit\frames\common\GNEElementSet.cpp:48 msgid "Element Set" msgstr "元素集合" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEElementSet.cpp:75 +#: D:\Repos\sumo/src\netedit\frames\common\GNEElementSet.cpp:75 msgid "Invalid supermode" msgstr "無效的超模式" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:100 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:96 msgid "Mark as front element" msgstr "標記為前置元素(front element)" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:181 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:310 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:177 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:306 msgid "Set new parent" msgstr "設定新的親代(parent)" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:372 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:368 msgid "" "- Mark as front element: Mark element as front element (Will be drawn over " "all other elements)\n" msgstr "" "標記前端元素(front element): 標記元素為前端元素 (將會繪製在其他元素之上)\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:373 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:369 msgid "- Block movement: disable movement in move mode\n" msgstr "- 阻止移動: 在移動模式下禁止使用移動\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:374 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:370 msgid "" "- Block shape: Disable moving of shape's vertices and edges. Entire shape " "can be moved'.\n" msgstr "- 鎖住形狀物:禁止移動形狀物的點和邊。整個形狀物可以被移動。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:375 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:371 msgid "" "- Close shape: Add or remove the last vertex with the same position of first " "edge'." msgstr "- 封閉形狀物: 新增或移除與第一個路段位置相同的最後一個端點。" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:406 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:402 msgid "GEO Attributes" msgstr "大地坐標屬性" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:470 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:90 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:466 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:91 msgid "No geo-conversion defined" msgstr "未定義大地坐標轉換方式" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:551 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:547 msgid " SUMO uses the World Geodetic System 84 (WGS84/UTM).\n" msgstr " SUMO 使用世界大地测量系统 84 (WGS84/UTM)。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:552 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:548 msgid "" " For a GEO-referenced network, geo coordinates are represented as pairs of " "Longitude and Latitude\n" msgstr " 對於以大地坐標為參考的路網,大地坐標以經度及緯度表示\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:553 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:549 msgid " in decimal degrees without extra symbols. (N,W..)\n" msgstr " 以十進制度數為單位,無額外的符號。 (北, 西..)\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:554 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:550 msgid " - Longitude: East-west position of a point on the Earth's surface.\n" msgstr " - 經度:地球表面某点的东西方向位置。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:551 msgid " - Latitude: North-south position of a point on the Earth's surface.\n" msgstr " - 緯度:地球表面某点的南北方向位置。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:556 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:552 msgid "" " - CheckBox 'geo' enables or disables saving position in GEO coordinates\n" msgstr " 核取方塊 'geo' 啟用或禁用儲存以大地坐標為單位的位置\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:570 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:566 msgid "Templates" msgstr "範本" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:574 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:570 msgid "Set as Template" msgstr "設為範本" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:578 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:574 msgid "clear Edge Template" msgstr "清除路段範本" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:673 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:669 msgid "Only one edge must be inspected" msgstr "僅有一個路段必須被檢視" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:737 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:733 msgid "No edge Template Set" msgstr "無路段範本" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:749 -msgid "Parameters" -msgstr "參數" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:908 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:745 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:748 msgid "Additional dialog" msgstr "附加物(Additional)對話窗" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:927 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:764 msgid "Open rerouter dialog" msgstr "開啟改道裝置對話窗" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:933 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:770 msgid "Open calibrator dialog" msgstr "開啟校估裝置對話窗" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:939 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:776 msgid "Open calibrator lane dialog" msgstr "開啟校估裝置車道對話窗" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEInspectorFrame.cpp:945 +#: D:\Repos\sumo/src\netedit\frames\common\GNEInspectorFrame.cpp:782 msgid "Open VSS dialog" msgstr "開啟可變性標誌及號誌(VSS)對話窗" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:58 msgid "Apply selection" msgstr "套用 選擇" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:112 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:112 msgid "Unknown set" msgstr "未知集" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:270 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:270 msgid "" "- The 'Match Attribute' controls allow to specify a set of objects which are " "then applied to the current selection\n" msgstr "- '匹配屬性'的控制允許指定一組物件,其可以用於現有的選擇內\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:271 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:460 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:271 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:460 msgid " according to the current 'Modification Mode'.\n" msgstr " 根據目前的'修改模式'。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:272 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:461 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:272 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:461 msgid " 1. Select an object type from the first input box\n" msgstr " 1. 從第一個輸入框內選擇一個物件類型\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:273 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:462 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:273 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:462 msgid " 2. Select an attribute from the second input box\n" msgstr " 2. 從第二個輸入框內選擇一個屬性\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:274 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:463 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:463 msgid "" " 3. Enter a 'match expression' in the third input box and press " "\n" msgstr " 3. 在第三個輸入框內輸入一個'匹配表式' 並按下\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:276 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:465 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:276 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:465 msgid "- The empty expression matches all objects\n" msgstr "- 空白表式會匹配到所有的物件\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:277 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:466 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:277 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:466 msgid "" "- For numerical attributes the match expression must consist of a comparison " "operator ('<', '>', '=') and a number.\n" msgstr "" "對於數值屬性,其匹配表式必須包含一個比較運算子('<', '>', '=')及一個數字。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:278 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:467 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:278 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:467 msgid "" "- An object matches if the comparison between its attribute and the given " "number by the given operator evaluates to 'true'\n" msgstr "如果給定運算子的屬性與給定數字之間的比較結果為真,則物件被匹配\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:280 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:469 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:280 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:469 msgid "" "- For string attributes the match expression must consist of a comparison " "operator ('', '=', '!', '^') and a string.\n" @@ -9651,41 +9989,41 @@ "對於字串屬性,其匹配表式必須包含一個比較運算子('', '=', '!', '^')及一個字" "串。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:281 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:470 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:281 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:470 msgid "" " '' (no operator) matches if string is a substring of that object'ts " "attribute.\n" msgstr " '' (沒有運算子) 如果字串是該物件屬性的子字串,則為匹配。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:282 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:471 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:471 msgid " '=' matches if string is an exact match.\n" msgstr " '=' 如果字串是完全匹配,則為匹配。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:283 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:472 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:283 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:472 msgid " '!' matches if string is not a substring.\n" msgstr " '!' 如果字串不是子字串,則為匹配。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:284 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:473 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:284 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:473 msgid " '^' matches if string is not an exact match.\n" msgstr " '^' 如果字串不是完全匹配,則為匹配。\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:286 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:475 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:286 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:475 msgid "- Examples:\n" msgstr "- 範例:\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:287 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:476 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:287 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:476 msgid "" " junction; id; 'foo' -> match all junctions that have 'foo' in their id\n" msgstr " 路口; 識別名(id); 'foo' -> 匹配所有識別名(id)中有 'foo' 的路口\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:288 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:477 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:288 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:477 msgid "" " junction; type; '=priority' -> match all junctions of type 'priority', " "but not of type 'priority_stop'\n" @@ -9693,16 +10031,16 @@ " 路口; 類型; '=優先' -> 匹配所有類型為優先'priority'的路口, 但不匹配'優先" "停等'(priority_stop)類型的路口\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchAttribute.cpp:289 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:478 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchAttribute.cpp:289 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:478 msgid " edge; speed; '>10' -> match all edges with a speed above 10\n" msgstr " 路段; 速度; '>10' -> 匹配所有速度大於 10 的路段\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:87 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:87 msgid "speed" msgstr "速度" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMatchGenericDataAttribute.cpp:459 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMatchGenericDataAttribute.cpp:459 msgid "" "- The 'MatchGenericData Attribute' controls allow to specify a set of " "objects which are then applied to the current selection\n" @@ -9710,1471 +10048,1383 @@ "匹配通用資料屬性(MatchGenericData Attribute)控制允許指定一組物件,並然後將其" "應用於目前的選擇\n" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:64 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:65 msgid "Common move options" msgstr "一般移動選項" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:66 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:67 msgid "Allow change lanes" msgstr "允許改變車道" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:70 msgid "Merge geometry points" msgstr "合併幾何點" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:93 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:94 msgid "Network move options" msgstr "路網移動選項" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:96 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:97 msgid "Move whole polygons" msgstr "移動整個多邊形" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:132 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:133 msgid "Demand move options" msgstr "需求移動選項" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:135 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:136 msgid "Leave stopPersons connected" msgstr "保持停等人員(stopPersons)連接狀態" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:172 msgid "Shift selected edges geometry" msgstr "移動已選擇路段的幾何形狀" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:180 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:181 msgid "Apply shift value" msgstr "使用偏移值(shift value)" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:180 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:181 msgid "" "Shift edge geometry orthogonally to driving direction for all selected edges" msgstr "移動所有選定路段的路段幾何到與行駛方向正交的方向" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:251 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:252 msgid "Change Z in selection" msgstr "在選擇中更改Z值" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:261 msgid "Absolute value" msgstr "絕對值" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:260 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:261 msgid "Set Z value as absolute" msgstr "設定Z值為絕對值" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:262 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:263 msgid "Relative value" msgstr "相對值" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:262 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:263 msgid "Set Z value as relative" msgstr "設定Z值為相對值" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:265 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:266 msgid "Apply Z value" msgstr "使用Z值" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:265 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:266 msgid "Apply Z value to all selected junctions" msgstr "將Z值應用於所有選定的路口" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:518 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:518 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:534 msgid "Shift shape geometry" msgstr "移動形狀物件(shape)幾何" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:534 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:534 msgid "" "Shift shape geometry orthogonally to driving direction for all selected " "shapes" msgstr "移動所有選定形狀物件(shape)的形狀物件幾何到與行駛方向正交的方向" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:619 -msgid "-Click over edge to" -msgstr "-點擊(Click)於路段上" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:620 -msgid " create or edit" -msgstr " 建立或編輯" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:621 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:624 -msgid " geometry point." -msgstr " 幾何點。" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:622 -msgid "-Shift+click over edge" -msgstr "-Shift+click 於路段上" - -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:623 -msgid " to edit start or end" -msgstr " 編輯開始或結束" +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:616 +msgid "Click over edge to create or edit geometry point." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:628 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:616 +msgid "Shift+click over edge to edit start or end geometry point." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:618 msgid "-Move geometry point" msgstr "-移動幾何點" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNEMoveFrame.cpp:631 +#: D:\Repos\sumo/src\netedit\frames\common\GNEMoveFrame.cpp:621 msgid "-Merge geometry point" msgstr "-合併幾何點" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:78 msgid "Selection information" msgstr "選擇資訊" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:149 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:150 msgid "Modification Mode" msgstr "修改模式" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:153 msgid "add" msgstr "新增" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:153 msgid "Selected objects are added to the previous selection" msgstr "已選定物件加入到先前的選擇內" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:154 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:155 msgid "remove" msgstr "移除" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:154 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:155 msgid "Selected objects are removed from the previous selection" msgstr "從先前的選擇內刪除已選擇物件" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:156 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:662 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:157 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:661 msgid "keep" msgstr "保留" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:156 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:157 msgid "Restrict previous selection by the current selection" msgstr "通過目前的選擇限制先前的選擇" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:159 msgid "replace" msgstr "替換" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:159 msgid "Replace previous selection by the current selection" msgstr "通過目前的選擇替代先前的選擇" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:213 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:214 msgid "Visual Scaling" msgstr "視覺定標(scaling)" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:243 msgid "Selection operations" msgstr "選擇操作" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:251 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:252 msgid "Deselect all objects (hotkey: ESC)" msgstr "取消選擇所有物件 (熱鍵: ESC)" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:253 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:254 msgid "Invert" msgstr "倒轉" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:253 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:254 msgid "Invert selection status of all objects" msgstr "倒轉所有物件的選擇狀態" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:255 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:256 msgid "Save ids of currently selected objects to a file." msgstr "將當前選定的物件的識別名(ids)儲存於檔案。" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:257 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:258 msgid "Load ids from a file according to the current modification mode." msgstr "根據目前修改模式由檔案載入識別名(ids)。" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:259 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:260 msgid "Delete all selected objects (hotkey: DEL)" msgstr "刪除所有選定物件 (熱鍵: DEL)" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:261 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:262 msgid "Reduce" msgstr "縮減" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:261 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:262 msgid "Reduce network to current selection." msgstr "將路網縮減為目前的選擇。" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:274 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:275 msgid "Could not open '%'." msgstr "無法開啟 '%'。" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:320 -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:125 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:324 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:125 msgid "Open List of Selected Items" msgstr "開啟已選擇項目清單" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:338 -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:148 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:342 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:148 msgid "Save List of selected Items" msgstr "儲存選定項目的清單" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1120 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1124 msgid "Hierarchy operations" msgstr "階層操作" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1131 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1141 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1135 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1145 msgid "Select" msgstr "選擇" -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1133 -#: /home/micha/programming/sumo/src/netedit/frames/common/GNESelectorFrame.cpp:1143 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1137 +#: D:\Repos\sumo/src\netedit\frames\common\GNESelectorFrame.cpp:1147 msgid "Unselect" msgstr "取消選擇" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEEdgeDataFrame.cpp:51 +#: D:\Repos\sumo/src\netedit\frames\data\GNEEdgeDataFrame.cpp:51 msgid "There is already a % in edge '%'" msgstr "已經有一個 % 在路段 '%'上" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:69 msgid "DataSet" msgstr "資料集" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:72 msgid "Create new dataSet" msgstr "建立新資料集" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:83 msgid "Create dataSet" msgstr "建立資料集" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:140 msgid "Invalid dataSet ID" msgstr "無效的資料集識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:142 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:142 msgid "Invalid empty dataSet ID" msgstr "無效的空資料集識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:144 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:144 msgid "Invalid duplicated dataSet ID" msgstr "無效的重複資料集識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:198 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:198 msgid "Interval" msgstr "間隔" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:201 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:201 msgid "Create new interval" msgstr "建立新的間隔" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:219 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:219 msgid "create interval" msgstr "建立間隔" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEGenericDataFrame.cpp:392 +#: D:\Repos\sumo/src\netedit\frames\data\GNEGenericDataFrame.cpp:393 msgid "Data attributes" msgstr "資料屬性" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:68 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:68 msgid "MeanData Type" msgstr "平均資料(MeanData)類型" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:161 msgid "MeanData Editor" msgstr "平均資料(MeanData)編輯器" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:164 msgid "Create MeanData" msgstr "建立平均資料(MeanData)" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:167 msgid "Delete MeanData" msgstr "刪除平均資料(MeanData)" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:170 msgid "Copy MeanData" msgstr "複製平均資料(MeanData)" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNEMeanDataFrame.cpp:276 +#: D:\Repos\sumo/src\netedit\frames\data\GNEMeanDataFrame.cpp:276 msgid "Current MeanData" msgstr "目前的平均資料(MeanData)" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:54 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:54 msgid "Confirm TAZRelation" msgstr "確認分區關係(TAZRelation)" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:56 msgid "Create TAZRelation" msgstr "建立分區關係(TAZRelation)" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:56 msgid "Click fromTaz and toTaz (confirm hotkey )" msgstr "點擊 從分區(fromTaz)及到分區(toTaz) (確認的熱鍵 )" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:58 msgid "Clear selection" msgstr "清除選擇" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:58 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:58 msgid "Clear selected TAZs (hotkey )" msgstr "清除選擇的分區(TAZs) (熱鍵 )" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:122 msgid "From TAZ" msgstr "從分區(TAZ)" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:128 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:128 msgid "To TAZ" msgstr "到分區(TAZ)" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:177 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:177 #, c-format msgid "A % must be defined within an interval." msgstr "% 必須定義於一個間隔(interval)內。" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:179 msgid "There is already a % defined in TAZ'%'." msgstr "已經有一個 % 定義於分區 '%'內。" -#: /home/micha/programming/sumo/src/netedit/frames/data/GNETAZRelDataFrame.cpp:181 +#: D:\Repos\sumo/src\netedit\frames\data\GNETAZRelDataFrame.cpp:181 msgid "There is already a % defined between TAZ'%' and '%'." msgstr "已經有一個 % 定義於分區 '%' 及 '%' 之間。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:117 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerPlanFrame.cpp:114 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerPlanFrame.cpp:114 msgid "Current selected container isn't valid." msgstr "目前選定的貨櫃是無效的。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:122 msgid "Current selected container type isn't valid." msgstr "目前選定的貨櫃類型是無效的。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:127 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerPlanFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:127 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerPlanFrame.cpp:119 msgid "Current selected container plan isn't valid." msgstr "目前選定的貨櫃運送計畫是無效的。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:242 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:285 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:275 msgid "VType with vClass == 'pedestrian' is oriented to pedestrians" msgstr "具有車輛類別(vClass)為'行人'的車輛類型(VType)是以行人為導向" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:244 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:244 msgid "VType with vClass != 'ignoring' is not oriented to containers" msgstr "" "具有車輛類別(vClass)為'忽略'(ignoring)的車輛類型(VType)不是以貨櫃(containers)" "為導向" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEContainerFrame.cpp:267 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEContainerFrame.cpp:267 msgid "Invalid container parameters." msgstr "無效的貨櫃參數。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:117 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonPlanFrame.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonPlanFrame.cpp:140 msgid "Current selected person isn't valid." msgstr "目前選擇的人員是無效的。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:122 msgid "Current selected person type isn't valid." msgstr "目前選擇的人員類型是無效的。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:127 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonPlanFrame.cpp:146 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:127 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonPlanFrame.cpp:146 msgid "Current selected person plan isn't valid." msgstr "目前選擇的人員出型計畫是無效的。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:250 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:287 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:250 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:277 msgid "VType with vClass == 'ignoring' is oriented to containers" msgstr "" "具有車輛類別(vClass)為'忽略'(ignoring)的車輛類型(VType)是以貨櫃(containers)為" "導向" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:252 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:252 msgid "VType with vClass != 'pedestrian' is not oriented to persons" msgstr "具有車輛類別(vClass)為'行人'的車輛類型(VType)不是以人員(persons)為導向" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEPersonFrame.cpp:275 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEPersonFrame.cpp:275 msgid "Invalid person parameters." msgstr "無效的人員參數。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNERouteFrame.cpp:52 +#: D:\Repos\sumo/src\netedit\frames\demand\GNERouteFrame.cpp:52 msgid "Route mode" msgstr "路徑模式" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:78 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:85 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:92 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:99 -msgid "- Shift+Click to select parent\n" -msgstr "- Shift+點擊 選擇親代類別(parent)\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:72 -msgid "- Click over a bus stop to\n" -msgstr "- 點擊於一個公車停靠站上\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:73 -msgid " create a stop." -msgstr " 建立一個停靠點。" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:79 -msgid "- Click over a container stop\n" -msgstr "- 點擊於一個貨櫃停靠站上\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:80 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:87 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:94 -msgid " to create a stop." -msgstr " 建立一個停靠站。" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:86 -msgid "- Click over a charging station\n" -msgstr "- 點擊於一個充電站上\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:93 -msgid "- Click over a parking area\n" -msgstr "- 點擊於一個停車區域上\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:100 -msgid "- Click over a lane to create\n" -msgstr "- 點擊於一個車道以建立\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:101 -msgid " a stop." -msgstr " 一個停靠點。" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:105 -msgid "- No stop parents in current\n" -msgstr "目前沒有停靠點親代(stop parents)\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:106 -msgid " network." -msgstr " 路網。" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:83 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:89 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:101 +msgid "Shift+Click to select parent" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:72 +msgid "Click over a bus stop to create a stop." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:78 +msgid "Click over a train stop to create a stop." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:84 +msgid "Click over a container stop to create a stop." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:90 +msgid "Click over a charging station to create a stop." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:96 +msgid "Click over a parking area to create a stop." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:102 +msgid "Click over a lane to create a stop." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:106 +msgid "No stop parents in current network." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:189 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:189 msgid "Selected Stop type isn't valid." msgstr "選定的停靠點類型是無效的。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:197 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:197 msgid "Selected % '%' as stop parent." msgstr "已選定的 % '%' 為停靠點的親代(parent)。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:200 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:200 msgid "Selected Stop parent isn't valid." msgstr "選定的停靠點親代是無效的。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:206 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:206 msgid "Current selected Stop parent isn't valid." msgstr "目前選擇的停靠點親代(stop parent)是無效的。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:237 msgid "Current selected Stop type isn't valid." msgstr "目前選擇的停靠類型是無效的。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:336 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:352 msgid "Stop must be placed over a route's edge" msgstr "停靠點必須放置在一個路徑上的路段" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEStopFrame.cpp:349 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEStopFrame.cpp:365 msgid "Stop must be placed over an embedded route's edge" msgstr "停靠點必須放置在一個嵌入路徑上的路段" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:68 -msgid "Current Type" -msgstr "目前類型" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:225 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:63 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:218 msgid "Type Editor" msgstr "類型編輯器" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:228 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:66 +msgid "Create type distribution" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:68 +msgid "Delete type distribution" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeDistributionFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:62 +msgid "Current Type" +msgstr "目前類型" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:221 msgid "Create Type" msgstr "建立類型" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:230 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:275 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:223 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:268 msgid "Delete Type" msgstr "刪除類型" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:225 msgid "Copy Type" msgstr "複製類型" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:263 +#: D:\Repos\sumo/src\netedit\frames\demand\GNETypeFrame.cpp:256 msgid "Reset Type" msgstr "重設類型" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:420 -msgid "VType Distributions" -msgstr "車輛類型(VType)分佈" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNETypeFrame.cpp:423 -msgid "Show VType Distributions" -msgstr "顯示車輛類型(VType)分佈" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:93 -msgid "- Click over a route to\n" -msgstr "- 點擊於一個路徑到...\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:72 -msgid " create a vehicle." -msgstr " 建立一個車輛。" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:76 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:81 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:98 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:103 -msgid "- Select two edges to\n" -msgstr "- 選擇兩個路段到...\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:77 -msgid " create a Trip." -msgstr " 建立一個旅次。" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:82 -msgid " create a vehicle with\n" -msgstr " 建立一個車輛\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:83 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:105 -msgid " embedded route." -msgstr " 嵌入的路徑。" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:87 -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:109 -msgid "- Select two junctions\n" -msgstr "- 選擇兩個路口\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:88 -msgid " to create a Trip." -msgstr " 建立一個旅次。" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:94 -msgid " create a routeFlow." -msgstr " 建立一個路徑流量(routeFlow)。" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:99 -msgid " create a flow." -msgstr " 建立一個流量。" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:104 -msgid " create a flow with\n" -msgstr " 用..建立一個流量\n" - -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:110 -msgid " to create a flow." -msgstr " 建立一個流量。" +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:71 +msgid "Click over a route to create a vehicle." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:75 +msgid "Select two edges to create a trip." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:79 +msgid "Select two edges to create a vehicle with embedded route." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:83 +msgid "Select two junctions to create a trip." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:88 +msgid "Click over a route to create a routeFlow." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:92 +msgid "Select two edges to create a flow." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:96 +msgid "Select two edges to create a flow with embedded route." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:191 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:100 +msgid "Select two junctions to create a flow." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:181 msgid "Current selected vehicle isn't valid." msgstr "目前選擇的車輛無效。" -#: /home/micha/programming/sumo/src/netedit/frames/demand/GNEVehicleFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\demand\GNEVehicleFrame.cpp:186 msgid "Current selected vehicle type isn't valid." msgstr "目前選擇的車輛類型無效。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:87 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:87 msgid "Current selected additional isn't valid." msgstr "目前選擇的附加物(additional)無效。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:156 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:156 msgid "E2 multilane detectors need at least two consecutive lanes" msgstr "E2多車通道偵測器需要至少兩個連續的車道" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:282 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:282 msgid " must be selected before insertion of " msgstr " 必須在添入之前選擇 " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:312 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:312 msgid "Attribute '" msgstr "屬性 '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:312 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:312 msgid "' cannot be greater than attribute '" msgstr "' 不可以大於屬性 '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:329 -msgid "List ofe dges cannot be empty" -msgstr "路段清單不可以空白" +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:329 +msgid "List of edges cannot be empty" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:339 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:339 msgid "List of lanes cannot be empty" msgstr "車道清單不可以空白" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:439 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:232 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:439 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:232 msgid "Currently unsupported. Create rerouter elements using rerouter dialog" msgstr "目前未支援。使用改道裝置對話窗建立改道裝置元素" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:444 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:444 msgid "Currently unsupported. Create VSS steps using VSS dialog" msgstr "目前未支援。使用可變速度標誌(VSS)對話窗建立可變速度標誌" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEAdditionalFrame.cpp:449 +#: D:\Repos\sumo/src\netedit\frames\network\GNEAdditionalFrame.cpp:449 msgid "Currently unsupported. Create calibratorFlows using calibrator dialog" msgstr "目前未支援。使用校估器對話窗建立校估流量(calibratorFlows)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:66 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:67 msgid "Lane" msgstr "車道" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:68 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:78 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:79 msgid "No lane selected" msgstr "未選擇車道" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:80 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:81 msgid "Current Lane: " msgstr "目前車道: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:89 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:395 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:90 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:396 msgid "Modifications" msgstr "修改" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:93 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:94 msgid "Discard connection modifications (Esc)" msgstr "放棄修改連接線(connection) (Esc)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:96 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:97 msgid "Save connection modifications (Enter)" msgstr "儲存修改後的連接線(connection) (Enter)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:100 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:101 msgid "Protect routes" msgstr "保護路徑" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:112 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:113 msgid "Changes reverted" msgstr "還原更改" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:129 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:130 msgid "Error saving connection operations" msgstr "儲存連接線(connection)操作時出現錯誤" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:130 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:131 msgid "Connection edition cannot be saved because route '" msgstr "由於路徑原因無法儲存編修後的連接線(connection)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:130 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:131 msgid "' is broken." msgstr "' 已損壞。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:138 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:139 msgid "Changes accepted" msgstr "接受更改" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:151 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:152 msgid "Operations" msgstr "操作" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:155 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:156 msgid "Select Dead Ends" msgstr "選擇終端(dead ends)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:155 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:156 msgid "" "Selects all lanes that have no outgoing connection (clears previous " "selection)" msgstr "選擇所有沒有向外連接線(outgoing connection)的車道 (清除之前的選擇)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:159 msgid "Select Dead Starts" msgstr "選擇死起點 (dead starts)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:158 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:159 msgid "" "Selects all lanes that have no incoming connection (clears previous " "selection)" msgstr "選擇所有沒有進入連接線(incoming connection)的車道 (清除之前的選擇)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:162 msgid "Select Conflicts" msgstr "選擇衝突" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:162 msgid "" "Selects all lanes with more than one incoming connection from the same edge " "(clears previous selection)" msgstr "" "選擇所有至少有一條進入連接線(incoming connection)的車道 (清除之前的選擇)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:165 msgid "Select Passing" msgstr "選擇通過(passing)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:164 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:165 msgid "" "Selects all lanes with a connection that has has the 'pass' attribute set" msgstr "選擇所有具有一條'通過(pass)'屬性的連接線(connection)的車道" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:168 msgid "Clear Selected" msgstr "清除選擇" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:167 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:168 msgid "Clears all connections of all selected objects" msgstr "清除所有選定物件的所有連接線(connection)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:171 msgid "Reset Selected" msgstr "重設選擇" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:170 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:171 msgid "Recomputes connections at all selected junctions" msgstr "重新計算在所有選定路口的連接線(connection)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:262 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:263 msgid "clear connections from selected lanes, edges and junctions" msgstr "清除所選擇的車道, 路段及路口的連接線(connection)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:289 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:290 msgid "reset connections from selected lanes" msgstr "重設所選車道的連接線(connection)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:308 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:168 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2174 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:309 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:168 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2176 msgid "Selection" msgstr "選擇" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:313 -msgid "-Hold while" -msgstr "-按住 同時" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:314 -msgid " clicking to create" -msgstr " 點擊建立" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:315 -msgid " unyielding connections" -msgstr " 不退讓的連接線(unyielding connections)" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:316 -msgid " (pass=true)." -msgstr " (通過=真)。" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:321 -msgid "-Hold while" -msgstr "-按住 同時" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:322 -msgid " clicking to create " -msgstr " 點擊建立 " - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:323 -msgid " conflicting connections" -msgstr " 衝突的連接線(connection)" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:324 -msgid " (i.e. at zipper nodes" -msgstr " (即在拉鍊節點(zipper nodes)" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:325 -msgid " or with incompatible" -msgstr " 或不相容" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:326 -msgid " permissions" -msgstr " 許可" +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:311 +msgid "" +"Hold while clicking to create unyielding connections (pass=true)." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:312 +msgid "" +"Hold while clicking to create conflicting connections (i.e. at zipper " +"nodes or with incompatible permissions" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:342 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:326 msgid "Possible Target" msgstr "可能的目標" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:347 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:331 msgid "Source lane" msgstr "來源車道" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:351 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:335 msgid "Target lane" msgstr "目標車道" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:355 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:339 msgid "Target (pass)" msgstr "目標 (通過)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:359 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:343 msgid "Conflict" msgstr "衝突" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:371 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:355 msgid "Edit Connections" msgstr "編輯連接線(connection)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:437 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:421 msgid "modify connections" msgstr "修改連接線(connection)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:488 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:472 msgid "Pedestrian connections are generated automatically" msgstr "自動生成行人連接線(connections)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:490 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:474 msgid "Incompatible vehicle class permissions" msgstr "不相容的車輛類別許可" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:492 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:476 msgid "Another lane from the same edge already connects to that lane" msgstr "同一路段上的另一個車道已經連接到此車道" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEConnectorFrame.cpp:500 +#: D:\Repos\sumo/src\netedit\frames\network\GNEConnectorFrame.cpp:484 msgid "Invalid target for connection" msgstr "連接線的目標無效" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:74 msgid "Template selector" msgstr "範本編輯器" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:77 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:79 msgid "Create default edge" msgstr "建立預設路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:80 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:82 msgid "Disallow for pedestrians" msgstr "禁止行人進入" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:82 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:84 msgid "Add sidewalk" msgstr "增加人行道" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:85 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:87 msgid "Use edgeType/template" msgstr "使用 edgeType/template" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:93 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:437 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1245 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1310 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:439 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1247 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1312 msgid "Add" msgstr "新增" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:93 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:95 msgid "Add edge type" msgstr "新增路段類型" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:96 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:98 msgid "Delete edge type" msgstr "刪除路段類型" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:99 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:101 msgid "Create from template" msgstr "從範本建立" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:99 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:101 msgid "Create edgeType from template" msgstr "從範本建立路段類型" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:318 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:367 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:320 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:369 msgid "create new edge type" msgstr "建立新路段類型" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:340 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:342 msgid "delete edge type" msgstr "刪除路段類型" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:405 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:407 msgid "template: " msgstr "範本: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:429 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:431 msgid "LaneType selector" msgstr "車道類型選擇器" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:437 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:439 msgid "Add lane type" msgstr "新增車道類型" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:440 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:442 msgid "Delete lane type" msgstr "刪除車道類型" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:537 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:539 msgid "add laneType" msgstr "新增車道類型" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:574 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:576 msgid "remove laneType" msgstr "刪除車道類型" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:623 -msgid "- ESC:" -msgstr "- 跳脫鍵(ESC):" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:624 -msgid " Deselect origin" -msgstr " 取消選擇起點(origin)" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:625 -msgid "- Control+Click:" -msgstr "- 控制鍵+點擊(Control+Click):" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:626 -msgid " Move view" -msgstr " 移動視野(view)" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:627 -msgid "- Shift+Click:" -msgstr "- 移位鍵+點擊(Shift+Click):" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:628 -msgid " Splits edge in both directions" -msgstr " 分割雙向路段" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:629 -msgid "- Alt+Shift+Click:" -msgstr "- Alt鍵+移位鍵+點擊(Alt+Shift+Click):" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:630 -msgid " Splits edge in one direction" -msgstr " 分割單向路段" +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:625 +msgid "ESC:" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:626 +msgid "Deselect origin" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:627 +msgid "Control+Click:" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:643 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:628 +msgid "Move view" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:629 +msgid "Shift+Click:" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:630 +msgid "Splits edge in both directions" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:631 +msgid "Alt+Shift+Click:" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:632 +msgid "Splits edge in one direction" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:645 msgid "Create Edge" msgstr "建立路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:667 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:669 msgid "Select either default edgeType or a custom edgeType or template" msgstr "選擇預設的路段類型,自訂的路段類型或是範本" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:669 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:671 msgid "Invalid edge attributes" msgstr "無效的路段屬性" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:671 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:673 msgid "Invalid lane attributes" msgstr "無效的車道屬性" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:682 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:747 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:684 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:749 msgid "create new edge" msgstr "建立新路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:752 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:754 msgid "An edge with the same geometry already exists!" msgstr "一個具有相同幾何形狀的路段已存在!" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECreateEdgeFrame.cpp:755 +#: D:\Repos\sumo/src\netedit\frames\network\GNECreateEdgeFrame.cpp:757 msgid "Start- and endpoint for an edge must be distinct!" msgstr "一個路段的起點及終點必須不同!" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:70 msgid "Junction" msgstr "路口" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:97 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:98 msgid "selection of edges" msgstr "路段選擇" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:102 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:505 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:560 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:566 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:654 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:658 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:103 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:506 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:560 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:566 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:653 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:657 msgid "Use selected edges" msgstr "使用已選擇的路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:105 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:106 msgid "Clear edges" msgstr "清除路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:108 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:109 msgid "Invert edges" msgstr "反轉路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:197 msgid "Crossing parameters" msgstr "穿越道參數" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:484 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1580 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1584 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:485 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1608 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1612 msgid "Create" msgstr "建立" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:487 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:488 msgid "Create crossing" msgstr "建立人行穿越道" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:514 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:515 msgid "" "There is already another crossing with the same edges in the junction; " "Duplicated crossing aren't allowed." msgstr "在此路口的相同路段上已經有另外一個人行穿越道; 不允許重複的穿越道。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:540 -msgid "-Click over junction to" -msgstr "-點擊路口" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:541 -msgid " mark candidate edges." -msgstr " 標記候選路段。" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:542 -msgid "-Click over candidate" -msgstr "-點擊候選者" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:543 -msgid " edges for selecting." -msgstr " 用於選擇的路段。" +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:539 +msgid "Click over junction to mark candidate edges." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:539 +msgid "Click over candidate edges for selecting." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:547 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:541 msgid " Candidate" msgstr " 候選者" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:551 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:545 msgid " Selected" msgstr " 已選擇" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:554 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:548 msgid " Invalid" msgstr " 無效" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNECrossingFrame.cpp:567 +#: D:\Repos\sumo/src\netedit\frames\network\GNECrossingFrame.cpp:561 msgid "Crossings" msgstr "人行穿越道" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:55 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:55 msgid "Selected connection" msgstr "已選擇的連接線(connection)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:71 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:71 msgid "No Connection selected\n" msgstr "未選擇連接線(connection)\n" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:74 msgid "- Junction: " msgstr "- 路口: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:75 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:75 msgid "- From lane: " msgstr "- 從車道: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:76 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:76 msgid "- To lane: " msgstr "- 到車道: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:94 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:94 msgid "Selected" msgstr "已選定" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:95 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:95 msgid "Current selected connection" msgstr "目前已選定的連接線(connection)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:101 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:101 msgid "No conflict" msgstr "無衝突" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:102 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:102 msgid "No conflict with the selected connection" msgstr "與所選擇的連接線(connection)無衝突" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:107 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:107 msgid "Yields" msgstr "讓(yields)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:108 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:108 msgid "Connection yields the selected connection" msgstr "連接線會對已選擇的連接線讓步" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:113 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:113 msgid "Has right of way" msgstr "有路權" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:114 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:114 msgid "Connection has right of way with the selected connection" msgstr "連接線與所選的連接線有路權" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:119 msgid "Unregulated conflict" msgstr "未受管制的衝突" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:120 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:120 msgid "Connection has a unregulated conflict with the selected connection" msgstr "連接線與所選連接線有未受管制的衝突" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:125 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:125 msgid "Mutual conflict" msgstr "相互衝突" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:126 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:126 msgid "Connection has a mutual conflict with the selected connection" msgstr "連接線與所選連接線相互衝突" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:175 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:175 msgid "Save prohibition modifications (Enter)" msgstr "儲存修改的禁止事項 (登錄鍵(Enter))" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:179 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:179 msgid "Unselect connection" msgstr "取消選擇連接線" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:181 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:181 msgid "Unselect connection (Esc)" msgstr "取消選擇連接線 (跳脫鍵(Esc))" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEProhibitionFrame.cpp:229 +#: D:\Repos\sumo/src\netedit\frames\network\GNEProhibitionFrame.cpp:229 msgid "Prohibitions" msgstr "禁止事項" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:56 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:57 msgid "GEO POI Creator" msgstr "地理參照的興趣點(GEO POI)的建立器" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:59 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:60 msgid "Format: Lon-Lat" msgstr "格式: 經度-緯度(Lon-Lat)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:60 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:61 msgid "Format: Lat-Lon" msgstr "格式: 緯度-經度(Lat-Lon)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:66 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:67 msgid "Center View after creation" msgstr "建立後將視野移至中心" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:68 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:121 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:178 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:69 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:122 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:179 msgid "Create GEO POI (clipboard)" msgstr "建立地理參照的興趣點(GEO POI) 剪輯板(clipboard)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:71 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:136 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:140 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:72 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:137 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:141 msgid "Cartesian equivalence:" msgstr "笛卡兒坐標等值:" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:72 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:141 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:73 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:142 msgid "- X = give valid longitude" msgstr "- X = 提供有效經度" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:73 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:142 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:74 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:143 msgid "- Y = give valid latitude" msgstr "- Y = 提供有效緯度" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:120 msgid "Create GEO POI" msgstr "建立地理參照的興趣點(GEO POI)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:171 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:172 msgid "Using clipboard" msgstr "使用剪輯板(clipboard)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:330 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:228 +msgid "Shapes" +msgstr "形狀物(shapes)" + +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:331 msgid "POILane can be only placed over lanes" msgstr "興趣點車道(POILane)僅能放置於車道上" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:374 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:375 msgid "Current selected shape isn't valid." msgstr "目前選擇的形狀物無效。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEShapeFrame.cpp:422 +#: D:\Repos\sumo/src\netedit\frames\network\GNEShapeFrame.cpp:423 msgid "Polygon shape cannot be empty" msgstr "多邊形形狀不能是空白" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:152 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:153 msgid "TAZ" msgstr "交通分區" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:160 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:204 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:161 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:205 msgid "No TAZ selected" msgstr "未選擇交通分區" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:173 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:174 msgid "Current TAZ: " msgstr "目前交通分區 " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:336 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:337 msgid "Invalid TAZ Child" msgstr "無效的分區子代(child)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:345 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:346 msgid "TAZ Statistics" msgstr "交通分區統計資料" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:348 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:891 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:349 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:888 msgid "Statistics" msgstr "統計資料" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:375 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1132 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:376 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1129 msgid "- Number of edges: " msgstr "- 路段數量: " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:376 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1137 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:377 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1134 msgid "- Min source: " msgstr "- 最小起點(source): " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:377 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1138 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:378 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1135 msgid "- Max source: " msgstr "- 最大起點(source): " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:378 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1139 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:379 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1136 msgid "- Average source: " msgstr "- 平均起點(source): " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:380 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1141 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:381 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1138 msgid "- Min sink: " msgstr "- 最小迄點(sink): " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:381 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1142 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:382 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1139 msgid "- Max sink: " msgstr "- 最大迄點(sink): " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:382 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1143 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:383 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1140 msgid "- Average sink: " msgstr "- 平均迄點(sink): " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:386 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:387 msgid "No TAZ Selected" msgstr "未選擇交通分區" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:398 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:399 msgid "Confirm changes" msgstr "確認更改" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:401 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:402 msgid "Cancel changes" msgstr "取消更改" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:431 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:432 msgid "TAZ changes" msgstr "交通分區更改" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:484 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:485 msgid "TAZ Sources/Sinks" msgstr "交通分區起點/迄點" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:490 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:491 msgid "Membership" msgstr "隸屬(membership)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:491 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:492 msgid "Toggle" msgstr "切換" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:496 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:497 msgid "New source" msgstr "新起點" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:501 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:502 msgid "New sink" msgstr "新迄點" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:507 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:508 msgid "Set zero fringe prob." msgstr "設定由邊界進出的機率為零。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:511 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:646 -msgid "- Toggle Membership:" -msgstr "- 切換隸屬(membership):" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:512 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:647 -msgid " Create new Sources/Sinks" -msgstr " 建立新的起點/迄點" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:513 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:648 -msgid " with given weights." -msgstr " 給定權重。" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:512 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:646 +msgid "Toggle Membership:" +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:513 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:647 +msgid "Create new Sources/Sinks with given weights." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:563 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:656 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:655 msgid "Remove all edges" msgstr "移除所有路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:582 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:582 msgid "Remove all edges from selection" msgstr "從選區中移除所有路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:584 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:584 msgid "Add all edges to selection" msgstr "將所有路段加入選區" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:588 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:588 msgid "Remove edge from selection" msgstr "從選區中移除路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:590 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:590 msgid "Add edge to selection" msgstr "將路段新增到選區內" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:601 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:601 msgid "Remove " msgstr "移除 " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:601 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:601 msgid " edges from to selection" msgstr " 路段屬性為'edge from'或'edge to'的選區" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:603 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:603 msgid "Add " msgstr "新增 " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:603 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:603 msgid " edges to selection" msgstr " 路段屬性為'edge to'的選區" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:639 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:639 msgid "toggle" msgstr "切換" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:669 -msgid "- Keep Membership:" -msgstr "- 維持隸屬(membership:" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:668 +msgid "Keep Membership:" +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:670 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:668 msgid " Select Sources/Sinks." msgstr " 選擇起點/迄點。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:671 -msgid "- Press ESC to clear" -msgstr "- 按逸出鍵(ESC)清除" - -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:672 -msgid " current selection." -msgstr " 目前的選擇。" +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:669 +msgid "Press ESC to clear the current selection." +msgstr "" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:849 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:846 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:849 msgid "Set weight 0 in " msgstr "在..設定權重為 0 " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:849 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:846 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:849 msgid " sources and " msgstr " 起點和 " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:850 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:847 msgid " sinks from TAZ '" msgstr " 交通分區 '的迄點" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:853 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:850 msgid " sinks from " msgstr " 從..的迄點 " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:853 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:850 msgid " TAZs?" msgstr " 交通分區?" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:855 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:868 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:852 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:865 msgid "Set zero fringe probabilities" msgstr "設定由邊界(fringe)起迄的機率為零" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:857 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:854 msgid "set zero fringe probabilities" msgstr "設定由邊界(fringe)起迄的機率為零" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:868 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:865 msgid "No source/sinks to update." msgstr "沒有需要更新的起/迄點。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:878 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:875 msgid "Selection Statistics" msgstr "選擇的統計資料" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:882 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:879 msgid "Source" msgstr "起點" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:887 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:884 msgid "Sink" msgstr "迄點" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:919 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:916 msgid "TAZEdgeColor already selected" msgstr "交通分區路段(TAZEdgeColor)顏色已經選定" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:951 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:948 msgid "edge wasn't found" msgstr "未找到路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:953 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:950 msgid "Invalid edge" msgstr "無效路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1130 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1127 msgid "- Edge ID: " msgstr "- 路段識別名(ID): " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1165 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1162 msgid "TAZ parameters" msgstr "交通分區參數" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1190 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1187 msgid "Edges within" msgstr "在..內的路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1191 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1298 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1188 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1295 msgid "use" msgstr "使用" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1300 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1297 msgid "not use" msgstr "未使用" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1330 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1327 msgid "Non TAZ Edge" msgstr "非交通分區路段(TAZ Edge)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1334 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1331 msgid "Selected TAZ Edge" msgstr "已選擇的交通分區路段(TAZ Edge)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1339 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1336 msgid "Color by Source" msgstr "顏色按起點分類" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1341 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1338 msgid "Color by Sink" msgstr "顏色按迄點分類" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1343 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1340 msgid "Color by Source + Sink" msgstr "顏色按所有起迄點(Source + Sink)分類" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1345 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1342 msgid "Color by Source - Sink" msgstr "顏色按不屬於迄點的起點(Source - Sink)分類" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1448 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1445 msgid "TAZs" msgstr "交通分區" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETAZFrame.cpp:1614 +#: D:\Repos\sumo/src\netedit\frames\network\GNETAZFrame.cpp:1611 msgid "TAZ shape needs at least three points" msgstr "交通分區形狀需要至少三個點" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:119 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:121 msgid "Edit Traffic Light" msgstr "編輯交通號誌" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:183 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:185 msgid "Click over a junction to edit a TLS" msgstr "在路口上點擊以編輯交通號誌" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:195 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:197 msgid "Save TLS Changes" msgstr "儲存更改的交通號誌" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:196 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:198 msgid "" "There is unsaved changes in current edited traffic light.\n" "Do you want to save it before changing mode?" @@ -11182,243 +11432,251 @@ "在目前編輯的交通號誌中有未儲存的更改。\n" "是否要在更改模式之前儲存它?" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:242 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:244 msgid "tlLogic '%', program '%' could not be built" msgstr "無法建立號誌邏輯(tlLogic) '%' 及時相計畫(program) '%'" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:255 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2935 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:257 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2963 msgid "Loaded " msgstr "已載入 " -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:255 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:257 msgid " programs" msgstr " 時制計畫" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:416 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:418 msgid "Invalid phase index" msgstr "無效的號誌相位索引" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:512 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:514 msgid "modifying TLS definition" msgstr "修改交通號誌(TLS)定義" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:526 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:528 msgid "Unsaved modifications. Abort or Save" msgstr "未保存的修改。 中止或保存" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:546 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:548 msgid "Traffic light Attributes" msgstr "交通號誌屬性" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:555 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:557 msgid "parameters" msgstr "參數" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 msgid "Assign E1 detectors" msgstr "指派E1偵測器" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 msgid "Enable assign E1 mode" msgstr "啟用指派E1模式" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:562 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:564 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 msgid "Assign E1 detectors to the current TLS" msgstr "指派E1偵測器到目前的交通號誌" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:563 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:565 msgid "Disable assign E1 mode" msgstr "禁用指派E1模式" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:879 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:881 msgid "Traffic Light" msgstr "交通號誌" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:884 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:945 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:886 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:955 msgid "Junction ID" msgstr "路口識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:891 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:893 msgid "TLS ID" msgstr "交通號誌識別名(ID)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 msgid "Join" msgstr "合併" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 msgid "Enable join mode" msgstr "啟用合併模式" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:910 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:912 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 msgid "Join TLS and junctions in the current junction." msgstr "在現有路口進行合併交通號誌及路口。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:913 msgid "Disable join mode" msgstr "禁用合併模式" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 msgid "Disjoin" msgstr "分開" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 msgid "Disjoin current TLS" msgstr "分離(disjoin)現有交通號誌" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:916 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:918 msgid "Disjoin current TLS." msgstr "分離(disjoin)現有交通號誌。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:952 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:923 +msgid "Finish join." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:925 +msgid "Cancel Join." +msgstr "" + +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:962 msgid "no junction selected" msgstr "未選擇路口" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:974 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:984 msgid "Junction IDs" msgstr "路口識別名(IDs)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1061 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1064 msgid "rename TLS" msgstr "重新命名交通號誌" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1140 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1143 msgid "change TLS type" msgstr "更改交通號誌類型" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1216 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1227 msgid "join TLS" msgstr "合併交通號誌" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1278 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1289 msgid "disjoin TLS" msgstr "分離(disjoin)交通號誌" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1340 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1368 msgid "Traffic Light Programs" msgstr "交通號誌計畫" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1353 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1381 msgid "Create TLS" msgstr "建立交通號誌" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1353 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1381 msgid "Create a new traffic light program." msgstr "建立新的交通號誌計畫。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1356 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1384 msgid "" "Delete a traffic light program. If all programs are deleted the junction " "turns into a priority junction." msgstr "" "刪除交通號誌計畫。如果全部的計畫都被刪除,路口將轉為以優先順序方式控制。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1359 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1387 msgid "Reset single" msgstr "重設單一計畫(single)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1359 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1387 msgid "Reset current TLS program." msgstr "重設目前交通號誌計畫。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1362 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1390 msgid "Reset all" msgstr "全部重設" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1362 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1390 msgid "Reset all TLS programs." msgstr "重設所有交通號誌計畫。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1365 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1393 msgid "Save program modifications. (Enter)" msgstr "儲存修改後的號誌計畫。 (輸入鍵(Enter))" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1368 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1396 msgid "Discard program modifications. (Esc)" msgstr "放棄修改的計畫。 (逸出鍵(Esc))" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1463 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1491 msgid "TLSDefinition cannot be found" msgstr "找不到交通號誌定義(TLSDefinition)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1505 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1518 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1537 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1533 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1546 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1565 msgid "TLS cannot be created" msgstr "無法建立交通號誌" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1506 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1534 msgid "Traffic Light cannot be created because junction must have" msgstr "無法建立交通號誌,因為路口必須有" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1507 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1535 msgid "at least one incoming edge and one outgoing edge." msgstr "至少一個進入路段及一個離開路段。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1519 -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1538 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1547 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1566 msgid "Traffic Light cannot be created because junction" msgstr "無法建立交通號誌,因為路口" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1520 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1548 msgid "must have at least one connection." msgstr "必須有至少一個連接線(connection)。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1539 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1567 msgid "must have at least one controlled connection." msgstr "必須有至少一個被控制的連接線(connection)。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1582 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1610 msgid "Duplicate" msgstr "複製" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1622 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1650 msgid "reset current program" msgstr "重設目前計畫" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1661 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1689 msgid "reset TLS" msgstr "重設交通號誌" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1822 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1850 msgid "duplicate program '%' of traffic light '%'" msgstr "重複的時制計畫 '%'; 交通號誌為 '%'" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1868 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1896 msgid "Traffic light does not control any links" msgstr "交通號誌不控制任何路段" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1880 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1908 msgid "Phases" msgstr "相位" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1891 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1919 msgid "Clean States" msgstr "清除狀態" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1892 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1920 msgid "Clean unused states from all phase" msgstr "清除所有相位內未使用的狀態" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1893 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1921 msgid "Clean unused states from all phase. (Not allowed for multiple programs)" msgstr "清除所有相位內未使用的狀態。(不允許使用於多個計畫)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1897 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1925 msgid "Add States" msgstr "新增狀態" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1898 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1926 msgid "Extend the state vector for all phases by one entry" msgstr "用一個輸入延伸所有相位的狀態向量" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1899 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1927 msgid "" "Extend the state vector for all phases by one entry. (Unused until a " "connection or crossing is assigned to the new index)" @@ -11426,18 +11684,18 @@ "通過一個輸入來延伸所有相位的狀態列。 (除非一個連接線或是穿越道被指定一個新的" "索引,否則將不使用)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1903 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1931 msgid "Group Sig." msgstr "進行號誌群組。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1904 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1932 msgid "" "Shorten state definition by letting connections with the same signal states " "use the same index" msgstr "" "通過讓具有相同號誌狀態的連接線(connections)使用相同的索引來縮短狀態定義" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1905 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1933 msgid "" "Shorten state definition by letting connections with the same signal states " "use the same index. (Not allowed for multiple programs)" @@ -11445,1167 +11703,1611 @@ "通過讓具有相同號誌狀態的連接線(connections)使用相同的索引來縮短狀態定義(不允" "許使用於多個時制計畫)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1909 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1937 msgid "Ungroup Sig." msgstr "解除號誌群組。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1910 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1938 msgid "Let every connection use a distinct index (reverse state grouping)" msgstr "讓每個連接線使用不同的索引(反轉狀態分組)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:1911 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:1939 msgid "" "Let every connection use a distinct index (reverse state grouping). (Not " "allowed for multiple programs)" msgstr "讓每個連接線使用不同的索引(反轉狀態分組)。 不允許使用於多個時制計畫" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2039 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2067 msgid "invalid column" msgstr "無效欄" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2598 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2626 msgid "Error deleting phase '" msgstr "錯誤 刪除相位 '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2870 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2898 msgid "TLS Program File" msgstr "交通號誌計畫檔案" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2874 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2902 msgid "Load TLS program from additional file" msgstr "由附加檔案(additional file)載入交通號誌計畫" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2876 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2904 msgid "Save TLS program to additional file" msgstr "將交通號誌計畫儲存於附加的檔案(additional file)" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2935 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2963 msgid " new programs for tlLogic '" msgstr " 號誌邏輯(tlLogic)的新計畫" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2940 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2968 msgid "Updated program '" msgstr "更新的計畫" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2940 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2968 msgid "' for tlLogic '" msgstr "' 為號誌邏輯(tlLogic) '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2944 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2972 msgid "No programs found for traffic light '" msgstr "未發現交通號誌的時制計畫 '" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNETLSEditorFrame.cpp:2963 +#: D:\Repos\sumo/src\netedit\frames\network\GNETLSEditorFrame.cpp:2991 msgid "Save TLS Program as" msgstr "將交通號誌計畫另存為" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:75 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:75 msgid "Current selected wire isn't valid." msgstr "目前選擇的電線(wire)無效。" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:117 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:117 #, c-format msgid "A % needs at least two lane positions" msgstr "一個 % 需要至少兩個車道的位置" -#: /home/micha/programming/sumo/src/netedit/frames/network/GNEWireFrame.cpp:237 +#: D:\Repos\sumo/src\netedit\frames\network\GNEWireFrame.cpp:237 msgid "Currently unsupported. Create VSS steps elements using VSS dialog" msgstr "" "目前尚未支援。使用可變速度標誌(VSS)對話窗建立VSS步驟元素(steps elements)" -#: /home/micha/programming/sumo/src/netedit/netedit_main.cpp:49 +#: D:\Repos\sumo/src\netedit\netedit_main.cpp:49 msgid "" "Graphical editor for SUMO networks, demand and additional infrastructure." msgstr "SUMO的路網,交通需求及附加設施的圖形編輯器。" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:126 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:127 msgid "Original network" msgstr "原始路網" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:129 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:130 msgid "Modified network" msgstr "修改路網" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:132 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:133 msgid "Output prefix network" msgstr "輸出字首(prefix)路網" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:136 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:137 msgid "Select modified elements" msgstr "選擇修改元素" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:139 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:140 msgid "Select added elements" msgstr "選擇增加元素" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:142 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:143 msgid "Select deleted elements" msgstr "選擇刪除元素" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:146 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:147 msgid "Load shapes for elements" msgstr "載入元素的形狀" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:149 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:150 msgid "Load shapes for added" msgstr "載入增加的形狀" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:152 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:153 msgid "Load shapes for deleted elements" msgstr "載入刪除元素的形狀" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:165 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:166 msgid "load shapes from '" msgstr "從 ' 載入形狀" -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:169 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:170 msgid "Loading of shape file failed: " msgstr "載入形狀檔案失敗: " -#: /home/micha/programming/sumo/src/netedit/tools/GNENetDiffTool.cpp:172 +#: D:\Repos\sumo/src\netedit\tools\GNENetDiffTool.cpp:173 msgid "Loading of shape file sucessfully: " msgstr "成功地載入形狀檔案: " -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:42 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:43 msgid "Execute python tool '" msgstr "執行python工具 '" -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:153 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:177 #, c-format msgid "Loaded % configuration." msgstr "已載入 % 設定(configuration)。" -#: /home/micha/programming/sumo/src/netedit/tools/GNEPythonTool.cpp:182 +#: D:\Repos\sumo/src\netedit\tools\GNEPythonTool.cpp:206 #, c-format msgid "Saved % configuration." msgstr "已儲存 % 設定(configuration)。" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:71 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:55 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:76 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:60 msgid "cancelled by user\n" msgstr "由使用者取消\n" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:102 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:86 -msgid "popen() failed!" -msgstr "popen() 失敗!" - -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:114 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:98 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:119 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:103 msgid "starting process...\n" msgstr "開始處理...\n" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:124 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:108 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:137 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:121 msgid "error processing command\n" msgstr "錯誤處理指令\n" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:136 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:120 +#: D:\Repos\sumo/src\netedit\tools\GNERunNetgenerate.cpp:152 +#: D:\Repos\sumo/src\netedit\tools\GNERunPythonTool.cpp:136 msgid "process finished\n" msgstr "處理完成\n" -#: /home/micha/programming/sumo/src/netedit/tools/GNERunNetgenerate.cpp:142 -#: /home/micha/programming/sumo/src/netedit/tools/GNERunPythonTool.cpp:125 -msgid "starting process silently...\n" -msgstr "靜靜地開始處理...\n" - -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:75 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:75 msgid "&Load selection" msgstr "載入選擇" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:77 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:77 msgid "&Save selection" msgstr "儲存選擇" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:81 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:81 msgid "&Deselect chosen" msgstr "取消已選擇的項目" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:83 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:83 msgid "&Clear selection" msgstr "清除選擇" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:87 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:87 msgid "Cl&ose" msgstr "關閉" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIDialog_GLChosenEditor.cpp:137 +#: D:\Repos\sumo/src\utils\gui\div\GUIDialog_GLChosenEditor.cpp:137 msgid "Errors while loading Selection" msgstr "載入已選擇項目時發生錯誤" -#: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:116 +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:116 msgid "Unknown object in GUISelectedStorage::select (id=%)." msgstr "在GUISelectedStorage::select (id=%)內的未知物件。" -#: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:133 +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:133 msgid "Unknown object in GUISelectedStorage::deselect (id=%)." msgstr "在GUISelectedStorage::deselect (id=%)內的未知物件。" -#: /home/micha/programming/sumo/src/utils/gui/div/GUISelectedStorage.cpp:150 +#: D:\Repos\sumo/src\utils\gui\div\GUISelectedStorage.cpp:150 msgid "Unknown object in GUISelectedStorage::toggleSelection (id=%)." msgstr "在GUISelectedStorage::toggleSelection (id=%)內的未知物件。" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:74 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:74 msgid "Unknown format!" msgstr "未知格式!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:91 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:91 msgid "Unknown codec, falling back to HEVC!" msgstr "未知編解碼器(codec), 退回使用高效視頻編碼(HEVC)!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:95 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:95 msgid "Unknown codec!" msgstr "未知編解碼器(codec)!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:100 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:100 msgid "Could not allocate video codec context!" msgstr "無法配置視訊轉碼器上下文!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:136 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:136 msgid "Could not open codec!" msgstr "無法開啟編解碼器(codec)!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:142 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:142 msgid "Could not allocate video frame!" msgstr "無法配置視訊框!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:148 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:148 msgid "Could not allocate the video frame data!" msgstr "無法配置視訊框資料!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:155 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:155 msgid "Failed to open output file!" msgstr "開啟輸出檔案失敗!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:160 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:160 msgid "Failed to write file header!" msgstr "寫入檔案標頭失敗!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:165 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:165 msgid "Could not allocate video packet!" msgstr "無法配置視頻套件(video packet)!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:175 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:175 msgid "Error sending final frame!" msgstr "發送最後視訊框時,發生錯誤!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:183 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:183 msgid "Error during final encoding step!" msgstr "在最後編碼步驟時,發生錯誤!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:214 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:214 msgid "Error sending frame for encoding!" msgstr "在發送視訊框以進行編碼時,發生錯誤!" -#: /home/micha/programming/sumo/src/utils/gui/div/GUIVideoEncoder.h:222 +#: D:\Repos\sumo/src\utils\gui\div\GUIVideoEncoder.h:222 msgid "Error during encoding!" msgstr "進行編碼時,發生錯誤!" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUIGLObjectPopupMenu.cpp:170 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGLObjectPopupMenu.cpp:170 msgid "Object must be a lane" msgstr "物件必須是一個車道" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:87 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:285 +msgid "Copy name to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:286 +msgid "Copy typed name to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:296 +msgid "Remove From Selected" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:298 +msgid "Add To Selected" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:308 +msgid "Show Parameter" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:317 +msgid "Show Type Parameter" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:326 +msgid "Copy cursor position to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:328 +msgid "Copy cursor geo-position to clipboard" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:332 +msgid "Show cursor geo-position in " +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:350 +msgid "Open Manipulator..." +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:389 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIGlObject.cpp:412 +msgid "type: %" +msgstr "" + +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:87 msgid "&Save changes" msgstr "&儲存改變" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:88 +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:88 msgid "&Don't save" msgstr "&不儲存" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUISaveDialog.cpp:89 +#: D:\Repos\sumo/src\utils\gui\globjects\GUISaveDialog.cpp:89 msgid "&Abort" msgstr "&中止" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUIShapeContainer.cpp:56 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIShapeContainer.cpp:56 msgid "Replacing POI '%'" msgstr "取代興趣點 '%'" -#: /home/micha/programming/sumo/src/utils/gui/globjects/GUIShapeContainer.cpp:81 +#: D:\Repos\sumo/src\utils\gui\globjects\GUIShapeContainer.cpp:81 msgid "Replacing polygon '%'" msgstr "取代多邊形 '%'" -#: /home/micha/programming/sumo/src/utils/gui/images/GUIIconSubSys.cpp:981 +#: D:\Repos\sumo/src\utils\gui\images\GUIIconSubSys.cpp:989 msgid "Instance was previously created" msgstr "實例(instance)已經建立" -#: /home/micha/programming/sumo/src/utils/gui/images/GUITextureSubSys.cpp:223 +#: D:\Repos\sumo/src\utils\gui\images\GUITextureSubSys.cpp:223 msgid "Undefined texture" msgstr "未定義的紋理(texture)" -#: /home/micha/programming/sumo/src/utils/gui/images/VClassIcons.cpp:91 +#: D:\Repos\sumo/src\utils\gui\images\VClassIcons.cpp:91 msgid "Invalid vClass" msgstr "無效的車輛類別(vClass)" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:77 +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:77 msgid "The 'value' attribute is deprecated for breakpoints. Please use 'time'." msgstr "對於暫停點(breakpoints),不宜使用屬性'value'。請使用 'time'。" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:383 +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:383 msgid "The 'filename' attribute is deprecated for decals. Please use 'file'." msgstr "不宜使用屬性'filename'。請使用 'file'。" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUISettingsHandler.cpp:559 +#: D:\Repos\sumo/src\utils\gui\settings\GUISettingsHandler.cpp:559 msgid " Could not decode breakpoint '%'" msgstr " 無法解碼暫停點(breakpoint) '%'" -#: /home/micha/programming/sumo/src/utils/gui/settings/GUIVisualizationSettings.cpp:2348 +#: D:\Repos\sumo/src\utils\gui\settings\GUIVisualizationSettings.cpp:2348 msgid "No color defined for LinkState '%'" msgstr "沒有為連接線狀態(LinkState) '%' 定義顏色" -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:116 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:116 msgid "Save the data..." msgstr "儲存資料於..." -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:131 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:131 msgid "Multiplot" msgstr "多個繪圖(multiplot)" -#: /home/micha/programming/sumo/src/utils/gui/tracker/GUIParameterTracker.cpp:219 +#: D:\Repos\sumo/src\utils\gui\tracker\GUIParameterTracker.cpp:219 msgid "Save Data" msgstr "儲存資料" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:85 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:85 msgid "Track" msgstr "追踪" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:92 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:92 msgid "&Hide Unselected" msgstr "隱藏未選擇的項目" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:93 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:93 msgid "By &Name" msgstr "依據名稱" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:93 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:93 msgid "Locate item by name" msgstr "依據名稱來查找項目" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:94 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:94 msgid "&Select/deselect" msgstr "&選擇/取消選擇" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:94 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:94 msgid "Select/deselect current object" msgstr "選擇/取消選擇目前的物件" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:95 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:95 msgid "&Filter substring" msgstr "&篩選子字串" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:96 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:96 msgid "Select &all" msgstr "選擇所有項目" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:96 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:96 msgid "Select all items in list" msgstr "選擇清單中所有的項目" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:97 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:97 msgid "&Deselect all" msgstr "取消所有選擇" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:97 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:97 msgid "Deselect all items in list" msgstr "取消選擇清單中所有的項目" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:98 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:98 msgid "&Update" msgstr "&更新" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:98 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:98 msgid "Reload all ids" msgstr "重新載入所有識別名(ids)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:102 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:102 msgid "case-sensitive search" msgstr "大小寫有關的搜尋" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:104 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:104 msgid "auto-center" msgstr "自動居中" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ChooserAbstract.cpp:329 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ChooserAbstract.cpp:329 #, c-format msgid "% objects" msgstr "% 物件" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:65 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:65 msgid "Load viewport from file" msgstr "由檔案載入檢視區" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:67 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:67 msgid "Save viewport to file" msgstr "將檢視區儲存於檔案" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:210 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:210 msgid "Load Viewport" msgstr "載入檢視區" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_EditViewport.cpp:229 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_EditViewport.cpp:229 msgid "Save Viewport" msgstr "儲存檢視區" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:277 -msgid "Run tool" -msgstr "執行工具" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:278 -msgid "Cancel tool" -msgstr "取消工具" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_Options.cpp:280 -msgid "Accept settings" -msgstr "接受設定" - -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:87 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:87 msgid "View Settings" msgstr "檢視設定" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:989 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:989 msgid "Enter a name" msgstr "輸入一個名稱" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:991 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:991 msgid "Please enter an alphanumeric name: " msgstr "請輸入一個文數(alphanumeric)名稱: " -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1070 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1070 msgid "Export view settings" msgstr "導出視圖設定" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1121 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1121 msgid "Import view settings" msgstr "導入視圖設定" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1138 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1155 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1138 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1155 msgid "Load Decals" msgstr "載入貼花紙印刷(decals)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1172 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1172 msgid "Save Decals" msgstr "儲存貼花紙印刷(decals)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1242 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1307 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1244 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1309 msgid "No Data" msgstr "無資料" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1246 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1311 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1248 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1313 msgid "Remove" msgstr "移除" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1569 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1614 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1571 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1616 msgid "Only for selected" msgstr "僅針對已選擇的物件" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1571 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1573 msgid "constant text size" msgstr "恆定文字尺寸" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1574 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1576 msgid "Size" msgstr "尺寸" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1579 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1692 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1730 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1851 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1933 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1973 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1999 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2119 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2154 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2217 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1581 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1694 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1732 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1853 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1935 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1975 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2001 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2121 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2156 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2219 msgid "Color" msgstr "顏色" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1581 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1687 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1583 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1689 msgid "Background" msgstr "背景" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1612 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1614 msgid "Draw with constant size when zoomed out" msgstr "當縮小時,以恆定尺寸繪製" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1617 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1619 msgid "Minimum Size" msgstr "最小尺寸" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1621 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1623 msgid "Exaggerate by" msgstr "依據..來放大" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1667 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1669 msgid "Save the setting to registry" msgstr "將此設定儲存於註冊表" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1668 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1670 msgid "Remove the setting from registry" msgstr "將此設定從註冊表移除" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1669 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1671 msgid "Export setting to file" msgstr "將設定儲存於檔案" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1670 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1672 msgid "Load setting from file" msgstr "由檔案載入設定" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1673 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1675 msgid "Export includes:" msgstr "導出包含:" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1674 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1676 msgid "Viewport" msgstr "檢視區" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1675 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1677 msgid "Delay" msgstr "延誤" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1676 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1678 msgid "Decals" msgstr "貼花紙印刷(decals)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1677 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1679 msgid "Breakpoints" msgstr "暫停點" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1696 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1698 msgid "Decals:" msgstr "貼印(decals):" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1699 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1701 msgid "&Load XML Decals" msgstr "&載入XML貼花紙印刷(decals)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1700 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1702 msgid "&Save XML Decals" msgstr "&儲存XML貼花紙印刷(decals)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1701 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1703 msgid "&Clear Decals" msgstr "&清除貼花紙印刷(decals)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1706 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1708 msgid "Toggle grid" msgstr "切換顯示網格" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1710 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1712 msgid "x-spacing" msgstr "x-間距" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1715 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1717 msgid "y-spacing" msgstr "y-間距" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1724 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1726 msgid "Streets" msgstr "街道" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1732 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1761 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1855 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1868 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1937 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1977 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2003 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2123 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2158 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2219 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1734 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1763 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1857 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1870 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1939 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1979 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2005 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2125 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2160 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2221 msgid "Interpolate" msgstr "內插" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1744 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2006 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2229 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1746 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2008 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2231 msgid "Recalibrate Rainbow" msgstr "重新校準彩虹" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1746 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1748 msgid "hide below" msgstr "隱藏下方部分" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1750 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1752 msgid "hide above" msgstr "隱藏上方部分" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1759 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1761 msgid "Scale width" msgstr "比例寬度" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1782 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1784 msgid "Show bike markings" msgstr "顯示腳踏車標示" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1784 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1786 msgid "Show turning arrows" msgstr "顯示轉向箭頭" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1787 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1789 msgid "Show right-of-way rules" msgstr "顯示路權規則" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1789 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1791 msgid "Realistic stop line colors" msgstr "逼真的停止線顏色" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1792 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1794 msgid "Show lane borders" msgstr "顯示車道邊界" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1794 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1796 msgid "Show lane direction" msgstr "顯示車道方向" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1797 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1799 msgid "Hide macro connectors" msgstr "隱藏巨集(macro)連接器" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1799 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1801 msgid "Show sublanes" msgstr "顯示子車道(sublanes)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1802 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1804 msgid "Show rails" msgstr "顯示鐵路" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1804 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1806 msgid "Spread bidirectional railways/roads" msgstr "展開雙向鐵路/道路" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1804 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1806 msgid "" "Make both directional edges for a bidirectional railways or roads visible" msgstr "使雙向鐵路或道路的兩個雙向路段均可見(visible)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1807 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1809 msgid "Secondary shape" msgstr "次要形狀" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1812 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1814 msgid "Exaggerate width by" msgstr "依據..來誇大寬度" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1818 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1820 msgid "Minimum size" msgstr "最小值" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1824 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1826 msgid "Show edge id" msgstr "顯示路段識別名(id)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1825 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1827 msgid "Show street name" msgstr "顯示街道名" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1826 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1828 msgid "Show edge color value" msgstr "顯示路段顏色值" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1827 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1829 msgid "Show edge scale value" msgstr "顯示路段大小比例值" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1838 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1921 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1961 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1840 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1923 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1963 msgid "Show As" msgstr "顯示為" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1840 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1923 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1963 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1842 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1925 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1965 msgid "'triangles'" msgstr "三角形" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1841 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1964 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1843 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1966 msgid "'boxes'" msgstr "盒子" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1842 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1925 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1965 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1844 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1927 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1967 msgid "'simple shapes'" msgstr "'簡單形狀'" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1843 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1926 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1966 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1845 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1928 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1968 msgid "'raster images'" msgstr "'網格圖檔'" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1844 -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1924 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1846 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1926 msgid "'circles'" msgstr "圓圈" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1866 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1868 msgid "Scale size" msgstr "比例尺寸" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1875 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1877 msgid "Show vehicle id" msgstr "顯示車輛識別名(id)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1876 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1878 msgid "Show vehicle color value" msgstr "顯示車輛顏色值" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1877 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1879 msgid "Show vehicle scale value" msgstr "顯示車輛大小比例值" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1878 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1880 msgid "Show vehicle text param" msgstr "顯示車輛文字參數" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1885 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1887 msgid "Show blinker / brake lights" msgstr "顯示閃光信號 / 剎車燈" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1887 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1889 msgid "Show minimum gap" msgstr "顯示最小間距" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1889 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1891 msgid "Show brake gap" msgstr "顯示煞車間距" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1891 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1893 msgid "Show Bluetooth range" msgstr "顯示藍牙通訊範圍" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1893 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1895 msgid "Show route index" msgstr "顯示路徑索引" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1895 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1897 msgid "Scale length with geometry" msgstr "用放縮幾何長度" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1897 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1899 msgid "Show parking info" msgstr "顯示停車資訊" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1899 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1901 msgid "Draw reversed vehicles in reverse" msgstr "繪製反方向的反向火車" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1944 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1946 msgid "Show person id" msgstr "顯示人員識別名(id)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1945 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1947 msgid "Show person color value" msgstr "顯示人員顏色值" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1956 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1958 msgid "Containers" msgstr "貨櫃" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1984 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1986 msgid "Show container id" msgstr "顯示貨櫃識別名(id)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:1995 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:1997 msgid "Junctions" msgstr "路口" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2012 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2014 msgid "Draw junction shape" msgstr "繪製路口形狀" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2014 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2016 msgid "Draw crossings/walkingareas" msgstr "繪製人行穿越道/步行區域" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2016 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2018 msgid "Show lane to lane connections" msgstr "顯示車道到車道之間的連接線(connections)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2020 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2022 msgid "Show link tls index" msgstr "顯示號誌連接線的索引(link tls index)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2021 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2023 msgid "Show link junction index" msgstr "顯示路口連接線的索引(link junction index)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2022 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2024 msgid "Show junction id" msgstr "顯示路口識別名(id)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2023 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2025 msgid "Show internal junction id" msgstr "顯示內部路口識別名(id)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2024 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2026 msgid "Show internal edge id" msgstr "顯示內部路段識別名(id)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2025 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2027 msgid "Show crossing and walkingarea id" msgstr "顯示人行穿越道及步行區域識別名(id)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2026 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2028 msgid "Show traffic light phase index" msgstr "顯示交通號誌相位索引" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2027 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2029 msgid "Show traffic light phase name" msgstr "顯示交通號誌相位名稱" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2028 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2030 msgid "Show junction name" msgstr "顯示路口名稱" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2034 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2036 msgid "Additional" msgstr "附加物" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2039 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2041 msgid "Show object id" msgstr "顯示物件名稱" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2040 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2042 msgid "Show full name" msgstr "顯示全名" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2047 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2049 msgid "StoppingPlace" msgstr "停靠點" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2048 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2050 msgid "body" msgstr "物體" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2049 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2051 msgid "sign" msgstr "標誌" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2072 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2074 msgid "element" msgstr "元素" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2073 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2075 msgid "color" msgstr "顏色" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2074 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2076 msgid "width" msgstr "寬度" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2114 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2116 msgid "POIs" msgstr "興趣點" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2130 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2132 msgid "POI detail" msgstr "興趣點詳細內容" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2135 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2137 msgid "Show poi id" msgstr "顯示興趣點識別名(id)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2136 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2138 msgid "Show poi type" msgstr "顯示興趣點類型" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2137 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2139 msgid "Show poi text param" msgstr "顯示興趣點文字參數" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2149 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2151 msgid "Polygons" msgstr "多邊形" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2164 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2166 msgid "Show polygon id" msgstr "顯示多邊形識別名(id)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2165 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2167 msgid "Show polygon types" msgstr "顯示多邊形類型" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2179 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2181 msgid "Default Selection Color" msgstr "預設的選擇顏色" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2182 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2184 msgid "Miscellaneous" msgstr "其它的" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2231 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2233 msgid "hide below threshold" msgstr "隱藏低於閾值的部分" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2238 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2240 msgid "Exaggerate edgeRelation width by" msgstr "依據..來放大路段關係線(edgeRelation)寬度" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2243 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2245 msgid "Exaggerate tazRelation width by" msgstr "依據..來放大分區關係線(tazRelation)寬度" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2249 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2251 msgid "Show data color value" msgstr "顯示資料顏色值" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2255 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2257 msgid "Legend" msgstr "圖例" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2260 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2262 msgid "Show Size Legend" msgstr "顯示圖例尺寸" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2263 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2265 msgid "Show Edge Color Legend" msgstr "顯示路段顏色圖例" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2266 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2268 msgid "Show Vehicle Color Legend" msgstr "顯示車輛顏色圖例" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2279 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2281 msgid "Dither" msgstr "顫動(dither)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2285 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2287 msgid "Draw boundaries" msgstr "繪製邊界" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2288 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2290 msgid "Force draw for position selection" msgstr "強制繪製選定的位置" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2291 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2293 msgid "Force draw for rectangle selection" msgstr "強制繪製選定的矩形物件" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2294 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2296 msgid "Disable dotted contours during selection/deletion" msgstr "在選擇/刪除時,禁用虛線輪廓" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2297 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2299 msgid "Recalculate boundaries" msgstr "t重新計算邊界" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2300 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2302 msgid "Show geometry point indices" msgstr "顯示幾何點索引(indices)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2306 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2308 msgid "3D view" msgstr "三維視圖" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2311 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2313 msgid "Show TLS link markers" msgstr "顯示交通號誌連接線標記(link markers)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2314 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2316 msgid "Show domes around TLS models from decals" msgstr "用貼花紙印刷(decals)來顯示交通號誌模型周圍的圓頂" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2317 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2319 msgid "Show auto-generated TLS models" msgstr "顯示自動生成的交通號誌模型" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2319 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2321 msgid "Show head-up display" msgstr "顯示平視顯示器(head-up display)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2325 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2327 msgid "Sun brightness" msgstr "陽光明亮度" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIDialog_ViewSettings.cpp:2337 +#: D:\Repos\sumo/src\utils\gui\windows\GUIDialog_ViewSettings.cpp:2339 msgid "Sky color" msgstr "天空顏色" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:120 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:120 msgid "Recenter View" msgstr "重新將視圖置中" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:120 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:120 msgid "Recenter view to the simulated area." msgstr "重新將視圖置於模擬區域。" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:124 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:124 msgid "Opens a menu which lets you edit the viewport. (Ctrl+I)" msgstr "打開一個選單,您可以在其中編輯檢視區(viewport)。 (Ctrl+I)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:128 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:128 msgid "Toggle Zooming Style" msgstr "切換縮放樣式" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:128 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:128 msgid "" "Toggles whether zooming is based at cursor position or at the center of the " "view." msgstr "切換是否縮放應基於游標位置,還是基於視圖的中心。" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:135 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:135 msgid "Locate Structures" msgstr "定位結構(structures)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:135 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:135 msgid "Locate structures within the network." msgstr "在路網內定位結構(structures)。" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:139 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:139 msgid "Toggle View Tooltips" msgstr "切換查看工具提示" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:139 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:139 msgid "Toggles whether tooltips in the view shall be shown." msgstr "切換是否應顯示視圖中的工具提示。" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:145 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:145 msgid "Toggle Menu Tooltips" msgstr "切換選單工具提示" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:145 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:145 msgid "Toggles whether tooltips in the menu shall be shown." msgstr "切換是否顯示選單中的工具提示。" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:161 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:161 msgid "Edit Coloring Schemes" msgstr "編輯著色方案(schemes)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:161 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:161 msgid "Opens a menu which lets you edit the coloring schemes. (F9)" msgstr "打開一個選單,您可以在其中編輯著色方案(schemes)。 (F9)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:172 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:172 msgid "Make Snapshot" msgstr "製作快照(snapshot)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIGlChildWindow.cpp:172 +#: D:\Repos\sumo/src\utils\gui\windows\GUIGlChildWindow.cpp:172 msgid "Makes a snapshot of the view." msgstr "製作視圖的快照(snapshot)。" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:294 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:294 msgid "option window-size requires INT,INT" msgstr "可選擇的視窗尺寸需要 整數,整數" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:311 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:311 msgid "option window-pos requires INT,INT" msgstr "可選擇的視窗位置需要 整數,整數" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:340 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:340 msgid "Langua&ge" msgstr "語言" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:342 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:342 msgid "Change language to english. (en)" msgstr "改變為英語。 (en)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:344 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:344 msgid "Change language to german. (de)" msgstr "改變為德語。(de)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:346 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:346 msgid "Change language to spanish. (es)" msgstr "改變為西班牙語。(es)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:348 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:348 msgid "Change language to french. (fr)" msgstr "改變為法語。(fr)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:350 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:350 msgid "Change language to italian. (it)" msgstr "改變為義大利語。 (it)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:352 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:352 msgid "简体中文 (zh)" msgstr "简体中文" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:354 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:354 msgid "繁體中文 (zh-Hant)" msgstr "繁體中文" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:356 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:356 msgid "Change language to turkish. (tr)" msgstr "改變為土耳其語。(tr)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:358 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:358 msgid "Change language to hungarian. (hu)" msgstr "改變為匈牙利語。(hu)" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:372 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:372 msgid "german" msgstr "德語" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:376 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:376 msgid "spanish" msgstr "西班牙語" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:380 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:380 msgid "french" msgstr "法語" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:384 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:384 msgid "italian" msgstr "義大利語" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:388 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:388 msgid "chinese" msgstr "中文" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:392 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:392 msgid "chinese simplified" msgstr "簡體中文" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:396 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:396 msgid "turkish" msgstr "土耳其語" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:400 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:400 msgid "hungarian" msgstr "匈牙利語" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:404 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:404 msgid "english" msgstr "英語" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:412 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:412 msgid "Language changed to " msgstr "語言改變為 " -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:414 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:414 msgid "Restart needed" msgstr "需要重新啟動" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:415 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:415 msgid "Changing display language needs restart to take effect." msgstr "更改顯示語言需要重啟才能生效。" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:418 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:418 msgid "" "For the Debug build you might also need to set the LANG environment variable." msgstr "對於除錯組建(Debug build),您可能還需要設定LANG的環境變數。" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUIMainWindow.cpp:421 +#: D:\Repos\sumo/src\utils\gui\windows\GUIMainWindow.cpp:421 msgid "Under development. You can help to improve the translation at:" msgstr "正在開發中。您可以在以下位置協助改進翻譯:" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:254 +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:254 msgid " (No projection defined)" msgstr " 投影方式未定義" -#: /home/micha/programming/sumo/src/utils/gui/windows/GUISUMOAbstractView.cpp:1738 +#: D:\Repos\sumo/src\utils\gui\windows\GUISUMOAbstractView.cpp:1747 msgid "Could not convert coordinates in %." msgstr "無法將座標轉換為%單位。" +#~ msgid "Emissions" +#~ msgstr "排放物" + +#~ msgid "Mode for creating person plans. (C)" +#~ msgstr "建立人員旅運計畫的模式。(C)" + +#~ msgid "Mode for creating containers. (P)" +#~ msgstr "用於建立貨櫃的模式。 (P)" + +#~ msgid "Undo enable " +#~ msgstr "取消啟用 " + +#~ msgid " attribute in '" +#~ msgstr " 屬性在 '" + +#~ msgid "Redo enable " +#~ msgstr "重做啟用 " + +#~ msgid "Copy " +#~ msgstr "複製 " + +#~ msgid " name to clipboard" +#~ msgstr " 剪輯板的名稱" + +#~ msgid " typed name to clipboard" +#~ msgstr " 剪輯板的類型名稱" + +#~ msgid "Could not build access in netedit; The lane '" +#~ msgstr "無法在 netedit 中建立通路(access); 車道 '" + +#~ msgid "' doesn't support pedestrians" +#~ msgstr "' 不支援行人" + +#~ msgid "Could not build parking area with ID '" +#~ msgstr "無法建立識別名為..的停車區域 '" + +#~ msgid "' in netedit; Invalid departPos over lane." +#~ msgstr "' 在netedit; 在車道上無效的出發位置。" + +#~ msgid "Could not build lane area detector with ID '" +#~ msgstr "無法建立車道區域(lane area)偵測器, 其識別名(ID)為 '" + +#~ msgid "' in netedit; invalid traffic light ID." +#~ msgstr "' 在 netedit; 無效的交通號誌識別名(ID)。" + +#~ msgid "' in netedit; Lanes aren't consecutives." +#~ msgstr "' 在 netedit; 車道不連續。" + +#~ msgid "Could not build interval with ID '" +#~ msgstr "無法建立區間,其識別名(ID)為" + +#~ msgid "' in netedit; begin is greather than end." +#~ msgstr "' 在netedit中; 開始時間大於結束時間。" + +#~ msgid "Could not build interval with begin '" +#~ msgstr "無法以'開始'建立區間" + +#~ msgid "' in '" +#~ msgstr "' 在 '" + +#~ msgid "' due overlapping." +#~ msgstr "' 由於重疊。" + +#~ msgid "Could not build Vaporizer with ID '" +#~ msgstr "無法建立車輛移除裝置(vaporizer),其識別名(ID)為 '" + +#~ msgid "Could not build TAZ with ID '" +#~ msgstr "無法建立交通分區,其識別名(ID)為 '" + +#~ msgid "' in netedit; Invalid Shape." +#~ msgstr "' 在 netedit; 無效的形狀物(shape)。" + +#~ msgid "Could not build overhead wire with ID '" +#~ msgstr "無法建立架空線,其識別名(ID)為 '" + +#~ msgid "Could not build POI with ID '" +#~ msgstr "無法建立興趣點(POI),其識別名(ID)為 '" + +#~ msgid "' in netedit; Network requires a geo projection." +#~ msgstr "' 在 netedit; 路網需要幾何地圖投影。" + +#~ msgid "Could not build " +#~ msgstr "無法建立 " + +#~ msgid " with ID '" +#~ msgstr " 識別名(ID)為 '" + +#~ msgid "' in netedit; ID contains invalid characters." +#~ msgstr "' 在 netedit; 識別名(ID)含有無效的字元。" + +#~ msgid "' in netedit; Invalid position over lane." +#~ msgstr "' 在 netedit; 車道上的位置無效。" + +#~ msgid "' in netedit; declared twice." +#~ msgstr "' 在 netedit; 已宣告兩次。" + +#~ msgid " doesn't exist." +#~ msgstr " 不存在。" + +#~ msgid "' in netedit; attribute " +#~ msgstr "' 在 netedit; 屬性 " + +#~ msgid " cannot be negative." +#~ msgstr " 不能為負值。" + +#~ msgid "' in netedit; list of VTypes isn't valid." +#~ msgstr "' 在 netedit; 車輛類型(VTypes)清單無效。" + +#~ msgid "' in netedit; filename is invalid." +#~ msgstr "' 在 netedit; 檔案名稱無效。" + +#~ msgid "' in netedit; list of lanes isn't valid." +#~ msgstr "' 在 netedit; 車道清單無效。" + +#~ msgid " in netedit; " +#~ msgstr " ' 在 netedit; " + +#~ msgid "calibratorFlow of calibrator '" +#~ msgstr "校估裝置的較估流量(calibratorFlow) '" + +#~ msgid "" +#~ "' cannot be written. Either type or vehsPerHour or speed must be enabled" +#~ msgstr "無法寫入。必須啟用 type, vehsPerHour 或 speed" + +#~ msgid "There is already a TAZ rel defined between '" +#~ msgstr "已經有一個分區關係存在於 '" + +#~ msgid "There is already a TAZ rel defined in '" +#~ msgstr "已經有一個分區關係定義於 '" + +#~ msgid "' doesn't exist." +#~ msgstr "' 不存在。" + +#~ msgid " already exists" +#~ msgstr " 已經存在" + +#~ msgid " in netedit; edge doesn't exist." +#~ msgstr " 在netedit; 路段不存在。" + +#~ msgid " in netedit; attribute '" +#~ msgstr " 在netedit; 屬性 '" + +#~ msgid "There is another " +#~ msgstr "有另一個 " + +#~ msgid " with the same ID='" +#~ msgstr " 有相同識別名(ID)='" + +#~ msgid " need at least one " +#~ msgstr " 需要至少一個 " + +#~ msgid " with id '" +#~ msgstr " 帶有識別名(id) '" + +#~ msgid "' doesn't exist in " +#~ msgstr "' 不存在於 " + +#~ msgid "Invalid definition for " +#~ msgstr "無效的定義 " + +#~ msgid " in " +#~ msgstr " 在 " + +#~ msgid "' cannot be created in " +#~ msgstr "' 無法建立於 " + +#~ msgid "Invalid vehicle type '" +#~ msgstr "無效的車輛類型 '" + +#~ msgid "' used in " +#~ msgstr "' 使用於 " + +#~ msgid " used in " +#~ msgstr " 使用於 " + +#~ msgid "Invalid route '" +#~ msgstr "無效的路徑 '" + +#~ msgid "Invalid " +#~ msgstr "無效 " + +#~ msgid " is greater than number of lanes" +#~ msgstr " 大於車道數" + +#~ msgid " is greater than vType" +#~ msgstr " 大於車輛類型(vType)" + +#~ msgid "Invalid person type '" +#~ msgstr "無效的人員類型 '" + +#~ msgid "Invalid personFlow type '" +#~ msgstr "無效的人流量類型 '" + +#~ msgid "Containers don't support stops at busStops" +#~ msgstr "貨櫃不支援停靠站設於公車站" + +#~ msgid "A transport with edges attribute needs a list of edges" +#~ msgstr "一個以路段為主的運送需要一個路段清單" + +#~ msgid "A route transport needs a route" +#~ msgstr "一個路徑運送需要一個路徑" + +#~ msgid "Via edge '" +#~ msgstr "經過路段 '" + +#~ msgid "- 'Start drawing' or ENTER" +#~ msgstr "- '開始繪製' 或 進入" + +#~ msgid " to create shape." +#~ msgstr " 建立形狀。" + +#~ msgid "- 'Stop drawing' or ENTER to" +#~ msgstr "- '停止繪製' 或 進入到" + +#~ msgid " finish shape creation." +#~ msgstr " 完成形狀物建立。" + +#~ msgid "- 'Abort drawing' or ESC to" +#~ msgstr "- '中止繪製' 或 跳離到 (ESC)" + +#~ msgid " abort shape creation." +#~ msgstr " 中止形狀物建立。" + +#~ msgid "- 'Shift + Click' to remove" +#~ msgstr "- 'Shift + Click' 以移除" + +#~ msgid " last inserted point." +#~ msgstr " 最後置入的點。" + +#~ msgid "-Click over edge to" +#~ msgstr "-點擊(Click)於路段上" + +#~ msgid " create or edit" +#~ msgstr " 建立或編輯" + +#~ msgid " geometry point." +#~ msgstr " 幾何點。" + +#~ msgid "-Shift+click over edge" +#~ msgstr "-Shift+click 於路段上" + +#~ msgid " to edit start or end" +#~ msgstr " 編輯開始或結束" + +#~ msgid "- Shift+Click to select parent\n" +#~ msgstr "- Shift+點擊 選擇親代類別(parent)\n" + +#~ msgid "- Click over a bus stop to\n" +#~ msgstr "- 點擊於一個公車停靠站上\n" + +#~ msgid " create a stop." +#~ msgstr " 建立一個停靠點。" + +#~ msgid "- Click over a container stop\n" +#~ msgstr "- 點擊於一個貨櫃停靠站上\n" + +#~ msgid " to create a stop." +#~ msgstr " 建立一個停靠站。" + +#~ msgid "- Click over a charging station\n" +#~ msgstr "- 點擊於一個充電站上\n" + +#~ msgid "- Click over a parking area\n" +#~ msgstr "- 點擊於一個停車區域上\n" + +#~ msgid "- Click over a lane to create\n" +#~ msgstr "- 點擊於一個車道以建立\n" + +#~ msgid " a stop." +#~ msgstr " 一個停靠點。" + +#~ msgid "- No stop parents in current\n" +#~ msgstr "目前沒有停靠點親代(stop parents)\n" + +#~ msgid " network." +#~ msgstr " 路網。" + +#~ msgid "VType Distributions" +#~ msgstr "車輛類型(VType)分佈" + +#~ msgid "Show VType Distributions" +#~ msgstr "顯示車輛類型(VType)分佈" + +#~ msgid "- Click over a route to\n" +#~ msgstr "- 點擊於一個路徑到...\n" + +#~ msgid " create a vehicle." +#~ msgstr " 建立一個車輛。" + +#~ msgid "- Select two edges to\n" +#~ msgstr "- 選擇兩個路段到...\n" + +#~ msgid " create a Trip." +#~ msgstr " 建立一個旅次。" + +#~ msgid " create a vehicle with\n" +#~ msgstr " 建立一個車輛\n" + +#~ msgid " embedded route." +#~ msgstr " 嵌入的路徑。" + +#~ msgid "- Select two junctions\n" +#~ msgstr "- 選擇兩個路口\n" + +#~ msgid " to create a Trip." +#~ msgstr " 建立一個旅次。" + +#~ msgid " create a routeFlow." +#~ msgstr " 建立一個路徑流量(routeFlow)。" + +#~ msgid " create a flow." +#~ msgstr " 建立一個流量。" + +#~ msgid " create a flow with\n" +#~ msgstr " 用..建立一個流量\n" + +#~ msgid " to create a flow." +#~ msgstr " 建立一個流量。" + +#~ msgid "List ofe dges cannot be empty" +#~ msgstr "路段清單不可以空白" + +#~ msgid "-Hold while" +#~ msgstr "-按住 同時" + +#~ msgid " clicking to create" +#~ msgstr " 點擊建立" + +#~ msgid " unyielding connections" +#~ msgstr " 不退讓的連接線(unyielding connections)" + +#~ msgid " (pass=true)." +#~ msgstr " (通過=真)。" + +#~ msgid "-Hold while" +#~ msgstr "-按住 同時" + +#~ msgid " clicking to create " +#~ msgstr " 點擊建立 " + +#~ msgid " conflicting connections" +#~ msgstr " 衝突的連接線(connection)" + +#~ msgid " (i.e. at zipper nodes" +#~ msgstr " (即在拉鍊節點(zipper nodes)" + +#~ msgid " or with incompatible" +#~ msgstr " 或不相容" + +#~ msgid " permissions" +#~ msgstr " 許可" + +#~ msgid "- ESC:" +#~ msgstr "- 跳脫鍵(ESC):" + +#~ msgid " Deselect origin" +#~ msgstr " 取消選擇起點(origin)" + +#~ msgid "- Control+Click:" +#~ msgstr "- 控制鍵+點擊(Control+Click):" + +#~ msgid " Move view" +#~ msgstr " 移動視野(view)" + +#~ msgid "- Shift+Click:" +#~ msgstr "- 移位鍵+點擊(Shift+Click):" + +#~ msgid " Splits edge in both directions" +#~ msgstr " 分割雙向路段" + +#~ msgid "- Alt+Shift+Click:" +#~ msgstr "- Alt鍵+移位鍵+點擊(Alt+Shift+Click):" + +#~ msgid " Splits edge in one direction" +#~ msgstr " 分割單向路段" + +#~ msgid "-Click over junction to" +#~ msgstr "-點擊路口" + +#~ msgid " mark candidate edges." +#~ msgstr " 標記候選路段。" + +#~ msgid "-Click over candidate" +#~ msgstr "-點擊候選者" + +#~ msgid " edges for selecting." +#~ msgstr " 用於選擇的路段。" + +#~ msgid "- Toggle Membership:" +#~ msgstr "- 切換隸屬(membership):" + +#~ msgid " Create new Sources/Sinks" +#~ msgstr " 建立新的起點/迄點" + +#~ msgid " with given weights." +#~ msgstr " 給定權重。" + +#~ msgid "- Keep Membership:" +#~ msgstr "- 維持隸屬(membership:" + +#~ msgid "- Press ESC to clear" +#~ msgstr "- 按逸出鍵(ESC)清除" + +#~ msgid " current selection." +#~ msgstr " 目前的選擇。" + +#~ msgid "popen() failed!" +#~ msgstr "popen() 失敗!" + +#~ msgid "starting process silently...\n" +#~ msgstr "靜靜地開始處理...\n" + +#~ msgid "Run tool" +#~ msgstr "執行工具" + +#~ msgid "Cancel tool" +#~ msgstr "取消工具" + +#~ msgid "Accept settings" +#~ msgstr "接受設定" + #~ msgid "Generate network" #~ msgstr "產生路網" diff -Nru sumo-1.17.0/data/po/zh-Hant_py.po sumo-1.18.0/data/po/zh-Hant_py.po --- sumo-1.17.0/data/po/zh-Hant_py.po 1970-01-01 00:00:00.000000000 +0000 +++ sumo-1.18.0/data/po/zh-Hant_py.po 2023-06-28 20:02:17.000000000 +0000 @@ -0,0 +1,136 @@ +# Language zh-Hant translations for sumo package. +# Copyright (C) 2023 THE sumo'S COPYRIGHT HOLDER +# This file is distributed under the same license as the sumo package. +# Automatically generated, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: sumo\n" +"Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" +"POT-Creation-Date: 2023-05-26 14:09+0200\n" +"PO-Revision-Date: 2023-05-25 07:25+0000\n" +"Last-Translator: yunpangfloetteroed \n" +"Language-Team: Chinese (Traditional) \n" +"Language: zh-Hant\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.18-dev\n" + +#: D:\Repos\sumo/tools/game\runner.py:63 +msgid "Interactive Traffic Light" +msgstr "互動式交通號誌" + +#: D:\Repos\sumo/tools/game\runner.py:64 +msgid "Research intersection Ingolstadt" +msgstr "因戈爾施塔特(Ingolstadt) 市內的研究路口" + +#: D:\Repos\sumo/tools/game\runner.py:65 +msgid "Simple Junction" +msgstr "簡單路口" + +#: D:\Repos\sumo/tools/game\runner.py:66 +msgid "Simple Junction (Demo)" +msgstr "簡單路口(展示)" + +#: D:\Repos\sumo/tools/game\runner.py:67 +msgid "Four Junctions" +msgstr "四個路口" + +#: D:\Repos\sumo/tools/game\runner.py:68 +msgid "Six Junctions" +msgstr "六個路口" + +#: D:\Repos\sumo/tools/game\runner.py:69 +msgid "Prof. Kühne" +msgstr "屈内(Kühne) 教授" + +#: D:\Repos\sumo/tools/game\runner.py:70 +msgid "3D Junction Virtual World" +msgstr "三維路口虛擬世界" + +#: D:\Repos\sumo/tools/game\runner.py:71 +msgid "3D Junction OpenStreetMap" +msgstr "三維路口開放街圖(OpenStreetMap)" + +#: D:\Repos\sumo/tools/game\runner.py:72 +msgid "Highway Ramp" +msgstr "高速公路匝道" + +#: D:\Repos\sumo/tools/game\runner.py:73 +msgid "Combined Highway On and Off Ramp" +msgstr "合併的高速公路上下匝道" + +#: D:\Repos\sumo/tools/game\runner.py:74 +msgid "Corridor" +msgstr "走廊" + +#: D:\Repos\sumo/tools/game\runner.py:75 +msgid "Highway Ramp A10" +msgstr "高速公路匝道 A10" + +#: D:\Repos\sumo/tools/game\runner.py:76 +msgid "Demand Responsive Transport (new)" +msgstr "需求反應運輸(新)" + +#: D:\Repos\sumo/tools/game\runner.py:77 +msgid "DRT - Advanced (new)" +msgstr "需求反應運輸(DRT) - 進階 (新)" + +#: D:\Repos\sumo/tools/game\runner.py:78 +msgid "DRT - Demo" +msgstr "需求反應運輸(DRT) - 展示" + +#: D:\Repos\sumo/tools/game\runner.py:79 D:\Repos\sumo/tools/game\runner.py:89 +msgid "Highscore" +msgstr "排行榜" + +#: D:\Repos\sumo/tools/game\runner.py:80 +msgid "Reset Highscore" +msgstr "重設排行榜" + +#: D:\Repos\sumo/tools/game\runner.py:81 +msgid "German" +msgstr "德語" + +#: D:\Repos\sumo/tools/game\runner.py:82 +msgid "English" +msgstr "英語" + +#: D:\Repos\sumo/tools/game\runner.py:83 +msgid "Italian" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:84 +msgid "Spanish" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:85 +msgid "French" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:86 +msgid "Chinese (simplified)" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:87 +msgid "Chinese (traditional)" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:88 +msgid "Quit" +msgstr "結束" + +#: D:\Repos\sumo/tools/game\runner.py:90 +msgid "Congratulations!" +msgstr "恭喜!" + +#: D:\Repos\sumo/tools/game\runner.py:91 +msgid "Your Score" +msgstr "您的分數" + +#: D:\Repos\sumo/tools/game\runner.py:92 +msgid "Continue" +msgstr "繼續" diff -Nru sumo-1.17.0/data/po/zh-Hant_sumo.po sumo-1.18.0/data/po/zh-Hant_sumo.po --- sumo-1.17.0/data/po/zh-Hant_sumo.po 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/po/zh-Hant_sumo.po 2023-06-28 20:02:17.000000000 +0000 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: sumo\n" "Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" -"POT-Creation-Date: 2023-04-15 12:21+0200\n" -"PO-Revision-Date: 2023-04-24 13:56+0000\n" +"POT-Creation-Date: 2023-06-15 09:59+0200\n" +"PO-Revision-Date: 2023-04-26 09:39+0000\n" "Last-Translator: yunpangfloetteroed \n" "Language-Team: Chinese (Traditional) \n" @@ -19,177 +19,182 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.18-dev\n" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:46 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:46 msgid "Reading input" msgstr "正在讀取輸入檔案" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:54 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:54 msgid "Consolidating statistics" msgstr "合併統計數據" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:58 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:58 msgid "Building street representation" msgstr "正在建構街道展示" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:62 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:62 msgid "Generating work positions" msgstr "正在產生工作位置" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:66 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:66 msgid "Building bus lines" msgstr "正在建構公車路線" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:71 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:71 msgid "Generating population" msgstr "產生人口" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:75 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:75 msgid "Allocating schools" msgstr "配置學校" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:79 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:79 msgid "Allocating work places" msgstr "配置工作場所" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:83 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:83 msgid "Allocating car places" msgstr "配置車輛位置" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGenHandler.cpp:178 +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:174 +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:181 +msgid "Invalid % value of edge % is treated as zero." +msgstr "" + +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:186 #, c-format msgid "Edge '%' is not known." -msgstr "路段'%'未知。" +msgstr "路段 '%' 未知。" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGenHandler.cpp:329 +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:337 msgid "Unknown bus station '%'." msgstr "未知公車站 '%'。" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:61 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:61 msgid "Use FILE as SUMO-network to create trips for" msgstr "使用檔案(FILE)作為SUMO路網以建立旅次給" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:64 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:64 msgid "Loads the SUMO-statistics FILE" msgstr "載入SUMO統計檔案(FILE)" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:72 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:72 msgid "Write generated trips to FILE" msgstr "將產生的旅次寫入檔案(FILE)內" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:81 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:81 msgid "" "Sets the time of beginning of the simulation during the first day (in " "seconds)" msgstr "設置第一天的模擬開始時間(以秒為單位)" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:84 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:84 msgid "" "Sets the time of ending of the simulation during the last day (in seconds)" msgstr "設置最後一天模擬的結束時間(以秒為單位)" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:87 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:87 msgid "Sets the duration of the simulation in days" msgstr "設置模擬的持續時間(以天為單位)" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:64 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:111 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:64 +#: D:\Repos\sumo/src\router\ROLoader.cpp:111 msgid "Missing definition of network to load!" msgstr "載入時,缺少路網的定義!" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:67 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:67 #, c-format msgid "The network file '%' could not be accessed." msgstr "路網檔案 '%' 無法存取。" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:69 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:116 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:69 +#: D:\Repos\sumo/src\router\ROLoader.cpp:116 msgid "Loading net" msgstr "載入路網" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:79 -#: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:227 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:133 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:79 +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:227 +#: D:\Repos\sumo/src\router\ROLoader.cpp:133 #, c-format msgid "Deprecated vehicle classes '%' in input network." msgstr "不適用的車輛類別 '%' 在輸入的路網內。" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:89 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:89 msgid "" "Generates trips of persons throughout a day for the microscopic, multi-modal " "traffic simulation SUMO." msgstr "為微觀多運具模式交通模擬軟體SUMO所產生的一日人旅次交通。" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:113 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:113 #, c-format msgid "Loaded % edges." msgstr "已載入 % e 路段。" -#: /home/micha/programming/sumo/src/activitygen/city/AGCity.cpp:427 +#: D:\Repos\sumo/src\activitygen\city\AGCity.cpp:425 msgid "No street that allows passenger vehicles found in this city." msgstr "在這個城市裡,沒有發現有允許客車使用的街道。" -#: /home/micha/programming/sumo/src/activitygen/city/AGWorkPosition.cpp:126 +#: D:\Repos\sumo/src\activitygen\city\AGWorkPosition.cpp:126 msgid "Work position already occupied. Cannot give it to another adult." msgstr "工作位置已經被占用。無法給另一個人使用。" -#: /home/micha/programming/sumo/src/dfrouter/RODFDetFlowLoader.cpp:76 +#: D:\Repos\sumo/src\dfrouter\RODFDetFlowLoader.cpp:76 msgid "At least one value lies beyond given time boundaries." msgstr "至少有一個值超出給定的時間界限。" -#: /home/micha/programming/sumo/src/dfrouter/RODFDetFlowLoader.cpp:104 +#: D:\Repos\sumo/src\dfrouter\RODFDetFlowLoader.cpp:104 msgid "At least one line does not contain the correct number of columns." msgstr "至少有一列沒有包含正確的行數(number of columns)。" -#: /home/micha/programming/sumo/src/dfrouter/RODFDetector.cpp:171 +#: D:\Repos\sumo/src\dfrouter\RODFDetector.cpp:171 msgid "Missing routes for detector '%'." msgstr "缺少偵測器 '%' 的路徑。" -#: /home/micha/programming/sumo/src/dfrouter/RODFDetector.cpp:305 +#: D:\Repos\sumo/src\dfrouter\RODFDetector.cpp:305 #, c-format msgid "Detector '%' has no routes!?" msgstr "偵測器 '%' 沒有路徑!?" -#: /home/micha/programming/sumo/src/dfrouter/RODFDetectorHandler.cpp:86 +#: D:\Repos\sumo/src\dfrouter\RODFDetectorHandler.cpp:86 msgid "Could not add detector '%' (probably the id is already used)." msgstr "無法新增偵測器 '%' (可能識別名(id)已被使用)。" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:61 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:61 msgid "Loads the SUMO-network FILE" msgstr "載入 SUMO 路網檔案" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:70 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:70 msgid "Loads detector descriptions from FILE" msgstr "從檔案載入偵測器的描述" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:75 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:75 msgid "Loads detector flows from FILE(s)" msgstr "從檔案載入偵測器的流量" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:82 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:82 msgid "Saves computed routes to FILE" msgstr "儲存計算後的路徑於檔案內" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:85 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:85 msgid "Forces dfrouter to compute routes for in-between detectors" msgstr "強制 dfrouter 為 in-between 偵測器計算路徑" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:89 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:89 msgid "Saves typed detectors to FILE" msgstr "儲存輸入(typed)的偵測器於檔案內" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:92 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:92 msgid "Saves detector positions as pois to FILE" msgstr "將偵測器位置儲存為興趣點(pois)於檔案內" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:95 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:95 msgid "Saves emitter definitions for source detectors to FILE" msgstr "將起點偵測器(source detectors)的車輛(emitter)的定義存入檔案" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:98 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:98 msgid "Add vehicle types to the emitters file (PKW, LKW)" msgstr "新增車輛類型於車輛的(emitters)檔案 (客車,卡車)" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:101 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:101 msgid "" "Write generated vehicle types into separate FILE instead of including them " "into the emitters-output" @@ -197,228 +202,228 @@ "將產生的的車輛類型寫入單獨的檔案,而不是將它們包含在車輛(eimtters)的輸出檔案" "內" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:104 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:104 msgid "Saves emitter positions as pois to FILE" msgstr "將車輛(emitter)位置儲存為興趣點(pois)於檔案內" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:108 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:108 msgid "Saves variable seed sign definitions for sink detectors to FILE" msgstr "將迄點偵測器(sink detectors)的可變速度標誌定義儲存於於檔案內" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:111 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:111 msgid "Saves rerouter definitions for sink detectors to FILE" msgstr "將迄點偵測器(sink detectors)的改道裝置(rerouter)定義儲存於於檔案內" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:114 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:114 msgid "" "Write induction loop definitions for the given detector positions to FILE" msgstr "將給定的偵測器位置的偵測器定義儲存於於檔案內" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:117 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:117 msgid "Add source detectors to the validation output" msgstr "將起點偵測器(source detectors)加入於驗證輸出(validation output)" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:123 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:123 msgid "Derive missing flow values from upstream or downstream (not working!)" msgstr "由上游或是下游流量推導出缺失的流量值 (不起作用!)" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:127 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:127 msgid "Switches to highway-mode" msgstr "切換到高速公路模式" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:131 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:131 msgid "Only warn about unparseable detectors" msgstr "僅警告無法剖析的(unparseable)偵測器" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:135 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:135 msgid "Recomputes detector types even if given" msgstr "即使已給定,仍重新計算偵測器類型" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:139 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:139 msgid "Recomputes routes even if given" msgstr "即使已給定,仍重新計算路徑" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:143 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:143 msgid "Keeps routes even if they have exhausted max-search-depth" msgstr "即使耗盡了最大搜索深度,也保留路徑" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:146 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:146 msgid "Keeps routes even if a shorter one exists" msgstr "即使有較短路徑,也保留路徑" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:150 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:150 msgid "Number of edges to follow a route without passing a detector" msgstr "沿著路徑上,沒有經過偵測器的路段數量" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:153 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:153 msgid "Writes only emission times" msgstr "僅寫排放時間" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:156 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:156 msgid "Do not route on these edges" msgstr "不在此些路段上進行路徑導引" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:159 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:159 msgid "Only route on edges allowing the given vclass" msgstr "僅在允許給定的車輛類型的路段上進行路徑導引" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:162 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:162 msgid "Allow turnarounds as route continuations" msgstr "允許繞圈以使路徑連續" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:167 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:167 msgid "Minimum distance in meters between start and end node of every route" msgstr "每個路徑起迄點之間的最短距離(以米為單位)" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:170 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:170 msgid "generate random departure times for emitted vehicles" msgstr "為注入的(emitted)車輛產生隨機出發時間" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:174 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:174 msgid "Multiply flow times with TIME to get seconds" msgstr "流量時間乘以時間(TIME)以到秒" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:177 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:177 msgid "Subtracts TIME seconds from (scaled) flow times" msgstr "從(縮放後)的流量時間減去時間(TIME)秒" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:180 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:180 msgid "Expected distance between two successive data sets" msgstr "兩個連續資料集之間的預期距離" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:185 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:185 msgid "Write calibrators to FILE" msgstr "將校估器寫入檔案內" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:188 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:188 msgid "Include routes in the output which have no vehicles" msgstr "將沒有車輛使用的路徑包含於輸出檔案內" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:192 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:192 msgid "" "Checks whether detectors with calculated flow 0 can attract additional " "traffic" msgstr "檢查是否計算流量為零的偵測器能吸引額外的交通" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:195 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:195 msgid "Removes empty detectors from the list" msgstr "從清單中移除空的偵測器" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:198 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:198 msgid "" "Whether edges with unknown status can prevent an edge from becoming a source" msgstr "是否狀態未知的路段可以防止路段成為起點源" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:201 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:201 msgid "" "Try to determine further inflows to an inbetween detector when computing " "split probabilities" msgstr "在計算分割機率時,嘗試去決定更多流量(inflow)流入一個in-between偵測器" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:205 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:205 msgid "Scale factor for flows" msgstr "流量的比例因數" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:209 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:123 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:167 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:199 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:209 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:123 +#: D:\Repos\sumo/src\od2trips_main.cpp:167 +#: D:\Repos\sumo/src\router\ROFrame.cpp:199 msgid "Assigns a default depart lane" msgstr "指定一個預設的出發車道" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:212 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:127 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:170 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:202 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:212 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:127 +#: D:\Repos\sumo/src\od2trips_main.cpp:170 +#: D:\Repos\sumo/src\router\ROFrame.cpp:202 msgid "Assigns a default depart position" msgstr "指定一個預設的出發位置" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:215 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:131 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:173 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:205 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:215 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:131 +#: D:\Repos\sumo/src\od2trips_main.cpp:173 +#: D:\Repos\sumo/src\router\ROFrame.cpp:205 msgid "Assigns a default depart speed" msgstr "指定一個預設的出發速度" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:218 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:135 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:176 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:208 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:218 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:135 +#: D:\Repos\sumo/src\od2trips_main.cpp:176 +#: D:\Repos\sumo/src\router\ROFrame.cpp:208 msgid "Assigns a default arrival lane" msgstr "指定一個預設的抵達車道" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:221 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:139 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:179 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:211 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:221 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:139 +#: D:\Repos\sumo/src\od2trips_main.cpp:179 +#: D:\Repos\sumo/src\router\ROFrame.cpp:211 msgid "Assigns a default arrival position" msgstr "指定一個預設的抵達位置" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:224 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:143 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:182 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:214 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:224 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:143 +#: D:\Repos\sumo/src\od2trips_main.cpp:182 +#: D:\Repos\sumo/src\router\ROFrame.cpp:214 msgid "Assigns a default arrival speed" msgstr "指定一個預設的抵達速度" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:227 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:227 msgid "The default speed deviation of vehicles" msgstr "車輛的預設速度偏差值" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:231 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:231 msgid "Defines the begin time; Previous defs will be discarded" msgstr "定義開始時間;先前的定義將會被廢除" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:234 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:234 msgid "Defines the end time; Later defs will be discarded; Defaults to one day" msgstr "定義結束時間;後來的定義將會被廢除;預設值是一天" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:239 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:239 msgid "Lists detectors with no flow (enable -v)" msgstr "無流量的偵測器清單 (啟用 -v)" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:242 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:242 msgid "Prints aggregated detector flows" msgstr "列印出彙總的偵測器流量" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:246 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:225 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:246 +#: D:\Repos\sumo/src\router\ROFrame.cpp:225 msgid "Disable console output of route parsing step" msgstr "禁用路線解析步驟的控制台輸出" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:113 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:113 msgid "Computing detector types" msgstr "計算偵測器類型" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:142 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:142 msgid "Computed detector types:" msgstr "計算後的偵測器類型:" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:143 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:143 #, c-format msgid " % source detectors" msgstr " % 起點偵測器(source detectors)" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:144 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:144 #, c-format msgid " % sink detectors" msgstr " % 迄點偵測器(sink detectors)" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:145 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:145 #, c-format msgid " % in-between detectors" msgstr " % 中間(in-between)偵測器" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:146 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:146 #, c-format msgid " % invalid detectors" msgstr " % 無效的偵測器" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:281 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:281 msgid "Could not close route for '%'" msgstr "無法為 '%' 關閉路徑" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:439 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:439 #, c-format msgid "" "Detector '%' has no flows.\n" @@ -427,30 +432,30 @@ "偵測器 '%' 沒有流量。\n" " 試圖重建中。" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:467 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:467 msgid " Could not build list of previous flows." msgstr " 無法構建先前的流量列表。" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:504 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:504 msgid " Could not build list of latter flows." msgstr " 無法建立後面的流量清單。" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:591 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:591 msgid "Removed detector '%' because no flows for him exist." msgstr "由於該偵測器上無流量而移除的偵測器 '%'。" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:614 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:614 #, c-format msgid "Detector '%' has no flow." msgstr "偵測器 '%' 沒有流量。" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:693 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:693 #, c-format msgid "" "Quitting checking for being a source for detector '%' due to seen edge limit." msgstr "由於看到的路段限制,正在退出檢查可以作為偵測器 '%' 的起點(source)。" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:793 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:793 #, c-format msgid "" "Quitting checking for being a destination for detector '%' due to seen edge " @@ -458,128 +463,128 @@ msgstr "" "由於看到的路段限制,正在退出檢查可以作為偵測器 '%' 的迄點(destination)。" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:869 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:869 #, c-format msgid "" "Quitting checking for being a false source for detector '%' due to seen edge " "limit." msgstr "由於看到的路段限制,正在退出檢查可能為偵測器 '%' 的錯誤起點(source)。" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:1002 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:1002 msgid "Average speedFactor for PKW is % maximum speedFactor is %." msgstr "小客車(PKW)的平均速度因數(speedFactor)是 % ,最大速度因數是 %。" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:1006 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:1006 msgid "Average speedFactor for LKW is % maximum speedFactor is %." msgstr "大貨車(LKW)的平均速度因數(speedFactor)是 % ,最大速度因數是 %。" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:70 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:70 msgid "No detector file given (use --detector-files )." msgstr "未提供偵測器檔案 (使用 --detector-files )。" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:76 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:76 msgid "Could not open detector file '%'" msgstr "無法開啟偵測器檔案 '%'" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:88 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:88 msgid "No detectors found." msgstr "未發現偵測器。" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:103 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:103 #, c-format msgid "The measure-file '%' can not be opened." msgstr "無法開啟測量檔案(measure-file) '%' 。" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:124 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:124 msgid "Removing empty detectors" msgstr "移除空的偵測器" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:128 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:128 msgid "Scanning for empty detectors" msgstr "掃描空的偵測器" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:143 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:143 msgid "No source detectors found." msgstr "未發現起點偵測器(source detectors)。" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:147 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:147 msgid "Computing routes" msgstr "正在計算路徑" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:158 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:158 msgid "The detector types are not defined; use in combination with a network" msgstr "未定義偵測器類型未定義; 與路網合併使用" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:162 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:162 msgid "The emitters have no routes; use in combination with a network" msgstr "車輛(emitters)沒有路徑; 與路網合併使用" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:193 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:193 msgid "Rechecking loaded flows" msgstr "再次檢查已載入的流量" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:198 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:198 msgid "Writing emitters" msgstr "正在寫出車輛(emitters)" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:210 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:210 msgid "Writing emitter pois" msgstr "正在寫出車輛興趣點(emitter pois)" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:217 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:217 msgid "Writing speed triggers" msgstr "正在寫出速度觸發器(triggers)" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:224 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:224 msgid "Writing validation detectors" msgstr "正在寫出驗證偵測器(validation detectors)" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:231 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:231 msgid "Writing highway end rerouter" msgstr "正在寫出高速公路終點改道裝置(end rerouter)" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:251 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:251 msgid "Builds vehicle routes for SUMO using detector values." msgstr "使用偵測器值為SUMO建立車輛路徑。" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:69 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:69 msgid "Write generated route alternatives to FILE" msgstr "將產生的替代路徑寫入檔案內" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:72 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:72 msgid "Write edge splits and connectivity to FILE" msgstr "將路段分割段及連通性寫入檔案內" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:75 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:75 msgid "Write intermodal edges with lengths and travel times to FILE" msgstr "將具有長度和旅行時間的聯運路段(intermodal edges)寫入檔案內" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:78 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:78 msgid "Write trips instead of vehicles (for validating trip input)" msgstr "寫出旅次而非車輛 (用於驗證旅次輸入)" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:81 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:81 msgid "Write trips with geo-coordinates" msgstr "寫出具有地理坐標的旅次" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:84 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:84 msgid "Write trips with fromJunction and toJunction" msgstr "寫出具有'從路口(fromJunction)'及'到路口(toJunction)'的旅次" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:87 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:87 msgid "Include the cost attribute in route output" msgstr "將成本屬性包含於路徑輸入內" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:92 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:559 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:92 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:565 msgid "" "Edge weights for routing are dynamically disturbed by a random factor drawn " "uniformly from [1,FLOAT)" msgstr "" "用於路徑搜尋的路段權重會受一個從[1,FLOAT)內均勻地抽取的隨機因數動態干擾" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:95 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:118 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:95 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:118 msgid "" "Aggregation period for the given weight files; triggers rebuilding of " "Contraction Hierarchy" @@ -587,15 +592,15 @@ "給定權重檔案的聚合區間(aggregation period);觸發重新建立收縮階層(contraction " "hierarchy)" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:98 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:112 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:568 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:98 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:112 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:574 msgid "" "Consider edge priorities in addition to travel times, weighted by factor" msgstr "除了旅行時間之外,還考慮路段的優先級別,並按因數(factor)加權" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:101 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:574 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:101 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:580 msgid "" "Initialize lookup table for astar from the given file (generated by marouter " "--all-pairs-output)" @@ -603,195 +608,196 @@ "使用給定的檔案為astar路徑搜尋法的查找表進行初始化(由marouter的指令選項--all-" "pairs-output產生)" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:104 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:577 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:104 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:583 msgid "Initialize lookup table for astar ALT-variant from the given file" msgstr "使用給定的檔案為astar ALT-variant路徑搜尋法的查找表進行初始化" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:107 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:107 msgid "Save lookup table for astar ALT-variant to the given file" msgstr "將astar ALT-variant路徑搜尋法的查找表儲存於指定的檔案" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:117 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:206 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:117 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:206 msgid "Use FLOAT as Gawron's beta" msgstr "Gawron交通指派法的beta參數為浮點數(float)" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:121 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:210 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:121 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:210 msgid "Use FLOAT as Gawron's a" msgstr "Gawron交通指派法的a參數為浮點數(float)" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:124 -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:62 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:213 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:124 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:62 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:213 msgid "Write exit times (weights) for each edge" msgstr "寫出離開每個路段的時間(權重)" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:127 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:251 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:127 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:251 msgid "Include total route length in the output" msgstr "將總路徑長度包含於輸入檔案內" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:130 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:216 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:130 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:216 msgid "Save routes with near zero probability" msgstr "儲存使用機率接近零的路徑" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:133 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:219 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:133 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:219 msgid "Only reuse routes from input, do not calculate new ones" msgstr "僅從輸入檔重新使用路徑, 不重新計算新路徑" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:136 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:136 msgid "The probability of keeping the old route" msgstr "保留舊路徑的機率" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:139 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:139 msgid "Route all public transport input" msgstr "為所有輸入的大眾運輸進行路徑演算" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:142 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:202 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:142 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:202 msgid "Choose a route choice method: gawron, logit, or lohse" msgstr "選擇路徑指派的方法: gawron, logit, 或 lohse" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:145 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:145 msgid "Use c-logit model (deprecated in favor of --route-choice-method logit)" msgstr "使用c-logit模式 (不推薦使用指令 --route-choice-method logit)" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:149 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:149 msgid "Use FLOAT as logit's beta" msgstr "logit模式的beta參數為浮點數(float)" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:153 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:153 msgid "Use FLOAT as logit's gamma" msgstr "logit模式的gamma參數為浮點數(float)" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:157 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:157 msgid "Use FLOAT as logit's theta (negative values mean auto-estimation)" msgstr "logit模式的theta參數為浮點數(float) (負值表示此值將由模式估算)" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:160 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:580 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:160 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:586 msgid "" "Use FLOAT as a factor on pedestrian maximum speed during intermodal routing" msgstr "進行聯運指派時,行人最大行走速度的因數(factor)為浮點數(float)" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:163 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:583 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:163 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:589 msgid "" "Use FLOAT as a factor on walking speed against vehicle traffic direction" msgstr "與車行方向相反的行走速度的因數(factor)為浮點數(float)" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:170 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:590 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:170 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:596 msgid "Where taxis can drop off customers ('allJunctions, 'ptStops')" msgstr "" "計程車可讓乘客下車的地方 ('所有路口(allJunctions), '大眾運輸停靠站(ptStops)')" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:173 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:593 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:173 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:599 msgid "Where taxis can pick up customers ('allJunctions, 'ptStops')" msgstr "" "計程車可以載客的地方 ('所有路口(allJunctions), '大眾運輸停靠站(ptStops)')" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:176 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:599 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:176 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:605 msgid "Estimated time for taxi pickup" msgstr "預計的計程車接客(pickup)所需時間" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:179 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:602 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:179 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:608 msgid "" "Use FLOAT as a maximum train length when initializing the railway router" msgstr "進行鐵路路徑搜尋器初始化時,最大鐵路長度為浮點數(float)" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:216 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:216 msgid "Routing algorithm '%' does not support weight-attribute '%'." msgstr "路徑搜尋演算法 '%' 不支援權重屬性 '%'。" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:220 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:220 #, c-format msgid "Routing algorithm '%' does not support bulk routing." msgstr "路徑搜尋演算法 '%' 不支援大量(bulk)路徑搜尋 '%'。" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:228 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:243 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:228 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:243 msgid "Invalid route choice method '%'." msgstr "無效的路徑選擇方法 '%'。" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:232 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:232 msgid "" "The --logit option is deprecated, please use --route-choice-method logit." msgstr "這個選項指令--logit已不適用, 請使用 --route-choice-method logit。" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:244 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:244 msgid "Cannot derive file name for alternatives output, skipping it." msgstr "無法為替代路徑的輸出導出(derive)檔案名稱, 將跳過。" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:251 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:251 msgid "" "Option --write-trips.junctions takes no affect when --write-trips is " "disabled." msgstr "" "當指令 --write-trips 禁用時,選項指令 --write-trips.junctions 將無作用。" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:107 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:107 #, c-format msgid "Routing algorithm '%' does not support restriction-params" msgstr "路徑搜尋演算法 '%' 不支援限制參數( restriction-params)" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:151 -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:180 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:151 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:180 msgid "Unknown routing Algorithm '%'!" msgstr "未知的路徑搜尋演算法 '%'!" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:178 -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:210 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:178 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:210 msgid "No weight data was loaded for attribute '%'." msgstr "沒有與屬性 '%' 相關的權重資料被載入。" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:238 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:238 msgid "" "Shortest path router and DUE computer for the microscopic, multi-modal " "traffic simulation SUMO." -msgstr "微觀多運具模式交通模擬軟體SUMO的最短路徑搜尋器及動態交通指派均衡(DUE)計算器。" +msgstr "" +"微觀多運具模式交通模擬軟體SUMO的最短路徑搜尋器及動態交通指派均衡(DUE)計算器。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTREdge.cpp:64 +#: D:\Repos\sumo/src\jtrrouter\ROJTREdge.cpp:64 #, c-format msgid "The edges '%' and '%' are not connected." msgstr "路段'%'及路段'%'未連接。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:59 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:59 msgid "Read turning ratios from FILE(s)" msgstr "由檔案讀入轉向比率(turning ratios)" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:69 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:69 msgid "Use STR[] as default turn definition" msgstr "使用字串(STR[])作為預設的轉向(turn)定義格式" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:73 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:73 msgid "Use STR[] as list of sink edges" msgstr "使用字串(STR[])作為迄點路段(sink edges)清單的格式" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:76 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:76 msgid "Whether all edges are allowed as sink edges" msgstr "是否所有路段被允許作為迄點路段(sink edges)" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:79 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:79 msgid "Ignore road restrictions based on vehicle class" msgstr "根據車輛類別忽略道路限制" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:82 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:82 msgid "Allow to re-use a road" msgstr "允許重複使用一條道路" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:85 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:85 msgid "Use all source edges as sink edges." msgstr "將所有起點路段作為迄點路段。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:88 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:88 msgid "" "Subtract upstream flow when inserting a new flow. When option --sources-are-" "sinks is set, the upstream flow is limited to the value of the source flow " @@ -800,74 +806,74 @@ "當注入新流量時,將減去上游流量。當使用選項指令 --sources-are-sinks 時,, 上游流" "量受限於起始流量,剩餘的流量將被結束(terminates)。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:68 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:68 msgid "" "The turn-file format with elements %, % is deprecated, please use % instead." msgstr "流量轉向檔案含有內元素(element) %, % 的格式已不適用,請使用 %。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:87 -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:143 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:87 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:143 #, c-format msgid "The edge '%' declared as a sink is not known." msgstr "被宣告為迄點的路段'%'為未知路段。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:116 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:116 msgid "Ignoring flow '%' without 'from'" msgstr "忽略無屬性'from'的流量'%'" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:128 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:128 #, c-format msgid "The edge '%' declared as a source is not known." msgstr "被宣告為起點的路段'%'為未知路段。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:152 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:152 #, c-format msgid "" "The edge '%' is not known within the network (within a 'from-edge' tag)." msgstr "在路網內,路段'%'為未知路段 (在一個'from-edge'的標記(tag)內)。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:172 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:172 #, c-format msgid "The edge '%' is not known within the network (within a 'to-edge' tag)." msgstr "在路網內,路段'%'為未知路段 (在一個'to-edge'的標記(tag)內)。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:178 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:178 msgid "'probability' must be positive (in definition of to-edge '%')." msgstr "'機率(probability)' 必須為正值 (在屬性 to-edge '%' 的定義內)。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:201 -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:206 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1302 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1400 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:201 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:206 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1302 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1400 #, c-format msgid "The edge '%' is not known." msgstr "路段'%'為未知路段。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:210 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:210 msgid "'probability' must be positive (in edgeRelation from '%' to '%'." msgstr "'機率(probability)' 必須為正值 (在屬性 edgeRelation 從 '%' 到 '%'內)。" -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:94 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:94 msgid "" "The defaults for turnings must be a tuple of at least two numbers divided by " "','." msgstr "轉向值的預設值必須是一個至少兩個以逗號分隔的數字的元組(tuple)。" -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:101 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:101 msgid "A turn default is not numeric." msgstr "一個轉向的預設值不是數字。" -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:182 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:182 msgid "" "Router for the microscopic, multi-modal traffic simulation SUMO based on " "junction turning ratios." msgstr "微觀多運具模式交通模擬軟體SUMO內以路口轉向率為依據的路徑搜尋器。" -#: /home/micha/programming/sumo/src/libsumo/GUI.cpp:330 +#: D:\Repos\sumo/src\libsumo\GUI.cpp:332 msgid "This system has no OpenGL support. Exiting." msgstr "此系統不支援開放圖形語言 (OpenGL)。 退出中。" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:904 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:904 #, c-format msgid "" "Ignoring veh '%' no-opposite subscription filter for geographic range object " @@ -876,25 +882,25 @@ "針對地理範圍物件集合,忽略車輛'%'的無相反訂閱過濾器(no-opposite subscription " "filter)。考慮使用'車道(lanes)'過濾器。" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1067 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1067 msgid "" "Lanes filter is only feasible for context domain 'vehicle' (current is '%'), " "ignoring filter..." msgstr "僅適用於上下文領域'vehicle'的車道過濾器 (目前為 '%'),忽略過濾器..." -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1164 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1164 msgid "" "Turn filter is only feasible for context domain 'vehicle' (current is '%'), " "ignoring filter..." msgstr "僅適用於上下文領域'vehicle'的ˊ轉向過濾器 (目前為 '%'), 忽略過濾器..." -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1229 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1229 msgid "" "Field of vision opening angle ('%') should be within interval (0, 360), " "ignoring filter..." msgstr "視野開角('%')應在區間(0, 360)內,忽略過濾器..." -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1341 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1341 msgid "" "addSubscriptionFilterLateralDistance could not determine shape of lane '%' " "with a lateral shift of %." @@ -902,41 +908,42 @@ "新增訂閱過濾裝置的側向距離(addSubscriptionFilterLateralDistance) 無法決定具" "有 % 側向偏移的 '%' 的車道形狀。" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1399 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1399 msgid "Vehicle '%' was removed though being controlled by TraCI" msgstr "'%' 車輛受交通控制界面(TraCI)的控制而被移除" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1408 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1408 msgid "Person '%' was removed though being controlled by TraCI" msgstr "'%' 人員受交通控制界面(TraCI)的控制而被移除" -#: /home/micha/programming/sumo/src/libsumo/MeanData.cpp:83 +#: D:\Repos\sumo/src\libsumo\MeanData.cpp:83 msgid "Found % meanData definitions with id '%'." msgstr "已找到 % 平均資料(meanData)定義,其識別名(ID)為 '%'。" -#: /home/micha/programming/sumo/src/libsumo/Person.cpp:530 +#: D:\Repos\sumo/src\libsumo\Person.cpp:535 #, c-format msgid "" "Departure time=% for person '%' is in the past; using current time=% instead." msgstr "出發時間 % 發生在過去;人員為 '%';使用目前時間 % 將其取代。" -#: /home/micha/programming/sumo/src/libsumo/Person.cpp:929 -msgid "Could not determine position on lane '% at lateral position %." -msgstr "無法決定在車道 '% 上的側向位置為 % 的位置。" +#: D:\Repos\sumo/src\libsumo\Person.cpp:934 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1741 +msgid "Could not determine position on lane '%' at lateral position %." +msgstr "無法決定在車道'%'上側向位置為 % 的位置。" -#: /home/micha/programming/sumo/src/libsumo/Simulation.cpp:105 +#: D:\Repos\sumo/src\libsumo\Simulation.cpp:105 msgid "Simulation version % started via libsumo with time: %." msgstr "在時間: % 下,模擬版本 % 透過 libsumo 已啟動。" -#: /home/micha/programming/sumo/src/libsumo/Simulation.cpp:699 +#: D:\Repos\sumo/src\libsumo\Simulation.cpp:699 msgid "" "Ignoring vehicle type '%' when performing intermodal routing because it is " "not allowed on the start edge '%'." msgstr "" -"執行聯運(intermodal)路徑搜尋時忽略車輛類型 '%',其原因為開始路段 '%' " -"禁止被使用。" +"執行聯運(intermodal)路徑搜尋時忽略車輛類型 '%',其原因為開始路段 '%' 禁止被使" +"用。" -#: /home/micha/programming/sumo/src/libsumo/TrafficLight.cpp:697 +#: D:\Repos\sumo/src\libsumo\TrafficLight.cpp:697 #, c-format msgid "" "Cannot check for all deadlocks on swapConstraints because the route for " @@ -945,22 +952,22 @@ "由於車輛 '%' 的路徑尚未計算,所以無法檢查在swapConstraintsg上所有的交通死結" "(deadlocks)" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1122 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1133 msgid "" "Stop replacement parameter 'teleport=%' ignored for vehicle '%' when only " "removing stop." msgstr "當只有移除停靠點時,停靠點替換參數 'teleport=%' 將忽略車輛 '%'。" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1231 -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1354 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1246 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1374 msgid "Unsupported parameter '%'" msgstr "不支援的參數 '%'" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1306 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1326 msgid "Waypoint (speed = %) at index % does not support triggers" msgstr "索引(index)為 % 的中途停靠點(速度 = %)不支援觸發器(triggers)" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1340 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1360 msgid "" "Triggered stop at index % cannot be changed into a waypoint by setting speed " "to %" @@ -968,179 +975,176 @@ "無法透過設定速度為 % 來將索引為 % 的已觸發停靠點改變為一個中途停靠點" "(waypoint)" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1457 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1477 #, c-format msgid "Ignoring changeLaneRelative for vehicle '%' that isn't on the road" msgstr "車輛 '%' 不在道路上, 因此忽略變化車道相對參數(changeLaneRelative)" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1459 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1479 msgid "Ignoring indexOffset % for vehicle '%' on laneIndex %." msgstr "忽略在車道索引 % 上的車輛'%'的索引重設值(indexOffset) % 。" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1551 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1575 #, c-format msgid "" "Departure time for vehicle '%' is in the past; using current time instead." msgstr "車輛'%' 的開車時間已經過去; 改用目前時間。" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1717 -msgid "Could not determine position on lane '%' at lateral position %." -msgstr "無法決定在車道'%'上側向位置為 % 的位置。" - -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1914 -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:422 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1938 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:422 msgid "Invalid route replacement for vehicle '%'. %" msgstr "車輛 '%' 的替代路徑無效。 %" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:2597 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:2634 msgid "" "Ignoring lane change subscription filter with non-neighboring lane offset " "direction=%." msgstr "" "忽略具有非相鄰車道偏移方向=%的車道變換訂閱過濾器(subscription filter)。" -#: /home/micha/programming/sumo/src/libsumo/VehicleType.cpp:289 +#: D:\Repos\sumo/src\libsumo\VehicleType.cpp:322 #, c-format msgid "Automatically setting emergencyDecel to % for vType '%' to match decel." -msgstr "自動將緊急減速度(emergencyDecel)設置為 % 以匹配減速度(decel)。車輛類型(vType)" +msgstr "" +"自動將緊急減速度(emergencyDecel)設置為 % 以匹配減速度(decel)。車輛類型(vType)" "為 '%'。" -#: /home/micha/programming/sumo/src/libsumo/VehicleType.cpp:301 +#: D:\Repos\sumo/src\libsumo\VehicleType.cpp:334 msgid "New value of emergencyDecel (%) is lower than decel (%)" msgstr "緊急減速度 (%) 的新值低於減速度 (%)" -#: /home/micha/programming/sumo/src/marouter/ROMAAssignments.cpp:190 +#: D:\Repos\sumo/src\marouter\ROMAAssignments.cpp:190 msgid "Unknown origin '%'." msgstr "未知出發點(origin) '%'。" -#: /home/micha/programming/sumo/src/marouter/ROMAAssignments.cpp:194 +#: D:\Repos\sumo/src\marouter\ROMAAssignments.cpp:194 msgid "Unknown destination '%'." msgstr "未知目的地(destination) '%'。" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:71 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:121 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:71 +#: D:\Repos\sumo/src\od2trips_main.cpp:121 msgid "Does not save vtype information" msgstr "不儲存車輛類型(vtype)資訊" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:74 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:74 msgid "Writes edge loads and final costs into FILE" msgstr "將路段交通量及最後成本寫入檔案內" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:77 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:77 msgid "Writes complete distance matrix into FILE" msgstr "將完整的距離矩陣寫入檔案內" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:81 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:85 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:81 +#: D:\Repos\sumo/src\od2trips_main.cpp:85 msgid "Loads O/D-files from FILE(s)" msgstr "從檔案載入交通起迄矩陣檔案(O/D-files)" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:86 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:90 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:86 +#: D:\Repos\sumo/src\od2trips_main.cpp:90 msgid "Loads O/D-matrix in Amitran format from FILE(s)" msgstr "從檔案載入以Amitran為格式的交通起迄矩陣檔案(O/D-files)" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:89 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:93 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:89 +#: D:\Repos\sumo/src\od2trips_main.cpp:93 msgid "Loads O/D-matrix in tazRelation format from FILE(s)" msgstr "從檔案載入以分區關係(tazRelation)為格式的交通起迄矩陣檔案(O/D-files)" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:93 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:97 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:93 +#: D:\Repos\sumo/src\od2trips_main.cpp:97 msgid "Define data attribute for loading counts (default 'count')" msgstr "定義載入計數(loading counts)的資料屬性(預設值為'計數(count)')" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:96 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:96 msgid "The travel time influence of prior intervals" msgstr "先前時間區間的旅行時間影響" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:99 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:99 msgid "Parameter key(s) defining source (and sink) taz" msgstr "用於定義起點(及迄點)交通分區的參數鍵(parameter key(s))" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:102 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:102 msgid "Ignore attributes 'fromTaz' and 'toTaz'" msgstr "忽略'從交通分區(fromTaz)'及'到交通分區(toTaz)'屬性" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:106 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:106 msgid "" "Defines the time interval when aggregating single vehicle input; Defaults to " "one hour" msgstr "定義彙總單個車輛輸入值的時間區間; 預設為一小時" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:109 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:109 msgid "Ignore edge priorities when calculating capacities and restraints" msgstr "計算容量和限制(constraints)時,忽略路段優先級別(priorities)" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:115 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:115 msgid "" "Aggregate routing queries with the same origin for different vehicle types" msgstr "彙總(aggregate)具有相同起點的不同車輛類型的路線查詢" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:153 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:137 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:153 +#: D:\Repos\sumo/src\od2trips_main.cpp:137 msgid "Scales the loaded flows by FLOAT" msgstr "按 (浮點數)FLOAT 縮放載入的流量類型" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:156 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:146 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:156 +#: D:\Repos\sumo/src\od2trips_main.cpp:146 msgid "Defines the name of the vehicle type to use" msgstr "定義要使用的車輛類型的名稱" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:159 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:159 msgid "Defines the prefix for vehicle flow names" msgstr "定義要使用的車流類型名稱的字首(prefix)" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:162 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:152 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:162 +#: D:\Repos\sumo/src\od2trips_main.cpp:152 msgid "Uses STR[] as a timeline definition" msgstr "使用字串(STR[])作為時間線(timeline)定義類型" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:165 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:155 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:165 +#: D:\Repos\sumo/src\od2trips_main.cpp:155 msgid "Uses STR as a 24h-timeline definition" msgstr "使用字串(STR[])作為24小時的時間線(timeline)定義類型" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:168 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:168 msgid "Keep traffic flows of all time slots in the net" msgstr "保持網內所有時間段(time slot)的流量" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:172 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:172 msgid "Choose a assignment method: incremental, UE or SUE" msgstr "" "選擇一個交通指派的方法:逐量增加(incremental),使用者均衡(UE)或隨機使用者均衡" "(SUE)" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:175 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:175 msgid "Use FLOAT as tolerance when checking for SUE stability" msgstr "檢查隨機使用者均衡(SUE)穩定程度時,使用浮點數(FLOAT)作為容忍值類型" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:178 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:178 msgid "" "Use left-turn penalty FLOAT to calculate link travel time when searching " "routes" msgstr "當搜索路徑時,使用左轉懲罰值(浮點數 FLOAT)計算路段旅行時間" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:181 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:181 msgid "" "Use INTEGER as the number of paths needed to be searched for each OD pair at " "each iteration" msgstr "" "使用整數(INTEGER)作為每次疊代時每個起迄配對(OD pair)需要搜索的路徑數量類型" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:184 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:184 msgid "Penalize existing routes with FLOAT to find secondary routes" msgstr "現有路徑的懲罰值(浮點數 FLOAT)以找到次要路徑(secondary routes)" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:188 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:188 msgid "Use FLOAT as the upper bound to determine auxiliary link cost" msgstr "使用浮點數(FLOAT)作為決定輔助路段成本的上限值類型" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:192 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:192 msgid "Use FLOAT as the lower bound to determine auxiliary link cost" msgstr "使用浮點數(FLOAT)作為決定輔助路段成本的下限值類型" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:195 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:195 msgid "" "maximal number of iterations for new route searching in incremental and " "stochastic user assignment" @@ -1148,132 +1152,132 @@ "使用逐量增加(incremental)和隨機使用者均衡(SUE)交通指派方法搜索新路徑的最大疊" "代次數" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:198 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:198 msgid "" "maximal number of inner iterations for user equilibrium calculation in the " "stochastic user assignment" msgstr "" "使用隨機使用者均衡(SUE)交通指派方法進行使用者均衡計算的最大內部疊代次數" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:223 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:223 msgid "Use FLOAT as (c-)logit's beta for the commonality factor" msgstr "使用浮點數(FLOAT)作為(c-)logit路徑選擇法內的通用因數內的參數beta的類型" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:227 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:227 msgid "Use FLOAT as (c-)logit's gamma for the commonality factor" msgstr "" "使用浮點數(FLOAT)作為(c-)logit路徑選擇法內的通用因數內的參數gamma的類型" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:231 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:231 msgid "Use FLOAT as (c-)logit's theta" msgstr "" "使用浮點數(FLOAT)作為(c-)logit路徑選擇法內的通用因數內的參數theta的類型" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:239 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:239 msgid "Invalid assignment method '%'." msgstr "無效的交通指派方法 '%'。" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:247 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:247 msgid "" "Contraction hierarchies do not work with k shortest path search (please use " "a different routing algorithm)!" msgstr "收縮層次結構不適用於 k 最短路徑搜索(請使用不同的路徑搜索演算法)!" -#: /home/micha/programming/sumo/src/marouter/ROMARouteHandler.cpp:87 +#: D:\Repos\sumo/src\marouter\ROMARouteHandler.cpp:87 msgid "No origin or no destination given, ignoring '%'!" msgstr "沒有給定起點或迄點,忽略 '%'!" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:239 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:239 msgid "" "Deterministic user equilibrium ('UE') is not implemented yet, using " "stochastic method ('SUE')." msgstr "使用隨機使用者均衡('SUE')交通指派方法,確定性使用者均衡('UE')尚未建置。" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:323 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:315 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:323 +#: D:\Repos\sumo/src\od2trips_main.cpp:315 msgid "No output file given." msgstr "沒有提供輸出文件。" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:340 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:340 msgid "" "Import O/D-matrices for macroscopic traffic assignment to generate SUMO " "routes." msgstr "輸入旅次起迄矩陣(O/D-matrices)以進行巨觀交通指派及產生SUMO路徑。" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:376 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:376 msgid "No districts loaded, will use edge ids!" msgstr "未載入交通分區(districts),將使用路段識別名(ids)!" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:387 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:387 msgid "No valid vehicles loaded." msgstr "未載入有效的車輛。" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:390 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:285 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:390 +#: D:\Repos\sumo/src\od2trips_main.cpp:285 msgid "Loading failed." msgstr "載入失敗。" -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:89 -#: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:66 -#: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:184 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:89 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:66 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:185 msgid "Vehicle '%' teleports beyond arrival edge '%', time=%." msgstr "車輛 '%' 被傳送(teleport)超出抵達路段 '%', 時間=%。" -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:109 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:109 msgid "Vehicle '%' ends teleporting on edge '%':%, time=%." msgstr "車輛 '%' 被傳送(teleport)到路段 '%':% 上並結束行程,時間=%。" -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:167 -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:197 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:167 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:197 msgid "Teleporting vehicle '%'; waited too long, from edge '%':%, time=%." msgstr "正在傳送(teleporting)車輛 '%';等待太久,從路段 '%':%, 時間=%。" -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:187 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:187 msgid "" "Teleporting vehicle '%'; waited too long, from edge '%':% to edge '%':%, " "time=%." -msgstr "正在傳送(teleporting)車輛 '%';等待太久,從路段 '%':% 到路段 '%':%," -"時間=%。" +msgstr "" +"正在傳送(teleporting)車輛 '%';等待太久,從路段 '%':% 到路段 '%':%,時間=%。" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:137 -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:603 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:137 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:603 msgid "Clearing jam at calibrator '%' at time=%." msgstr "清除校估器(calibrator) '%' 處的壅塞; 時間=%。" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:145 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:145 msgid "Could not clear jam at calibrator '%' at time=%." msgstr "無法清除校估器(calibrator) '%' 處的壅塞; 時間=%。" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:177 -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:414 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:177 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:414 msgid "No valid routes in calibrator '%'." msgstr "校估器(calibrator) '%' 沒有效路徑。" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:181 -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:418 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:181 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:418 msgid "Route '%' in calibrator '%' does not contain edge '%'." msgstr "校估器(calibrator)的路徑 '%' 內沒有路段 '%'; 校估器為 '%'。" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:220 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:220 msgid "Join stops are not available in meso yet (vehicle '%', segment '%')." msgstr "" "在中觀交通模擬(meso)內,整合停靠點(join stops)尚不可用(車輛 '%', 路段 '%')。" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:247 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:247 msgid "" "Vehicle '%' has multiple stops on segment '%', time=% (stop-output will be " "merged)." msgstr "車輛 '%' 在路段 '%' 上有多個停靠點,時間=% (停靠點輸出將會被整合)。" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:370 -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1669 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:370 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1656 #, c-format msgid "" "Vehicle '%' ignores triggered stop on lane '%' due to capacity constraints." msgstr "受到容量限制,車輛 '%' 忽略在車道 '%' 上觸發的停靠點(triggered stop)。" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:387 -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1684 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:387 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1671 #, c-format msgid "" "Vehicle '%' ignores container triggered stop on lane '%' due to capacity " @@ -1282,172 +1286,167 @@ "受到容量限制,車輛 '%' 忽略在車道 '%' 上觸發的貨櫃停靠點(container triggered " "stop)。" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:554 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:554 msgid "Error: Invalid vehicles in state (may be a micro state)!" msgstr "錯誤:狀態中有無效車輛(可能是在微觀狀態)!" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.h:188 -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.h:194 -msgid "parkingZoneReroute not implemented for meso" -msgstr "中觀模擬內尚未建置停車區域內重新導引路徑的函數(parkingZoneReroute)" - -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:172 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:172 msgid "Changing a vehicle ID is not permitted" msgstr "不允許改變車輛的識別名(ID)" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:289 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:289 msgid "Vehicle '%' is not allowed on any lane of via edge '%'." msgstr "車輛 '%' 不允許在路段 '%' 上的任一車道上。" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:317 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:317 msgid "Vehicle '%' has no valid route from edge '%' to stop edge '%'." msgstr "車輛 '%' 從路段 '%' 到停止的路段 '%' 沒有有效路徑。" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:361 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:361 #, c-format msgid "Vehicle '%' has no valid route." msgstr "車輛 '%' 沒有有效路徑。" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:363 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:363 msgid "Removing vehicle '%' which has no valid route." msgstr "移除沒有有效路徑的車輛 '%'。" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:377 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:377 #, c-format msgid "No route for vehicle '%' found." msgstr "無法為車輛 '%' 找到路徑。" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:447 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:447 #, c-format msgid "current edge '%' not found in new route" msgstr "在新路徑中找不到目前的路段 '%'" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:460 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:460 msgid "Vehicle is on junction-internal edge leading elsewhere" msgstr "車輛在路口內銜接到其他路段的內部路段" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:473 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:473 msgid "" "Vehicle is moving past junction and committed to move to another successor " "edge" msgstr "車輛正駛過路口並將移動到另一個後續路段" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:543 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:543 msgid "Vehicle '%' could not assign stop '%' after rerouting (%) at time=%." msgstr "車輛 '%' 無法指派到停靠點'%',其發生在重新導引路徑 (%) 後,; 時間=% 。" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:683 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:683 msgid "No connection between edge '%' and edge '%'." msgstr "路段 '%' 和路段 '%' 之間未連接。" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:692 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:692 #, c-format msgid "Edge '%' prohibits." msgstr "禁止使用路段 '%'。" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:706 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:706 #, c-format msgid "Vehicle '%' is not allowed to depart on its first edge." msgstr "車輛 '%' 不允許在其第一個路段上出發。" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:736 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:736 msgid "Vehicle '%' has no valid route. %" msgstr "車輛 '%' 無有效路徑。 %" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:799 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:799 msgid "" "Vehicle '%' ignores attribute arrivalEdge=% after rerouting at time=% " "(routeLength=%)" msgstr "" -"車輛 '%' 忽略屬性抵達路段(arrivalEdge)= % 其發生在時間=% 的重新導引路徑後" -"(路段長度(routeLength)=%)" +"車輛 '%' 忽略屬性抵達路段(arrivalEdge)= % 其發生在時間=% 的重新導引路徑後(路" +"段長度(routeLength)=%)" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:813 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:813 msgid "Vehicle '%' will not be able to arrive at the given position!" msgstr "車輛 '%' 將無法抵達給定的位置!" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:833 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:833 msgid "Vehicle '%' will not be able to arrive at the given lane '%_%'!" msgstr "車輛 '%' 將無法抵達給定的車道 '%_%'!" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:845 -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:857 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:845 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:857 msgid "Vehicle '%' has no usable arrivalLane on edge '%'." msgstr "車輛 '%' 在路段 '%' 上沒有可使用的抵達車道(arrivalLane)。" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:869 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:869 msgid "Vehicle '%' will not be able to arrive with the given speed!" msgstr "車輛 '%' 將無法以給定的速度抵達!" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:885 -msgid "Ignoring departEdge % for vehicle '% with % route edges" -msgstr "忽略出發路段(departEdge) %,其發生在車輛 '%' 的 % 路徑路段" +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:885 +msgid "Ignoring departEdge % for vehicle '%' with % route edges" +msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.h:879 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.h:909 msgid "getLeader not yet implemented for meso" msgstr "中觀模擬內尚未建置得到領導車輛的函數(getLeader)" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.h:893 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.h:923 msgid "getFollower not yet implemented for meso" msgstr "中觀模擬內尚未建置得到跟隨車輛的函數(getFollower)" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:660 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:660 msgid "" "Choosing new speed factor % for vehicle '%' to match departure speed % (max " "%)." msgstr "" -"選擇新的速度係數(speed factor) % 給車輛 '%' 使用,以符合出發速度 % " -"(最大值 %)。" +"選擇新的速度係數(speed factor) % 給車輛 '%' 使用,以符合出發速度 % (最大值 " +"%)。" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1264 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1264 #, c-format msgid "Bidi-edge '%' does not exist" msgstr "雙向路段(Bidi-edge) '%' 不存在" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1277 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1277 msgid "Ambiguous superposable edges between junction '%' and '%'." msgstr "路口 '%' 和 '%' 之間不明確的可疊加路段(superposable edges)。" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1308 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1308 #, c-format msgid "Edge '%s' and bidi edge '%s' have no matching bidi lanes" msgstr "路段'%s'和雙向路段(bidi edge)'%s'沒有符合的雙向車道(bidi lanes)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:78 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:78 msgid "Load road network description from FILE" msgstr "從檔案載入道路路網描述" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:83 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:83 msgid "Load routes descriptions from FILE(s)" msgstr "從檔案載入路徑描述" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:87 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:87 msgid "Load further descriptions from FILE(s)" msgstr "從檔案載入進一步的描述" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:91 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:91 msgid "Load edge/lane weights for online rerouting from FILE" msgstr "從檔案載入路段/車道權重以作為即時路徑導引使用" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:94 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:108 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:94 +#: D:\Repos\sumo/src\router\ROFrame.cpp:108 msgid "Name of the xml attribute which gives the edge weight" msgstr "用於給予權重的可延伸標示語言詞彙(xml)屬性名稱" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:97 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:97 msgid "Loads a network state from FILE" msgstr "從檔案載入路網狀態" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:99 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:99 msgid "Shifts all times loaded from a saved state by the given offset" msgstr "根據給定的偏移量(offset),移動從儲存狀態載入的所有時間" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:101 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:101 msgid "Removes vehicles with the given IDs from the loaded state" msgstr "從載入狀態內移除指定識別名(IDs)的車輛" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:104 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:134 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:104 +#: D:\Repos\sumo/src\router\ROFrame.cpp:134 msgid "" "Initialize a TAZ for every junction to use attributes toJunction and " "fromJunction" @@ -1455,132 +1454,132 @@ "使用到路口(toJunction)和從路口(fromJunction)將每個路口初始化為一個交通分區" "(TAZ)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:114 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:114 msgid "Save complete network states into FILE" msgstr "將完整的路網狀態儲存到檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:119 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:119 msgid "Write also empty edges completely when dumping" msgstr "在傾卸時,也將空路段(empty edges)資料完全寫出" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:124 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:124 msgid "Write positions and speeds with the given precision (default 2)" msgstr "根據給定的精確度數,寫出位置及速度(預設值為 2)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:128 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:128 msgid "Save the emission values of each vehicle" msgstr "儲存每一個車輛的排放物數量" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:130 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:130 msgid "Write emission values with the given precision (default 2)" msgstr "根據給定的精確度數(precision),寫出排放物數量(預設值為2)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:132 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:132 msgid "Save the positions in emission output using geo-coordinates (lon/lat)" msgstr "使用地理坐標儲存在排放物輸出檔案內的位置 (經度(lon)/緯度(lat))" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:135 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:135 msgid "" "Write emission values scaled to the step length rather than as per-second " "values" msgstr "寫出按步長時間縮放(scaled)的排放物數值,而不是每秒的數值" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:138 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:138 msgid "Save the battery values of each vehicle" msgstr "儲存每輛車的電池數值" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:140 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:140 msgid "Write battery values with the given precision (default 2)" msgstr "以給定的精確度數寫出電池數值(預設值為 2)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:143 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:143 msgid "Save the elecHybrid values of each vehicle" msgstr "儲存每輛車的電動混合車(elecHybrid)的數值" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:145 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:145 msgid "Write elecHybrid values with the given precision (default 2)" msgstr "以給定的精確度數寫出電動混合車的數值(預設值為 2)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:147 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:147 msgid "Write elecHybrid values into one aggregated file" msgstr "將電動混合車的(elecHybrid)值寫入於一個整合的檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:150 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:150 msgid "Write data of charging stations" msgstr "寫出充電站資料" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:153 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:153 msgid "Write data of overhead wire segments" msgstr "寫出架空線段資料" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:156 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:156 msgid "Write data of electrical substation stations" msgstr "寫出變電站資料" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:158 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:158 msgid "Write substation values with the given precision (default 2)" msgstr "以給定的精確度數寫出變電站數值(預設值為 2)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:161 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:161 msgid "Save the Floating Car Data" msgstr "儲存浮動車資料" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:163 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:163 msgid "Save the Floating Car Data using geo-coordinates (lon/lat)" msgstr "使用地理坐標儲存浮動車資料 (經度(lon)/緯度(lat))" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:165 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:165 msgid "Add the vehicle signal state to the FCD output (brake lights etc.)" msgstr "將車輛信號狀態加入到浮動車(FCD)輸出檔案內(剎車燈等)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:167 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:167 msgid "Add kilometrage to the FCD output (linear referencing)" msgstr "將公里數加入到浮動車(FCD)輸出檔案內(線性參考(linear referencing))" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:169 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:169 msgid "Add acceleration to the FCD output" msgstr "將加速度加入到浮動車(FCD)輸出檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:171 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:171 msgid "" "Add leader vehicle information to the FCD output (within the given distance)" msgstr "" "將前導車(leader vehicle)資訊加入到浮動車(FCD)輸出檔案內(在給定的距離內)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:173 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:173 msgid "Add generic parameter values to the FCD output" msgstr "通用參數值加入到浮動車(FCD)輸出檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:175 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:175 msgid "Restrict fcd output to the edge selection from the given input file" msgstr "浮動車(FCD)輸出僅限於在給定輸入文件內所選擇的路段上" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:177 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:177 msgid "List attributes that should be included in the FCD output" msgstr "列出應包含在浮動車(FCD)輸出檔案內的屬性" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:179 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:179 msgid "List shape names that should be used to filter the FCD output" msgstr "列出應用於過濾浮動車(FCD)輸出的形狀(shape)名稱" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:182 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:182 msgid "" "Restrict SSM device output to the edge selection from the given input file" msgstr "安全替代量測指標(SSM)輸出僅限於在給定輸入文件內所選擇的路段上" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:185 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:185 msgid "Save a lot of information for each timestep (very redundant)" msgstr "儲存每個時間步長的大量信息(非常冗餘)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:188 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:188 msgid "Save the vehicle queues at the junctions (experimental)" msgstr "儲存路口的車輛停等列(queues)(實驗性)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:190 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:190 msgid "Save vehicle queues with the given period" msgstr "儲存指定時間區間內的車輛停等列(queues)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:193 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:193 msgid "" "Save complete vehicle positions inclusive speed values in the VTK Format " "(usage: /path/out will produce /path/out_$TIMESTEP$.vtp files)" @@ -1588,217 +1587,217 @@ "依據VTK(Visualization ToolKit)格式儲存完整的車輛位置,包含速度值(用法:在 /" "path/out 將產生 /path/out_$TIMESTEP$.vtp 檔案)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:195 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:195 msgid "Save the vehicle trajectories in the Amitran format" msgstr "依據Amitran格式儲存車輛軌跡(trajectories)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:200 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:200 msgid "Save aggregated vehicle departure info into FILE" msgstr "將整合的車輛出發資訊儲存於檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:203 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:203 msgid "Save summary-output with the given period" msgstr "儲存指定時間區間內的摘要輸出(summary-output)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:206 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:206 msgid "Save aggregated person counts into FILE" msgstr "將彙總的人員數(person counts)儲存於檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:210 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:210 msgid "Save single vehicle trip info into FILE" msgstr "將單一車輛旅次資訊儲存於檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:213 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:213 msgid "" "Write tripinfo output for vehicles which have not arrived at simulation end" msgstr "將在模擬結束時,尚未到達目的地的車輛的旅次訊息(tripinfo)寫入輸出檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:216 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:216 msgid "" "Write tripinfo output for vehicles which have not departed at simulation end " "because of depart delay" msgstr "" "將因出發延遲而在模擬結束時尚未出發的車輛的旅次訊息(tripinfo)寫入輸出檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:220 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:220 msgid "Save personinfo and containerinfo to separate FILE" msgstr "將人員資訊及貨櫃資訊存入單獨的檔案" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:224 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:224 msgid "Save single vehicle route info into FILE" msgstr "將單一車輛的路徑資訊儲存於檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:228 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:228 msgid "Write the exit times for all edges" msgstr "將車輛在所有路段的離開時間(exit times)寫入檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:232 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:232 msgid "Write the last route only" msgstr "只寫出最後的路徑" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:236 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:236 msgid "Sorts the output by departure time" msgstr "將輸出依照出發時間排序" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:240 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:240 msgid "Write the output in the duarouter alternatives style" msgstr "將輸出依據duarouter替代路徑的格式寫出" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:243 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:243 msgid "Write costs for all routes" msgstr "寫出所有路徑的成本" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:247 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:247 msgid "Write the output with the intended instead of the real departure time" msgstr "將預期而不是實際的出發時間寫入輸出檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:254 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:254 msgid "" "Write vehroute output for vehicles which have not arrived at simulation end" msgstr "將在模擬結束時,尚未到達目的地的車輛寫入車輛路徑(vehroute)輸出檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:257 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:257 msgid "Skip vehroute output for public transport vehicles" msgstr "跳過公共交通車輛的車輛路徑(vehroute)輸出" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:260 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:260 msgid "Include invalid routes and route stubs in vehroute output" msgstr "將無效的路徑及路徑起迄點(from-to)納入於車輛路徑(vehroute)輸出檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:263 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:263 msgid "Include information about edges between stops" msgstr "包含停靠點之間的路段的資訊" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:266 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:266 msgid "" "Write the vehicle speedFactor (defaults to 'true' if departSpeed is written)" msgstr "寫入車輛速度因數(speedFactor)(如果寫入departSpeed,則預設值為'true')" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:269 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:269 msgid "Include internal edges in the output" msgstr "在輸出內包含內部路段(internal edges)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:273 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:273 msgid "Save person and container routes to separate FILE" msgstr "將人員及貨櫃的路徑儲存於分別檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:276 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:276 msgid "Save links states into FILE" msgstr "將路段狀態儲存於檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:279 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:279 msgid "Save railsignal-blocks into FILE" msgstr "將鐵路號誌區塊(railsignal-blocks)儲存於檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:282 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:282 msgid "" "Save bluetooth visibilities into FILE (in conjunction with device.btreceiver " "and device.btsender)" msgstr "將藍牙可見性儲存於檔案內(結合 device.btreceiver 和 device.btsender)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:285 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:285 msgid "Record lane changes and their motivations for all vehicles into FILE" msgstr "將所有車輛的車道變換及相關的動機記錄於檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:288 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:288 msgid "Record start of lane change manoeuvres" msgstr "記錄變換車道操作的開始" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:291 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:291 msgid "Record end of lane change manoeuvres" msgstr "記錄變換車道操作的結束" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:294 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:294 msgid "Record coordinates of lane change manoeuvres" msgstr "記錄變換車道操作的座標" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:297 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:297 msgid "" "Record stops and loading/unloading of passenger and containers for all " "vehicles into FILE" msgstr "將所有車輛的上下車乘客和貨櫃箱裝卸記錄到檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:299 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:299 msgid "Write stop output for stops which have not ended at simulation end" msgstr "將在模擬結束時,尚未結束的停止點(stops)寫入停止(stop)輸出檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:302 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:302 msgid "Write collision information into FILE" msgstr "將車輛碰撞(collision)資訊寫入檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:305 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:305 msgid "Write aggregated traffic statistics for all edges into FILE" msgstr "將所有路段的彙總交通統計寫入檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:307 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:307 msgid "Write aggregated traffic statistics for all lanes into FILE" msgstr "將所有車道的匯總交通統計寫入檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:311 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:311 msgid "Write overall statistics into FILE" msgstr "將總體統計寫入檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:315 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:315 msgid "Save movereminder states of selected vehicles into FILE" msgstr "將所選車輛的移動提醒狀態(movereminder states)儲存到檔案內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:317 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:317 msgid "List of vehicle ids which shall save their movereminder states" msgstr "應儲存其移動提醒狀態(movereminder states)的車輛的識別名(ID)列表" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:321 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:321 msgid "Use TIME[] as times at which a network state written" msgstr "使用 TIME[] 作為寫入路網狀態(state)的時間" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:323 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:323 msgid "save state repeatedly after TIME period" msgstr "在 TIME 時間區段後,重複地儲存狀態(state)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:325 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:325 msgid "Keep only the last INT periodic state files" msgstr "只保留最後的整數(INT 週期狀態檔案" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:327 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:327 msgid "Prefix for network states" msgstr "路網狀態的字首(prefix)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:329 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:329 msgid "Suffix for network states (.xml.gz or .xml)" msgstr "路網狀態的字尾(suffix)(.xml.gz 或 .xml)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:331 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:331 msgid "Files for network states" msgstr "路網狀態檔案" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:333 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:333 msgid "Save random number generator states" msgstr "儲存隨機數產生器狀態" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:335 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:335 msgid "Save person and container states (experimental)" msgstr "儲存人員和貨櫃狀態(實驗性)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:337 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:337 msgid "Save rail signal constraints" msgstr "儲存鐵路號誌限制條件" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:339 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:339 msgid "Write internal state values with the given precision (default 2)" msgstr "以給定的精確度數寫入內部狀態值(預設值為 2)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:343 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:343 msgid "Defines the begin time in seconds; The simulation starts at this time" msgstr "定義開始時間(以秒為單位);模擬於此時間開始" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:346 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:346 msgid "Defines the end time in seconds; The simulation ends at this time" msgstr "定義結束時間(以秒為單位);模擬於此時間結束" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:349 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:349 msgid "Defines the step duration in seconds" msgstr "以秒為單位定義步長持續時間" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:352 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:352 msgid "" "Whether to use ballistic method for the positional update of vehicles " "(default is a semi-implicit Euler method)." @@ -1806,67 +1805,79 @@ "是否使用彈道法(ballistic method)進行車輛位置更新(預設值為半隱式歐拉法(semi-" "implicit Euler method))。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:355 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:355 msgid "" "Whether vehicles that depart between simulation steps should extrapolate the " "depart position" msgstr "在模擬步長(steps)之間出發的車輛是否應該推斷(extrapolate)其離開位置" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:358 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:358 msgid "Defines the number of threads for parallel simulation" msgstr "定義用於平行模擬的執行緒數量(number of threads)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:361 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:361 msgid "" "Defines the resolution in m when handling lateral positioning within a lane " "(with -1 all vehicles drive at the center of their lane" msgstr "" "定義在處理車道內橫向定位時,以米為單位的解析度(-1 表示所有車輛都在車道中心行駛" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:365 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:142 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:365 +#: D:\Repos\sumo/src\router\ROFrame.cpp:142 msgid "Load routes for the next number of seconds ahead" msgstr "提前載入接下來幾秒的路徑" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:368 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:145 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:368 +#: D:\Repos\sumo/src\router\ROFrame.cpp:145 msgid "Disable (junction) internal links" msgstr "禁用(路口)內部路段" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:371 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:371 msgid "" "Ignore vehicles which block the junction after they have been standing for " "SECONDS (-1 means never ignore)" msgstr "忽略在等待 秒(SECONDS)後阻塞路口的車輛 (-1 表示絕不忽略)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:374 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:374 msgid "Do not check whether routes are connected" msgstr "不檢查路徑是否連通" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:377 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:377 msgid "Do not check whether accidents occur" msgstr "不檢查車禍是否發生" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:380 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:380 msgid "How to deal with collisions: [none,warn,teleport,remove]" msgstr "如何處理碰撞: [無(none),警告(warn),移送(teleport),移除(remove)]" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:383 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:383 +msgid "" +"How to deal with collisions between vehicle and pedestrian: [none,warn," +"teleport,remove]" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:386 msgid "" "Let vehicle stop for TIME before performing collision.action (except for " "action 'none')" msgstr "" "在執行collision.action(動作'無(none)'除外)之前讓車輛停止的時間長度 TIME" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:386 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:389 +msgid "" +"Let vehicle stop for TIME before performing intermodal-collision.action " +"(except for action 'none')" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:392 msgid "Enables collisions checks on junctions" msgstr "啟用在路口處的碰撞檢查" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:389 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:395 msgid "Increase or decrease sensitivity for junction collision check" msgstr "增加或減少路口碰撞檢查的敏感度(sensitivity)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:392 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:398 msgid "" "Sets the fraction of minGap that must be maintained to avoid collision " "detection. If a negative value is given, the carFollowModel parameter is used" @@ -1874,25 +1885,25 @@ "設定必須保持以避免碰撞檢測的最小間距(minGap)的分數(fraction)。如果是負值,則" "使用跟車模式(carFollowModel)參數" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:395 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:401 msgid "Delay vehicle insertion to stay within the given maximum number" msgstr "延遲車輛的注入(insertion)以保持在給定的最大數量內" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:398 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:404 msgid "" "Abort the simulation if the given maximum number of teleports is exceeded" msgstr "如果超過給定的最大傳送(teleports)次數,則中止模擬" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:401 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:407 msgid "" "Scale demand by the given factor (by discarding or duplicating vehicles)" msgstr "按給定因數(factor)縮放(scale)需求(通過丟棄或複制車輛)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:404 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:410 msgid "Suffix to be added when creating ids for cloned vehicles" msgstr "當建立識別名(ids)給複製的車輛時,需增加的字尾(suffix)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:407 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:413 msgid "" "Specify how long a vehicle may wait until being teleported, defaults to 300, " "non-positive values disable teleporting" @@ -1900,75 +1911,75 @@ "指定車輛在被傳送(teleported)前可能等待的時間,預設值為300, 非正值表示禁用傳送" "(teleporting)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:410 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:416 msgid "" "The waiting time after which vehicles on a fast road (speed > 69km/h) are " "teleported if they are on a non-continuing lane" msgstr "" "車輛在快速道路(速度 > 69 公里/小時)且非連續車道上在被傳送前的等待時間" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:413 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:419 msgid "" "The waiting time after which vehicles on a fast road (default: speed > 69km/" "h) are teleported if they are on a non-continuing lane" msgstr "" "車輛在快速道路(預設值: 速度>69公里/小時)且非連續車道上在被傳送前的等待時間" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:416 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:422 msgid "" "The waiting time after which vehicles with a disconnected route are " "teleported. Negative values disable teleporting" msgstr "車輛在不連通路徑上在被傳送(teleported)前的等待時間。負值表示禁用傳送" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:419 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:425 msgid "" "Whether vehicles shall be removed after waiting too long instead of being " "teleported" msgstr "車輛是否應在等待太久後被移除而不是被傳送(teleported)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:422 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:428 msgid "" "The waiting time after which persons / containers waiting for a pickup are " "teleported. Negative values disable teleporting" msgstr "" "等待被接送的人員/貨櫃在被傳送(teleported)前的等待時間。負值表示禁用傳送" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:425 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:431 msgid "" "The waiting time after which vehicles on bidirectional edges are teleported" msgstr "在雙向(bidirectional)路段上的車輛在被傳送(teleported)前的等待時間" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:428 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:434 msgid "" "Length of time interval, over which accumulated waiting time is taken into " "account (default is 100s.)" msgstr "考慮的累積等待時間的時間間隔長度(預設值為 100 秒。)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:431 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:437 msgid "Minimum consecutive waiting time before applying startupDelay" msgstr "在應用開始延遲(startupDelay)之前的最短連續等待時間" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:434 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:440 msgid "" "How long vehicles wait for departure before being skipped, defaults to -1 " "which means vehicles are never skipped" msgstr "車輛在被跳過之前等待出發的時間,預設值為 -1,此表示車輛永遠不會被跳過" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:437 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:443 msgid "" "Whether insertion on an edge shall not be repeated in same step once failed" msgstr "一旦失敗,是否將車輛在同一步長(step)內重複地注入(insert)路段上" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:440 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:446 msgid "Whether each vehicle is checked separately for insertion on an edge" msgstr "是否分別檢查每輛車是否注入(insert)在路段上" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:443 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:449 msgid "" "Allow inserting a vehicle in a situation which requires emergency braking" msgstr "允許在需要緊急剎車的情況下,將車輛注入(insert)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:446 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:452 msgid "" "Each vehicle receives a random offset to its depart value drawn uniformly " "from [0, TIME]" @@ -1976,44 +1987,44 @@ "每輛車都會收到一個其出發時間的隨機偏移量,此值將從 [0, TIME] 均勻地" "(uniformly)抽取" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:449 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:455 msgid "Duration of a lane change maneuver (default 0)" msgstr "變換車道操作的持續時間(預設值為 0)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:452 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:458 msgid "Whether overtaking on the right on motorways is permitted" msgstr "高速公路上是否允許右側超車" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:455 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:461 msgid "Switches off all traffic lights." msgstr "關閉所有交通號誌。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:458 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:464 msgid "Sets default visibility for actuation detectors" msgstr "設定觸動偵測器(actuated detectors)的預設可見性(default visibility)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:461 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:467 msgid "Sets default jam-threshold parameter for all actuation detectors" msgstr "" "設定所有觸動偵測器(actuated detectors)的預設壅塞閾值(jam-threshold)參數" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:464 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:470 msgid "Sets default detector length parameter for all actuation detectors" msgstr "設定所有觸動偵測器(actuated detectors)的預設偵測器長度參數" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:467 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:473 msgid "Sets default range for detecting delayed vehicles" msgstr "設定用於偵測出延遲車輛的預設範圍值(default range)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:470 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:476 msgid "Minimum deceleration when braking at yellow" msgstr "在黃燈剎車時的最小減速度" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:473 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:479 msgid "Let railsignals operate in moving-block mode by default" msgstr "讓鐵路號誌以預設值為移動區塊模式(moving-block mode)進行運作" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:476 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:482 msgid "" "Specify how long a vehicle may wait until impatience grows from 0 to 1, " "defaults to 300, non-positive values disable impatience growth" @@ -2021,7 +2032,7 @@ "指定車輛在不耐煩度從 0 增長到 1 之前可以等待多長時間,預設值為 300,非正值表" "示禁用不耐煩度的增長" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:479 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:485 msgid "" "Length of the default interval length between action points for the car-" "following and lane-change models (in seconds). If not specified, the " @@ -2029,22 +2040,23 @@ "settings override the default. Must be a multiple of the simulation step-" "length." msgstr "" -"在跟車模式及車道變換模式內行動點(action point)之間的預設區間長度(以秒為單位" -")。如果沒有指定,模擬步長將作為預設值。車輛或是VType的特殊設定值會改寫預設值" -"。必須是模擬步長的倍數。" +"在跟車模式及車道變換模式內行動點(action point)之間的預設區間長度(以秒為單" +"位)。如果沒有指定,模擬步長將作為預設值。車輛或是VType的特殊設定值會改寫預設" +"值。必須是模擬步長的倍數。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:482 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:488 msgid "Select default car following model (Krauss, IDM, ...)" msgstr "選擇預設的跟車模式 (Krauss, IDM, ...)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:486 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:492 msgid "" "Select default speed deviation. A negative value implies vClass specific " "defaults (0.1 for the default passenger class" -msgstr "選擇速度偏差的預設值。負值表示 車輛類別(vClass)特定預設值( 0." -"1為小客車等級的預設值" +msgstr "" +"選擇速度偏差的預設值。負值表示 車輛類別(vClass)特定預設值( 0.1為小客車等級的" +"預設值" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:489 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:495 msgid "" "Select default emergencyDecel value among ('decel', 'default', FLOAT) which " "sets the value either to the same as the deceleration value, a vClass-class " @@ -2054,65 +2066,65 @@ "值設定為與減速值相同,一個 vClass-class 特定值設值或是給定的浮點數(FLOAT) 以" "米/平方秒為單位" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:492 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:498 msgid "Use Kirchhoff's laws for solving overhead wire circuit" msgstr "使用基爾霍夫(Kirchhoff)定律求解架空線電路(overhead wire circuit)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:495 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:501 msgid "" "Enable recuperation from the vehicle equipped with elecHybrid device into " "the overhead wire." msgstr "" "啟用從配備電混(elecHybrid)設備的車輛到架空線(overhead wire)的能量反饋。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:498 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:504 msgid "" "Enable current limits of traction substation during solving the overhead " "wire electrical circuit." msgstr "在解決架空線電路時,啟用牽引變電站的電流限制。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:501 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:507 msgid "" "Sets the fraction of emergency decel capability that must be used to trigger " "a warning." msgstr "設定必須用於觸發警告的緊急減速能力的分數(fraction)。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:504 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:510 msgid "" "Whether parking simulation includes maneuvering time and associated lane " "blocking" msgstr "停車模擬是否包括操作時間和相關的車道阻塞" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:507 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:513 msgid "Override stop until times with stop ended times when given" msgstr "將改變停止直到給定的停止結束時間的時間" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:510 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:516 msgid "Override stop arrival times with stop started times when given" msgstr "若有給定,用停靠站的開始時間覆蓋停靠站的抵達時間" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:514 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:520 msgid "Select among pedestrian models ['nonInteracting', 'striping', 'remote']" msgstr "選擇行人模擬模式 ['nonInteracting', 'striping', 'remote']" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:517 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:523 msgid "" "Width of parallel stripes for segmenting a sidewalk (meters) for use with " "model 'striping'" msgstr "在使用'striping'模式時,用於分割人行道的平行條紋的寬度(米)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:520 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:526 msgid "Factor for random slow-downs [0,1] for use with model 'striping'" msgstr "在使用'striping'模式時,用於模型的隨機減速因數 [0,1]" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:523 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:529 msgid "" "Minimal gap / safety buffer (in meters) from a pedestrian to another vehicle " "for use with model 'striping'" msgstr "" "在使用'striping'模式時,從行人到另一輛車的最小間距/安全緩衝區(以米為單位)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:526 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:532 msgid "" "Time in seconds after which pedestrians start squeezing through a jam when " "using model 'striping' (non-positive values disable squeezing)" @@ -2120,7 +2132,7 @@ "在使用'striping'模式時,行人開始擠過壅塞點的時間(以秒為單位)(非正值表示禁止" "擠過壅塞點)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:528 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:534 msgid "" "Time in seconds after which pedestrians start squeezing through a jam while " "on a pedestrian crossing when using model 'striping' (non-positive values " @@ -2129,47 +2141,47 @@ "在使用'striping'模式時,行人在人行穿越道上開始擠過壅塞點的時間(以秒為單位)" "(非正值表示禁止擠過壅塞點)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:530 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:536 msgid "" "Time in seconds after which pedestrians start squeezing through a jam while " "on a narrow lane when using model 'striping'" msgstr "" "在使用'striping'模式時,行人在狹窄的車道上開始擠過壅塞點的時間(以秒為單位)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:533 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:539 msgid "Fraction of stripes to reserve for oncoming pedestrians" msgstr "為迎面而來的行人預留的條紋空間(stripes)的分數(fraction)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:536 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:542 msgid "" "Fraction of stripes to reserve for oncoming pedestrians on crossings and " "walkingareas" msgstr "在路口和步行區為迎面而來的行人預留的條紋空間(stripes)的分數(fraction)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:539 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:545 msgid "Maximum width in m to reserve for oncoming pedestrians" msgstr "為迎面而來的行人預留的最大寬度(以米為單位)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:542 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:548 msgid "Interpret departPosLat for walks in legacy style" msgstr "以遺留方式(legacy style)闡釋出發時的側向位置(departPostLat)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:545 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:551 msgid "" "Generate INT intermediate points to smooth out lanes within the walkingarea" msgstr "產生 INT 中間點以平滑步行區域內的車道形狀" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:548 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:554 msgid "The address (host:port) of the external simulation" msgstr "外部模擬的地址(host:port)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:551 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:557 msgid "" "Tolerance to apply when matching pedestrian and vehicle positions on " "boarding at individual stops" msgstr "在各個停靠點上車時,匹配行人和車輛位置時所使用的容許誤差(tolerance)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:562 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:568 msgid "" "Apply the given time penalty when computing minimum routing costs for minor-" "link internal lanes" @@ -2177,7 +2189,7 @@ "在計算次要路段內部車道(minor link internal lanes)的最小路徑成本時,使用給定的" "時間懲罰(time penalty)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:565 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:571 msgid "" "Apply scaled travel time penalties based on green split when computing " "minimum routing costs for internal lanes at traffic lights" @@ -2185,7 +2197,7 @@ "在計算交通號誌處內部車道的最小路徑成本時,根據綠燈比來縮放(scale)旅行時間懲罰" "(time penalty)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:571 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:577 msgid "" "Distinguish travel time by turn direction and shift a fraction of the " "estimated time loss ahead of the intersection onto the internal edges" @@ -2193,245 +2205,245 @@ "根據轉彎方向來區分旅行時間,並將在抵達路口前的預估時間損失的一小部分轉移到內" "部路段" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:596 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:602 msgid "" "When set, trips between the same origin and destination will share a taxi by " "default" msgstr "當設定後,預設值為具有相同起迄點的旅次將會共享計程車" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:605 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:611 msgid "Replay exact rerouting sequence from vehroute-output" msgstr "" "從車輛路徑輸出檔案(vehroute-output)重新播放(replay)相同的更改路徑的順序" "(rerouting sequence)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:610 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:59 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:133 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:123 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:616 +#: D:\Repos\sumo/src\router\ROFrame.cpp:59 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:133 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:123 msgid "Return fuel consumption values in (legacy) unit l instead of mg" msgstr "" "以(傳統)單位公升(l)而不是毫克(mg)轉回(return)燃料消耗量(fuel consumption)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:613 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:90 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:136 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:126 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:619 +#: D:\Repos\sumo/src\router\ROFrame.cpp:90 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:136 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:126 msgid "Determines where to load PHEMlight definitions from" msgstr "決定從哪裡載入PHEMlight模式的定義" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:616 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:93 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:139 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:129 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:622 +#: D:\Repos\sumo/src\router\ROFrame.cpp:93 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:139 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:129 msgid "Enable fleet age modelling with the given reference year in PHEMlight5" msgstr "在PHEMlight5模式內,使用給定的參考年份進行車隊年齡模式化" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:619 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:96 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:142 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:132 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:625 +#: D:\Repos\sumo/src\router\ROFrame.cpp:96 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:142 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:132 msgid "Set ambient temperature to correct NOx emissions in PHEMlight5" msgstr "設定周遭環境溫度以校正PHEMlight5模式中的氮氧化物排放量(NOx emissions)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:628 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:634 msgid "Disable performance reports for individual simulation steps" msgstr "禁用個別模擬步長(step)的效能報告(performance reports)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:631 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:637 msgid "Enable statistics on vehicle trips" msgstr "啟用車輛旅次統計" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:634 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:640 msgid "Disable console output of current simulation step" msgstr "禁用目前模擬步長(step)的控制台輸出" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:637 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:643 msgid "Number of simulation steps between step-log outputs" msgstr "步長紀錄(step-log)輸出之間的模擬步長數量(Number of simulation steps)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:642 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:648 msgid "Enables TraCI Server if set" msgstr "如果設定,則啟用TraCI伺服器" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:644 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:650 msgid "Expected number of connecting clients" msgstr "預期的連接客戶端數" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:648 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:654 msgid "Enables mesoscopic simulation" msgstr "啟用中觀模擬(mesoscopic simulation)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:650 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:656 msgid "Length of an edge segment in mesoscopic simulation" msgstr "中觀模擬中路段區段(edge segment)的長度" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:652 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:658 msgid "Factor for calculating the net free-free headway time" msgstr "計算自由車流狀態下(free-free)車間距時間(headway time)的係數(factor)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:654 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:660 msgid "Factor for calculating the net free-jam headway time" msgstr "" "計算自由-壅塞車流狀態下(free-jam)車間距時間(headway time)的係數(factor)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:656 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:662 msgid "Factor for calculating the jam-free headway time" msgstr "" "計算壅塞-自由車流狀態下(jam-free)車間距時間(headway time)的係數(factor)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:658 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:664 msgid "Factor for calculating the jam-jam headway time" msgstr "計算壅塞-壅塞車流狀態下(jam-jam)車間距時間(headway time)的係數(factor)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:663 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:669 msgid "Enable multiple queues at edge ends" msgstr "啟用在路段終點處有多個停等佇列(queues)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:665 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:671 msgid "Enable separate queues for every lane" msgstr "啟用每個車道有個別的停等佇列(queues)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:667 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:673 msgid "" "Do not build queues (or reduce capacity) for lanes allowing only the given " "vclasses" msgstr "對於僅允許指定車輛類別使用的車道,不建立停等佇列(queues) (或是減少容量)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:670 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:676 msgid "Enable mesoscopic traffic light and priority junction handling" msgstr "啟用中觀(mesoscopic)交通號誌和依優先級別控制的路口處理" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:684 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:690 msgid "Enable mesoscopic overtaking" msgstr "啟用中觀(mesoscopic)超車" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:686 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:692 msgid "" "Time interval for rechecking insertion into the next segment after failure" msgstr "失敗後重新檢查注入車輛到下一路段區段的時間間隔" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:698 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:704 msgid "Load visualisation settings from FILE" msgstr "從檔案載入視覺化設定" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:701 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:707 msgid "Quits the GUI when the simulation stops" msgstr "當模擬停止時,離開圖形使用者介面(GUI)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:704 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:710 msgid "Start the GUI in gaming mode" msgstr "在遊戲模式(gaming mode)中開始圖形使用者介面(GUI)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:707 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:713 msgid "Select the game type ('tls', 'drt')" msgstr "選擇遊戲類型 ('號誌(tls)', '需求反應運輸(drt)')" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:710 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:716 msgid "Start the simulation after loading" msgstr "載入後開始模擬" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:713 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:719 msgid "Use FLOAT in ms as delay between simulation steps" msgstr "使用以毫秒為單位的浮點數(FLOAT)作為模擬步長之間的延遲" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:716 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:722 msgid "Use TIME[] as times when the simulation should halt" msgstr "使用 TIME[] 作為模擬應該暫停(halt)時的時間" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:720 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:726 msgid "Load edge/lane weights for visualization from FILE" msgstr "從檔案載入作為視覺化使用的路段/車道權重" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:723 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:729 msgid "Load a secondary road network for abstract visualization from FILE" msgstr "從檔案載入二級道路路網以進行抽象的視覺化(abstract visualization)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:726 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:732 msgid "Restart the simulation after ending (demo mode)" msgstr "結束後,重新開始模擬(展示模式)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:729 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:735 msgid "Do not load background pictures" msgstr "不載入背景圖片" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:732 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:738 msgid "Load current viewport from registry" msgstr "從註冊表載入目前檢視區" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:735 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:741 msgid "Create initial window with the given x,y size" msgstr "使用給定的 x, y 尺寸建立初始視窗" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:738 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:744 msgid "Create initial window at the given x,y position" msgstr "在給定的 x, y 位置建立初始視窗" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:741 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:747 msgid "The aggregation period for value tracker windows" msgstr "追蹤視窗的整合期間(aggregation period)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:745 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:751 msgid "Start with an OpenSceneGraph view instead of the regular 2D view" msgstr "以 OpenSceneGraph 視圖(view)開始,而不是常規的 2D 視圖" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:750 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:756 msgid "Enable overlay for screen recognition" msgstr "允許銀幕辨識的覆蓋" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:754 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:760 msgid "Enable output messages during GUI-Testing" msgstr "允許在 GUI 測試期間輸出訊息" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:758 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:764 msgid "Save gui settings in the given settings output file" msgstr "將圖形使用者介面(gui)的設定儲存於給定的設定輸出檔案" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:809 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:815 msgid "No network file (-n) specified." msgstr "未指定路網檔案 (-n)。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:813 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:819 msgid "Invalid scaling factor." msgstr "無效的縮放係數(scaling factor)。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:817 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:823 msgid "A vehroute-output file is needed for exit times." msgstr "需要一個車輛路徑輸出檔案以儲存車輛離開個別路段的時間(exit times)。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:829 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:835 msgid "You can either restart or quit on end." msgstr "您可以重新開始或是在結束時離開。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:834 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:840 msgid "" "The option 'meso-junction-control.limited' implies 'meso-junction-control'." msgstr "選項'meso-junction-control.limited'意味著'meso-junction-control'。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:852 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:858 msgid "The begin time should not be negative." msgstr "開始時間不可為負值。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:862 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:868 msgid "The end time should be after the begin time." msgstr "結束時間應該在開始時間的後面。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:867 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:873 msgid "the minimum step-length is 0.001" msgstr "最小的步長長度為0.001" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:882 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:888 msgid "The save-state time=% will not be used before simulation end at %." msgstr "save-state time=% 將不會在模擬結束於 % 之前使用。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:894 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:900 msgid "" "option movereminder-output.vehicles requires option movereminder-output to " "be set" msgstr "" "使用選項 movereminder-output.vehicles 時,需要設定選項 movereminder-output" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:899 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:905 msgid "" "The option 'sloppy-insert' is deprecated, because it is now activated by " "default, see the new option 'eager-insert'." @@ -2439,24 +2451,24 @@ "選項 'sloppy-insert' 已不適用,因為它已成為預設值,請參閱新選項 'eager-" "insert'。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:902 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:908 msgid "" "Only one of the options 'lanechange.duration' or 'lateral-resolution' may be " "given." msgstr "兩選項'lanechange.duration'或'lateral-resolution'中,只能使用其中一個。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:906 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:912 msgid "Sublane dynamics are not supported by mesoscopic simulation" msgstr "中觀模擬不支援子車道(sunlane)a模式" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:910 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:916 msgid "" "The option 'ignore-accidents' is deprecated. Use 'collision.action none' " "instead." msgstr "" "選項'忽略事故(ignore-accidents)'已不適用。請改用'collision.action none'。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:923 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:929 msgid "" "The option tripinfo-output.write-undeparted implies tripinfo-output.write-" "unfinished." @@ -2464,12 +2476,12 @@ "選項 tripinfo-output.write-undeparted 已包含選項 tripinfo-output.write-" "unfinished。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:945 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:951 #, c-format msgid "Unknown model '%' for option 'carfollow.model'." msgstr "選項 '跟車模式(carfollow.model)' 的模式 '%' 未知。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:954 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:960 #, c-format msgid "" "Invalid value '%' for option 'default.emergencydecel'. Must be a FLOAT or " @@ -2478,317 +2490,335 @@ "選項 'default.emergencydecel' 的值 '%' 無效。必須是 一個浮點數(FLOAT) 或 " "'default' 或 'decel'" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:960 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:966 msgid "You need a non-negative delay." msgstr "您需要一個非負數的延誤值。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:973 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:979 msgid "Parallel simulation is only possible when compiled with Fox." msgstr "平行模擬只有在使用 Fox 編譯時才有可能。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:978 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:984 msgid "You need at least one thread." msgstr "您至少需要一個引線(thread)。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:982 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:988 msgid "" "Number of threads exceeds number of thread-rngs. Simulation runs with the " "same seed may produce different results" msgstr "" "線程數超過thread-rngs數。使用相同種子的模擬運行(runs)可能會產生不同的結果" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:985 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:991 msgid "game.mode must be one of ['tls', 'drt']" msgstr "" "遊戲模式(game.mode)必須是['交通號誌(tls)', '需求反應運輸(drt)']的其中之一" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:992 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:998 msgid "" "Invalid transfer option '%'. Must be one of 'parkingAreas', 'ptStops' and " "'allJunctions'" msgstr "" -"傳輸選項 '%' 無效。必須是 '停車區域(parkingAreas)', '大眾運輸停靠點(ptStops)'" -"和 '全部路口(allJunctions)' 的其中一個" +"傳輸選項 '%' 無效。必須是 '停車區域(parkingAreas)', '大眾運輸停靠點" +"(ptStops)'和 '全部路口(allJunctions)' 的其中一個" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:1051 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:1057 msgid "" "Integration method was set to 'ballistic', since a default action step " "length was specified." msgstr "" "積分方法設定為'彈道(ballistic)',因為指定了預設的動作步長(action step)。" -#: /home/micha/programming/sumo/src/microsim/MSInsertionControl.cpp:276 -#: /home/micha/programming/sumo/src/router/RONet.cpp:481 +#: D:\Repos\sumo/src\microsim\MSInsertionControl.cpp:276 +#: D:\Repos\sumo/src\router\RONet.cpp:481 #, c-format msgid "Another vehicle with the id '%' exists." msgstr "另一輛識別名(id) 為 '%' 的車輛已存在。" -#: /home/micha/programming/sumo/src/microsim/MSInternalJunction.cpp:55 +#: D:\Repos\sumo/src\microsim\MSInternalJunction.cpp:55 #, c-format msgid "Internal junction % has no incoming lanes" msgstr "內部路口 % 沒有進入的車道" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:312 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:314 msgid "Unequal lengths of neigh lane '%' and lane '%' (% != %)." msgstr "相鄰車道 '%' 和車道 '%' 的長度不等 (% != %)。" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:321 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:323 msgid "Unequal lengths of bidi lane '%' and lane '%' (% != %)." msgstr "雙向(bidi)車道 '%' 和車道 '%' 的長度不等 (% != %)。" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:758 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:760 #, c-format msgid "Vehicle '%' is inserted in emergency situation." msgstr "車輛 '%' 在緊急情況下已注入到路網內。" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:764 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:766 msgid "Vehicle '%' will not be able to depart using the given velocity (%)!" msgstr "車輛 '%' 將無法使用給定速度(%)出發!" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:780 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:782 msgid "" "Invalid departPos % given for vehicle '%'. Inserting at lane end instead." msgstr "出發位置(departPos) % 無效,發生於車輛 '%'。因此將其插入於車道末端。" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1025 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:1027 msgid "" "Vehicle '%' is inserted too fast and will violate the speed limit on a lane " "'%'." msgstr "車輛 '%' 插入路網的速度過快,將違反車道 '%' 上的限速。" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1029 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:1031 msgid "" "Vehicle '%' will not be able to depart using the given velocity (slow lane " "ahead)!" msgstr "車輛 '%' 將無法使用給定速度出發(前方有慢車道)!" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1658 -msgid "" -"Vehicle '%' collision with person '%', lane='%', gap=%, time=%, stage=%." -msgstr "車輛 '%' 與人 '%' 發生碰撞,車道='%',間距=%,時間=%,階段=%。" +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2059 +msgid "Vehicle '%'" +msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1800 -msgid "Vehicle '%' collision with person '%', lane='%', time=%, stage=%." -msgstr "車輛 '%' 與人 '%' 發生碰撞,車道='%',時間=%,階段=%。" +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2088 +#, c-format +msgid "Teleporting vehicle '%' after" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2093 +#, c-format +msgid "Removing vehicle '%' after" +msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2101 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2097 +#, c-format +msgid "Keeping remote-controlled vehicle '%' after" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2110 +msgid " collision with person '%', lane='%', gap=%, time=%, stage=%." +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2113 +msgid " collision with person '%', lane='%', time=%, stage=%." +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2179 msgid "Teleporting vehicle '%'; beyond end of lane, target lane='%', time=%." msgstr "移送(teleporting)車輛 '%' 超出車道末端, 目標車道='%',時間=%。" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2108 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2186 msgid "Removing vehicle '%' after earlier collision, lane='%', time=%." msgstr "在較早的碰撞後移除車輛 '%',車道='%',時間=%。" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2113 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2191 msgid "Teleporting vehicle '%' after earlier collision, lane='%', time=%." msgstr "在較早的碰撞後移送(teleporting)車輛 '%',車道='%',時間=%。" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2585 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2663 msgid "" "Lane '%' is approached multiple times from edge '%'. This may cause " "collisions." msgstr "車道 '%' 從路段 '%' 多次被接近。這可能會導致碰撞。" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:4184 -msgid "Invalid collision.action '%'." -msgstr "無效的 碰撞.動作(collision.action) '%'。" +#: D:\Repos\sumo/src\microsim\MSLane.cpp:4268 +msgid "Invalid % '%'." +msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:4314 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:4405 msgid "" "State was saved with more than % threads. Change the number of threads or do " "not load RNG state" msgstr "使用超過 % 的線程(threads)儲存狀態。 改變線程數或不加載RNG狀態" -#: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:169 -#: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:232 -#: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:239 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:169 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:232 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:239 msgid "Method not supported" msgstr "方法不被支援" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:187 -#: /home/micha/programming/sumo/src/router/RONet.cpp:60 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:187 +#: D:\Repos\sumo/src\router\RONet.cpp:60 msgid "A network was not yet constructed." msgstr "路網尚未構建。" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:221 -#: /home/micha/programming/sumo/src/router/RONet.cpp:83 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:221 +#: D:\Repos\sumo/src\router\RONet.cpp:83 msgid "A network was already constructed." msgstr "一個路網已經構建。" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:286 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:286 msgid "" "Option weights.separate-turns is only supported when simulating with " "internal lanes" msgstr "僅在使用內部車道進行模擬時,才可以使用選項 weights.separate-turns" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:388 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:388 msgid "Simulation version % started with time: %." msgstr "模擬版本 % 開始時間: %。" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1459 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1463 msgid "" "TraCI and Triggers cannot use routing algorithm '%'. using 'astar' instead." msgstr "TraCI和觸發器(triggers)不能使用選路演算法 '%'。 改用'astar'方法。" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1629 -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:427 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:235 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:221 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1633 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:427 +#: D:\Repos\sumo/src\router\ROLoader.cpp:235 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:221 #, c-format msgid "Loading of % failed." msgstr "% 檔案載入失敗。" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1649 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1653 #, c-format msgid "Loading state from '%' failed." msgstr "從 '%' 載入狀態(state)失敗。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:103 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:108 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:103 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:108 msgid "Taz usage was requested but no taz present in % '%'!" msgstr "已要求使用交通分區(TAZ),但是沒有交通分區存在於 % '%'!" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:262 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:262 #, c-format msgid "Vehicle type distribution '%' is empty." msgstr "車輛類型分配 '%' 是空的。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:266 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:910 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:266 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:910 #, c-format msgid "Another vehicle type (or distribution) with the id '%' exists." msgstr "另一個有識別名(id) '%' 的車輛類型(或分配)已經存在。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:316 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:287 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:316 msgid "Ids of internal routes are ignored (vehicle '%')." msgstr "忽略內部路徑的識別名(Ids) (車輛 '%')。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:306 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:306 msgid "Invalid reference to route '%' in route %." msgstr "路徑 '%' 的引用無效, 其發生在路徑 % 。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:317 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:317 msgid "Attribute 'period' is deprecated for route. Use 'cycleTime' instead." msgstr "路徑的屬性 '期間(period)' 已不適用。 請改用 '週期時間(cycleTime)'。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:330 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:330 msgid "Disconnected route % when repeating." msgstr "當重複時,斷開路徑 % 。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:336 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:336 msgid "Invalid cost for route '%'." msgstr "路徑 '%' 的成本無效。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:393 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:393 #, c-format msgid "Route '%' has no edges." msgstr "路徑 '%' 沒有路段。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:411 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:446 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:411 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:446 msgid "" "Cannot repeat stops with 'until' in route % because no cycleTime is defined." msgstr "無法在路線 % 中使用'until'重複停靠點,因為未定義週期時間(cycleTime)。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:420 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:420 msgid "" "Cannot repeat stops with 'arrival' in route % because no cycleTime is " "defined." msgstr "" "無法在路線 % 中使用'arrival'重複停靠點,因為未定義週期時間(cycleTime)。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:443 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:443 #, c-format msgid "A vehicle with id '%' already exists." msgstr "一輛具有識別名(id) '%' 的車輛已經存在。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:446 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:520 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:446 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:520 #, c-format msgid "Another route (or distribution) with the id '%' exists." msgstr "另一個具有識別名(id) '%' 的路徑(或是分配)已經存在。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:524 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:524 #, c-format msgid "Route distribution '%' is empty." msgstr "路徑分配 '%' 是空的。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:564 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:559 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:564 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:559 msgid "" "Vehicle type '%' with vClass=pedestrian should only be used for persons and " "not for vehicle '%'." msgstr "" "具有 vClass=pedestrian 的車輛類型 '%'只能用於人員,而不應用於車輛 '%'。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:573 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:573 msgid "" "Ignoring child element 'route' for vehicle '%' because attribute 'route' is " "set." msgstr "忽略車輛 '% '的子元素'路徑(route)',因為屬性 '路徑(route)' 已設定。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:582 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:582 #, c-format msgid "Vehicle '%' has no route." msgstr "車輛 '%' 沒有路徑。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:724 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:724 msgid "" "Could not merge vehicle stops for vehicle '%' into implicitly defined route " "'%'" msgstr "無法將車輛 '%' 的車輛停靠點合併到隱式定義的路徑中 '%'" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:755 -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:327 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:755 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:327 msgid "" "Person '%' receives type '%' which implicitly uses unsuitable vClass '%'." msgstr "" "人員 '%' 接收到類型(type) '%',它隱含地使用了不合適的車輛類別(vClass) '%'。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:891 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:891 msgid "" "There exists a person and a container with the same id '%'. Starting with " "SUMO 1.9.0 this is an error." msgstr "" "存在具有相同識別名(id) '%' 的人員和貨櫃。從SUMO 1.9.0 開始,這是一個錯誤。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:986 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:986 #, c-format msgid "Another flow with the id '%' exists." msgstr "另一個具有識別名(id) '%' 的流量已存在。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1127 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1127 msgid "The busStop '%' is not known%." msgstr "公車停靠站(busStop) '%' 是未知的%。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1133 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1133 msgid "The containerStop '%' is not known%." msgstr "貨櫃停靠站(containerStop) '%' 是未知的%。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1139 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1139 msgid "The parkingArea '%' is not known%." msgstr "停車區域(parkingArea) '%' 是未知的%。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1146 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1146 msgid "The chargingStation '%' is not known%." msgstr "充電站(chargingStation) '%' 是未知的%。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1153 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1153 msgid "The overhead wire segment '%' is not known%." msgstr "架空線段(overhead wire segment) '%' 是未知的%。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1157 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1157 msgid "Invalid stop definition%." msgstr "無效的停靠點定義%。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1305 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1309 msgid "Stop edge '%' missing in attribute 'via' for % '%'" msgstr "在屬性 'via' 中缺少停靠點路段 '%', 其是針對 % '%'" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1324 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1198 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1316 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1329 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1203 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1321 msgid "" "The attribute departPos is no longer supported for walks, please use the " "person attribute, the arrivalPos of the previous step or explicit stops." @@ -2796,57 +2826,57 @@ "步行(walks)內不再支持屬性出發位置(departPos),請使用人員(person)屬性,前一個步" "長的抵達位置(arrivalPos),或直接明示停靠點(stops)。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1350 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1355 msgid "Ignoring arrivalPos for % because it is outside the given stop '%'." msgstr "忽略 % 的抵達位置(arrivalPos),因為它位於給定的停靠點 '%' 之外。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1356 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1219 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1361 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1224 msgid "No destination edge for %." msgstr "% 沒有目的地路段。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1385 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1239 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1390 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1244 msgid "Start edge not defined for person '%'." msgstr "人員 '%' 的開始路段沒有定義。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1395 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1460 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1250 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1307 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1400 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1465 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1255 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1312 msgid "Non-positive walking duration for '%'." msgstr "'%' 有非正值的步行時間。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1422 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1466 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1311 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1427 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1471 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1316 msgid "Non-positive walking speed for '%'." msgstr "'%' 有非正值的步行速度。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1491 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1496 msgid "No edges to walk for person '%'." msgstr "人員 '%' 沒有可以步行的路段。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1528 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1533 msgid "" "Could not find departure lane for walk of person '%' when interpreting " "departPosLat" msgstr "在闡釋出發側向位置(departPosLat)時,找不到人員 '%' 步行的出發巷道" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1600 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1605 msgid "Could not read tranship speed for container '%'." msgstr "無法讀取貨櫃 '%' 的轉運速度(tranship speed)。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1608 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1613 msgid "Non-positive tranship speed for container '%'." msgstr "貨櫃 '%' 有非正值的轉運速度(tranship speed)。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1634 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1639 #, c-format msgid "The start edge for container '%' is not known." msgstr "貨櫃 '%' 的開始路段是未知的。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1653 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1658 msgid "" "Inconsistent tranship for container '%', only one option is allowed: " "'edges', 'to', 'containerStop'" @@ -2854,309 +2884,316 @@ "貨櫃 '%' 的轉運(tranship)不一致,只允許一個選項:'路段(edges)', '到(to)', '貨" "櫃停靠點(containerStop)'" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1659 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1664 msgid "No edges to tranship container '%'." msgstr "沒有路段可以轉運貨櫃 '%'。" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:76 -#: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:64 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:164 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteLoader.cpp:36 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:76 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:64 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:164 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteLoader.cpp:36 msgid "Can not read XML-file '%'." msgstr "無法讀取XML-檔案 '%'。" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:87 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:87 msgid "Could not parse time from state file '%'" msgstr "無法從狀態檔案 '%' 解析出(parse)時間" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:184 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:184 msgid "State was written with sumo version % (present: %)!" msgstr "狀態(state)是用SUMO版本 % 寫出(現在版本: %)!" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:229 -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:285 -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignalConstraint.cpp:144 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:229 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:285 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignalConstraint.cpp:144 #, c-format msgid "Unknown lane '%' in loaded state." msgstr "在載入的狀態(state)中有未知車道 '%'。" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:389 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:389 #, c-format msgid "Ignoring program '%' for traffic light '%' in loaded state" msgstr "忽略載入狀態(state)內的時制計畫 '%'; 交通號誌為 '%'" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:424 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:424 msgid "Could not load vehicle control state" msgstr "無法載入車輛控制狀態" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:433 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:433 msgid "Removed % vehicles while loading state." msgstr "當載入狀態時, 移除 % 車輛。" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:459 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:459 #, c-format msgid "Could not load vehicle '%' from state" msgstr "無法從狀態載入車輛 '%'" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:319 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:319 msgid "No gap control available for meso." msgstr "中觀模擬內無間距(gap)控制。" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:714 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:714 msgid "" "Lane change model did not provide a reason for changing (state=%, time=%\n" msgstr "車道變換模式沒有提供變道原因 (狀態(state)=%, 時間(time)=%\n" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:755 -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:171 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:755 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:171 msgid "should not happen" msgstr "不應該發生" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:944 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:944 msgid "" "Vehicle '%' moved by TraCI from % to % (dist %) with implied speed of % " "(exceeding maximum speed %). time=%." msgstr "" "TraCI 將車輛 '%' 從 % 移動到 %(距離 %),速度為 %(超過最大速度 %)。時間=%。" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1701 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1688 msgid "Vehicle '%' aborts joining after extension of %s at time %." msgstr "車輛 '%' 在延長 %s 後中止加入; 在時間 % 。" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1846 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1833 msgid "Vehicle '%' to split from vehicle '%' is not known. time=%." msgstr "拆分出來的車輛 '%' (從車輛 '%' 中)是未知的。 時間=%。" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:2741 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:2769 msgid "Suspicious right_before_left junction '%'." msgstr "可疑的 right_before_left 路口 '%'。" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4375 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4487 msgid " for unknown reasons" msgstr " 由於未知原因" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4383 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4495 msgid "" -"Vehicle '%' performs emergency stop at the end of lane '%'% (decel=%, " -"offset=%), time=%." +"Vehicle '%' performs emergency stop at the end of lane '%'% (decel=%, offset=" +"%), time=%." msgstr "車輛 '%' 在車道 '%'% 的末端緊急停車(減速度=%,偏移值=%),時間=%。" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4458 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4570 msgid "Unexpected end of opposite lane for vehicle '%' at lane '%', time=%." msgstr "車輛 '%' 在車道 '%' 的對面車道無預期的結束,時間=%。" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4576 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4688 msgid "" "Vehicle '%' performs emergency braking on lane '%' with decel=%, wished=%, " "severity=%, time=%." msgstr "" -"車輛 '%' 在車道 '%' 上執行緊急剎車,減速度=%,希望的(wished)=%,嚴重程度=%,時" -"間=%。" +"車輛 '%' 在車道 '%' 上執行緊急剎車,減速度=%,希望的(wished)=%,嚴重程度=%," +"時間=%。" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:5427 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:5571 #, c-format msgid "Vehicle '%' aborts stop." msgstr "車輛 '%' 放棄停靠。" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:7213 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:7408 msgid "Error: Invalid vehicles in state (may be a meso state)!" msgstr "錯誤:狀態中的無效車輛 (可能是中觀(meso)狀態)!" -#: /home/micha/programming/sumo/src/microsim/MSVehicleControl.cpp:449 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:7439 +msgid "Action steps are out of sync for loaded vehicle '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSVehicleControl.cpp:469 #, c-format msgid "Vehicle '%' aborted waiting for a % that will never come." msgstr "車輛 '%' 中止等待,其是由於一個永遠不會到來的 %。" -#: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:169 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:170 msgid "Vehicle '%' ends teleporting on edge '%', time=%." msgstr "車輛 '%' 在路段 '%' 上結束移送(teleporting),時間 =%。" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:308 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:318 msgid "" "Value of 'emergencyDecel' (%) should be higher than 'decel' (%) for vType " "'%'." -msgstr "'緊急減速度(emergencyDecel)'(%)值應高於'減速度(decel)'(%);車輛類型(vType)為 " +msgstr "" +"'緊急減速度(emergencyDecel)'(%)值應高於'減速度(decel)'(%);車輛類型(vType)為 " "'%'。" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:311 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:321 msgid "" "Value of 'emergencyDecel' (%) is lower than 'apparentDecel' (%) for vType " "'%' may cause collisions." msgstr "" -"'緊急減速度(emergencyDecel)'(%)值低於'視減速度(apparentDecel)'(%), 可能會" -"造成碰撞;車輛類型(vType)為 '%'。" +"'緊急減速度(emergencyDecel)'(%)值低於'視減速度(apparentDecel)'(%), 可能會造成" +"碰撞;車輛類型(vType)為 '%'。" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:433 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:443 #, c-format msgid "" "Value of tau=% in vehicle type '%' lower than simulation step size may cause " "collisions." msgstr "tau=% 值低於模擬步長大小可能會導致碰撞; 車輛類型為 '%'。" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:439 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:449 #, c-format msgid "" "Vehicle class '%' of vType '%' is set as ignored by option --meso-ignore-" "lanes-by-vclass to ensure default vehicle capacity. Set option --meso-lane-" "queue for multi-modal meso simulation" msgstr "" -"透過選項 --meso-ignore-lanes-by-vclass 將車輛類別 '%' (車輛類型 '%') 設定為忽略" -"以確保預設的車輛容量。 在多運具模式中觀(meso)模擬內, 設定選項 --meso-lane-" +"透過選項 --meso-ignore-lanes-by-vclass 將車輛類別 '%' (車輛類型 '%') 設定為忽" +"略以確保預設的車輛容量。 在多運具模式中觀(meso)模擬內, 設定選項 --meso-lane-" "queue" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_CC.cpp:66 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_CC.cpp:66 msgid "" "The number of lanes needs to be specified in the attributes of carFollowing-" "CC with the \"lanesCount\" attribute" msgstr "在 carFollowing-CC 的屬性中, 需要指定屬性 \"lanesCount\" 的車道數" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Daniel1.cpp:61 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Daniel1.cpp:61 msgid "" "Maximum speed of vehicle '%' is lower than the minimum speed (min: %, max: " "%)." msgstr "車輛 '%' 的最大速度低於最小速度(最小值:%, 最大值:%)。" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Krauss.cpp:58 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Krauss.cpp:58 msgid "Rounding 'sigmaStep' to % for vType '%'" msgstr "將車輛類型(vType)的參數 'sigmaStep' 四捨五入為 %; 車輛類型為 '%'" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Rail.cpp:50 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Rail.cpp:50 msgid "Unknown train type: %. Exiting!" msgstr "未知的火車類型: %。 退出!" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Rail.cpp:252 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Rail.cpp:252 msgid "" "Anything else than semi implicit euler update is not yet implemented. " "Exiting!" msgstr "除了半隱式歐拉(euler)更新之外,其他方法尚未建置完成。退出!" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:161 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:165 #, c-format msgid "Device '%' cannot save state" msgstr "裝置 '%' 無法儲存狀態(state)" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:201 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:205 msgid "Invalid float value '%'for parameter '%'" msgstr "無效的浮點數值 '%'; 參數為 '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:214 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:218 msgid "Invalid bool value '%'for parameter '%'" msgstr "無效的布林(bool)值 '%'; 參數為 '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:227 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:231 msgid "Invalid time value '%'for parameter '%'" msgstr "無效的時間值 '%'; 參數為 '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:65 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:65 msgid "The range of the bt receiver" msgstr "藍芽接收器的範圍" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:68 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:68 msgid "Whether all recognition point shall be written" msgstr "是否所有辨識點(recognition point)都要寫出" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:71 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:71 msgid "The offtime used for calculating detection probability (in seconds)" msgstr "用於計算藍芽接收器偵測機率的關閉時間(offtime)(以秒為單位)" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:295 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:295 msgid "" "The vehicle '%' cannot be in the range of vehicle '%', leave, and enter it " "in one step." msgstr "車輛 '%' 不能於一個步長(step)內離開且進入車輛 '%' 範圍內。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:421 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:436 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:421 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:436 msgid "" "btreceiver: Can not update position of vehicle '%' which is not on the road." msgstr "藍芽接收器(btreceiver):無法更新不在路上的車輛 '%' 的位置。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTsender.cpp:120 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTsender.cpp:134 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTsender.cpp:120 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTsender.cpp:134 msgid "" "btsender: Can not update position of vehicle '%' which is not on the road." msgstr "藍芽發送器(btsender):無法更新不在路上的車輛 '%' 的位置。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:52 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:52 msgid "Track fuel consumption for non-electric vehicles" msgstr "追踪非電動汽車的燃料消耗量" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:109 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:122 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:128 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:113 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:126 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:132 msgid "" "Battery builder: Vehicle '%' doesn't have a valid value for parameter % (%)." msgstr "電池建立器(Battery builder): 車輛 '%' 的參數 % (%) 沒有有效的值。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:199 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:203 #, c-format msgid "Battery of vehicle '%' is depleted." msgstr "車輛 '%' 的電池已耗盡。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:309 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:319 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:329 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:313 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:323 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:333 msgid "Trying to set into the battery device of vehicle '%' an invalid % (%)." msgstr "嘗試到車輛 '%' 的電池設備中設定一個無效的 % (%) 。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Bluelight.cpp:59 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Bluelight.cpp:59 msgid "" "Set the distance at which other drivers react to the blue light and siren " "sound" msgstr "設定其他駕駛者藍燈和警笛聲做出反應的距離" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Bluelight.cpp:68 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Bluelight.cpp:68 msgid "" "bluelight device is not compatible with mesosim (ignored for vehicle '%')" msgstr "藍光(bluelight)裝置與中觀模擬(mesosim)不兼容 (被車輛 '%' 忽略)" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:66 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:66 msgid "Initial value assigned to the driver's awareness." msgstr "指派給駕駛者意識/認知的初始值。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:68 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:68 msgid "Time scale for the error process." msgstr "錯誤過程的時間尺度(time scale)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:70 msgid "Noise intensity driving the error process." msgstr "驅動錯誤過程的噪聲強度。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:72 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:72 msgid "" "General scaling coefficient for applying the error to the perceived speed " "difference (error also scales with distance)." msgstr "將誤差應用於感知速度差異的一般比例係數(誤差也與距離成比例)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:74 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:74 msgid "" "General scaling coefficient for applying the error to the perceived distance " "(error also scales with distance)." msgstr "將誤差應用於感知距離的一般比例係數(誤差也與距離成比例)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:76 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:76 msgid "" "General scaling coefficient for applying the error to the vehicle's own " "speed when driving without a leader (error also scales with own speed)." -msgstr "車輛在前方沒有車時,將誤差應用於其自身速度的一般比例係數(誤差也與自身速度成比例)。" +msgstr "" +"車輛在前方沒有車時,將誤差應用於其自身速度的一般比例係數(誤差也與自身速度成比" +"例)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:78 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:78 msgid "" "Base threshold for recognizing changes in the speed difference (threshold " "also scales with distance)." msgstr "用於識別速度差異變化的基本閾值(閾值也與距離成比例)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:80 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:80 msgid "" "Base threshold for recognizing changes in the headway (threshold also scales " "with distance)." msgstr "用於識別車間距變化的基本閾值(閾值也與距離成比例)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:82 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:82 msgid "Minimal admissible value for the driver's awareness." msgstr "駕駛者意識/認知的最小允許值。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:84 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:84 msgid "" "Maximal reaction time (~action step length) induced by decreased awareness " "level (reached for awareness=minAwareness)." @@ -3164,168 +3201,168 @@ "由降低的意識/認知水平(達到意識 = minAwareness)引起的最大反應時間(~動作步" "長)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:102 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:116 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:116 msgid "Invalid value '%'for vType parameter '%'" msgstr "無效的值 '%'; 車輛類型(vType)參數為 '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:166 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:179 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:166 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:179 msgid "" "ElecHybrid builder: Vehicle '%' doesn't have a valid value for parameter % " "(%)." msgstr "電混(ElecHybrid)構建器:車輛 '%' 的參數 % 沒有有效的值。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:374 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:374 #, c-format msgid "" "The resistivity of overhead wire segment connected to vehicle % is < 0. Set " "to 1e-6." msgstr "與車輛 % 連接的架空線段的電阻率 < 0。設定為 1e-6。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:432 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:528 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:711 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:848 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:432 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:528 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:711 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:848 msgid "" "Overhead wire solver is on, but the Eigen library has not been compiled in!" msgstr "架空線解算器已開啟,但是 Eigen 程式庫還沒有編譯進去!" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:648 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:883 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:648 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:883 msgid "The element or node with the last Id was not found in the circuit!" msgstr "在電路中找不到具有最後一個識別名(ID)的元素或節點!" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Emissions.cpp:47 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Emissions.cpp:47 msgid "Recording begin time for emission-data" msgstr "排放資料的開始記錄時間" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Emissions.cpp:50 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Emissions.cpp:50 msgid "Recording period for emission-output" msgstr "排放輸出的紀錄時間區間" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:48 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:48 msgid "" "An exemplary parameter which can be used by all instances of the example " "device" msgstr "示範裝置的所有實例都可以使用的示範參數" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:63 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:63 #, c-format msgid "Invalid value '%'for vehicle parameter 'example'" msgstr "車輛參數 '範例(example)' 的值 '%' 無效" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:75 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:75 #, c-format msgid "Invalid value '%'for vType parameter 'example'" msgstr "車輛類型(vType)參數 '範例(example)' 的值 '%' 無效" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:67 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:67 msgid "Recording begin time for FCD-data" msgstr "浮動車資料的開始記錄時間" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:70 -#: /home/micha/programming/sumo/src/microsim/devices/MSTransportableDevice_FCD.cpp:49 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSTransportableDevice_FCD.cpp:49 msgid "Recording period for FCD-data" msgstr "浮動車資料的紀錄時間區間" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:73 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:73 msgid "Record objects in a radius around equipped vehicles" msgstr "記錄裝備車輛周圍半徑範圍內的物件" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:123 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:123 #, c-format msgid "Specified shape '%' for filtering fcd-output could not be found." msgstr "找不到用於過濾浮動車資料(fcd)輸出的指定形狀 '%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:148 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:148 msgid "Could not load names of edges for filtering fcd-output from '%'." msgstr "無法從 '%' 載入用於過濾浮動車資料(fcd)輸出的路段名稱。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:167 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:167 #, c-format msgid "Unknown attribute '%' to write in fcd output." msgstr "將未知屬性 '%' 寫入動車資料(fcd)輸出。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Friction.cpp:48 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Friction.cpp:48 msgid "" "The measurement noise parameter which can be applied to the friction device" msgstr "可應用於摩擦裝置的測量噪聲參數" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Friction.cpp:50 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Friction.cpp:50 msgid "" "The measurement offset parameter which can be applied to the friction device " "-> e.g. to force false measurements" msgstr "可應用於摩擦裝置的測量偏移(offset)參數 -> 例如:強迫錯誤的測量值" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:49 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:49 msgid "The communication range to the traffic light" msgstr "到交通號誌的通信範圍" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:52 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:52 msgid "The maximum speed factor when approaching a green light" msgstr "接近綠燈時的最大速度係數(factor)" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:55 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:55 msgid "Minimum speed when coasting towards a red light" msgstr "向紅燈滑行時的最低速度" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:171 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:171 msgid "" "Invalid value '%' for parameter 'device.glosa.range' of traffic light '%'" msgstr "無效的參數 'device.glosa.range' 的值 '%'; 交通號誌為 '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:54 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:54 msgid "The period with which the vehicle shall be rerouted" msgstr "車輛應該改道的時間區間" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:58 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:58 msgid "The rerouting period before depart" msgstr "出發後的改道時間區間" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:62 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:62 msgid "The weight of prior edge weights for exponential moving average" msgstr "指數移動平均值的先前(prior)路段權重的權重" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:66 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:66 msgid "The number of steps for moving average weight of prior edge weights" msgstr "先前(prior)路段權重的移動平均權重的次數(number of steps)" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:70 msgid "The interval for updating the edge weights" msgstr "更新路段權重的時間間距" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:75 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:75 msgid "Use zones (districts) as routing start- and endpoints" msgstr "使用區域(地區)作為路徑的起點和終點" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:78 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:78 msgid "" "Use weight files given with option --weight-files for initializing edge " "weights" msgstr "使用選項 --weight-files 指定權重檔案,以進行路段權重的初始化" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:82 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:82 msgid "The number of parallel execution threads used for rerouting" msgstr "用於重新搜尋路徑的平行執行地線程(threads)數量" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:85 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:85 msgid "Let rerouting happen at the same time for all vehicles" msgstr "讓所有車輛同時進行重新搜尋路徑" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:88 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:88 msgid "Allow rerouting triggered by rail signals." msgstr "允許通過鐵路信號觸發重新搜尋路徑。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:91 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:91 msgid "Compute separate average speeds for bicycles" msgstr "計算腳踏車的個別平均速度" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:94 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:94 msgid "Save adapting weights to FILE" msgstr "將調適過的權重儲存到檔案" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:102 msgid "" "Only one of the options 'device.rerouting.adaptation-steps' or 'device." "rerouting.adaptation-weight' may be given." @@ -3333,37 +3370,35 @@ "只有給定一個選項 'device.rerouting.adaptation-steps' 或是'devicererouting." "adaptation-weight' 。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:106 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:106 msgid "weights.random-factor cannot be less than 1" msgstr "weights.random-factor 不能小於 1" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:110 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:110 msgid "Negative value for device.rerouting.adaptation-interval!" msgstr "device.rerouting.adaptation-interval 的值為負值!" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:115 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:115 msgid "" "The value for device.rerouting.adaptation-weight must be between 0 and 1!" msgstr "device.rerouting.adaptation-weight 的值必須在 0 和 1 之間!" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:120 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:243 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:120 +#: D:\Repos\sumo/src\router\ROFrame.cpp:243 msgid "Parallel routing is only possible when compiled with Fox." msgstr "平行地進行路徑搜尋只有在使用 Fox 編譯時才有可能。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:125 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:125 msgid "Adapting number of routing threads to number of simulation threads." msgstr "將路徑搜尋的線程(threads)數調整為模擬的線程(threads)數。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:220 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:234 msgid "" "Specifies which measures will be logged (as a space or comma-separated " -"sequence of IDs in ('TTC', 'DRAC', 'PET'))" +"sequence of IDs in ('TTC', 'DRAC', 'PET', 'PPET','MDRAC'))" msgstr "" -"指定將記錄哪些指標值(在('TTC', 'DRAC', 'PET')中作為以空格或逗號分隔的識別名" -"(ID)序列)" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:222 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:236 msgid "" "Specifies space or comma-separated thresholds corresponding to the specified " "measures (see documentation and watch the order!). Only events exceeding the " @@ -3372,20 +3407,20 @@ "指定與指定指標相對應的閾值,並用空格或逗號分隔(請參閱說明文件並注意順序!)。" "只有超過閾值的事件(event)才會被記錄。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:224 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:238 msgid "" "Specifies whether trajectories will be logged (if false, only the extremal " "values and times are reported)." msgstr "指定是否記錄軌跡(如果為否(false),則僅報告極端值和時間)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:226 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:240 msgid "" "Specifies the detection range in meters. For vehicles below this distance " "from the equipped vehicle, SSM values are traced." msgstr "" "以米為單位指定偵測範圍。對於與配備車輛相距低於此距離的車輛,將追踪其 SSM 值。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:228 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:242 msgid "" "Specifies the time in seconds to be logged after a conflict is over. " "Required >0 if PET is to be calculated for crossing conflicts." @@ -3393,32 +3428,44 @@ "指定衝突結束後需記錄的時間(以秒為單位)。如果要為交叉衝突計算PET,則需要" "(Required) >0。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:230 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:244 +msgid "Specifies the perception reaction time for MDRAC computation." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:246 msgid "Give a global default filename for the SSM output" msgstr "為 SSM 輸出給定一個總體(global)預設檔案名稱" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:232 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:248 msgid "Whether to use coordinates of the original reference system in output" msgstr "是否在輸出檔案中使用原始參考系統的坐標" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:234 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:250 msgid "Whether to write positions (coordinates) for each timestep" msgstr "是否在每個時間步驟(timestep)寫出位置(坐標)" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:236 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:252 msgid "Whether to write lanes and their positions for each timestep" msgstr "是否在每個時間步驟(timestep)寫出車道及他們的位置" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:247 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:254 +msgid "" +"Which conflicts will be excluded from the log according to the conflict type " +"they have been classified (combination of values in 'ego', 'foe' , '', any " +"numerical valid conflict type code). An empty value will log all and " +"'ego'/'foe' refer to a certain conflict type subset." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:265 msgid "Could not load names of edges for filtering SSM device output from '%'." msgstr "無法從 '%' 載入路段名稱以過濾 SSM 裝置的輸出。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:1057 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:1119 msgid "" "SSM device of vehicle '%' detected collision with vehicle '%' at time=%." msgstr "車輛 '%' 的 SSM 裝置偵測到與車輛 '%' 的碰撞; 在時間= % 。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2188 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2331 msgid "" "Cannot classify SSM encounter between ego vehicle % and foe vehicle % at " "time=%\n" @@ -3426,8 +3473,8 @@ "無法對自我(ego)車輛 % 和對方(foe)車輛 % 在時間 = % 相遇時兩者之間的 SSM 進行" "分類\n" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2366 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2390 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2509 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2533 msgid "" "Cannot compute SSM due to bad internal lane geometry at junction '%'. " "Crossing point between traffic from links % and % not found." @@ -3435,101 +3482,139 @@ "由於路口 '%' 處的內部車道幾何形狀糟糕,無法計算 SSM。未找到從路段 % 和 % 的交" "通流量之間的交叉點(crossing point)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3497 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3699 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3703 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3984 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.measures'." msgstr "車輛參數 'ssm.measures' 的值 '%' 無效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3503 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3705 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3709 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3990 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.measures'." msgstr "車輛類型(vType)參數 'ssm.measures' 的值 '%' 無效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3508 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3714 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.file'. Using " "default of '%'." msgstr "車輛 '%' 不提供車輛參數 'device.ssm.file'。 使用預設值 '%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3531 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3737 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.geo'." msgstr "車輛參數 'ssm.geo' 的值 '%' 無效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3537 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3743 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.geo'." msgstr "車輛類型(vType)參數 'ssm.geo' 的值 '%' 無效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3542 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3748 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.geo'. Using " "default of '%'." msgstr "車輛 '%' 不提供車輛參數 'device.ssm.geo'。 使用預設值 '%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3558 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3764 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.write-positions'." msgstr "車輛參數 'ssm.write-positions' 的值 '%' 無效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3564 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3770 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.write-positions'." msgstr "車輛類型(vType)參數 'ssm.write-positions' 的值 '%' 無效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3569 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3596 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3775 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3802 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.write-positions'. " "Using default of '%'." msgstr "" "車輛 '%' 不提供車輛參數 'device.ssm.write-positions'。 使用預設值 '%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3585 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3791 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.write-lane-positions'." msgstr "車輛參數 'ssm.write-lane-positions' 的值 '%' 無效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3591 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3797 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.write-lane-positions'." msgstr "車輛類型(vType)參數 'ssm.write-lane-positions' 的值 '%' 無效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3612 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3819 +#, c-format +msgid "Invalid value '%' for vehicle parameter 'ssm.conflict-order'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3827 +#, c-format +msgid "Invalid value '%' for vType parameter 'ssm.conflict-order'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3833 +msgid "" +"Vehicle '%' does not supply vehicle parameter 'device.ssm.exclude-conflict-" +"types'. Using default of '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3851 +msgid "" +"SSM order filter '%' is not supported. Aborting construction of SSM device " +"'%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3868 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.range'." msgstr "車輛參數 'ssm.range' 的值 '%' 無效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3618 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3874 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.range'." msgstr "車輛類型(vType)參數 'ssm.range' 的值 '%' 無效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3623 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3879 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.range'. Using " "default of '%'." msgstr "車輛 '%' 不提供車輛參數 'device.ssm.range'。 使用預設值 '%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3639 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3895 +#, c-format +msgid "Invalid value '%'for vehicle parameter 'ssm.mdrac.prt'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3901 +#, c-format +msgid "Invalid value '%'for vType parameter 'ssm.mdrac.prt'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3906 +msgid "" +"Vehicle '%' does not supply vehicle parameter 'device.ssm.mdrac.prt'. Using " +"default of '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3924 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.extratime'." msgstr "車輛參數 'ssm.extratime' 的值 '%' 無效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3645 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3930 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.extratime'." msgstr "車輛類型(vType)參數 'ssm.extratime' 的值 '%' 無效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3650 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3935 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.extratime'. Using " "default of '%'." msgstr "車輛 '%' 不提供車輛參數 'device.ssm.extratime'。 使用預設值 '%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3656 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3941 #, c-format msgid "" "Negative (or no) value encountered for vehicle parameter 'device.ssm." @@ -3537,50 +3622,50 @@ msgstr "" "車輛 '%' 的車輛參數 'device.ssm.extratime' 為負(或無)值,改用預設值 %。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3670 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3955 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.trajectories'." msgstr "車輛參數 'ssm.trajectories' 的值 '%' 無效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3676 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3961 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.trajectories'." msgstr "車輛類型(vType)參數 'ssm.trajectories' 的值 '%' 無效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3681 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3966 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.trajectories'. " "Using default of '%'." msgstr "車輛 '%' 不提供車輛參數 'device.ssm.trajectories'。 使用預設值 '%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3710 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3995 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.measures'. Using " "default of '%'." msgstr "車輛 '%' 不提供車輛參數 'device.ssm.measures'。 使用預設值 '%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3727 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4012 msgid "" "SSM identifier '%' is not supported. Aborting construction of SSM device '%'." msgstr "不支援 SSM 識別符 '%'。 正在中止 SSM 裝置 '%' 的建構。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3738 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4023 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.thresholds'." msgstr "車輛參數 'ssm.thresholds' 的值 '%' 無效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3744 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4029 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.thresholds'." msgstr "車輛類型(vType)參數 'ssm.thresholds' 的值 '%' 無效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3749 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4034 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.thresholds'. Using " "default of '%'." msgstr "車輛 '%' 不提供車輛參數 'device.ssm.thresholds'。 使用預設值 '%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3764 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4049 msgid "" "Given list of thresholds ('%') is not of the same size as the list of " "measures ('%').\n" @@ -3589,174 +3674,216 @@ "給定的閾值清單('%')與量測(measures)清單('%')的大小不同。\n" "請為每項量測準確地指定一個閾值。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:82 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:46 +msgid "" +"Time to wait for a rescue vehicle on the road side when the battery is empty" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:48 +msgid "" +"Additional battery buffer for unexpected traffic situation when estimating " +"the battery need" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:50 +msgid "Battery percentage to go into rescue mode" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:52 +msgid "Search radius in travel time seconds" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:54 +msgid "When to trigger a new search if no station has been found" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:56 +msgid "The maximum charging speed of the vehicle battery" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:58 +msgid "Type of energy transfer" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:60 +msgid "" +"After this waiting time vehicle searches for a new station when the initial " +"one is blocked" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:124 +msgid "" +"Rerouting using station finder removes all upcoming stops for vehicle '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:84 msgid "" "The dispatch algorithm [greedy|greedyClosest|greedyShared|routeExtension|" "traci]" msgstr "調度演算法 [greedy|greedyClosest|greedyShared|routeExtension|traci]" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:85 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:87 msgid "Write information from the dispatch algorithm to FILE" msgstr "將調度演算法中的資訊寫入檔案" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:88 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:90 msgid "Load dispatch algorithm parameters in format KEY1:VALUE1[,KEY2:VALUE]" msgstr "以 KEY1:VALUE1[,KEY2:VALUE] 的格式載入調度演算法的參數" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:91 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:93 msgid "The period between successive calls to the dispatcher" msgstr "逐次呼叫調度器之間的時間間隔" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:94 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:96 msgid "The behavior of idle taxis [stop|randomCircling]" msgstr "閒置的計程車的行為 [stop|randomCircling]" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:97 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:99 msgid "Write information from the idling algorithm to FILE" msgstr "將閒置演算法中的資訊寫入檔案" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:115 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:117 msgid "Vehicle '%' with device.taxi should have vClass taxi instead of '%'." msgstr "" "帶有 device.taxi 的車輛 '%' 應該有 車輛類別(vClass) 計程車(taxi)而不是 '%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:122 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:124 msgid "" "Vehicle '%' with personCapacity % and containerCapacity % is not usable as " "taxi." msgstr "" -"車輛 '%' 有人員容量(personCapacity) % 和貨櫃容量(containerCapacity) %, 因此" -"不能作為計程車。" +"車輛 '%' 有人員容量(personCapacity) % 和貨櫃容量(containerCapacity) %, 因此不" +"能作為計程車。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:147 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:149 #, c-format msgid "Dispatch algorithm '%' is not known" msgstr "調度演算法 '%' 未知" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:313 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:328 msgid "Invalid Re-dispatch for existing customer '%' with a new reservation" msgstr "現有客戶 '%' 新預約的重新派送(re-dispatch)無效" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:346 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:361 msgid "Re-dispatch did not mention pickup for existing customer '%'" msgstr "重新派送未提及接取現有客戶 '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:453 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:468 msgid "Could not add taxi stop for vehicle '%' to %. time=% error=%." msgstr "無法為車輛 '%' 將計程車停靠點增加到 %。 時間=% 錯誤=%。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:569 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:584 msgid "Taxi '%' reaches scheduled end of service at time=%." msgstr "計程車 '%' 在 time=% 到達預定的服務結束時間。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:645 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:660 msgid "" "All customers left vehicle '%' at time=% but there are % remaining stops" msgstr "所有客戶離開車輛 '%' (在 time=% ),但還有 % 剩餘停靠點" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:116 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:116 msgid "Vehicle type for manual driving regime." msgstr "手動駕駛狀態(regime)的車輛類型。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:118 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:118 msgid "Vehicle type for automated driving regime." msgstr "自動駕駛狀態(regime)的車輛類型。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:120 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:120 msgid "Average response time needed by a driver to take back control." msgstr "駕駛者收回控制權所需的平均反應時間。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:122 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:122 msgid "Recovery rate for the driver's awareness after a ToC." msgstr "ToC (take-Over of Control)後駕駛者意識/認知的恢復率。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:124 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:124 msgid "" "Attention level below which a driver restrains from performing lane changes " "(value in [0,1])." msgstr "低於此專注程度,駕駛者會限制執行車道變換 (數值在 [0,1])。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:126 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:126 msgid "Average awareness a driver has initially after a ToC (value in [0,1])." msgstr "駕駛者最初在 ToC 之後的平均意識/認知程度 (數值在 [0,1])。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:128 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:128 msgid "Deceleration rate applied during a 'minimum risk maneuver'." msgstr "在'最小風險操作(minimum risk maneuver)'期間使用的減速度速率。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:130 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:130 msgid "" "Time, which the vehicle requires to have ahead to continue in automated " "mode. The default value of 0 indicates no dynamic triggering of ToCs." msgstr ",車輛需要的時間以繼續自動模式。預設值 0, 表示不動態觸發 ToCs。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:132 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:132 msgid "Probability that a dynamically triggered TOR is not answered in time." msgstr "未及時回答動態觸發的 TOR 的機率。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:134 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:134 msgid "If true, the vehicle tries to change to the right during an MRM." msgstr "如果為真,則車輛會嘗試在MRM(minimum risk maneuver)期間向右改變。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:136 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:136 msgid "" "If set, the vehicle tries to reach the given named stopping place during an " "MRM." msgstr "如果設定,車輛將嘗試在 MRM 期間到達指定的停車地點。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:138 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:138 msgid "Duration the vehicle stays at the safe spot after an MRM." msgstr "MRM 後車輛停留在安全地點的時間(duration)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:140 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:140 msgid "" "Maximal acceleration that may be applied during the ToC preparation phase." msgstr "在 ToC 準備階段可能使用的最大加速度。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:142 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:142 msgid "Timegap for ToC preparation phase." msgstr "ToC 準備階段的時間間隔。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:144 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:144 msgid "Additional spacing for ToC preparation phase." msgstr "ToC 準備階段的額外間距(spacing)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:146 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:146 msgid "" "Maximal deceleration applied for establishing increased gap in ToC " "preparation phase." msgstr "最大減速應用於在 ToC 準備階段建立增加的差距(gap)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:148 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:148 msgid "" "Rate of adaptation towards the increased headway during ToC preparation." msgstr "在 ToC 準備期間對增加的車間距的調整率。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:150 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:150 msgid "" "Whether a coloring scheme shall by applied to indicate the different ToC " "stages." msgstr "是否應使用著色的格式來指出不同的 ToC 階段。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:152 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:152 msgid "Switches on output by specifying an output filename." msgstr "通過指定輸出檔案名稱開啟輸出(output)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:161 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:161 msgid "ToC device is not supported by the mesoscopic simulation." msgstr "中觀模擬(mesoscopic simulation)不支援 ToC 裝置。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:200 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:200 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.measures'" msgstr "車輛參數 'ssm.measures' 的值 '%' 無效" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:206 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:206 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.measures'" msgstr "車輛類型(vType)參數 'ssm.measures' 的值 '%' 無效" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:220 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:220 msgid "" "Given value for ToC device parameter 'dynamicMRMProbability' (=%) is not in " "the admissible range [0,0.5]. Truncated to %." @@ -3764,7 +3891,7 @@ "ToC 裝置參數 'dynamicMRMProbability'(=%)的給定值不在允許範圍 [0,0.5] 內。截斷" "為 %。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:246 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:246 msgid "" "If any openGap parameters for the ToC model are specified, then at least one " "of toc.ogNewTimeHeadway and toc.ogNewSpaceHeadway must be defined." @@ -3772,115 +3899,119 @@ "如果指定了 ToC 模式的任何 openGap 參數,則必須至少定義 toc.ogNewTimeHeadway " "和 toc.ogNewSpaceHeadway 中的一個。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:578 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:578 msgid "Ignoring unknown safe spot '%' for vehicle '%'." msgstr "忽略未知安全點 '%'; 車輛為 '% '。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:731 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:731 #, c-format msgid "vType '%' for vehicle '%' is not known." msgstr "車輛類型(vType) '%' 未知; 車輛為 '% '。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:933 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:933 msgid "" "Setting device.toc.currentAwareness during automated mode has no effect." msgstr "在自動模式下,設定 device.toc.currentAwareness 無效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:950 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:950 #, c-format msgid "" "Value of dynamicToCThreshold must be non-negative. (Given value % for " "vehicle % is ignored)" msgstr "dynamicToCThreshold 的值必須是非負數。 (忽略車輛 % 的給定值 %)" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:961 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:961 #, c-format msgid "" "Value of dynamicMRMProbability must be non-negative. (Given value % for " "vehicle % is ignored)" msgstr "dynamicMRMProbability 的值必須是非負數。 (忽略車輛 % 的給定值 %)" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:975 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:975 #, c-format msgid "" "Value of maxPreparationAccel must be non-negative. (Given value % for " "vehicle % is ignored)" msgstr "maxPreparationAccel 的值必須是非負數。 (忽略車輛 % 的給定值 %)" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:1000 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:1021 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:1000 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:1021 msgid "Unknown ToCState '%'" msgstr "未知的ToC狀態(ToCState) '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:97 +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:97 msgid "" "Mixing reservations of persons and containers with the same group is not " "supported for % and %" msgstr "不支持 % 和 % 的同一群組的人員和貨櫃混合預約" -#: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:200 +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:200 msgid "Inconsistent group reservations." msgstr "不一致的群組保留(eservations)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:204 +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:204 msgid "Inconsistent group reservations (2)." msgstr "不一致的群組保留(eservations) (2)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:63 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:65 msgid "Idle taxi '%' has no next segment to stop. time=%." msgstr "空閒計程車 '%' 沒有下一路段要停。 時間=%。" -#: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:104 #, c-format msgid "Idle taxi '%' could not stop within %m" msgstr "空閒計程車 '%' 無法在 % 米內停靠" -#: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:155 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:157 #, c-format msgid "Vehicle '%' ends idling in a cul-de-sac" msgstr "車輛 '%' 在囊底路停止空轉/怠速" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:96 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:183 +msgid "Could not determine taxi stand for vehicle '%' at time=%" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:96 msgid "Rerouting is useless if the edge weights do not get updated!" msgstr "如果路段重沒有更新,重新搜尋路徑是沒有用的!" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:148 +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:148 msgid "weights.priority-factor cannot be negative." msgstr "weights.priority-factor 不能為負值。" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:152 +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:152 msgid "" "Option weights.priority-factor does not take effect because all edges have " "the same priority" msgstr "選項 weights.priority-factor 不生效,因為所有路段都具有相同的優先等級" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:411 +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:411 msgid "Unknown routing algorithm '%'!" msgstr "未知的路徑搜尋演算法 '%'!" -#: /home/micha/programming/sumo/src/microsim/devices/MSTransportableDevice_Routing.cpp:46 +#: D:\Repos\sumo/src\microsim\devices\MSTransportableDevice_Routing.cpp:46 msgid "The period with which the person shall be rerouted" msgstr "此人員應重新搜尋路徑的期限(period)" -#: /home/micha/programming/sumo/src/microsim/engine/VehicleEngineHandler.cpp:157 +#: D:\Repos\sumo/src\microsim\engine\VehicleEngineHandler.cpp:157 msgid "Invalid engine map type. Only \"poly\" is supported for now" msgstr "無效的動力機能圖類型(engine map type)。 目前只支援 \"poly\"" -#: /home/micha/programming/sumo/src/microsim/engine/VehicleEngineHandler.cpp:197 +#: D:\Repos\sumo/src\microsim\engine\VehicleEngineHandler.cpp:197 msgid "Unknown tag '%' while parsing." msgstr "解析(parsing)時出現未知的標記 '%' 。" -#: /home/micha/programming/sumo/src/microsim/lcmodels/MSAbstractLaneChangeModel.cpp:82 +#: D:\Repos\sumo/src\microsim\lcmodels\MSAbstractLaneChangeModel.cpp:82 #, c-format msgid "Lane change model '%' is not compatible with sublane simulation" msgstr "車道變換模式 '%' 與子車道(sublane)模擬不兼容" -#: /home/micha/programming/sumo/src/microsim/lcmodels/MSAbstractLaneChangeModel.cpp:98 +#: D:\Repos\sumo/src\microsim\lcmodels\MSAbstractLaneChangeModel.cpp:98 #, c-format msgid "Lane change model '%' not implemented" msgstr "車道變換模式 '%' 尚未構建" -#: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:124 +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:124 msgid "" "No valid detector length and start position given. Assuming startPos = 0 and " "length = end position" @@ -3888,7 +4019,7 @@ "沒有給定有效的偵測器長度和起始位置。假設 起始位置(startPos)=0 且 長度=結束位" "置" -#: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:128 +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:128 msgid "" "No valid detector length and end position given. Assuming endPos = lane " "length and length = endPos-startPos" @@ -3896,161 +4027,165 @@ "沒有給定有效的偵測器長度和結束位置。假設 結束位置(endPos)=車道長度 且 長度 = " "結束位置(endPos)-起始位置(startPos)" -#: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:908 +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:908 msgid "Multi-lane e2Detector does not support detecting persons yet" msgstr "多車道 e2Detector 偵測器尚不支持偵測人員(persons)" -#: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:161 +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:160 msgid "Negative vehicle step fraction for '%' on lane '%'." msgstr "'%' 有負的車輛步長分數(step fraction); 在車道 '%' 。" -#: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:556 +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:554 msgid "aggregated meanData output not yet implemented for trackVehicles" msgstr "尚未為 trackVehicles 完成彙總(aggregated)的平均資料(meanData)輸出" -#: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:755 +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:766 msgid "Unknown attribute '%' to write in meanData '%'." msgstr "未知的屬性 '%' 寫入平均資料(meanData) '%' 內。" -#: /home/micha/programming/sumo/src/microsim/output/MSStopOut.cpp:69 +#: D:\Repos\sumo/src\microsim\output\MSStopOut.cpp:69 msgid "Vehicle '%' stops on edge '%', time=% without ending the previous stop." msgstr "在沒有結束上一次停靠的情況下,車輛 '%' 停在路段 '%' 上,時間=%。" -#: /home/micha/programming/sumo/src/microsim/output/MSStopOut.cpp:105 +#: D:\Repos\sumo/src\microsim\output\MSStopOut.cpp:105 msgid "Vehicle '%' ends stop on edge '%', time=% without entering the stop." msgstr "在未進入停靠站的情況下,車輛 '%' 在路段 '%' 處結束停靠,時間=% 。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:139 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:140 #, c-format msgid "Traffic light '%' does not control any links" msgstr "交通號誌 '%' 不控制任何路段" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:227 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:229 msgid "" "Unknown inductionLoop '%' given as custom detector for actuated tlLogic '%', " "program '%." msgstr "" -"未知的感應線圈偵測器 '%',其被給定作為觸動號誌邏輯(actuated tlLogic)'%'的自定(custom)偵測器, " -"時制計畫(program) '%'。" +"未知的感應線圈偵測器 '%',其被給定作為觸動號誌邏輯(actuated tlLogic)'%'的自定" +"(custom)偵測器, 時制計畫(program) '%'。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:241 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:242 msgid "" "At actuated tlLogic '%', minDur % is too short for a detector gap of %m." msgstr "" -"在觸動號誌邏輯(tlLogic) '%', 最小時間(minDur) % 對於 % 公尺的偵測間距來說太短了。" +"在觸動號誌邏輯(tlLogic) '%', 最小時間(minDur) % 對於 % 公尺的偵測間距來說太短" +"了。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:406 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:407 msgid "At actuated tlLogic '%', actuated phase % has no controlling detector." msgstr "" "在觸動號誌邏輯(tlLogic) '%', 觸動時相(actuated phase) % 沒有控制的偵測器。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:443 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:444 msgid "At actuated tlLogic '%', linkIndex % has no controlling detector." msgstr "在觸動號誌邏輯(tlLogic) '%', 連接索引(linkIndex) % 沒有控制的偵測器。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:452 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:453 msgid "" "Invalid link '%' given as linkMaxDur parameter for actuated tlLogic '%', " "program '%." msgstr "" -"linkMaxDur 參數的連接(link) '%' 無效; 觸動號誌邏輯(tlLogic)為 '%'; 時制計畫(program)為 '%'。" +"linkMaxDur 參數的連接(link) '%' 無效; 觸動號誌邏輯(tlLogic)為 '%'; 時制計畫" +"(program)為 '%'。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:462 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:463 msgid "" "Invalid link '%' given as linkMinDur parameter for actuated tlLogic '%', " "program '%." msgstr "" -"linkMinDur 參數的連接(link) '%' 無效; 觸動號誌邏輯(tlLogic)為 '%'; 時制計畫(program)為 '%'。" +"linkMinDur 參數的連接(link) '%' 無效; 觸動號誌邏輯(tlLogic)為 '%'; 時制計畫" +"(program)為 '%'。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:903 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:905 msgid "" "At actuated tlLogic '%', transition phase % should not have multiple next " "phases" msgstr "" "在觸動號誌邏輯(tlLogic)'%', 過渡時相(phase) % 不應有多個下一時相(phases)" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1061 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1063 msgid "Unmatched parentheses in condition %'" msgstr "條件式 %' 中不配對的括號" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1076 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1078 msgid "Invalid empty condition '%'" msgstr "無效的空條件式 '%'" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1091 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1093 msgid "Unsupported condition '%'" msgstr "未支援的條件式 '%'" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1154 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1156 msgid "Division by 0 in condition '%'" msgstr "在條件式 '%' 中除以 0" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1205 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1207 #, c-format msgid "Modifying global condition '%' is forbidden" msgstr "禁止修改總體條件(global condition) '%'" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1217 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1219 msgid "Invalid empty expression" msgstr "無效的空表式" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1313 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1315 msgid "Error when retrieving conditions '%' for tlLogic '%' (%)" msgstr "提取條件 '%' 時發生錯誤; 號誌邏輯(tlLogic)為 '%' (%)" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSDelayBasedTrafficLightLogic.cpp:96 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSDelayBasedTrafficLightLogic.cpp:96 msgid "" "Unknown laneAreaDetector '%' given as custom detector for delay_based " "tlLogic '%', program '%." msgstr "" -"未知的車道區域偵測器(laneAreaDetector) '%', 其作為以延遲為主的號誌邏輯(tlLogic) '%' 的自定偵測器," -"時制計畫(program) '%'。" +"未知的車道區域偵測器(laneAreaDetector) '%', 其作為以延遲為主的號誌邏輯" +"(tlLogic) '%' 的自定偵測器,時制計畫(program) '%'。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSOffTrafficLightLogic.cpp:80 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSOffTrafficLightLogic.cpp:80 msgid "Invalid 'off'-state for link % at junction '%'" msgstr "連接線(link) % 的關閉狀態('off'-state)無效; 發生在路口 '%'" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSOffTrafficLightLogic.cpp:84 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSOffTrafficLightLogic.cpp:84 msgid "Inconsistent 'off'-states for linkIndex % at tlLogic '%'" msgstr "" -"連接索引(linkIndex) % 的關閉狀態('off'-state)不一致; 發生在號誌邏輯(tlLogic) '%'" +"連接索引(linkIndex) % 的關閉狀態('off'-state)不一致; 發生在號誌邏輯(tlLogic) " +"'%'" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:109 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:109 #, c-format msgid "Rail signal at junction '%' does not control any links" msgstr "路口 '%' 的鐵路號誌不控制任何路段" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:1210 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:1210 msgid "Found circular block after railSignal % (% edges, length %)" msgstr "在鐵路號誌(railSignal) % (% 路段, 長度 %)後找到圓形區塊" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:1321 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:1321 msgid "Found circular block at railSignal % (% edges, length %)" msgstr "在鐵路號誌(railSignal) % (% 路段, 長度 %)處找到圓形區塊" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignalConstraint.cpp:147 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignalConstraint.cpp:147 #, c-format msgid "Unknown tracker lane '%' in loaded state." msgstr "在載入的狀態內,未知的追蹤車道(tracker lane) '%'。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:169 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:169 msgid "Listing output lanes" msgstr "列出輸出車道" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:243 -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:277 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:243 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:277 msgid "Unrecognized traffic threshold calculation mode" msgstr "無法辨識的交通流量閾值計算模式" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:57 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:57 msgid "NO VALID POLICY LIST READ" msgstr "未能讀取有效的政策清單" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:81 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:81 msgid "VEHICLE TYPES WEIGHT only works with phase policy, which is missing" msgstr "車輛類型權重(VEHICLE TYPES WEIGHT)僅適用於相位策略,缺失中" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:160 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:160 #, c-format msgid "" "MSSwarmTrafficLightLogic::init Intersection % pheromoneInputLanes: lane " @@ -4058,7 +4193,7 @@ msgstr "" "MSSwarmTrafficLightLogic::init 路口 % pheromoneInputLanes: 車道 % 不被允許" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:182 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:182 #, c-format msgid "" "MSSwarmTrafficLightLogic::init Intersection % pheromoneOutputLanes lane " @@ -4066,27 +4201,27 @@ msgstr "" "MSSwarmTrafficLightLogic::init 路口 % pheromoneOutputLanes 車道 % 不被允許" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:194 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:194 msgid "*** Intersection % will run using MSSwarmTrafficLightLogic ***" msgstr "*** 路口 % 將使用 MSSwarmTrafficLightLogic 運行 ***" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:202 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:202 msgid "TL % time 0 Policy: % (pheroIn= 0 ,pheroOut= 0 ) OldPolicy: % ." msgstr "交通號誌(TL) % 時間 0 政策: % (pheroIn= 0 ,pheroOut= 0 ) 舊政策: % 。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:81 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:81 msgid "Mismatching phase size in tls '%', program '%'." msgstr "在交通號誌(tls) '%' 未配對的相位大小,時制計畫(program) '%'。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:116 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:116 msgid "No initial signal plan loaded for tls '%'." msgstr "交通號誌(tls) '%' 沒有載入的初始號誌計畫。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:163 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:163 msgid "Could not build an off-state for tls '%'." msgstr "交通號誌(tls) '%' 無法建立一個關閉狀態(off-state)。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:487 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:487 #, c-format msgid "" "The computed factor sum in WAUT '%' at time '%' equals zero;\n" @@ -4095,86 +4230,89 @@ "WAUT '%' (在時間 '%') 中計算的係數總和等於零;\n" "假設 WAUT 定義內有錯誤。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:159 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:163 msgid "Unused states in tlLogic '%', program '%' in phase % after tl-index %" msgstr "" -"號誌邏輯(tlLogic) '%' 內有未使用的狀態, 其發生在時相計畫(program) '%' 的時相(phase) % 內 " -"(在號誌索引(tl-index) % 後)" +"號誌邏輯(tlLogic) '%' 內有未使用的狀態, 其發生在時相計畫(program) '%' 的時相" +"(phase) % 內 (在號誌索引(tl-index) % 後)" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:178 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:182 msgid "" "Missing yellow phase in tlLogic '%', program '%' for tl-index % when " "switching% to phase %." msgstr "" -"號誌邏輯(tlLogic) '%' 的時相計畫 '%' 的號誌索引(tl-內index) % 內缺少黃燈時相, 其發生在" -"切換到時相 % 時。" +"號誌邏輯(tlLogic) '%' 的時相計畫 '%' 的號誌索引(tl-內index) % 內缺少黃燈時" +"相, 其發生在切換到時相 % 時。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:200 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:204 msgid "Missing green phase in tlLogic '%', program '%' for tl-index %." msgstr "" -"號誌邏輯(tlLogic) '%' 的時相計畫 '%' 的號誌索引(tl-index) % 內缺少綠燈時相。" -"。" +"號誌邏輯(tlLogic) '%' 的時相計畫 '%' 的號誌索引(tl-index) % 內缺少綠燈時" +"相。。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:263 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:267 msgid "" "Program '%' at tlLogic '%' is incompatible with logic at junction " "'%' (mutual conflict between link indices %,% tl indices %,% phase %).\n" " Rebuild the network with option '--tls.ignore-internal-junction-jam' or " "include the program when building." -msgstr "時相計畫 '%' (在號誌邏輯(tlLogic) '%' ) 與路口 '%' 不相容" -"(互相衝突發生在連接索引(link indices) %,% 號誌索引(tl indices) %,% 時相(phase) % 之間).\n" -" 使用選項 '--tls.ignore-internal-junction-jam' 重建路網,或在路網構建時包含該時相計畫。" +msgstr "" +"時相計畫 '%' (在號誌邏輯(tlLogic) '%' ) 與路口 '%' 不相容(互相衝突發生在連接" +"索引(link indices) %,% 號誌索引(tl indices) %,% 時相(phase) % 之間).\n" +" 使用選項 '--tls.ignore-internal-junction-jam' 重建路網,或在路網構建時包含" +"該時相計畫。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:460 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:464 msgid "Green fraction is only 1% for link % in tlLogic '%', program '%'." msgstr "" -"連接線(link) % 的綠燈部分僅為 1% (在號誌邏輯(tlLogic) '%' 的時相計畫 '%' 內)。" +"連接線(link) % 的綠燈部分僅為 1% (在號誌邏輯(tlLogic) '%' 的時相計畫 '%' " +"內)。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:164 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:164 msgid "" "At NEMA tlLogic '%', different sizes of NEMA phase states. Please check the " "NEMA XML" msgstr "" "在 NEMA 號誌邏輯(tlLogic) '%',不同大小的 NEMA 相位狀態。 請檢查 NEMA XML" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:566 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:566 msgid "At NEMA tlLogic '%', actuated phase % has no controlling detector" msgstr "在 NEMA 號誌邏輯(tlLogic) '%', 觸動時相 % 沒有控制的偵測器" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:584 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:584 msgid "At NEMA tlLogic '%, linkIndex % has no controlling detector" msgstr "在 NEMA 號誌邏輯(tlLogic) '%',連接索引(linkIndex) % 沒有控制的偵測器" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:630 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:630 #, c-format msgid "NEMA tlLogic '%' is not coordinated but an offset was set." msgstr "" "EMA 號誌邏輯(tlLogic) '%' 沒有被協調控制(coordinated),但設置了偏移值" "(offset)。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:959 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:959 msgid "I am starting in the coordinated phases" msgstr "我正在從協調階段(coordinated phases)開始" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel.h:180 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel.h:182 msgid "moveTo is ignored by the current movement model" msgstr "移動到(moveTo)被目前的移動模式(movement model)忽略" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel.h:196 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel.h:198 msgid "moveToXY is ignored by the current movement model" msgstr "移動到XY(moveToXY)被目前的移動模式(movement model)忽略" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Remote.cpp:209 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Remote.cpp:209 #, c-format msgid "Edge: % does not allow pedestrians." msgstr "路段: % 不允許行人使用。" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Remote.cpp:299 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Remote.cpp:299 msgid "Pedestrian model 'remote' does not support simulation.loadState state\n" msgstr "行人模式 '遠程(remote)' 不支援 simulation.loadState 狀態\n" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:124 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:871 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:124 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:870 msgid "" "Pedestrian vType '%' width % is larger than pedestrian.striping.stripe-width " "and this may cause collisions with vehicles." @@ -4182,87 +4320,88 @@ "行人類型(vType) '%' 寬度 % 大於 pedestrian.striping.stripe-width, 這可能會導" "致與車輛發生碰撞。" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:179 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:179 msgid "Person '%' could not find sidewalk on edge '%', time=%." msgstr "人員 '%' 無法在路段 '%' 上發現人行道, 時間=%。" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:463 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:466 #, c-format msgid "Invalid walkingarea '%' does not allow continuation." msgstr "無效的行走區域 '%' 不允許繼續。" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:1923 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:1926 msgid "Disconnected walk for person '%'." msgstr "人員 '%' 有不連接的步行。" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:2124 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:2127 msgid "Person '%' is jammed on edge '%', time=%." msgstr "人員 '%' 在路段 '%' 上被壅塞住,時間=%。" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:90 +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:90 msgid "Adjusting departPos for cloned walk with routeDistribution '%'" msgstr "" "使用路徑分配(routeDistribution) '%' 調整複製的步行的出發位置(departPos)" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:94 +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:94 msgid "Adjusting arrivalPos for cloned walk with routeDistribution '%'" msgstr "" "使用路徑分配(routeDistribution) '%' 調整複製的步行的抵達位置(arrivalPos)" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:98 +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:98 msgid "Adjusting departLane for cloned walk with routeDistribution '%'" msgstr "" "使用路徑分配(routeDistribution) '%' 調整複製的步行的出發車道(departLane)" -#: /home/micha/programming/sumo/src/microsim/transportables/MSStageTrip.cpp:174 +#: D:\Repos\sumo/src\microsim\transportables\MSStageTrip.cpp:174 msgid "" "Ignoring vehicle type '%' when routing person '%' because it is not allowed " "on the start edge." -msgstr "車輛類型 '%' 在為人員 '%' 搜尋路徑時將被忽略, 因為它不允許出現在起始路段。" +msgstr "" +"車輛類型 '%' 在為人員 '%' 搜尋路徑時將被忽略, 因為它不允許出現在起始路段。" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:134 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:134 msgid "Changing a transportable ID is not permitted" msgstr "不允許更改可運輸的識別名(ID)" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:256 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:256 msgid "Teleporting % '%'; waited too long, from edge '%', time=%." msgstr "移送(teleporting) % '%'; 等待太久, 從路段 '%', 時間=%。" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:391 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:391 msgid "parkingAreaReroute not support for containers" msgstr "停車區域重新導引(parkingAreaReroute)不支援貨櫃" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportableControl.cpp:69 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportableControl.cpp:69 msgid "Unknown pedestrian model '%'" msgstr "未知的行人模式 '%'" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:142 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:142 msgid "No flow intervals in calibrator '%'." msgstr "校估器 '%' 中沒有流量時間間隔。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:161 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:161 #, c-format msgid "Calibrator '%' has no active or upcoming interval" msgstr "校估器 '%' 沒有現用(active)或即將到來(upcoming)的時間間隔" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:209 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:209 msgid "Insertion lane may differ from calibrator lane for calibrator '%'." msgstr "插入的車道(insertion lane)可能不同於校估器 '%' 的校估車道。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:213 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:213 msgid "Unknown vehicle type '%' in calibrator '%'." msgstr "校估器 '%' 中未知的車輛類型 '%'。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:216 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:216 msgid "Mandatory attribute missing in definition of calibrator '%'." msgstr "校估器 '%' 的定義中缺少必備屬性(mandatory attribute)。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:218 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:218 msgid "" "Non-numeric value for numeric attribute in definition of calibrator '%'." msgstr "在校估器 '%' 的定義中,數值屬性有非數字值。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:221 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:221 msgid "" "Either 'vehsPerHour', 'speed' or 'type' has to be set in flow definition of " "calibrator '%'." @@ -4270,227 +4409,228 @@ "必須在校估器 '%' 的流量定義中設定 '每小時車輛(vehsPerHour)', '速度(speed)' " "或 '類型(type)'。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:224 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:224 msgid "Type calibration is not supported in meso for calibrator '%'." msgstr "中觀模擬(meso)不支援校估器 '%' 的類型(type)校估。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:318 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:318 msgid "Calibrator '%' could not remove vehicle '%' time=%." msgstr "校估器 '%' 無法移除車輛 '%' 時間e=%。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:699 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:699 msgid "Cannot set flow for calibrator '%' with overlapping interval." msgstr "無法為具有重疊時間間隔(overlapping interval)的校估器 '%' 設定流量。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:701 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:701 msgid "Cannot set flow for calibrator '%' with negative interval." msgstr "無法為負的時間間隔(negative interval)的校估器 '%' 設定流量。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSLaneSpeedTrigger.cpp:176 +#: D:\Repos\sumo/src\microsim\trigger\MSLaneSpeedTrigger.cpp:176 msgid "Invalid or unsorted time entry in vss '%'." msgstr "可變速標誌(vss) '%' 中的時間輸入項(entry)無效或未排序。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSLaneSpeedTrigger.cpp:192 +#: D:\Repos\sumo/src\microsim\trigger\MSLaneSpeedTrigger.cpp:192 msgid "Time % was set twice for vss '%'; replacing first entry." -msgstr "時間 % 設定了兩次; 發生在可變速標誌(vss) '%'; 替換第一個輸入項(entry)。" +msgstr "" +"時間 % 設定了兩次; 發生在可變速標誌(vss) '%'; 替換第一個輸入項(entry)。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:354 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:409 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:454 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:471 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:492 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:518 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:544 -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:386 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:354 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:409 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:454 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:471 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:492 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:518 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:544 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:386 msgid "" "Overhead circuit solver requested, but solver support (Eigen) not compiled " "in." msgstr "已請求架空線路解算器(solver),但解算器的支援 (Eigen) 尚未編譯。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:579 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:579 msgid "Overhead circuit solver requested, but solver support not compiled in." msgstr "已請求架空線路解算器(solver),但解算器支援未被編譯。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:690 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:690 #, c-format msgid "" "The requested total power could not be delivered by the overhead wire. Only " "% of originally requested power was provided." msgstr "請求的總功率無法通過架空線傳送。僅提供了最初請求的功率的 %。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:127 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:127 msgid "MSTriggeredRerouter %: No destination edge id given." msgstr "MSTriggeredRerouter %: 未提供目標路段識別名(id)。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:192 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:192 msgid "MSTriggeredRerouter %: No route id given." msgstr "MSTriggeredRerouter %: 未提供路徑。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:217 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:217 msgid "MSTriggeredRerouter %: No parking area id given." msgstr "MSTriggeredRerouter %: 未提供停車區域。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:505 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:505 #, c-format msgid "" "Cannot keep destination edge '%' for vehicle '%' due to closed edges. " "Terminating route." msgstr "由於路段封閉, 無法保留目標路段 '%', 其為車輛 '%' 的目的地。 終止路線。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:604 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:604 msgid "Invalid value '%' for vehicle parameter '%'" msgstr "無效的值 '%'; 車輛參數為 '%'" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:612 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:612 msgid "Invalid value '%' for vType parameter '%'" msgstr "無效的值 '%'; 車輛類型(vType)參數為 '%'" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:784 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:782 #, c-format msgid "" "Parkingarea '%' along the way cannot be used by vehicle '%' for unknown " "reason" msgstr "由於未知原因, 無法使用沿途的停車區域 '%'; 受影響車輛為 '%'" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1105 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1103 msgid "" "Invalid distance computation for vehicle '%' to parkingArea '%' at time=%." msgstr "車輛 '%' 到停車區域 '%' 的距離計算無效,在時間=%。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1160 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1158 msgid "" "Invalid distance computation for vehicle '%' from parkingArea '%' at time=%." msgstr "車輛 '%' 從停車區域 '%' 的距離計算無效,在時間=%。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1236 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1234 msgid "" "ParkingArea '%' is targeted by rerouter '%' but doesn't have it's own " "rerouter. This may cause parking search to abort." msgstr "" -"停車區域 '%' 為路徑重新搜尋裝置(rerouter) '%' 的目標,但它沒有自己的路徑重新搜尋裝置。" -"這可能會導致終止停車位的搜尋。" +"停車區域 '%' 為路徑重新搜尋裝置(rerouter) '%' 的目標,但它沒有自己的路徑重新" +"搜尋裝置。這可能會導致終止停車位的搜尋。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:119 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:153 msgid "Ambiguity in turnarounds computation at junction '%'." msgstr "路口 '%' 處的迴轉(turnarounds)計算不明確。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:269 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:358 msgid "Converting invalid rail_crossing to priority junction '%'." msgstr "" "將無效的平交道(rail_crossing)轉換為以優先等級(priority)控制的路口 '%' 。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:273 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:362 msgid "Converting invalid rail_crossing to traffic_light at junction '%'." msgstr "將路口 '%' 處的無效平交道(rail_crossing)轉換為 交通號誌。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:282 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1739 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:423 -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:358 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:371 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1744 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:423 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:358 msgid "Could not allocate tls '%'." msgstr "無法定位交通號誌 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:173 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:176 msgid "" "Added % bidi-edges to ensure that all tracks are usable in both directions." msgstr "新增 % 雙向路段(bidi-edges)以確保所有軌道都可以在兩個方向上使用。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:175 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:178 #, c-format msgid "Ignore % edges because they have the wrong spreadType" msgstr "忽略 % 路段,因為它們有錯誤的分散類型(spreadType)" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:197 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:200 #, c-format msgid "Bidi-edge '%' prevented by filtering rules." msgstr "雙向路段(bidi-edges) '%' 被過濾規則阻止。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:211 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:214 msgid "Could not add bidi-edge '%'." msgstr "無法新增雙向路段(bidi-edges) '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:272 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:275 msgid "Railway nodes by number of incoming,outgoing edges:" msgstr "按進出路段數排列的鐵路節點:" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:370 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:373 msgid "Found % railway nodes marked as buffer_stop" msgstr "找到標記為 buffer_stop 的 % 鐵路節點" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:380 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:383 msgid "Found % bidirectional rail edges" msgstr "找到 % 雙向鐵路路段" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:406 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:409 msgid "Found % railway edges and % railway nodes (% signals)." msgstr "找到 % 鐵路路段和 % 鐵路節點 (% 信號)。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:523 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:526 msgid "Added % bidi-edges as extension of existing bidi edges." msgstr "增加 % 雙向路段(bidi-edges)作為現有雙向路段的延伸。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:534 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:537 msgid "Could not find bidi-edge for edge '%'" msgstr "無法發現路段 '%' 的雙向路段(bidi-edges)" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:639 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:642 msgid "Found % reversible edge sequences between broken rail nodes" msgstr "在斷的(broken)火車軌道節點之間找到 % 可反向的路段序列(sequence)" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:668 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:671 msgid "Reversed % sequences (count by length: %)" msgstr "反向 % 序列 (按長度計數:%)" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:689 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:692 msgid "Ignoring buffer stop junction '%' with % edges." msgstr "忽略緩衝停止路口(buffer stop junction) '%', 其連接 % 路段。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:746 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:749 msgid "Added % edges to connect % buffer stops in both directions." msgstr "增加 % 路段以在雙向上連接 % 緩衝站(buffer stops)。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:827 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:830 msgid "" "Added % bidi-edges between % pairs of railway switches (count by length: %)" msgstr "" "在 % 對(pairs)的鐵路道岔之間增加了 % 雙向路段(bidi-edges)(按長度計數: %)" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:974 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:977 msgid "" "Edge sequence is not consistent with stop sequence in line '%', not adding " "bidi edges." msgstr "" "在路線(line) '%' 內,路段順序與停靠順序不一致,未添加雙向路段(bidi edges)。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1016 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1019 #, c-format msgid "" "Stop on edge '%' can only be reached in reverse but edge has the wrong " "spreadType." msgstr "路段 '%' 的停靠點只能反向到達,但路段有錯誤的分散類型(spreadType)。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1037 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1044 msgid "No connection found between stops on edge '%' and edge '%'." msgstr "在路段 '%' 和路段 '%' 上的停靠點之間找不到連接線(connection)。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1147 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1154 msgid "" "Added % bidi-edges to ensure connectivity of straight tracks at geometry-" "like nodes." msgstr "增加 % 雙向路段(bidi-edges)以確保直線軌道在類似幾何的節點處的連通性。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1149 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1156 msgid "" "Added % bidi-edges to ensure connectivity of straight tracks at switches." msgstr "增加 % 雙向路段(bidi-edges)以確保直線軌道在鐵路道岔處的連通性。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1209 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1216 msgid "" "Cannot extend track direction priority because there are no track edges with " "positive priority" msgstr "無法擴展軌道方向優先級別,因為沒有具有正的(positive)優先級別的軌道路段" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1265 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1272 msgid "" "Edge '%' was loaded with undefined priority (%) but has unambiguous main " "direction (no bidi edge)" @@ -4498,112 +4638,118 @@ "路段 '%' 以未定義的優先級別 (%) 被載入,但具有明確的主方向(無雙向路段(bidi " "edge))" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:116 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1359 +msgid "Added % rail signals at % stops." +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:116 #, c-format msgid "Can not build ramp on edge '%' - the edge is unsuitable." msgstr "無法在路段 '%' 上建立匝道 - 路段不合適。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:120 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:120 #, c-format msgid "Can not build on ramp on edge '%' - the edge is not known." msgstr "無法在路段 '%' 上建立入口匝道 - 路段未知。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:131 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:131 #, c-format msgid "Can not build off ramp on edge '%' - the edge is not known." msgstr "無法在路段 '%' 上建立出口匝道 - 路段未知。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:249 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:249 msgid "Ups - could not build on-ramp for edge '%' (node could not be build)!" msgstr "糟糕 - 無法在路段 '%' 建立入口匝道 (無法建立節點)!" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:254 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:254 msgid "Ups - could not build on-ramp for edge '%'!" msgstr "糟糕 - 無法在路段 '%' 建立入口匝道!" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:284 -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:289 -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:400 -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:403 -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:710 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:284 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:289 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:400 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:403 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:710 msgid "Could not set connection!" msgstr "無法設定連接線(connection)!" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:356 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:356 msgid "Ups - could not build off-ramp for edge '%' (node could not be build)!" msgstr "糟糕 - 無法為路段 '%' 建立出口匝道 (無法建立節點)!" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:361 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:361 msgid "Ups - could not build off-ramp for edge '%'!" msgstr "糟糕 - 無法為路段 '%' 建立出口匝道!" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:423 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:423 msgid "For edge '%': could not compute shape." msgstr "路段 '%':無法計算形狀。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:431 -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:459 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:432 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:460 #, c-format msgid "At least one of edge's '%' nodes is not known." msgstr "至少有一個路段的 '%' 節點未知。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:456 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:457 #, c-format msgid "Edge '%' needs at least one lane." msgstr "路段 '%' 至少需要一個車道。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:462 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:463 msgid "Invalid edge id '%'." msgstr "無效的路段識別名(id) '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:492 -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:626 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:493 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:627 #, c-format msgid "Edge's '%' from- and to-node are at the same position." msgstr "路段的 '%' 起點及迄點在相同的位置。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:999 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1000 msgid "Found angle of % degrees at edge '%', segment %." msgstr "在路段 '%',區段 % 處找到 % 度的角度。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1155 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1156 msgid "Could not set connection from '%' to '%'." msgstr "無法從 '%' 到 '%' 設定連接線(connection)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1667 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1668 msgid "Connection '%_%->%_%' is only %m short." msgstr "接線(connection) '%_%->%_%' 只有 % 米短。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1768 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1770 msgid "" "Intersecting left turns at junction '%' from lane '%' and lane '%' (increase " "junction radius to avoid this)." msgstr "" -"在路口 '%' 上, 從車道 '%' 和車道 '%' 與左轉交會 (增加路口半徑以避免這種情況)。" +"在路口 '%' 上, 從車道 '%' 和車道 '%' 與左轉交會 (增加路口半徑以避免這種情" +"況)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1868 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1870 msgid "" "Speed of % connection '%' reduced by % due to turning radius of % (length=%, " "angle=%)." -msgstr "速度 % 在連接線(connection) '%' 上降低了 %, 其是由於轉彎半徑為 % " -"(長度=%,角度=%)。" +msgstr "" +"速度 % 在連接線(connection) '%' 上降低了 %, 其是由於轉彎半徑為 % (長度=%,角" +"度=%)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2208 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2210 msgid "In lane '%': lane shape could not be determined (%)." msgstr "在車道 '%':無法確定車道形狀 (%)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2221 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2223 msgid "In lane '%': Could not build shape (%)." msgstr "在車道 '%':無法建立形狀 (%)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2629 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2637 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " "directions but only % targets" msgstr "" "無法在路段 '%' 上應用轉彎標誌資訊,因為有 % 的方向,但只有 % 的目標(targets)" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2670 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2678 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " "directions and % targets (after target pruning)" @@ -4611,7 +4757,7 @@ "無法在路段 '%' 上應用轉彎標誌資訊,因為有 % 的方向,但只有 % 的目標(targets)(目" "標修剪後)" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2689 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2697 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " "connections with directions '%' but target edge '%' has only % suitable lanes" @@ -4619,261 +4765,261 @@ "無法在路段 '%' 上應用轉彎標誌資訊,因為有具有 '%' 方向的 % 連接線,但目標路段 " "'%' 只有 % 合適的車道" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2716 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2724 msgid "" "Cannot apply turn sign information for edge '%' because not enough target " "lanes could be determined for direction '%'" msgstr "" "無法在路段 '%' 上應用轉向標誌資訊,因為無法為方向 '%' 確定足夠的目標車道" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2955 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2985 msgid "Edge '%' is not connected to outgoing edges at junction '%'." msgstr "路段 '%' 在路口 '%' 處未與任何離開(outgoing)路段連接。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2969 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2999 msgid "Lane '%' is not connected from any incoming edge at junction '%'." msgstr "車道 '%' 在路口 '%' 處未與任何進入(incoming)路段連接。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2986 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3016 #, c-format msgid "Ignoring changeLeft prohibition for '%' to avoid dead-end" msgstr "忽略 '%' 的禁止換到左方車道(changeLeft)以避免造成死結(dead-end)" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2989 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3019 #, c-format msgid "Ignoring changeRight prohibition for '%' to avoid dead-end" msgstr "忽略 '%' 的禁止換到右方車道(changeRight)以避免造成死結(dead-end)" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:3590 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3620 #, c-format msgid "The lane '%' on edge '%' already had a traffic light signal." msgstr "車道 '%' (位於路段 '%') 已經有交通號誌。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:3596 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3626 msgid "Could not set any signal of the tlLogic '%' (unknown group)." msgstr "無法設定號誌邏輯(tlLogic) '%' 的任何信號 (未知群組)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4079 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4117 msgid "Ignoring invalid stopOffset for edge '%' (negative offset)." msgstr "忽略路段 '%' 的無效 stopOffset (負偏移值(offset))。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4088 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4126 msgid "Ignoring invalid stopOffset for lane '%' (negative offset)." msgstr "忽略車道 '%' 的無效 stopOffset (負偏移值(offset))。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4094 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4132 msgid "Ignoring invalid stopOffset for lane '%' (invalid lane index)." msgstr "忽略車道 '%' 的無效 stopOffset (無效的車道索引)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4357 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4395 #, c-format msgid "Edge % allows pedestrians on all lanes" msgstr "路段 '%' 允許行人在所有車道上" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4415 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4453 #, c-format msgid "Edge '%' already has a dedicated lane for %s. Not adding another one." msgstr "路段 '%' 已經有用於 %s 的專用車道。不再增加另一個。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4452 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4490 #, c-format msgid "Edge '%' doesn't have a dedicated lane for %s. Cannot be restored." msgstr "路段 '%' 沒有用於 %s 的專用車道。無法恢復。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4500 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4538 msgid "Could not avoid overlapping shape at node '%' for edge '%'." msgstr "無法避免在節點 '%' (位於路段 '%') 上重疊形狀(shape)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:121 -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:140 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:121 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:140 msgid "Invalid boundary: need at least 2 coordinates" msgstr "無效邊界:至少需要2個坐標" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:142 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:142 msgid "Invalid boundary: malformed coordinate" msgstr "無效邊界:格式錯誤的坐標" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:259 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:259 msgid "" "Cannot prune edges using a geo-boundary because no projection has been loaded" msgstr "無法使用地理邊界修剪路段,因為尚未載入投影(projection)" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:438 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:438 msgid "Attempt to rename edge using existing id '%'" msgstr "企圖使用現有識別名(id) '%' 重新命名路段" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:498 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:499 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:501 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:498 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:499 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:501 msgid "Error on parsing a split (edge '%')." msgstr "解析一個分割(split)時,發生錯誤 (路段 '%')。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:556 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:556 msgid "Split at '%' lies beyond the edge's length (edge '%')." msgstr "在 '%' 處的分割(split)超出路段的長度(路段 '%')。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:639 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:639 msgid "Could not insert edge '%' before split of edge '%'." msgstr "無法插入路段 '%' (在分割路段 '%' 之前)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:643 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:643 msgid "Could not insert edge '%' after split of edge '%'." msgstr "無法插入路段 '%'(在分割路段 '%' 之後)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:880 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:880 msgid "Moving opposite lane '%' from invalid lane '%' to lane index %." msgstr "將對向車道 '%' 從無效車道 '%' 移動到車道索引(lane index) %。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:882 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:882 msgid "Removing opposite lane '%' for invalid lane '%'." msgstr "移除對向車道 '%' (由於無效的車道 '%')。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:891 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:891 msgid "Removing unknown opposite lane '%' for edge '%'." msgstr "移除未知對向車道 '%' (路段為 '%')。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:896 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:896 msgid "Adapting invalid opposite lane '%' for edge '%' to '%'." msgstr "將無效對向車道 '%' (在路段 '%'上) 調整為 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:902 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:902 msgid "Adapting missing opposite lane '%' for edge '%'." msgstr "調整缺失的對向車道 '%' (在路段 '%'上)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:908 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:908 msgid "Averaging edge lengths for lane '%' (length %) and edge '%' (length %)." msgstr "車道 '%' (長度 %)和路段 '%' (長度 %)的平均路段長度。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:921 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:921 msgid "Opposite lane '%' does not connect the same nodes as edge '%'!" msgstr "對向車道 '%' 不與路段 '%' 相同的節點連接!" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1421 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1421 msgid "Replacing loaded roundabout '%' with '%'." msgstr "載入的圓環 '%'正被 '%' 替換。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1739 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1739 msgid "Edge '%' overlaps with edge '%' by %." msgstr "路段 '%' 與路段 '%' 重疊了 %。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1755 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1755 #, c-format msgid "Edge '%' has a vertical jump of %m." msgstr "路段 '%' 有一個 % 米的垂直跳位(jump)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1757 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1757 #, c-format msgid "Edge '%' has a grade of %%." msgstr "路段 '%' 的坡度(grade)為 %%。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1767 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1767 #, c-format msgid "Connection '%' has a vertical jump of %m." msgstr "連接線(connection) '%' 有一個 % 米的垂直跳位(jump)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1769 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1769 #, c-format msgid "Connection '%' has a grade of %%." msgstr "連接線(connection) '%' 的坡度(grade)為 %%。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1809 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1809 msgid "Not joining tram edge '%' with % lanes." msgstr "不結合(joining)的輕軌電車(tram)路段 '%', 此路段有 % 車道。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1883 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1883 msgid "Ambiguous tram edges '%' and '%' for lane '%'." msgstr "輕軌電車(tram)路段 '%' 和 '%' 不明確 (針對車道 '%')。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:2037 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:138 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:554 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:2037 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:138 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:554 #, c-format msgid "Edge's '%' from-node '%' is not known." msgstr "路段的 '%' 從節點(from-node)'%' 未知。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:2041 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:142 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:566 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:2041 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:142 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:566 #, c-format msgid "Edge's '%' to-node '%' is not known." msgstr "路段的 '%' 到節點(to-node)'%' 未知。" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:52 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:52 msgid "The default number of lanes in an edge" msgstr "在一個路段上的預設車道數" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:56 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:56 msgid "The default width of lanes" msgstr "車道的預設寬度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:59 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:59 msgid "The default method for computing lane shapes from edge shapes" msgstr "從路段形狀計算車道形狀的預設方法" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:63 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:63 msgid "The default speed on an edge (in m/s)" msgstr "路段的預設速度 (以米/秒為單位)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:67 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:67 msgid "The default friction on an edge" msgstr "路段的預設摩擦力" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:71 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:71 msgid "The default priority of an edge" msgstr "路段的預設優先級別" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:74 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:74 msgid "The default edge type" msgstr "預設的路段類型" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:77 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:77 msgid "The default width of added sidewalks" msgstr "增加的人行道的預設寬度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:80 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:80 msgid "The default width of added bike lanes" msgstr "增加的自行車道的預設寬度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:83 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:83 msgid "The default width of a pedestrian crossing" msgstr "人行穿越道的預設寬度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:86 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:86 msgid "The default speed 'limit' on a pedestrian crossing (in m/s)" msgstr "人行穿越道上的預設速度 '限制(limit)' (以米/秒為單位)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:89 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:89 msgid "The default speed 'limit' on a pedestrian walkingarea (in m/s)" msgstr "行人步行區域的預設速度 '限制(limit)' (以米/秒為單位)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:92 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:92 msgid "The default for allowed vehicle classes" msgstr "允許的車輛類別的預設值" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:95 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:95 msgid "The default for disallowed vehicle classes" msgstr "不允許的車輛類別的預設值" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:98 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:98 msgid "Whether junctions should be kept clear by default" msgstr "在預設情況下,路口是否應保持暢通(clear)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:101 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:101 msgid "The default turning radius of intersections" msgstr "路口的預設轉彎半徑" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:104 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:104 msgid "The default length when overriding connection lengths" msgstr "覆蓋連接線(connection)長度時的預設長度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:107 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:107 msgid "" "The default algorithm for computing right of way rules ('default', " "'edgePriority')" msgstr "" "計算路權規則的預設演算法('預設(default)','路段優先級別(edgePriority)')" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:110 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:110 msgid "" "Allow building right-before-left junctions when the incoming edge speeds are " "below FLOAT (m/s)" @@ -4881,33 +5027,33 @@ "當進入(incoming)路段速度低於 FLOAT (米/秒)時,允許建立右方車輛優先(right-" "before-left)的路口" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:113 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:113 msgid "" "Build left-before-right junctions instead of right-before-left junctions" msgstr "" "建立左方車輛優先(left-before-right)的路口,而不是右方車輛優先(right-before-" "left)的路口" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:117 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:117 msgid "Omits internal links" msgstr "省略內部路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:120 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:120 msgid "" "Remaps alphanumerical IDs of nodes and edges to ensure that all IDs are " "integers" msgstr "" "重新映射(remap)節點和路段的字母數字識別名(IDs),以確保所有識別名都是整數" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:123 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:123 msgid "Remaps IDs of nodes to integers starting at INT" msgstr "將節點的識別名(IDs)重新映射(remap)為以 INT 開頭的整數" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:126 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:126 msgid "Remaps IDs of edges to integers starting at INT" msgstr "將路段的識別名(IDs)重新映射(remap)為以 INT 開頭的整數" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:130 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:130 msgid "" "Ensures that generated ids do not included any of the typed IDs from FILE " "(sumo-gui selection file format)" @@ -4915,288 +5061,297 @@ "確保產生的識別名(ids)不包含來自檔案內的任何類型化識別名(ids)(sumo-gui的選擇檔" "案(selection file)格式)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:134 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:134 msgid "Removes vehicle class restrictions from imported edges" msgstr "從導入(imported)的路段中刪除車輛類別限制" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:138 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:138 msgid "Disables building turnarounds" msgstr "禁止構建迴轉(turnarounds)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:142 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:142 msgid "Disables building turnarounds at tls-controlled junctions" msgstr "禁止在號誌控制路口構建迴轉(turnarounds)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:145 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:145 msgid "Disables building turnarounds at geometry-like junctions" msgstr "禁止在幾何形狀相似的路口構建迴轉(turnarounds)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:148 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:148 msgid "Disables building turnarounds except at dead end junctions" msgstr "禁止在終端路口構建迴轉(turnarounds)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:151 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:151 msgid "" "Disables building turnarounds except at at junctions with a dedicated " "turning lane" msgstr "除了在有專用轉向車道的路口外,其餘禁止構建迴轉(turnarounds)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:154 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:154 msgid "Disables building turnarounds at fringe junctions" msgstr "禁止在邊緣(fringe)路口構建迴轉(turnarounds)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:157 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:157 msgid "Disables building connections to left" msgstr "禁止構建左轉連接線" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:161 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:161 msgid "Splits edges across geometry nodes" msgstr "跨多個幾何節點分割(split)路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:165 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:165 msgid "" "Replace nodes which only define edge geometry by geometry points (joins " "edges)" msgstr "用幾何點(合併(joins)路段)替換僅定義路段幾何形狀的節點" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:168 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:168 msgid "Ensure that the given list of edges is not modified" msgstr "確保給定的路段清單未被修改" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:176 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:176 msgid "Ensure that edges with public transport stops are not modified" msgstr "確保有大眾運輸停靠站的路段未被修改" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:188 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:192 msgid "splits geometry to restrict segment length" msgstr "分割幾何以限制區段長度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:192 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:196 msgid "reduces too similar geometry points" msgstr "減少過於相似的幾何點" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:195 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:199 msgid "" "Warn about edge geometries with an angle above DEGREES in successive segments" msgstr "警告連續段中角度超過 DEGREES 的路段幾何形狀" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:198 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:202 msgid "" "Warn about edge geometries with a turning radius less than METERS at the " "start or end" msgstr "警告開始或結束時,轉彎半徑小於 METERS 的路段幾何形狀" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:201 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:205 msgid "" "Straighten edge geometries to avoid turning radii less than geometry.min-" "radius" msgstr "拉直路段幾何以避免轉彎半徑小於 geometry.min-radius" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:204 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:208 msgid "" "Straighten edge geometries to avoid turning radii less than geometry.min-" "radius (only railways)" msgstr "拉直路段幾何以避免轉彎半徑小於 geometry.min-radius (僅限鐵路)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:207 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:211 msgid "" "Warn if the junction shape is to far away from the original node position" msgstr "如果路口形狀離原始節點位置太遠,則發出警告" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:210 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:214 msgid "Warn if edges overlap by more than the given threshold value" msgstr "如果路段重疊超過給定的閾值,則發出警告" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:213 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:217 msgid "" "Ignore overlapping edges if they are separated vertically by the given " "threshold." msgstr "如果它們被給定的閾值垂直地分開,則忽略重疊路段。" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:216 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:220 msgid "Modify edge geometries to avoid overlap at junctions" msgstr "修改路段幾何形狀以避免在路口處重疊" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:219 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:223 msgid "" "join adjacent lanes that have the same permissions and which do not admit " "lane-changing (sidewalks and disallowed lanes)" msgstr "合併(join)具有相同權限且不允許變換車道的相鄰車道(人行道和禁止車道)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:222 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:226 msgid "" "Matches stops outside the road network to the referencing pt line when below " "the given distance" msgstr "當低於給定的距離時,將路網外的停靠點與參考的大眾運輸路線相配對" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:226 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:230 msgid "Repair topology of the railway network" msgstr "修復鐵路路網拓撲" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:229 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:233 msgid "" "Repair topology of the railway network just enough to let loaded public " "transport lines to work" msgstr "修復鐵路路網拓撲以至足以讓載入的大眾運輸路線正常運作" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:232 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:236 msgid "" "Allow bidirectional rail use wherever rails with opposite directions meet at " "a straight angle" msgstr "允許雙向火車在與相反方向行駛的火車以直角相遇的任何地方使用" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:235 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:239 msgid "Add turn-around connections at all loaded stops." msgstr "在所有載入的停靠點增加迴轉的連接線(turn-around connections)。" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:238 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:242 +msgid "" +"Penalty factor for adding new bidi edges to connect public transport stops" +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:245 msgid "Make all rails usable in both direction" msgstr "使所有鐵路可用於兩個方向" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:241 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:248 msgid "Make all rails edge ids from FILE usable in both direction" msgstr "使檔案中所有鐵路路段識別名(ids)可用於兩個方向" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:244 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:251 msgid "Set edge priority values based on estimated main direction" msgstr "根據估計的主方向來設定路段的優先級別值" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:247 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:254 msgid "Extend loaded edge priority values based on estimated main direction" msgstr "根據估計的主方向來擴展載入的路段的優先級別值" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:250 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:257 +msgid "Guess signals that guard public transport stops" +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:260 msgid "The search radius for finding suitable road accesses for rail stops" msgstr "為鐵路車站尋找合適的通行途徑(access)的搜索半徑" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:254 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:264 msgid "The maximum road accesses registered per rail stops" msgstr "每個鐵路站點登錄的最大道路通行途徑(road accesses)數量" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:258 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:268 msgid "" "The walking length of the access is computed as air-line distance multiplied " "by FLOAT" msgstr "通行途徑(access)的步行長度計算為航線距離乘以 FLOAT" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:262 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:272 msgid "Skips automatic generation of stops on the bidi-edge of a loaded stop" msgstr "跳過在載入的停靠點的雙向路段(bidi-edge)上自動產生停靠點" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:266 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:276 #, c-format msgid "Warn about edge geometries with a grade in % above FLOAT." msgstr "警告 % 百分比的路段幾何形狀高於 FLOAT。" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:269 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:279 msgid "Smooth edge geometries with a grade above the warning threshold." msgstr "用高於警告閾值的度數(grade)平滑路段的幾何形狀。" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:273 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:283 msgid "Turn off normalizing node positions" msgstr "關閉標準化節點位置" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:277 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:186 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:287 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:186 msgid "Adds FLOAT to net x-positions" msgstr "將 FLOAT 增加到路網 x 位置" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:281 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:190 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:291 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:190 msgid "Adds FLOAT to net y-positions" msgstr "將 FLOAT 增加到路網 y 位置" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:284 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:193 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:294 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:193 msgid "Adds FLOAT to net z-positions" msgstr "將 FLOAT 增加到路網 z 位置" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:288 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:298 msgid "Flips the y-coordinate along zero" msgstr "沿著 0 翻轉 y 坐標" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:292 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:302 msgid "Enable roundabout-guessing" msgstr "啟用圓環的猜測" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:295 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:305 msgid "Default visibility when approaching a roundabout" msgstr "當接近圓環時,預設的能見度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:298 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:308 msgid "Enable guessing of opposite direction lanes usable for overtaking" msgstr "啟用對可用於超車的相反方向車道的猜測" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:301 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:311 msgid "Ensure that opposite edges have the same length" msgstr "確保對向路段具有相同的長度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:304 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:314 msgid "Enable guessing of network fringe nodes" msgstr "啟用路網邊緣的節點的猜測" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:307 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:317 msgid "Guess disconnected edges above the given speed as outer fringe" msgstr "猜測高於給定速度的不連接路段為外部邊緣(outer fringe)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:310 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:320 msgid "Assumes left-hand traffic on the network" msgstr "假設路網內為左行(left-hand)交通" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:326 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:336 msgid "Interprets STR[] as list of junctions to exclude from joining" msgstr "將 STR[] 解釋為要從整合(joining)中排除的路口清單" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:338 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:348 msgid "Modifies all edge speeds by adding FLOAT" msgstr "通過增加 FLOAT 修改所有路段速度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:341 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:351 msgid "Modifies all edge speeds by multiplying by FLOAT" msgstr "通過乘以 FLOAT 修改所有路段速度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:344 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:354 msgid "Modifies all edge speeds to at least FLOAT" msgstr "將所有路段速度修改為至少 FLOAT" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:352 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:362 msgid "Generate INT intermediate points to smooth out intersection corners" msgstr "產生 INT 中間點以平滑路口角落的曲線" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:355 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:365 msgid "" "Generate INT intermediate points to smooth out lanes within the intersection" msgstr "產生 INT 中間點以平滑路口內的車道曲線" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:358 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:368 msgid "" "Generate longer intersections to allow for smooth s-curves when the number " "of lanes changes" msgstr "產生較長的路口,以便在車道數量發生變化時能允許有平滑的 s 曲線" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:398 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:411 msgid "Forces rectangular cuts between lanes and intersections" msgstr "強制在車道和路口之間進行矩形切割" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:457 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:470 msgid "Always build walking areas even if there are no crossings" msgstr "即使沒有人行穿越道,也要一直建立步行區" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:460 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:473 msgid "" "Do not create a walkingarea between sidewalks that are connected by a " "pedestrian junction within FLOAT" msgstr "不要在 FLOAT 中由行人路口連接的人行道之間建立步行區" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:605 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:618 msgid "Only keep edges with speed in meters/second > FLOAT" msgstr "只保留以米/秒為單位的速度 > FLOAT 的路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:609 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:622 msgid "Remove edges in STR[]" msgstr "移除在 STR[]中的路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:613 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:626 msgid "" "Only keep edges in STR[] or those which are kept due to other keep-edges or " "remove-edges options" @@ -5204,7 +5359,7 @@ "僅保留 STR[] 中的路段或由於其他保留路段(keep-edges)或刪除路段(remove-edges)選" "項而保留的路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:616 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:629 msgid "" "Only keep edges in FILE (Each id on a single line. Selection files from sumo-" "gui are also supported) or those which are kept due to other keep-edges or " @@ -5214,7 +5369,7 @@ "擇檔案(Selection files))或由於其他保留路段(keep-edges)或刪除路段(remove-" "edges)選項而保留的路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:619 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:632 msgid "" "Remove edges in FILE. (Each id on a single line. Selection files from sumo-" "gui are also supported)" @@ -5222,11 +5377,11 @@ "移除檔案內的路段。 (每個識別名(id)在每個單一的列上。也支援來自 sumo-gui 的選" "擇檔案(Selection files))" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:623 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:636 msgid "Remove edges after joining" msgstr "合併後,移除路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:627 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:640 msgid "" "Only keep edges which are located within the given boundary (given either as " "CARTESIAN corner coordinates or as polygon 或)多" "邊形 給定)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:630 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:643 msgid "" "Only keep edges which are located within the given boundary (given either as " "GEODETIC corner coordinates or as polygon " @@ -5244,86 +5399,86 @@ "僅保留位於給定邊界內的路段(邊界以大地(GEODETIC)端點坐標 或多邊形 給定)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:634 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:647 msgid "Only keep edges which allow one of the vclasses in STR[]" msgstr "僅保留允許在 STR[] 內其中一個車輛類別(vclass)的路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:637 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:650 msgid "Remove edges which allow only vclasses from STR[]" msgstr "移除只允許在 STR[] 內的車輛類別(vclasses)的路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:640 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:653 msgid "Only keep edges where type is in STR[]" msgstr "僅保留類型(type)在 STR[] 內的路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:643 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:656 msgid "Only keep the INT largest weakly connected components" msgstr "僅保留 INT 最大的弱連接組件(connected components)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:646 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:659 msgid "Remove edges where type is in STR[]" msgstr "移除類型(type)在 STR[] 內的路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:650 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:663 msgid "Removes isolated edges" msgstr "移除孤立的路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:657 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:670 msgid "All nodes will be unregulated" msgstr "所有節點將不受控制(unregulated)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:662 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:675 msgid "Do not regulate nodes in STR[]" msgstr "不控制在 STR[] 內的節點" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:666 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:679 msgid "Do not regulate district nodes" msgstr "不控制分區節點" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:672 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:685 msgid "Enable ramp-guessing" msgstr "啟用匝道猜測" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:675 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:688 msgid "" "Guess on-ramps and mark acceleration lanes if they exist but do not add new " "lanes" msgstr "猜測入口匝道並標記加速車道(如果存在),但不增加新的車道" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:679 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:692 msgid "Treat edges with speed > FLOAT as no ramps" msgstr "將速度 > FLOAT 的路段視為非匝道" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:683 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:696 msgid "Treat edges with speed < FLOAT as no highways" msgstr "將速度 < FLOAT 的路段視為非高速公路" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:687 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:700 msgid "Use FLOAT as ramp-length" msgstr "使用 FLOAT 為匝道長度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:691 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:704 msgid "Use FLOAT as minimum ramp-length" msgstr "使用 FLOAT 為最短匝道長度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:695 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:708 msgid "Tries to handle the given edges as ramps" msgstr "嘗試將給定的路段設定為匝道" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:698 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:711 msgid "Do not consider the given edges as ramps" msgstr "不將給定的路段視為匝道" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:702 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:715 msgid "Avoids edge splitting" msgstr "避免路段分割(splitting)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:713 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:725 #, c-format msgid "unsupported value '%' for option '--tls.default-type'" msgstr "不支援選項 '--tls.default-type' 的值 '%'" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:717 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:729 msgid "" "only one of the options 'keep-edges.in-boundary' or 'keep-edges.in-geo-" "boundary' may be given" @@ -5331,34 +5486,34 @@ "只能給定 'keep-edges.in-boundary' 或 'keep-edges.in-geo-boundary' 其中一個選" "項" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:721 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:733 msgid "" "only one of the options 'no-internal-links' or 'crossings.guess' may be given" msgstr "只能給定 'no-internal-links' 或 'crossings.guess' 其中一個選項" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:725 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:737 msgid "only one of the options 'no-internal-links' or 'walkareas' may be given" msgstr "只能給定 'no-internal-links' 或 'walkareas' 其中一個選項" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:729 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:741 msgid "" "only one of the options 'tls.green.time' or 'tls.cycle.time' may be given" msgstr "只能給定 'tls.green.time' 或 'tls.cycle.time' 其中一個選項" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:733 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:745 msgid "default.lanenumber must be at least 1" msgstr "default.lanenumber 必須至少為 1" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:741 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:753 msgid "" "only one of the options 'default.disallow' or 'default.allow' may be given" msgstr "只能給定 'default.disallow' 或 'default.allow' 其中一個選項" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:745 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:757 msgid "junctions.internal-link-detail must >= 2" msgstr "junctions.internal-link-detail 必須 >= 2" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:750 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:762 msgid "" "Option 'junctions.scurve-stretch' requires internal lanes to work. Option '--" "no-internal-links' will be disabled." @@ -5366,353 +5521,353 @@ "選項 'junctions.scurve-stretch' 需要內部車道才能使用。 選項 '--no-internal-" "links' 將被禁用。" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:757 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:769 msgid "" "option 'default.junctions.radius' is smaller than option 'junctions.small-" "radius'" msgstr "選項 'default.junctions.radius' 小於選項 'junctions.small-radius'" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:765 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:777 msgid "tls.layout must be 'opposites', 'incoming' or 'alternateOneWay'" msgstr "tls.layout 必須是 'opposites', 'incoming' 或 'alternateOneWay'" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:770 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:782 msgid "default.right-of-way must be one of '%'" msgstr "default.right-of-way 必須是 '%' 其中之一" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:774 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:786 msgid "roundabouts.visibility-distance must be positive or -1" msgstr "roundabouts.visibility-distance 必須為正數或 -1" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:790 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:802 msgid "Unknown value for default.spreadtype '%'." msgstr "default.spreadtype '%' 的值未知。" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:88 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:88 msgid "Cannot supply height since no height data was loaded" msgstr "無法提供高度, 因為未載入高度資料" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:136 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:136 msgid "Could not get height data for coordinate %" msgstr "無法取得坐標 % 的高度資料" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:190 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:190 msgid "Could not open shape file '%'." msgstr "無法開啟形狀(shape)檔案 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:204 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:204 msgid "" "Could not create geocoordinates converter; check whether proj.4 is installed." msgstr "無法建立地理坐標轉換器; 檢查是否已安裝 proj.4。" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:231 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:231 msgid "Ignored heightmap feature type %" msgstr "忽略的高度映成表(heightmap)特徵類型 %" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:276 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:276 msgid "Cannot load shape file since SUMO was compiled without GDAL support." msgstr "無法載入形狀檔案,因為 SUMO 是在沒有 GDAL 支援的情況下編譯的。" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:288 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:288 msgid "Cannot load GeoTIFF file." msgstr "無法載入 GeoTIFF 檔案。" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:303 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:303 msgid "Could not parse geo information from %." msgstr "無法解析來自 % 的地理資訊。" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:312 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:312 msgid "Unknown color band in %." msgstr "% 中有未知色帶。" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:319 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:319 msgid "Failure in reading %." msgstr "讀取 % 失敗。" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:348 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:348 msgid "Cannot load GeoTIFF file since SUMO was compiled without GDAL support." msgstr "無法載入 GeoTIFF 檔案,因為 SUMO 是在沒有 GDAL 支援的情況下編譯的。" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:89 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:89 msgid "Could not load names of edges too keep from '%'." msgstr "無法從 '%' 載入要保留的路段的名稱。" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:107 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:107 msgid "Could not load IDs from '%'." msgstr "無法從 '%' 載入識別名(IDs)。" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:123 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:123 msgid "Invalid lane id '%' (missing '_')." msgstr "無效的車道識別名(id) '%' (缺少 '_')。" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:130 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:130 msgid "Invalid lane index '%' for lane '%'." msgstr "車道索引(index) '%' 無效; 位於車道 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedSUMOTLDef.cpp:359 +#: D:\Repos\sumo/src\netbuild\NBLoadedSUMOTLDef.cpp:359 #, c-format msgid "Could not patch tlLogic '%' for changed crossings" msgstr "無法為更改人行穿越道而修補號誌邏輯(tlLogic) '%'" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedSUMOTLDef.cpp:889 +#: D:\Repos\sumo/src\netbuild\NBLoadedSUMOTLDef.cpp:889 msgid "Unused state in tlLogic '%', program '%' at tl-index %" msgstr "" -"號誌邏輯(tlLogic) '%' 的時制計畫(program) '%' 的號誌索引(tl-index) % 內" -"有未使用的狀態(state)" +"號誌邏輯(tlLogic) '%' 的時制計畫(program) '%' 的號誌索引(tl-index) % 內有未使" +"用的狀態(state)" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:83 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:83 msgid "" "TYellow of signal group '%' was less than the computed one; patched (was:%, " "is:%)" msgstr "黃燈號誌群組 '%' 小於計算值;已修補 (過去是: %, 現在是: %)" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:300 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:300 msgid "During computation of traffic light '%'." msgstr "在計算號誌 '%' 期間。" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:514 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:514 msgid "Could not set signal on connection (signal: %, group: %)" msgstr "無法設定連接線(connection)的號誌 (號誌: %, 群組: %)" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:612 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:612 msgid "myNeedsContRelation was not propperly initialized\n" msgstr "myNeedsContRelation 未被正確初始化\n" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:94 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:94 msgid "Removing self-loops" msgstr "移除自我迴圈(self-loops)" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:98 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:98 msgid "Finding isolated roads" msgstr "尋找孤立的道路" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:103 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:103 msgid "Finding largest components" msgstr "尋找最大的組件(components)" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:110 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:110 msgid "Removing unwished edges" msgstr "移除不需要的路段" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:117 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:117 msgid "Processing public transport stops" msgstr "正在處理大眾運輸停靠站" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:132 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:132 msgid "Revising public transport stops based on pt lines" msgstr "根據大眾運輸路線修改大眾運輸停靠點" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:138 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:138 msgid "Cleaning up public transport stops that are not served by any line" msgstr "清除沒有服務任何路線的大眾運輸停靠點" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:144 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:144 #, c-format msgid "Removed % pt stops because they could not be assigned to the network" msgstr "刪除了 % 個大眾運輸停靠點,因為它們無法在路網上定位" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:149 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:149 msgid "Align pt stop id signs with corresponding edge id signs" msgstr "將大眾運輸停靠點識別名(id)標誌與相應的路段識別名(id)標誌對齊" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:186 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:186 msgid "Joining tram edges" msgstr "正在合併輕軌電車(tram)路段" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:190 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:190 msgid " Joined % tram edges into roads." msgstr " % 輕軌電車(tram)路段合併於道路內。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:228 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:228 msgid "Joining junction clusters" msgstr "正在合併路口群集(clusters)" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:233 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:233 #, c-format msgid " Joined % junction cluster(s)." msgstr " 合併的 % 路口群集(cluster(s))。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:236 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:236 msgid "Joining junctions with identical coordinates" msgstr "正在合併具有相同坐標的路口" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:240 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:240 #, c-format msgid " Joined % junctions." msgstr " 合併的 % 路口。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:245 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:245 msgid "Joining lanes" msgstr "正在合併車道" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:248 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:248 #, c-format msgid " Joined lanes on % edges." msgstr " 在 % 路段上合併的車道。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:258 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:258 #, c-format msgid " % nodes removed." msgstr " % 節點已移除。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:278 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:278 msgid "Reducing geometries" msgstr "正在減少幾何形狀" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:285 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:285 msgid "Joining similar edges" msgstr "正在合併相似路段" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:295 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:295 msgid "guessing opposite direction edges" msgstr "正在猜測對向路段" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:301 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:301 msgid "Splitting geometry edges" msgstr "正在分割(splitting)幾何路段" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:308 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:308 #, c-format msgid " Joined % junctions after splitting geometry." msgstr " 分割(split)幾何後,合併的 % 路口。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:313 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:313 msgid "Computing turning directions" msgstr "正在計算轉彎方向" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:322 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:322 msgid "Assigning nodes to traffic lights" msgstr "正在將節點指派分配給交通號誌" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:345 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:345 msgid "Guessing and setting on-/off-ramps" msgstr "正在猜測及設定進出口匝道" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:361 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:361 msgid "Guessed % bike lanes." msgstr "猜測的 % 腳踏車道。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:372 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:372 #, c-format msgid "Guessed % sidewalks." msgstr "猜測的 % 人行道。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:382 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:382 #, c-format msgid "Remapped % edge IDs and % node IDs." msgstr "重新映射的(remapped) % 路段識別名(IDs)和 % 節點識別名(IDs)。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:397 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:397 msgid "Sorting nodes' edges" msgstr "正在排序節點的路段" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:402 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:402 msgid "Computing node shapes" msgstr "正在計算節點形狀" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:410 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:410 msgid "Computing edge shapes" msgstr "正在計算路段形狀" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:423 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:423 msgid "Applying speed modifications" msgstr "使用修改後的速度" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:436 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:436 msgid "Computing node types" msgstr "正在計算節點類型" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:447 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:447 #, c-format msgid "Guessed % pedestrian crossings." msgstr "猜測的 % 行人穿越道。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:475 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:475 msgid "Computing priorities" msgstr "正在計算優先順序等級" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:479 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:479 msgid "Computing approached edges" msgstr "正在計算接近的(approached)路段" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:484 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:484 msgid "Guessing and setting roundabouts" msgstr "正在猜測及設定圓環" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:487 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:487 msgid " Guessed % roundabout(s)." msgstr " 猜測的 % 圓環。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:493 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:493 msgid "Computing approaching lanes" msgstr "正在計算接近的(approached)車道" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:497 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:497 msgid "Dividing of lanes on approached lanes" msgstr "在接近的(approached)車道上劃分(divide)車道" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:503 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:503 msgid "Guessing Network fringe" msgstr "正在猜測路網邊緣" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:506 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:506 #, c-format msgid " Guessed % fringe nodes." msgstr " 猜測的 % 邊緣節點。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:511 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:511 msgid "Processing turnarounds" msgstr "正在處理迴轉(turnarounds)" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:529 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:529 msgid "Rechecking of lane endings" msgstr "重新檢查車道末端" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:551 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:551 msgid "Joining traffic light nodes" msgstr "正在合併交通號誌節點" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:558 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:558 msgid "Computing traffic light control information" msgstr "正在計算交通號誌控制資訊" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:565 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:565 msgid "Computing node logics" msgstr "正在計算節點邏輯" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:570 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:570 msgid "Computing traffic light logics" msgstr "正在計算交通號誌邏輯" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:577 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:577 msgid " % traffic light(s) %computed." msgstr " % 交通號誌%已計算完成。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:585 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:588 msgid "Building inner edges" msgstr "正在建立內部路段" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:598 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:601 msgid "stretching junctions to smooth geometries" msgstr "拉伸路口以平滑幾何形狀" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:627 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:630 msgid "Generating street signs" msgstr "正在產生街道標誌" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:638 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:641 msgid "Checking overlapping edges" msgstr "正在檢查重疊的路段" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:643 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:646 msgid "Checking edge grade" msgstr "正在檢查路段坡度(grade)" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:658 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:661 msgid "Find accesses for pt rail stops" msgstr "尋找火車站停靠點的連通通道(accesses)" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:681 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:684 msgid "" "Network contains very large coordinates and will probably flicker in the " "GUI. Check for outlying nodes and make sure the network is shifted to the " @@ -5721,98 +5876,98 @@ "路網包含非常大的坐標,且可能會在 GUI 中閃爍(flicker)。檢查外圍節點,並確保路網" "已移動到坐標原點" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:688 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:691 msgid "Moving network to origin" msgstr "正在移動路網到坐標原點" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:299 -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:321 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:299 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:321 msgid "Invalid node id '%'." msgstr "無效的節點識別名(id) '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:465 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:465 msgid " Removing self-looping edge '%'" msgstr " 移除自我迴圈(self-looping)路段 '%'" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:744 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:744 msgid "Could not compute indirect left turn shape at node '%'" msgstr "無法計算節點 '%' 處間接左轉形狀" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:760 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:760 #, c-format msgid "Connection '%' starts at a non-existant lane." msgstr "連接線 '%' 從一個不存在的車道開始。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:763 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:763 #, c-format msgid "Connection '%' targets a non-existant lane." msgstr "連接線 '%' 以一個不存在的車道為目標。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:777 -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:795 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:777 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:795 msgid "Could not use custom shape for connection %." msgstr "無法於連接線 % 使用自定形狀。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:786 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:786 msgid "Custom shape has distance % to incoming lane for connection %." msgstr "自定形狀與連接線 % 的進入(incoming)車道的距離為 %。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:803 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:803 msgid "Custom shape has distance % to outgoing lane for connection %." msgstr "自定形狀與連接線 % 的離開(outgoing)車道的距離為 %。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1003 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1003 msgid "" "Junction '%' is too complicated (% connections, max %); will be set to %." msgstr "路口 '%' 太複雜 (% 連接線,最大 %); 將被設定為 %。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1144 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1144 #, c-format msgid "Shape for junction '%' has distance % to its given position." msgstr "路口 '%' 的形狀與其給定位置的距離為 %。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1148 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1148 msgid "For junction '%': could not compute shape." msgstr "路口 '%': 無法計算形狀。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1852 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1850 msgid "Something went wrong during the building of a connection..." msgstr "建立連接線(connection)時,發生了問題..." -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:2871 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:2878 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (no " "walkingarea found)." msgstr "廢除無效穿越道 '%' (未找到步行區域), 其位於路口 '%' (具有路段 [%])。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3047 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3054 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (no vehicle " "lanes to cross)." msgstr "廢除無效的人行道 '%' (無車道可穿越), 其位於路口 '%' (具有路段 [%])。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3066 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3073 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (invalid " "shape)." msgstr "" "廢除無效的人行道 '%' (無效的形狀(shape)), 其位於路口 '%' (具有路段 [%])。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3217 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3224 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' targets '%' and " "'%'." -msgstr "路口 '%' 處的行人拓撲結構(topology)無效; 穿越道 '%' 以 '%' 和 '%' " -"為目標。" +msgstr "" +"路口 '%' 處的行人拓撲結構(topology)無效; 穿越道 '%' 以 '%' 和 '%' 為目標。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3240 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3247 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' is targeted by '%' " "and '%'." msgstr "" "路口 '%' 處的行人拓撲結構(topology)無效; 穿越道 '%' 是 '%' 和 '%' 的目標。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3245 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3252 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' starts and ends at " "walkingarea '%'." @@ -5820,194 +5975,194 @@ "路口 '%' 處的行人拓撲結構(topology)無效;穿越道 '%' 的起點和終點都在步行區域 " "'%'。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3465 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3472 msgid "Invalid pedestrian topology: crossing '%' across [%] has no target." msgstr "無效的行人拓撲結構(topology): 人行穿越道 '%' (跨越 [%]) 沒有目標。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3685 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3692 msgid "Request for unknown crossing '%'" msgstr "請求未知人行穿越道 '%'" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3701 -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3712 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3708 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3719 msgid "Request for unknown crossing for the given Edges" msgstr "請求給定路段的未知人行穿越道" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:319 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:319 msgid "Removed a road without junctions: %." msgstr "移除沒有路口的道路: %。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:406 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:406 msgid "Found % components and removed % (% edges)." msgstr "找到 % 組件並移除 % (% 路段)。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:447 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:447 msgid "Removed % railway components (% edges)." msgstr "移除 % 火車組件 (% 路段)。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:658 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:663 #, c-format msgid "" "Ignoring join exclusion for junction '%' since it already occurred in a list " "of nodes to be joined." msgstr "忽略路口 '%' 的合併排除,因為它已經出現在要連接的節點清單中。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:691 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:696 msgid "" "Ignoring join-cluster because junction '%' was already excluded from joining." msgstr "忽略合併群集(join-cluster),因為聯路口 '%' 已被排除在合併之外。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:694 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:699 #, c-format msgid "" "Ignoring join-cluster because junction '%' already occurred in another join-" "cluster." msgstr "忽略合併群集(join-cluster),因為路口 '%' 已出現在另一個合併群集中。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:700 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:705 #, c-format msgid "Unknown junction '%' in join-cluster." msgstr "有未知的路口 '%' 在合併群集(join-cluster)內。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:708 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:713 msgid "Ignoring join-cluster '%' because it has size '%'." msgstr "忽略合併群集(join-cluster) '%' ,因為它的大小為 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:722 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:727 msgid "unknown junction '%' while joining." msgstr "當合併時,未知的路口 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:780 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:821 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:828 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:833 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:840 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:785 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:826 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:833 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:838 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:845 msgid "Not joining junctions % (%)." msgstr "沒有合併的路口 % (%)。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:800 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:814 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:805 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:819 msgid "Reducing junction cluster % (%)." msgstr "減少路口群集(cluster) % (%)。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1709 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1714 msgid "Could not join junctions %." msgstr "無法合併路口 %。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1909 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1956 msgid "Ambiguous traffic light type for node cluster '%', setting to '%'." msgstr "節點群集(cluster) '%' 的交通號誌類型不明確, 設定為 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2005 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2052 #, c-format msgid " The junction '%' to set as not-controlled is not known." msgstr " 設置為不受控制的路口 '%' 為未知。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2174 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2221 msgid "Could not build joined tls '%'." msgstr "無法建立合併的交通號誌(tls) '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2219 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2266 msgid "Could not build guessed, joined tls." msgstr "無法建立猜測的,合併的交通號誌(tls)。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2335 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2382 msgid "Could not build a joined tls." msgstr "無法建立一個合併的交通號誌(tls)。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2352 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2399 msgid "Building a tl-logic for junction '%' twice is not possible." msgstr "不可能為路口 '%' 建立一個號誌邏輯(tl-logic)兩次。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2434 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2526 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2481 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2573 msgid "-----------------------------------------------------" msgstr "-----------------------------------------------------" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2435 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2482 msgid "Summary:" msgstr "彙總:" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2493 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2540 msgid " Node type statistics:" msgstr " 節點類型統計:" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2522 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2569 msgid " Network boundaries:" msgstr " 路網邊界:" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2555 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2602 msgid "Attempt to rename node using existing id '%'" msgstr "嘗試使用現有識別名(id) '%' 去重新命名節點" -#: /home/micha/programming/sumo/src/netbuild/NBNodeShapeComputer.cpp:441 +#: D:\Repos\sumo/src\netbuild\NBNodeShapeComputer.cpp:444 msgid "Fixing offset for edge '%' at node '%." msgstr "正在修復路段 '%' 的偏移量 (位於節點 '%')。" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:561 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:561 #, c-format msgid "" "Minor green from edge '%' to edge '%' exceeds %m/s. Maybe a left-turn lane " "is missing." msgstr "從路段 '%' 到路段 '%' 的次要綠燈超過 %。可能缺少左轉車道。" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:773 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:773 msgid "" "Generating NEMA phases is not support for traffic light '%' with % incoming " "edges. Using tlType 'actuated' as fallback" msgstr "" -"產生的 NEMA 時相不支援交通號誌 '%,其具有 % 進入車道。使用號誌類型(tlType) " -"'觸動式(actuated)' 作為應變" +"產生的 NEMA 時相不支援交通號誌 '%,其具有 % 進入車道。使用號誌類型(tlType) '觸" +"動式(actuated)' 作為應變" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:799 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:799 msgid "The traffic light '%' cannot be adapted to a cycle time of %." msgstr "交通號誌 '%' 無法調適配合 % 的週期時間。" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:818 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:818 msgid "The traffic light '%' has a high cycle time of %." msgstr "交通號誌 '%' 有長的週期時間 %。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:197 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:197 msgid "Could not retrieve edge '%' for first stop of line '%'." msgstr "無法提取(retrieve)路段 '%', 其為路線的第一個停靠點 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:203 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:203 msgid "First stop edge '%' is not part of the route of line '%'." msgstr "第一個停靠點路段 '%' 不是路線 '%' 的路徑的一部分。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:227 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:227 msgid "Could not retrieve edge '%' for last stop of line '%'." msgstr "無法提取(retrieve)路段 '%', 其為路線的最後一個停靠點 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:233 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:233 msgid "Last stop edge '%' is not part of the route of line '%'." msgstr "最後一個停靠點路段 '%' 不是路線 '%' 的路徑的一部分。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:294 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:302 msgid "Removed invalid stop '%' from line '%'." msgstr "移除無效的停靠點 '%' (在路線內 '%')。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:312 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:320 msgid "Removed duplicate stop '%' at area '%' from line '%'." msgstr "移除重複停靠點 '%' (在區域 '%' 中的路線 '%' 內)。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:315 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:323 msgid "Removed duplicate stop '%' named '%' from line '%'." msgstr "移除重複停靠點 '%' (其名稱為 '%'; 在路線 '%' 內)。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:99 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:99 msgid "" "Cannot revise pt stop localization for pt line '%', which consist of one way " "only. Ignoring!" msgstr "無法修改大眾運輸路線 '%' 的停靠點定位,它僅包含單向。 忽略!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:103 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:103 msgid "" "Cannot revise pt stop localization for pt line '%', which has no route " "edges. Ignoring!" msgstr "無法修改大眾運輸路線 '%' 的停靠點定位,它沒有路徑路段。 忽略!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:122 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:122 msgid "" "Cannot assign stop '%' on edge '%' to pt line '%' (wayNodes not found). " "Ignoring!" @@ -6015,47 +6170,47 @@ "無法指派停靠點 '%' 到路段 '%' 給大眾運輸路線 '%' (找不到路徑節點" "(wayNodes))。 忽略!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:137 -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:151 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:137 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:151 msgid "" "Cannot revise pt stop localization for incomplete pt line '%'. Ignoring!" msgstr "無法為不完整的大眾運輸路線 '%' 修改停靠站定位。 忽略!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:162 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:162 msgid "Could not re-assign PT stop '%', probably broken osm file." -msgstr "無法重新指派大眾運輸停靠點 '%',可能由於損壞的 osm 檔案。" +msgstr "無法重新指派大眾運輸停靠點 '%',可能由於損壞的開放街圖(osm )檔案。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:171 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:171 msgid "PT stop '%' has been moved to edge '%'." msgstr "大眾運輸停靠點 '%' 已被移至路段 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:243 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:243 msgid "" "Could not assign stop '%' to pt line '%' (closest edge '%', distance %). " "Ignoring!" msgstr "" "無法指派停靠點 '%' 給大眾運輸路線 '%' (最近的路段 '%', 距離 %)。忽略!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:275 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:275 msgid "Cannot assign stop % on edge '%' to pt line '%'. Ignoring!" msgstr "無法指派停靠點 '%' 到路段 '%' 給大眾運輸路線 '%'。 忽略!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:458 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:475 msgid "" "Could not determine vehicle class for public transport line of type '%'." msgstr "無法確定類型為 '%' 的大眾運輸路線的車輛類別。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:523 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:540 msgid "Could not determine direction for line '%' at stop '%'." msgstr "無法路線 '%' 的方向 (在停靠點 '%' 處)。" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:110 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:110 msgid "" "Could not find corresponding edge or compatible lane for pt stop '%' (%). " "Thus, it will be removed!" msgstr "無法找到大眾運輸停靠點 '%' (%) 的對應路段或合適車道。因此,它將被刪除!" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:136 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:136 msgid "" "Could not create reverse-direction stop for superposed edge '%' (origStop " "'%'). Stop id '%' already in use by stop on edge '%'." @@ -6063,24 +6218,24 @@ "無法為疊加路段 '%' 建立反向停靠點 (原始停靠點(origStop) '%')。停靠點識別名" "(id) '%' 已被路段 '%' 上的停靠點使用。" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:170 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:170 #, c-format msgid "Added % stops for superposed rail edges." msgstr "為疊加(superposed)的軌道路段增加了 % 停靠點。" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:272 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:272 msgid "Could not determine cross product for edge '%'." msgstr "無法確定路段 '%' 的交叉乘積(cross product)。" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:326 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:326 msgid "Removing pt stop '%' on non existing edge '%'." msgstr "移除大眾運輸停靠點 '%' (在不存在的路段 '%' 上)。" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:357 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:357 msgid "Could not re-assign pt stop '%' after replacing edge '%'." msgstr "無法重新指派分配大眾運輸停靠點 '%' (替換路段 '%' 後)。" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:446 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:446 msgid "" "Could not find corresponding edge or compatible lane for free-floating pt " "stop '%' (%). Thus, it will be removed!" @@ -6088,252 +6243,259 @@ "無法找到自由移動(free-floating)的大眾運輸停靠點 '%' (%) 的對應路段或合適車" "道。因此,它將被刪除!" -#: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:44 +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:44 #, c-format msgid "Ignoring parking area on edge '%' due to invalid permissions." msgstr "由於無效的權限,忽略路段 '%' 上的停車區域。" -#: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:51 +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:51 #, c-format msgid "Ignoring parking area on edge '%' due to insufficient space." msgstr "由於空間不足,忽略路段 '%' 上的停車區域。" -#: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:71 +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:71 msgid "Could not find edge for parkingArea '%'." msgstr "無法為停車區域 '%' 發現路段。" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:115 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:115 #, c-format msgid "The traffic light '%' does not control any links; it will not be build." msgstr "交通號誌 '%' 沒有控制任何路段; 它將不會被建立。" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:229 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:229 msgid "Unreachable edge '%' within tlLogic '%'" msgstr "無法到達的路段 '%' (在號誌邏輯(tlLogic) '%' 內)" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:509 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:509 #, c-format msgid "The rail crossing '%' does not have any roads." msgstr "火車平交道 '%' 沒有任何道路。" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogic.cpp:100 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogic.cpp:100 #, c-format msgid "When adding phase: illegal character '%' in state" msgstr "當增加時相: 狀態(state)中有非法字元 '%'" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogic.cpp:233 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogic.cpp:233 #, c-format msgid "Non-static traffic light '%' does not define variable phase length." msgstr "非定時交通號誌 '%' 未定義可變相位長度。" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogicCont.cpp:235 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:243 msgid "Could not build program '%' for traffic light '%'" msgstr "無法建立時制計畫 '%' (交通號誌為 '%')" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogicCont.cpp:376 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:384 msgid "Guessing signalID for link index % at traffic light '%'." msgstr "正在猜測連接索引(link index) % 的號誌識別名(ID) (交通號誌為 '%')。" -#: /home/micha/programming/sumo/src/netconvert_main.cpp:97 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:491 +#, c-format +msgid "" +"Was not able to apply the OpenDRIVE signal group information onto the signal " +"program of traffic light % generated by SUMO." +msgstr "" + +#: D:\Repos\sumo/src\netconvert_main.cpp:98 msgid "" "Network importer / builder for the microscopic, multi-modal traffic " "simulation SUMO." msgstr "微觀多運具模式交通模擬 SUMO 的路網導入器/構建器。" -#: /home/micha/programming/sumo/src/netconvert_main.cpp:120 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:273 -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:93 +#: D:\Repos\sumo/src\netconvert_main.cpp:121 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:273 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:93 msgid "Could not build projection!" msgstr "無法建立投影!" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:41 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:41 msgid "Read edge-type defs from FILE" msgstr "從檔案中讀取路段類型定義(edge-type defs)" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:44 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:44 msgid "" "The Ids of generated nodes use an alphanumerical code for easier readability " "when possible" msgstr "產生的節點的識別名(ids)使用字母數字代碼,以便在可能的情況下更易於閱讀" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:48 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:48 msgid "Generate INT left-turn lanes" msgstr "產生 INT 左轉車道" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:50 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:50 msgid "Set the length of generated turning lanes to FLOAT" msgstr "將產生的轉向車道的長度設定為 FLOAT" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:53 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:53 msgid "" "Apply random spatial perturbation in x direction according the the given " "distribution" msgstr "根據給定的分配,在 x 方向使用隨機空間擾動" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:55 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:55 msgid "" "Apply random spatial perturbation in y direction according the the given " "distribution" msgstr "根據給定的分配,在 y 方向使用隨機空間擾動" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:57 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:57 msgid "" "Apply random spatial perturbation in z direction according the the given " "distribution" msgstr "根據給定的分配,在 z 方向使用隨機空間擾動" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:63 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:63 msgid "Defines the probability to build a reverse edge" msgstr "定義建立反向路段的機率" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:67 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:67 msgid "Draw lane numbers randomly from [1,default.lanenumber]" msgstr "從 [1,default.lanenumber] 中隨機抽取車道數" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:71 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:71 msgid "Draw edge priority randomly from [1,default.priority]" msgstr "從 [1,default.priority] 中隨機抽取邊優先級別" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:74 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:74 msgid "Draw edge type randomly from all loaded types" msgstr "從所有載入的類型中隨機抽取路段類型" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:80 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:80 msgid "Forces NETGEN to build a grid-like network" msgstr "強制 NETGEN 建立格狀網絡" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:85 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:85 msgid "The number of junctions in both dirs" msgstr "在兩個方向上的路口數量" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:90 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:90 msgid "The length of streets in both dirs" msgstr "在兩個方向上的街道長度" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:95 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:95 msgid "The number of junctions in x-dir; Overrides --grid-number" msgstr "在 x 方向上的路口數量; 覆蓋 --grid-number" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:100 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:100 msgid "The number of junctions in y-dir; Overrides --grid-number" msgstr "在 y 方向上的路口數量; 覆蓋 --grid-number" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:105 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:105 msgid "The length of horizontal streets; Overrides --grid-length" msgstr "水平街道的長度; 覆蓋 --grid-length" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:110 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:110 msgid "The length of vertical streets; Overrides --grid-length" msgstr "垂直街道的長度; 覆蓋 --grid-length" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:114 -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:147 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:114 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:147 msgid "" "The length of streets attached at the boundary; 0 means no streets are " "attached" msgstr "附加到邊界上的街道長度; 0 表示沒有附加任何街道" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:117 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:117 msgid "" "The length of streets attached at the boundary in x direction; 0 means no " "streets are attached" msgstr "附加到 x 方向邊界上的街道長度; 0 表示沒有附加任何街道" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:119 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:119 msgid "" "The length of streets attached at the boundary in y direction; 0 means no " "streets are attached" msgstr "附加到 y 方向邊界上的街道長度; 0 表示沒有附加任何街道" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:124 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:124 msgid "Forces NETGEN to build a spider-net-like network" msgstr "強制 NETGEN 建立蜘蛛網狀的路網" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:129 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:129 msgid "The number of axes within the net" msgstr "路網內的軸(axes)數" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:134 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:134 msgid "The number of circles of the net" msgstr "路網的圓圈數量" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:139 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:139 msgid "The distances between the circles" msgstr "圓圈之間的距離" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:144 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:144 msgid "Omit the central node of the network" msgstr "省略路網的中心節點" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:152 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:152 msgid "Forces NETGEN to build a random network" msgstr "強制 NETGEN 構建隨機路網" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:157 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:157 msgid "Describes how many times an edge shall be added to the net" msgstr "描述應將一個路段增加到路網中的次數" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:162 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:162 msgid "The maximum distance for each edge" msgstr "每個路段的最大距離" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:167 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:167 msgid "The minimum distance for each edge" msgstr "每個路段的最小距離" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:172 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:172 msgid "The minimum angle for each pair of (bidirectional) roads in DEGREES" msgstr "每對(雙向)道路的最小角度,以 DEGREES 為單位" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:177 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:177 msgid "The number of tries for creating each node" msgstr "建立每個節點的嘗試次數" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:182 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:182 msgid "Probability for roads to continue at each node" msgstr "道路在每個節點連續的機率" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:187 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:187 msgid "Probability for a node having exactly 1 neighbor" msgstr "節點恰好有 1 個鄰居的機率" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:192 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:192 msgid "Probability for a node having exactly 2 neighbors" msgstr "節點恰好有 2 個鄰居的機率" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:197 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:197 msgid "Probability for a node having exactly 3 neighbors" msgstr "節點恰好有 3 個鄰居的機率" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:202 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:202 msgid "Probability for a node having exactly 4 neighbors" msgstr "節點恰好有 4 個鄰居的機率" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:207 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:207 msgid "Probability for a node having exactly 5 neighbors" msgstr "節點恰好有 5 個鄰居的機率" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:212 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:212 msgid "Probability for a node having exactly 6 neighbors" msgstr "節點恰好有 6 個鄰居的機率" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:215 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:215 msgid "Place nodes on a regular grid with spacing rand.min-distance" msgstr "將節點放置在間距為 rand.min-distance 的規則路網上" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:235 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:235 msgid "You have to specify the type of network to generate." msgstr "您必須指定要產生的路網類型。" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:239 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:239 msgid "You may specify only one type of network to generate at once." msgstr "您一次只能指定產生一種類型的路網。" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:274 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:274 msgid "Option 'random-type' takes no effect unless 'type-files' are loaded" msgstr "除非已載入'類型檔案(type-files)',否則選項'隨機類型(random-type)'無效" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:90 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:90 msgid "" "[traffic_light|priority|right_before_left|left_before_right|" "traffic_light_right_on_red|priority_stop|allway_stop|...] Determines " @@ -6342,493 +6504,499 @@ "[交通號誌|優先級別|右方車輛優先|左方車輛優先|紅燈可右行號誌|依優先等級停等|一" "直停等|...] 決定 路口類型 (請參見 wiki/Networks/PlainXML#Node_types)" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:119 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:120 msgid "Spider networks need at least 3 arms." msgstr "蜘蛛型網絡至少需要 3 個手臂。" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:123 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:124 msgid "Spider networks with many arms should use option spider.omit-center" msgstr "多臂的蜘蛛型網絡應該使用選項 ommit-center" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:126 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:127 msgid "Spider networks need at least one circle." msgstr "蜘蛛型路網至少需要一個圓圈。" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:134 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:135 #, c-format msgid "" "The radius of spider networks should be at least % for the given lanenumber, " "lanewidth and junction radius" msgstr "對於給定的車道數、車道寬度和交叉路口半徑,蜘蛛型路網的半徑應至少為 %" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:176 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:177 msgid "" "The number of nodes must be positive and at least 2 in one direction if " "there are no attachments." msgstr "" "如果沒有附加物件(attachments),節點數必須為正數,且在一個方向上至少有 2 個。" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:184 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:185 #, c-format msgid "" "The distance between nodes should be at least % for the given lanenumber, " "lanewidth and junction radius" msgstr "對於給定的車道數、車道寬度和路口半徑,節點之間的距離應至少為 %" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:190 -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:195 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:191 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:196 #, c-format msgid "" "The length of attached streets should be at least % for the given " "lanenumber, lanewidth and junction radius" msgstr "對於給定的車道數、車道寬度和路口半徑,街道的長度應至少為 %" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:230 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:231 msgid "" "Synthetic network generator for the microscopic, multi-modal traffic " "simulation SUMO." msgstr "用於微觀多運具模式交通模擬 SUMO 的合成(synthetic)路網產生器。" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:266 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:267 msgid " Generation done;" msgstr " 產生完成;" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:267 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:268 #, c-format msgid " % nodes generated." msgstr " 已產生 % 節點。" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:268 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:269 #, c-format msgid " % edges generated." msgstr " 已產生 % 路段。" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:273 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:274 msgid " Removed % traffic lights at geometry-like nodes" msgstr " 在幾何相似的節點處移除 % 交通號誌" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:53 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:53 msgid "Read SUMO-net from FILE" msgstr "從檔案讀取SUMO路網(SUMO-net)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:60 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:60 msgid "Read XML-node defs from FILE" msgstr "從檔案讀取 XML 節點的定義(XML-node defs)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:66 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:66 msgid "Read XML-edge defs from FILE" msgstr "從檔案讀取 XML 路段的定義(XML-edge defs)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:72 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:72 msgid "Read XML-connection defs from FILE" msgstr "從檔案讀取 XML 連接線的定義(XML-connection defs)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:75 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:75 msgid "Read XML-traffic light defs from FILE" msgstr "從檔案讀取 XML 交通號誌的定義(XML-traffic light defs)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:81 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:81 msgid "Read XML-type defs from FILE" msgstr "從檔案讀取 XML 類型的定義(XML-type defs)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:86 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:86 msgid "Reads public transport stops from FILE" msgstr "從檔案讀取大眾運輸停靠點" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:88 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:88 msgid "Reads public transport lines from FILE" msgstr "從檔案讀取大眾運輸路線" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:90 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:90 msgid "Reads polygons from FILE for embedding in network where applicable" msgstr "從檔案中讀取多邊形,以在適用的情況下嵌入路網內" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:97 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:97 msgid "Read shapefiles (ArcView, Tiger, ...) from files starting with 'FILE'" msgstr "從以 'FILE' 為開頭的檔案中讀取 shapefiles (ArcView, Tiger,...)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:102 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:102 msgid "" "Read converted Navteq GDF data (unsplitted Elmar-network) from path 'FILE'" msgstr "從路徑 'FILE' 讀取轉換後的 Navteq GDF 資料(未分割的 Elmar 路網)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:106 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:106 msgid "Read OSM-network from path 'FILE(s)'" msgstr "從路徑 'FILE(s)' 讀取開放街圖檔案(OSM-network)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:110 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:110 msgid "Read OpenDRIVE-network from FILE" msgstr "從檔案中讀取 OpenDRIVE 路網" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:114 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:114 msgid "Read VISUM-net from FILE" msgstr "從檔案中讀取 VISUM 路網" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:118 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:118 msgid "Read VISSIM-net from FILE" msgstr "從檔案中讀取 VISSIM 路網" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:123 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:123 msgid "Read RoboCup-net from DIR" msgstr "從資料夾(DIR)中讀取 RoboCup 路網" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:127 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:127 msgid "Read MATsim-net from FILE" msgstr "從檔案中讀取 MATsim 路網" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:131 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:131 msgid "Read ITSUMO-net from FILE" msgstr "從檔案中讀取 ITSUMO 路網" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:134 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:134 msgid "Read heightmap from ArcGIS shapefile" msgstr "從 ArcGIS shapefile 檔案中讀取高度映成表(heightmap)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:137 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:137 msgid "Read heightmap from GeoTIFF" msgstr "從 GeoTIFF 檔案中讀取高度映成表(heightmap)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:145 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:159 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:199 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:145 +#: D:\Repos\sumo/src\od2trips_main.cpp:159 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:199 msgid "Continue on broken input" msgstr "在有損壞的輸入的情況下,繼續執行" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:148 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:148 msgid "Continue on invalid connections" msgstr "在有無效連接線(connections)情況下,繼續執行" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:151 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:151 msgid "Show errors in connections at parsing" msgstr "在解析時,顯示連接線(connections)的錯誤訊息" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:154 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:154 msgid "Continue on unknown edge types" msgstr "在有未知路段類型的情況下,繼續執行" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:157 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:157 msgid "vmax is parsed as given in km/h" msgstr "最大速度(vmax)以公里/小時(km/h)為單位進行解析" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:160 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:160 msgid "" "Use YYYY-MM-DD date to determine the readiness of features under construction" msgstr "使用 YYYY-MM-DD 日期以確定正在建設的功能是否準備就緒" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:163 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:163 msgid "Remove all z-data" msgstr "移除所有高度資料(z-data)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:166 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:166 msgid "Remove the list of keys from all params" msgstr "從所有參數中刪除鍵清單(list of keys)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:169 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:169 msgid "" "List vehicle classes that may ignore lane changing restrictions ('all' " "discards all restrictions)" msgstr "列出可能忽略變換車道限制的車輛類別 ('all' 廢棄所有限制)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:174 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:174 msgid "If edge shapes do not end at the node positions, extend them" msgstr "如果路段形狀不在節點位置結束,則延長它們" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:178 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:178 msgid "Skips the check for duplicate nodes and edges" msgstr "跳過對重複節點和路段的檢查" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:181 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:181 msgid "Imports elevation data" msgstr "導入高程數據" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:184 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:184 msgid "" "Reconstruct (relative) elevation based on layer data. Each layer is raised " "by FLOAT m" msgstr "根據圖層資料重建(相對)高程。 每層以 FLOAT 公尺的高度提升" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:187 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:187 #, c-format msgid "" "Maximum grade threshold in % at 50km/h when reconstrucing elevation based on " "layer data. The value is scaled according to road speed." -msgstr "當基於圖層資料重建高程時,在50 公里/小時的速度的最大坡度閾值 %。" -" 該值根據道路速度進行縮放。" +msgstr "" +"當基於圖層資料重建高程時,在50 公里/小時的速度的最大坡度閾值 %。 該值根據道路" +"速度進行縮放。" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:190 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:190 msgid "Whether one-way roads should be spread to the side instead of centered" msgstr "單行道是否應該展開(spread)到一邊,而不是居中" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:193 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:193 msgid "Import lane-specific access restrictions" msgstr "導入特定於車道的進出限制" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:197 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:197 msgid "Import bike lanes and fix directions and permissions on bike paths" msgstr "導入自行車道並確定自行車道的方向和權限(permissions)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:200 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:200 msgid "Import sidewalks" msgstr "導入人行道" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:203 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:203 msgid "Import crossings" msgstr "導入人行穿越道" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:206 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:206 msgid "Import turning arrows from OSM to help with connection building" msgstr "從開放街圖(OSM)導入轉向箭頭以幫助建立連接線(connection)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:209 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:209 msgid "The default length of a public transport stop in FLOAT m" msgstr "大眾運輸停靠站的預設長度, 以 FLOAT 米為單位" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:211 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:211 msgid "The default length of a bus stop in FLOAT m" msgstr "公車停靠站的預設長度, 以 FLOAT 米為單位" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:213 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:213 msgid "The default length of a tram stop in FLOAT m" msgstr "輕軌電車停靠站的預設長度, 以 FLOAT 米為單位" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:215 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:215 msgid "The default length of a train stop in FLOAT m" msgstr "火車停靠站的預設長度, 以 FLOAT 米為單位" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:218 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:219 msgid "Whether additional attributes shall be imported" msgstr "是否應導入附加屬性" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:221 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:223 msgid "" "List of additional attributes that shall be imported from OSM via osm.all-" "attributes (set 'all' to import all)" -msgstr "應透過 osm.all-attributes 從開放街圖(OSM)導入的附加屬性清單" -"(設定 'all' 以導入全部)" +msgstr "" +"應透過 osm.all-attributes 從開放街圖(OSM)導入的附加屬性清單(設定 'all' 以導入" +"全部)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:224 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:226 msgid "" "The speed limit to be set when there is no actual speed limit in reality" msgstr "針對現實中沒有實際限速時所設置的限速" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:228 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:230 msgid "The edge lengths given in the MATSIM-file will be kept" msgstr "MATSIM 檔案中所給定路段長度將被保留" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:231 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:233 msgid "The lane number will be computed from the capacity" msgstr "車道數將根據容量計算" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:237 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:239 msgid "Read edge ids from column STR" msgstr "從行(column) STR 中讀取路段識別名(ids)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:241 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:243 msgid "Read from-node ids from column STR" msgstr "從行(column) STR 中讀取起始節點識別名(from-node ids)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:245 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:247 msgid "Read to-node ids from column STR" msgstr "從行(column) STR 中讀取到達節點識別名(to-node ids)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:249 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:251 msgid "Read type ids from column STR" msgstr "從行(column) STR 中讀取類型識別名(ids)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:252 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:254 msgid "Read lane number from column STR" msgstr "從行(column) STR 中讀取車道編號(lane number)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:255 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:257 msgid "Read speed from column STR" msgstr "從行(column) STR 中讀取速度" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:258 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:260 msgid "Read custom edge length from column STR" msgstr "從行(column) STR 中讀取自定的路段長度" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:261 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:263 msgid "Read total edge width from column STR" msgstr "從行(column) STR 中讀取總路段寬度" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:264 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:266 msgid "Read (non-unique) name from column STR" msgstr "從行(column) STR 中讀取(非唯一)名稱" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:267 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:269 msgid "" "Distance threshold for determining whether distinct shapes are connected " "(used when from-id and to-id are not available)" -msgstr "用以確定不同形狀是否相連的距離閾值" -"(當沒有 from-id 及 to-id 的時候使用)" +msgstr "用以確定不同形狀是否相連的距離閾值(當沒有 from-id 及 to-id 的時候使用)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:270 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:272 msgid "Add the list of field names as edge params" msgstr "增加欄位名稱清單作為路段參數" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:274 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:276 msgid "Uses edge type defaults on problems" msgstr "遇到問題時,使用路段型預設值" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:279 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:281 msgid "Insert edges in both directions" msgstr "在雙向上插入路段" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:283 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:285 msgid "Guess the proper projection" msgstr "猜測正確的投影" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:286 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:125 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:288 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:125 msgid "Use traditional axis order (lon, lat)" msgstr "使用傳統的軸順序(經度(lon)、緯度(lat))" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:291 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:293 msgid "Allow more vehicle classes by default" msgstr "預設允許更多車輛類別" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:294 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:296 msgid "The edge lengths given in the DLR Navteq-file will be kept" msgstr "DLR-Navteq 檔案中給定路段長度將被保留" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:300 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:302 msgid "Structure join offset" msgstr "結構合併(join)的偏移量(offset)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:303 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:305 msgid "Use FLOAT as default speed" msgstr "使用 FLOAT 作為預設的速度" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:306 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:308 msgid "Factor for edge velocity" msgstr "路段速度係數" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:309 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:311 msgid "Writes lanes without an explicit speed set" msgstr "在沒有明確速度設定的情況下,寫入車道" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:314 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:95 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:316 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:95 msgid "Load language mappings from FILE" msgstr "從檔案載入語言映射(mappings)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:317 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:319 msgid "Uses priorities from types" msgstr "使用類型的優先級別(priorities)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:320 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:322 msgid "Uses lane numbers from types" msgstr "使用類型中的車道編號" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:323 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:325 msgid "Uses speeds from types" msgstr "使用類型的速度" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:326 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:328 msgid "Sets connector speed" msgstr "設定連接器(connector)速度" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:330 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:332 msgid "Sets connector lane number" msgstr "設定連接器(connector)車道編號" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:333 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:335 msgid "Excludes connectors" msgstr "不包含連接器(connectors)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:337 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:339 msgid "Computes the number of lanes from the edges' capacities" msgstr "根據路段的容量計算車道數" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:340 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:342 msgid "Prints all warnings, some of which are due to VISUM misbehaviour" msgstr "列印出所有警告,其中一些是由於 VISUM 不當行為引起的" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:345 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:347 msgid "The factor for flow to no. lanes conversion" msgstr "流量的係數(factor)是沒有。 車道轉換" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:350 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:352 msgid "Imports all lane types" msgstr "導入所有車道類型" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:352 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:354 msgid "Whether lane widths shall be ignored." msgstr "是否應忽略車道寬度。" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:354 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:356 msgid "" "The geometry resolution in m when importing curved geometries as line " "segments." msgstr "將曲線幾何導入為線段時的幾何解析度(以米為單位)。" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:356 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:358 msgid "" "Allow stop lines to be built beyond the start of the junction if the " "geometries allow so" msgstr "如果幾何形狀允許,允許在路口起點之外構建停止線" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:358 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:360 msgid "" "The minimum lane width for determining start or end of variable-width lanes" msgstr "用來確定可變寬的車道起點或終點的最小車道寬度" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:360 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:362 msgid "Import internal lane shapes" msgstr "導入內部車道形狀" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:362 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:364 msgid "Sets edge-id based on road-id and offset in m (legacy)" msgstr "根據道路識別名(id)和以米為單位的偏移量設定路段識別名(id) (舊版)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:364 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:366 msgid "Use custom lane shapes to compensate discarded lane types" msgstr "使用自定車道形狀來補償廢除的車道類型" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:375 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:368 +msgid "" +"Use the OpenDRIVE controller information for the generated signal program" +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:379 msgid "" "Discard all railway signal information loaded from other formats than plain-" "xml" msgstr "廢除所有從除了 plain-xml 以外的其他格式所載入的鐵路號誌資訊" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:397 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:400 msgid "" "Cannot import network data without PROJ-Library. Please install package proj " "before building sumo" msgstr "" "沒有 PROJ-Library 無法導入路網資料。請在構建 sumo 之前安裝 package proj" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:422 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:314 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:425 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:314 msgid "Environment variable SUMO_HOME is not set, using built in type maps." msgstr "未設定環境變數 SUMO_HOME, 將使用內置類型映成表(maps)。" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:455 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:458 msgid "It is recommend to use option osm.crossings with osm.sidewalks" msgstr "建議使用選項 osm.crossings 和 osm.sidewalks" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:138 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:139 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:138 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:139 msgid "Could not open shape description '%'." msgstr "無法打開形狀描述 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:187 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:187 msgid "Needed field '%' (street-id) is missing." msgstr "缺少所需欄位(field) '%' (街道識別名(street-id))。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:198 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:198 msgid "Needed field '%' (from node id) is missing." msgstr "缺少所需欄位(field) '%' (起始節點識別名(from node id))。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:202 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:202 msgid "Needed field '%' (to node id) is missing." msgstr "缺少所需欄位(field) '%' (到達節點識別名(to node id))。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:218 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:218 msgid "Unknown type '%' for edge '%'" msgstr "類型 '%' 未知 (路段為 '%')" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:233 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:233 #, c-format msgid "" "Required field '%' or '%' is missing (add fields or set option --shapefile." @@ -6837,734 +7005,763 @@ "缺少必填欄位 '%' 或 '%' (增加欄位(fields)或設定選項 --shapefile。use-" "defaults-on-failure)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:249 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:249 msgid "" "Road geometry must be of type 'linestring' or 'linestring25D' (found '%')" msgstr "道路幾何必須是 'linestring' 或 'linestring25D' 類型 (找到 '%')" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:261 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:90 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:261 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:90 msgid "No coordinate system found and coordinates look already projected." msgstr "未找到坐標系統,坐標看起來已經投影。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:264 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:93 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:264 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:93 msgid "Could not find geo coordinate system, assuming WGS84." msgstr "無法找到地理坐標系統,假設為 WGS84。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:277 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1488 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:600 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimAbstractEdge.cpp:44 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:171 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:277 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1562 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:600 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimAbstractEdge.cpp:44 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:171 msgid "Unable to project coordinates for edge '%'." msgstr "無法投影路段 '%' 的坐標。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:290 -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:304 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:304 #, c-format msgid "Node '%' could not be added" msgstr "無法增加節點 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:312 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:312 #, c-format msgid "Edge '%' connects identical nodes, skipping." msgstr "路段 '%' 連接相同的節點, 跳過。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:329 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:329 #, c-format -msgid "Edge '% is not unique." -msgstr "路段 '%' 不是唯一的。" +msgid "Edge '%' is not unique." +msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:338 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:338 msgid "Edge '%' is not unique. Renaming subsequent edge to '%'." msgstr "路段 '%' 不是唯一的。 將隨後的路段重新命名為 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:354 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:354 msgid "Could not create edge '%'. An edge with the same id already exists." msgstr "無法建立路段 '%'。 已存在具有相同識別名(id)的路段。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:368 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:368 msgid "Could not create edge '-%'. An edge with the same id already exists." msgstr "無法建立路段 '-%'。 已存在具有相同識別名(id)的路段。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:382 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:331 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:382 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:331 msgid "SUMO was compiled without GDAL support." msgstr "SUMO 是在沒有 GDAL 支援的情況下編譯的。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:76 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:76 msgid "Loading nodes" msgstr "正在載入節點" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:80 -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:105 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:80 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:105 #, c-format msgid "The file '%' could not be opened." msgstr "無法開啟檔案 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:90 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:90 msgid "Loading street names" msgstr "正在載入街道名稱" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:95 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:95 msgid "Output will not contain street names because the file '%' was not found" msgstr "輸出將不包含街道名稱,因為未找到檔案 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:100 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:100 msgid "Loading edges" msgstr "正在載入路段" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:114 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:114 msgid "Loading traffic lights" msgstr "正在載入交通號誌" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:123 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:123 msgid "Loading prohibited manoeuvres" msgstr "正在載入禁止的運轉行為(manoeuvres)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:132 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:132 msgid "Loading connected lanes" msgstr "正在載入連接的車道" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:141 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:141 msgid "Loading time restrictions" msgstr "正在載入時間限制" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:210 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:210 msgid "Non-numerical value for intermediate status in node %." msgstr "節點 % 的中間狀態為非數字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:215 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:215 msgid "Non-numerical value for number of geometries in node %." msgstr "節點 % 的幾何(geometries)數量為非數字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:222 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:222 msgid "Non-numerical value for x-position in node %." msgstr "節點 % 的 x 位置為非數字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:226 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:226 msgid "Non-numerical value for y-position in node %." msgstr "節點 % 的 y 位置為非數字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:230 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:321 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:230 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:321 msgid "Unable to project coordinates for node %." msgstr "無法投影節點 % 的坐標。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:240 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:240 msgid "Could not add add node '%'" msgstr "無法增加節點 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:242 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:260 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:379 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:474 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1350 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:242 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:267 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:386 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:481 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1424 msgid "Could not add node '%'." msgstr "無法增加節點 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:299 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:299 msgid "Missing version string in file '%'." msgstr "檔案 '%' 中缺少版本字串(version string)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:309 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:309 msgid "Non-numerical value for form_of_way of link '%'." msgstr "路段 '%' 的道路型式(form_of_way)為非數字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:316 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:316 msgid "Non-numerical value for brunnel_type of link '%'." msgstr "路段 '%' 的橋/隧道類型(brunnel_type)為非數字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:329 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:329 msgid "Non-numerical value for street_type of link '%')." msgstr "路段 '%' 的街道類型(street_type)為非數字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:351 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:351 msgid "Non-numerical value for the SPEED_RESTRICTION of link '%'." msgstr "路段 '%' 的速度限制(SPEED_RESTRICTION)為非數字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:366 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:366 msgid "Non-numerical value for the number of lanes of link '%'." msgstr "路段 '%' 的車道數為非數字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:420 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:538 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:596 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:759 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:420 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:545 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:603 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:760 msgid "Could not add edge '%'." msgstr "無法增加路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:431 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:431 msgid "Missing column %." msgstr "缺少行(column) %。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:442 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:442 msgid "Missing optional column % without default value." msgstr "缺少沒有預設值的選項行(column) %。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:499 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:499 #, c-format msgid "The traffic light edge '%' could not be found." msgstr "無法找到交通號誌路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:511 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:511 msgid "Could not allocate tls for '%'." msgstr "無法分配交通號誌(tls)給 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:702 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:702 msgid "Could not parse YYYY-MM-DD date '%'" msgstr "無法解析 YYYY-MM-DD 日期 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:747 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:747 msgid "Ignoring temporary prohibited manoeuvre (%)." msgstr "忽略臨時禁止的運轉操作 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:756 -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:801 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:756 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:801 msgid "Ignoring prohibition from unknown start edge '%'." msgstr "忽略來自未知起始路段 '%' 的禁止。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:761 -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:806 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:761 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:806 msgid "Ignoring prohibition from unknown end edge '%'." msgstr "忽略來自未知結束路段 '%' 的禁止。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:811 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:811 msgid "" "Ignoring invalid lane index '%' in connection from edge '%' with % lanes." msgstr "忽略無效車道索引 '%', 其與起始路段(from edge) '%' (有 % 車道) 連接。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:816 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:816 msgid "Ignoring invalid lane index '%' in connection to edge '%' with % lanes" msgstr "忽略無效車道索引 '%', 其與結束路段(to edge) '%' (有 % 車道) 連接" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:821 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:821 msgid "Could not set loaded connection from '%' to '%'." msgstr "無法設定從 '%' 到 '%' 的載入連接線(loaded connection)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:117 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:117 msgid "Could not open itsumo-file '%'." msgstr "無法開啟檔案 itsumo-file '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:217 -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:180 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:217 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:180 msgid "Could not add edge '%'. Probably declared twice." msgstr "無法增加路段 '%'。可能已經宣告了兩次。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:232 -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:142 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:703 -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:148 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:232 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:142 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:703 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:148 msgid "Unable to project coordinates for node '%'." msgstr "無法投影節點 '%' 的坐標。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:237 -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:147 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:237 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:147 msgid "Could not add node '%'. Probably declared twice." msgstr "無法增加節點 '%'。可能已經宣告了兩次。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:240 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:240 msgid "Not numeric position information for node '%'." msgstr "節點 '%' 沒有數值的位置資訊。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:242 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:242 msgid "Missing data in node '%'." msgstr "節點 '%' 內缺少資料。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:260 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:260 msgid "Missing node in laneset '%'." msgstr "車道集合(laneset) '%' 內缺少節點。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:263 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:263 msgid "Fond laneset-id '%' twice." msgstr "已發現兩次車道集合識別名(laneset-id) '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:277 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:277 msgid "Not numeric value in laneset '%'." msgstr "車道集合(laneset) '%' 內不是數字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:279 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:279 msgid "Missing data in laneset '%'." msgstr "缺少車道集合(laneset) '%' 的資料。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:290 msgid "Not numeric value in lane '%'." msgstr "車道 '%' 內不是數字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:292 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:292 msgid "Missing data in lane '%'." msgstr "車道 '%' 內缺少資料。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:202 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:202 msgid "Bogus capacity period format; requires 'hh:mm:ss'." msgstr "假的容量週期格式; 需要 'hh:mm:ss'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:234 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:234 msgid "Could not find from-node for edge '%'." msgstr "無法發現路段 '%' 的起始節點(from-node)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:237 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:237 msgid "Could not find to-node for edge '%'." msgstr "無法發現路段 '%' 的到達節點(to-node)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:253 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:253 msgid "Could not add intermediate node to split loop edge '%'." msgstr "無法增加中間節點去分割(split)迴圈(loop)路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:211 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:217 msgid "Could not find signal reference '%'." msgstr "無法發現號誌參考(reference) '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:274 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:312 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:281 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:319 msgid "Could not build node '%'." msgstr "無法建立節點 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:411 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:418 msgid "Ignoring road '%' without geometry." msgstr "忽略沒有幾何形狀的道路 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:435 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:442 msgid "Could not apply laneOffsets for edge '%'" msgstr "無法在路段 '%' 使用車道偏移量(laneOffsets)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:668 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:633 #, c-format msgid "Edge '%' has no lanes." msgstr "路段 '%' 沒有車道。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:704 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:674 #, c-format msgid "While setting connections: from-edge '%' is not known." msgstr "當設定連接線時: 起始路段(from-edge) '%' 未知。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:714 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:684 #, c-format msgid "While setting connections: to-edge '%' is not known." msgstr "當設定連接線時: 到達路段(to-edge) '%' 未知。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:740 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:743 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:710 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:713 msgid "Could not find fromEdge representation of '%' in connection '%'." msgstr "無法找到 '%' 的 fromEdge 表示法 (位於連接線 '%'內)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:792 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:766 +#, c-format +msgid "" +"Controlling multiple junctions by the same controller '%' is currently not " +"implemented." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:787 #, c-format msgid "Edge '%' has signals but no lane sections." msgstr "路段 '%' 有號誌,但沒有車道部分。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:814 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:809 msgid "Ambiguous start of connection." msgstr "不明確的連接線開始。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:831 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:826 msgid "Ambiguous end of connection." msgstr "不明確的連接線末端。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:844 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:859 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:892 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:839 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:854 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:901 msgid "Could not find edge '%' for signal '%'." msgstr "無法找路段 '%' (號誌為 '%')。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:881 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:875 +msgid "" +"The signaling of the connection from '%' to '%' (controller '%') is " +"ambiguous because it is overwritten signal '%' and with controller '%'." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:890 msgid "Found a traffic light signal on an unknown edge (original edge id='%')." msgstr "在未知路段(原始路段識別名(id)='%')上發現交通號誌。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1287 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1319 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:921 +msgid "" +"The signaling of the connection from '%' to '%' (controller '%') is " +"ambiguous because it is overwritten with signal '%' and controller '%'." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1361 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1393 #, c-format msgid "While setting connections: incoming road '%' is not known." msgstr "設定連接線時: 進入道路 '%' 未知。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1362 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1436 msgid "Could not find node '%'." msgstr "無法發現節點 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1455 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1529 msgid "Mismatched geometry for edge '%' between geometry segments % and %." msgstr "路段 '%' 在 % 和 % 幾何區間之間的幾何形狀失配。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1636 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1710 #, c-format msgid "The sections of edge '%' are not sorted properly." msgstr "路段 '%' 的章節部分(sections)未正確排序。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1648 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1722 msgid "" "Almost duplicate s-value '%' for lane sections occurred at edge '%'; second " "entry was removed." -msgstr "車道章節部分(sections)有幾乎重複的 s 值 '%' 出現在路段 '%';" -"第二個輸入項(entry)被刪除。" +msgstr "" +"車道章節部分(sections)有幾乎重複的 s 值 '%' 出現在路段 '%';第二個輸入項" +"(entry)被刪除。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1691 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1765 msgid "Could not compute spiral geometry for edge '%' (cDot=% length=%)." msgstr "無法計算路段 '%' 的螺旋幾何形狀 (cDot=% 長度=%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1740 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1814 msgid "Could not compute spiral geometry for edge '%' (%)." msgstr "無法計算路段 '%' 的螺旋幾何形狀 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2012 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2086 msgid "" "Will discard access settings as both denied and allowed classes have been " "specified." msgstr "將廢棄連通通道設定(access settings),因為已指定拒絕和允許的類別。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2320 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2392 msgid "Ignoring invalid pRange value '%' for road '%'." msgstr "忽略無效的 pRange 值 '%' (在道路 '%')。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2420 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2617 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2470 +msgid "Ignoring missing signal '%' in controller '%'." +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2508 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2704 #, c-format msgid "In laneLink-element: incoming road '%' is not known." msgstr "在 laneLink 元素中: 進入(incoming)道路 '%' 未知。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2516 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2603 msgid "Ignoring object without id at edge '%'." msgstr "忽略路段 '%' 處沒有識別名(id)的物件。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2534 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2621 msgid "Repeat without object at edge '%'." msgstr "重複,不包含在路段 '%' 處的物件。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2588 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2675 msgid "Could not set projection (%). This can be ignored with --ignore-errors." msgstr "無法設定投影 (%)。 這可以用 --ignore-errors 忽略。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2592 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2679 #, c-format msgid "geoReference format '%' currently not supported" msgstr "目前不支援地理參考(geoReference)格式 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2661 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2752 msgid "Mismatching parenthesis in geometry definition for road '%'" msgstr "道路 '%' 的幾何定義中的括號不配對" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2665 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2756 msgid "Double geometry information for road '%'" msgstr "道路 '% 有雙重幾何資訊" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:156 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:104 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:156 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:104 msgid "Could not open osm-file '%'." msgstr "無法開啟 開放街圖(osm)檔案 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:168 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:168 #, c-format msgid "Found and substituted % osm nodes." msgstr "找到並替換了 % 開放街圖(osm)節點。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:192 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:192 msgid "Removing duplicate edges" msgstr "正在移除重複路段" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:207 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:207 #, c-format msgid "Removed % duplicate osm edges." msgstr "移除 % 重複的開放街圖(osm)路段。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:241 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:241 msgid "Discarding way '%' because it has only % node(s)" msgstr "廢棄路徑(way) '%' , 因為它只有 % 個節點" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:404 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:404 msgid "Could not insert junction '%'." msgstr "無法插入(insert)路口 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:462 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:462 msgid "" "Discarding edge '%' which connects two identical nodes without geometry." msgstr "廢棄連接兩個沒有幾何形狀的相同節點的路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:574 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:574 msgid "New value for oneway found: %" msgstr "找到單向(oneway)的新值: %" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:606 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:607 msgid "Skipping edge '%' because it has zero lanes." msgstr "跳過路段 '%', 因為它是零車道。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:626 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:627 msgid "Skipping edge '%' because it has speed %." msgstr "跳過路段 '%', 因為它的速度是 %。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:746 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:747 msgid "" "Forward lanes count for edge '%' ('%') is not matching the number of lanes " "defined in width:lanes:forward key ('%'). Using default width values." -msgstr "路段 '%' ('%') 的前向(forward)車道數與 width:lanes:forward 鍵中定義的" -"車道數不匹配。使用預設寬度值。" +msgstr "" +"路段 '%' ('%') 的前向(forward)車道數與 width:lanes:forward 鍵中定義的車道數不" +"匹配。使用預設寬度值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:792 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:793 msgid "" "Backward lanes count for edge '%' ('%') is not matching the number of lanes " "defined in width:lanes:backward key ('%'). Using default width values." -msgstr "路段 '%' ('%') 的反向(backward)車道數與 width:lanes:backward 鍵中定義的" -"車道數不匹配。使用預設寬度值。" +msgstr "" +"路段 '%' ('%') 的反向(backward)車道數與 width:lanes:backward 鍵中定義的車道數" +"不匹配。使用預設寬度值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:805 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:806 msgid "Could not add edge '-%'." msgstr "無法增加路段 '-%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:893 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:894 msgid "" "Attribute 'id' in the definition of a node is not of type long long int." msgstr "節點定義中的屬性 '識別名(id)' 不是超長整數(long long int)類型。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:899 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:900 msgid "Tag element on wrong XML hierarchy level." msgstr "在錯誤的 XML 層次結構級別標記元素。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:941 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:942 msgid "Value of key '%' is invalid ('%') in node '%'." msgstr "鍵 '%' 的值無效 ('%'); 在節點 '%' 中。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:946 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:947 msgid "Value of key '%' is not numeric ('%') in node '%'." msgstr "鍵 '%' 的值不是數字值 ('%'); 在節點 '%' 中。。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1091 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:592 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1092 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:592 msgid "The referenced geometry information (ref='%') is not known" msgstr "參考的幾何資訊 (ref='%') 未知" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1329 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1331 #, c-format msgid "Using default lane width for edge '%' as key '%' could not be parsed." msgstr "路段 '%' 的預設車道寬度作為鍵(key) '%',它無法被解析(parse)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1332 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1334 #, c-format msgid "Using default lane width for edge '%' as value '%' could not be parsed." msgstr "路段 '%' 的預設車道寬度作為值(value) '%',它無法被解析(parse)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1375 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1377 msgid "Using minimum lane number from list (%) for edge '%'." msgstr "使用清單 (%) 中的最小車道編號數(lane number); 路段為 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1377 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1381 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1392 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1404 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1427 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1437 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1379 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1383 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1394 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1406 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1429 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1439 msgid "Value of key '%' is not numeric ('%') in edge '%'." msgstr "鍵 '%' 的值不是數字值 ('%'), 其發生在路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1434 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1436 msgid "Ignoring track count % for edge '%'." msgstr "忽略軌道計數(track count) %, 其發生在路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1605 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1607 msgid "Unknown lane use specifier '%' ignored for way '%'" msgstr "未知車道使用說明符(specifier) '%' 已忽略; 針對路徑(way) '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1714 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1716 msgid "No node found for reference '%' in relation '%'." msgstr "找不到參考 '%' 的節點; 其發生在關係 '%' 中。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1776 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1778 msgid "Found unknown restriction type '%' in relation '%'" msgstr "找到未知的限制類型 '%'; 其發生在關係 '%' 中" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1814 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1816 msgid "Invalid color value '%' in relation %" msgstr "無效的顏色值 '%'; 其發生在關係 '%' 中" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1832 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1834 msgid "No way found for reference '%' in relation '%'" msgstr "找不到參考 '%' 的路徑(way); 其發生在關係 '%' 中" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1844 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1846 msgid "Ignoring restriction relation '%' with unknown type." msgstr "忽略有未知類型的限制關係 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1848 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1850 msgid "Ignoring restriction relation '%' with unknown from-way." msgstr "忽略有未知的從路徑(from-way)的限制關係 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1852 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1854 msgid "Ignoring restriction relation '%' with unknown to-way." msgstr "忽略有未知的到路徑(to-way)的限制關係 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1856 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1858 msgid "Ignoring restriction relation '%' with unknown via." msgstr "忽略有未知的行經(via)的限制關係 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1860 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1862 msgid "Ignoring restriction relation '%'." msgstr "忽略限制關係 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1885 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1887 #, c-format msgid "" "Platform '%' in relation: '%' is given as polygon, which currently is not " "supported." msgstr "於關係(relation)中的平台 '%': '%' 以多邊形給定,目前不支援。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1906 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1908 #, c-format msgid "" "Referenced platform: '%' in relation: '%' is corrupt. Probably OSM file is " "incomplete." -msgstr "於關係(relation)中的參考平台: '%': '%' 已損壞。可能開放接圖(OSM)" -"檔案不完整。" +msgstr "" +"於關係(relation)中的參考平台: '%': '%' 已損壞。可能開街街圖(OSM)檔案不完" +"整。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1945 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1947 #, c-format msgid "PT line '%' in relation % seems to be split, only keeping first part." msgstr "大眾運輸路線 '%' (於關係 % 中) 似乎被分割(split), 只保留第一部分。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1978 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1980 msgid "" "PT line in relation % with no stops ignored. Probably OSM file is incomplete." -msgstr "大眾運輸路線於關係 % 中沒有停靠站, 因此被忽略。可能開放接圖(OSM)" -"檔案不完整。" +msgstr "" +"大眾運輸路線於關係 % 中沒有停靠站, 因此被忽略。可能開放街圖(OSM)檔案不完整。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1984 -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:222 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1986 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:222 msgid "Ignoring duplicate PT line '%'." msgstr "忽略重複的大眾運輸列(PT line) '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1999 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2001 msgid "Via-node '%' was not instantiated" msgstr "通過節點(Via-node) '%' 未實例化(instantiated)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2005 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2007 #, c-format msgid "from-edge '%' of restriction relation could not be determined" msgstr "無法確定限制關係的起始路段(from-edge) '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2009 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2011 #, c-format msgid "to-edge '%' of restriction relation could not be determined" msgstr "無法確定限制關係的到達路段(to-edge) '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2039 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2041 msgid "direction of restriction relation could not be determined%" msgstr "限制關係的方向無法確定%" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2060 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2062 #, c-format msgid "Ambiguous way reference '%' in restriction relation" msgstr "限制關係中的不明確的路徑(way)參照(reference) '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2311 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2314 msgid "" "Discarding unknown compound '%' in type '%' (first occurrence for edge '%')." -msgstr "廢棄未知複合物(compound) '%';發生在類型 '%' 中 (在路段 '%' 第一次出現)。" +msgstr "" +"廢棄未知複合物(compound) '%';發生在類型 '%' 中 (在路段 '%' 第一次出現)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2315 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2320 msgid "Discarding unusable type '%' (first occurrence for edge '%')." msgstr "廢棄未使用的類型 '%' (在路段 '%' 第一次出現)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2364 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2365 msgid "Discarding compound type '%' (first occurrence for edge '%')." msgstr "廢棄複合類型(compound type) '%' (在路段 '%' 第一次出現)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2369 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2380 msgid "Adding new type '%' (first occurrence for edge '%')." msgstr "新增新的類型 '%' (在路段 '%' 第一次出現)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2404 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2415 msgid "Ambiguous railway kilometrage direction for way '%' (assuming forward)" msgstr "路徑(way) '%' 的鐵路里程方向不明確(假設向前)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2411 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2422 msgid "Inconsistent railway kilometrage direction for way '%': % (skipping)" msgstr "路徑(way) '%' 的鐵路公里方向不一致: % (跳過)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2456 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2467 msgid "Value of railway:position is not numeric ('%') in node '%'." msgstr "railway:position 的值不是數字('%');發生在節點 '%' 處。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2548 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2559 msgid "" "Ignoring turn sign information for % lanes on edge % with % driving lanes" msgstr "忽略在 % 車道(lanes)上轉向標誌信息;其路段為 % 並具有 % 行駛車道" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:118 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:118 msgid "Could not open sumo-net-file '%'." msgstr "無法開啟sumo的路網檔案(sumo-net-file) '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:146 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:146 #, c-format msgid "Edge's '%' from-node and to-node '%' are identical." msgstr "路段 '%' 的從節點(from-node)和到節點(to-node) '%' 是相同的。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:165 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:165 msgid "Could not insert edge '%'." msgstr "無法插入路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:191 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:787 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:318 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:191 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:787 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:318 #, c-format msgid "Unknown edge '%' given in connection." msgstr "在連接線(conneciton)中給定的未知路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:230 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:272 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:230 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:272 #, c-format msgid "The traffic light '%' is not known." msgstr "交通號誌 '%' 未知。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:288 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:290 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:292 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:294 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:288 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:292 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:294 #, c-format msgid "Edge '%' in prohibition was not built." msgstr "未構建禁止中的路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:345 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:345 #, c-format msgid "Deprecated vehicle class(es) '%' in input network." msgstr "不適用(deprecated)的車輛類別 '%' 出現在輸入的路網內。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:403 -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1683 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:403 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1688 #, c-format msgid "Unknown edge '%' in roundabout" msgstr "在圓環上有未知的路段 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:520 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:520 #, c-format msgid "Edge '%' occurred at least twice in the input." msgstr "路段 '%' 在輸入檔案中至少出現兩次。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:542 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:542 msgid "Unmatched closing tag for tl-logic." msgstr "號誌邏輯(tl-logic)的結束標記不匹配。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:545 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:545 msgid "Could not add program '%' for traffic light '%'" msgstr "無法為增加時制計畫 '%'給交通號誌 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:615 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:615 msgid "Unknown spreadType '%' for edge '%'." msgstr "未知的散開類型(spreadType) '%'; 發生在路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:628 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:628 #, c-format msgid "Found lane '%' not within edge element." msgstr "發現車道 '%' 不在路段元素內。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:633 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:633 msgid "Renaming lane '%' to '%'." msgstr "將車道 '%' 重新命名為 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:699 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:699 msgid "" "Duplicate definition of stopOffset for edge %.\n" "Ignoring duplicate specification." -msgstr "路段 '%' 的停等偏移值(stopOffset)重複定義。\n" +msgstr "" +"路段 '%' 的停等偏移值(stopOffset)重複定義。\n" "忽略重複規格說明。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:705 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:705 msgid "" "Duplicate definition of lane's stopOffset on edge %.\n" "Ignoring duplicate specifications." @@ -7572,2852 +7769,2901 @@ "車道 '%' 的停等偏移值(stopOffset)重複定義。\n" "忽略重複規格說明。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:742 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:742 #, c-format msgid "Junction '%' occurred at least twice in the input." msgstr "路口 '%' 在輸入檔案中至少出現兩次。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:839 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:839 msgid "Invalid lane index '%' for connection from '%'." msgstr "無效的車道索引 '%' ;發生在從 '%'開始的連接線。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:929 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:929 msgid "Definition of tl-logic '%' was not finished." msgstr "號誌邏輯(tl-logic) '%' 的定義未完成。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:941 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:127 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:941 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:127 msgid "Unknown traffic light type '%' for tlLogic '%'." msgstr "未知的交通號誌類型 '%' ;發生在號誌邏輯(tl-logic) '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:955 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:955 msgid "found phase without tl-logic" msgstr "發現沒有號誌邏輯(tl-logic)的時相(phase)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:963 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:963 msgid "Phase duration for tl-logic '%/%' must be positive." msgstr "號誌邏輯(tl-logic) '%/%' 的時相(phase)長度必須是正值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1019 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1019 msgid "Missing connection divider in prohibition attribute '%'" msgstr "禁止屬性 '%' 中缺少連接線分隔符號(connection divider)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1026 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1030 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1026 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1030 msgid "Unknown edge prohibition '%'" msgstr "未知的路段禁止 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:205 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:205 msgid "Can not open visum-file '%'." msgstr "無法開啟 visum 檔案 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:247 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:247 #, c-format msgid "Too short value line in % occurred." msgstr "以 % 表示的值線(value line)太短。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:249 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:249 msgid "A value in % should be numeric but is not (id='%')." msgstr "% 中的值應該是數字,但其並不是 (id='%')。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:251 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:251 msgid "One of the needed values ('%') is missing in %." msgstr "所需值之一 ('%') 缺失於 % 內。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:326 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:326 msgid "Duplicate node occurred ('%')." msgstr "出現重複節點 ('%')。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:344 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:344 msgid "Unable to project coordinates for district %." msgstr "無法投影分區 % 的坐標。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:350 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:350 msgid "Duplicate district occurred ('%')." msgstr "出現重複分區 ('%')。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:368 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:368 msgid "Unable to project coordinates for point %." msgstr "無法投影點(point) % 的坐標。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:458 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:475 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:458 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:475 msgid "Duplicate edge occurred ('%')." msgstr "出現重複的路段 ('%')。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:580 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:580 msgid "" "Incoming connector '%' will not be build - would be not connected to network." msgstr "將不會構建傳入(incoming)連接器 '%' - 不會連接到路網。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:584 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:618 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:584 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:618 #, c-format msgid "The district '%' could not be built." msgstr "無法建立分區 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:594 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:629 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:594 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:629 msgid "A duplicate edge id occurred (ID='%')." msgstr "出現重複的路段識別名(id) (ID='%')。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:614 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:614 msgid "" "Outgoing connector '%' will not be build - would be not connected to network." msgstr "將不會構建傳出(outgoing)連接器 '%' - 不會連接到路網。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:665 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:671 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:720 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:665 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:671 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:720 msgid "There is no edge from node '%' to node '%'." msgstr "從節點 '%' 到節點 '%' 沒有路段。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:698 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:698 msgid "Error in geometry description from node '%' to node '%'." msgstr "從節點 '%' 到節點 '%' 的幾何描述錯誤。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:757 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:757 msgid "A lane number for edge '%' is not numeric (%)." msgstr "路段 '%' 的車道數不是數字值 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:762 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:762 msgid "A lane number for edge '%' is not positive (%)." msgstr "路段 '%' 的車道數不是正值 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:781 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:781 msgid "A lane length for edge '%' is not numeric (%)." msgstr "路段 '%' 的車道長度不是數字值 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:785 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:785 msgid "A lane length for edge '%' is not positive (%)." msgstr "路段 '%' 的車道長度不是正值 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:846 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:846 msgid "Could not find split position for edge '%'." msgstr "無法找到路段 '%' 的分割(split)位置。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:856 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:856 msgid "Ups - could not insert node!" msgstr "糟糕 - 無法插入節點!" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:917 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:917 #, c-format msgid "Could not find TLS '%' for setting the signal group." msgstr "無法找到交通號誌 '%' 以設定號誌群組。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:930 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:930 msgid "Ignoring SIGNALGRUPPEZUFSABBIEGER because LsaNr is not known" msgstr "忽略 SIGNALGRUPPEZUFSABBIEGER, 因為 LsaNr 未知" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:987 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:987 msgid "Unknown edge in TEILFLAECHENELEMENT" msgstr "在TEILFLAECHENELEMENT中有未知的路段" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1007 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1007 msgid "Unknown are for area part '%'." msgstr "用於區域部分 '%' 未知。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1069 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1069 msgid "" "Ignoring lane-to-lane connection (not yet implemented for this format " "version)" msgstr "忽略車道到車道間的連接線 (尚未實現於此格式版本內)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1107 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1107 msgid "A from-lane number for edge '%' is not numeric (%)." msgstr "路段 '%' 的起始車道編號數(from-lane number)不是數字 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1112 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1112 msgid "A from-lane number for edge '%' is not positive (%)." msgstr "路段 '%' 的到達車道(to-lane number)編號數不是正數 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1121 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1121 msgid "A to-lane number for edge '%' is not numeric (%)." msgstr "路段 '%' 的到達車道(to-lane number)編號數不是數字 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1126 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1126 msgid "A to-lane number for edge '%' is not positive (%)." msgstr "路段 '%' 的到達車道(to-lane number)編號數不是正數 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1142 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1142 msgid "" "A from-lane number for edge '%' is larger than the edge's lane number (%)." msgstr "路段 '%' 的起始車道編號數(from-lane number)大於路段車道數 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1146 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1146 msgid "" "A to-lane number for edge '%' is larger than the edge's lane number (%)." msgstr "路段 '%' 的到達車道編號數(to-lane number)大於路段車道數 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1162 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1162 msgid "Ignoring stopping place '%' without edge id" msgstr "忽略沒有路段識別名(id)的停止位置 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1164 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1164 msgid "Ignoring stopping place '%' without node informatio" msgstr "忽略沒有節點資訊的停止位置 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1171 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1171 msgid "" "Could not find edge with from-node '%' and base id '%' for stopping place '%'" -msgstr "無法找到起始點(from-node)為 '%' 且基本識別名(id)為 '%' 的路段; " -"其用於停等位置 '%'" +msgstr "" +"無法找到起始點(from-node)為 '%' 且基本識別名(id)為 '%' 的路段; 其用於停等位" +"置 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1176 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1176 msgid "Unexpected from-node '%' for edge '%' of stopping place '%'" msgstr "無預期的起始點(from-node), 其被用於路段 '%' 上的停等位置 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1182 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1182 msgid "" "Could not find edge with to-node '%' and base id '%' for stopping place '%'" -msgstr "無法找到到達點(to-node)為 '%' 且基本識別名(id)為 '%' 的路段; 其用於停等位置 " +msgstr "" +"無法找到到達點(to-node)為 '%' 且基本識別名(id)為 '%' 的路段; 其用於停等位置 " "'%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1187 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1187 msgid "Unexpected to-node '%' for edge '%' of stopping place '%'" msgstr "無預期的到達點(to-node), 其被用於路段 '%' 上的停等位置 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1271 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1271 #, c-format msgid "The node '%' is not known." msgstr "節點 '%' 未知。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1508 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1508 msgid "Could not build connector node '%'." msgstr "無法構建連接器節點(connector node) '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1518 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1518 msgid " The from-node was not found within the net" msgstr " 在路網中找不到起始點(from-node)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1521 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1521 msgid " The to-node was not found within the net" msgstr " 在路網中找不到到達點(to-node)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1524 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1524 msgid " Both nodes are the same" msgstr " 兩個節點相同" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1539 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:431 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1539 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:431 msgid "Could not load VISUM language map from '%'." msgstr "無法從 '%' 載入 VISUM 語言映成表(map)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1551 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1551 #, c-format msgid "Unknown entry '%' in VISUM language map" msgstr "VISUM 語言映成表(map)中的未知輸入項(entry) '%'" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:103 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:103 msgid " Removed % traffic lights before loading plain-XML" msgstr " 在載入純 XML(plain-XML)檔案之前,刪除了 % 交通號誌" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:112 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:112 msgid "No nodes loaded." msgstr "沒有載入節點。" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:115 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:115 msgid "No edges loaded." msgstr "沒有加載路段。" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:126 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:126 msgid " Import done:" msgstr " 導入完成:" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:128 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:128 #, c-format msgid " % districts loaded." msgstr " % 分區已載入。" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:130 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:130 #, c-format msgid " % nodes loaded." msgstr " % 節點已載入。" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:132 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:132 msgid " % types loaded." msgstr " % 類型已載入。" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:134 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:134 #, c-format msgid " % edges loaded." msgstr " % 路段已載入。" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:136 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:136 #, c-format msgid "The split of edges was performed % times." msgstr "路段分割(split) % 次了。" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:144 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:144 msgid "Proj projection parameters used: '%'." msgstr "使用的 Proj 投影參數: '%'。" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:165 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:165 #, c-format msgid "Deprecated vehicle class(es) '%' in input edge files." msgstr "在輸入路段檔案中已不適用的車輛類別(class(es)) '%'。" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:61 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:61 msgid "Invalid speed code (edge '%')." msgstr "速度代碼無效 (路段 %)。" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:64 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:64 msgid "Non-numerical value for an edge's speed type occurred (edge '%')." msgstr "路段速度類型出現非數值 (路段 %)。" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:90 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:90 msgid "Invalid lane number (edge '%')." msgstr "無效的車道編號 (路段 %)。" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:94 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:94 msgid "Non-numerical value for an edge's lane number occurred (edge '%'." msgstr "路段車道編號出現非數值 (路段 %)。" -#: /home/micha/programming/sumo/src/netimport/NITypeLoader.cpp:62 +#: D:\Repos\sumo/src\netimport\NITypeLoader.cpp:62 msgid "Could not open %-file '%'." msgstr "無法開啟 %-檔案 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIVisumTL.cpp:76 +#: D:\Repos\sumo/src\netimport\NIVisumTL.cpp:76 msgid "invalid node for traffic light '%'" msgstr "交通號誌 '%' 的節點無效" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:85 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:85 msgid "" "Target edge '%' is not connected with '%'; the connection cannot be reset." msgstr "目標路段 '%' 未與 '%' 連接; 無法重設連接線(connection)。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:99 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:99 msgid "Edge '%' has no connection to lane '%'; the connection cannot be reset." msgstr "路段 '%' 與車道 '%' 沒有連接; 無法重設連接線(connection)。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:267 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:267 msgid "Unable to project shape for connection from edge '%' to edge '%'." msgstr "無法投影從路段 '%' 到路段 '%' 的連接線(connection)形狀。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:275 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:275 msgid "Could not set loaded connection from lane '%' to lane '%'." msgstr "無法設定從車道 '%' 到車道 '%' 的載入的連接線。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:347 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:347 #, c-format msgid "Node '%' in crossing is not known." msgstr "人行穿越道(crossing)的節點 '%' 未知。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:356 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:356 msgid "No edges specified for crossing at node '%'." msgstr "在節點 '%' 處沒有指定用於設定人行穿越道的路段。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:364 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:364 #, c-format msgid "Edge '%' for crossing at node '%' is not known." msgstr "用於設定人行穿越道的路段 '%' 未知; 位於節點 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:372 -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:450 -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:455 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:372 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:450 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:455 msgid "Edge '%' does not touch node '%'." msgstr "路段 '%' 未與節點 '%' 接觸。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:385 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:385 #, c-format msgid "Crossing at controlled node '%' must be prioritized" msgstr "在交通控制節點 '%' 的人行穿越道必須優先考慮 (prioritized)" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:390 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:390 msgid "Unable to project shape for crossing at node '%'." msgstr "無法投影節點 '%' 處的人行穿越道形狀。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:403 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:403 msgid "Crossing with edges '%' already exists at node '%'." msgstr "路段 '%' 的人行穿越道已存在於節點 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:435 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:435 msgid "No edges specified for walkingArea at node '%'." msgstr "沒有為節點 '%' 處的步行區域指定路段。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:441 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:441 #, c-format msgid "Edge '%' for walkingArea at node '%' is not known." msgstr "步行區域(walkingArea)的路段 '%' 未知; 發生於節點 '%' 。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:467 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:467 msgid "Unable to project shape for walkingArea at node '%'." msgstr "無法投影節點 '%' 處的步行區域形狀。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:222 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:222 msgid "Duplicate edge id occurred ('%'); assuming overwriting is wished." msgstr "出現重複的路段識別名(id) ('%'); 假設希望被覆蓋。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:227 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:227 #, c-format msgid "Edge '%' changed it's type; assuming type override is wished." msgstr "路段 '%' 改變了它的類型; 假設希望類型被覆蓋。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:315 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:315 msgid "Ignoring self-looped edge '%' at junction '%'" msgstr "忽略自我迴圈路段 '%'; 發生在路口 '%'" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:393 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:393 #, c-format msgid "'%' is deprecated, please use '%' instead." msgstr "'%' 已不適用,請改用 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:403 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:403 msgid "Lane index is larger than number of lanes (edge '%')." msgstr "車道索引大於車道數 (路段 %)。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:447 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:447 msgid "Unable to project coordinates for lane '%'." msgstr "無法投影車道 '%' 的坐標。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:472 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:472 msgid "Ignoring 'split' because it cannot be assigned to an edge" msgstr "忽略'分割(split)' ,因為它不能指定使用路一個路段" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:481 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:481 msgid "Edge '%' has a split at invalid position %." msgstr "路段 '%' 在無效位置 % 處有一個分割(split)。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:486 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:486 msgid "Edge '%' has already a split at position %." msgstr "路段 '%' 在位置 % 處已有一個分割(split)。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:520 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:520 msgid "Invalid split node id for edge '%' (from- and to-node are forbidden)" -msgstr "路段 '%' 上有無效的分割節點 (禁止起始節點(from- and)和到達節點(to-node))" +msgstr "" +"路段 '%' 上有無效的分割節點 (禁止起始節點(from- and)和到達節點(to-node))" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:558 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:558 msgid "The from-node is not given for edge '%'." msgstr "沒有為路段 '%' 給定起始節點(from-node)。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:570 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:570 msgid "The to-node is not given for edge '%'." msgstr "沒有為路段 '%' 給定到達節點(to-node)。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:616 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:616 msgid "Ignoring unknown spreadType '%' for edge '%'." msgstr "忽略未知散佈類型(spreadType) '%'; 發生在路段 '%' 。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:674 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:674 #, c-format msgid "Duplicate edge '%' occurred." msgstr "發生重複的路段 '%' 。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:683 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:683 msgid "An important information is missing in edge '%'." msgstr "路段 '%' 缺少一個重要信息。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:705 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:705 #, c-format msgid "Unknown edge '%' in roundabout." msgstr "在圓環處未知的路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:151 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:151 msgid "Missing position (at node ID='%')." msgstr "缺少位置 (在節點識別名(ID)='%')。" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:184 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:184 msgid "Could not insert node though checked this before (id='%')." msgstr "雖然已檢查.無法插入節點 (識別名(id)='%')。" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:213 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:213 msgid "Unable to project node shape at node '%'." msgstr "無法投射節點 '%' 的形狀。" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:321 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:321 msgid "Unknown traffic light type '%' for node '%'." msgstr "未知的交通號誌類型 '%'; 發生在節點 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:330 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:330 msgid "Unknown traffic light layout '%' for node '%'." msgstr "未知的交通號誌布置(layout) '%';發生在節點 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:341 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:341 msgid "Changing traffic light type '%' to '%' for tl '%'." msgstr "將交通號誌類型由 '%' 更改為 '%'; 相關的交通號誌識別名是(tl) '%'。" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:153 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:153 #, c-format msgid "Edge '%' for stop '%' not found" msgstr "找不到路段 '%' 給停靠點 '%'" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:161 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:161 #, c-format msgid "Lane '%' for stop '%' not found" msgstr "找不到車道(lane) '%' 給停靠點 '%'" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:173 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:173 msgid "Could not add public transport stop '%' (already exists)" msgstr "無法增加大眾運輸停靠站 '%' (已經存在)" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:192 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:192 #, c-format msgid "Edge '%' for access to stop '%' not found" msgstr "找不到連接通道(access)相接的路段 '%' 到停靠點 '%'" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:253 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:253 msgid "Found route outside line definition" msgstr "找到路徑外界線(route outside line)的定義" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:263 -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:283 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:263 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:283 #, c-format msgid "Edge '%' in route of line '%' not found" msgstr "路徑中路段 '%' 無法找到; 路線(line)為 '%'" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:302 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:302 msgid "Stop '%' within line '%' not found" msgstr "停靠點 '%' 無法找到; 路線(line)為 '%'" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:318 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:318 msgid "Stop '%' within route '%' not found" msgstr "停靠點 '%' 無法找到; 路徑(route)為 '%'" -#: /home/micha/programming/sumo/src/netimport/NIXMLShapeHandler.cpp:46 -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1744 +#: D:\Repos\sumo/src\netimport\NIXMLShapeHandler.cpp:46 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1749 #, c-format msgid "Lane '%' to place poi '%' on is not known." msgstr "未知的車道 '%', 其用來放置興趣點(poi) '%'。" -#: /home/micha/programming/sumo/src/netimport/NIXMLShapeHandler.cpp:59 -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1757 +#: D:\Repos\sumo/src\netimport\NIXMLShapeHandler.cpp:59 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1762 #, c-format msgid "lane position % for poi '%' is not valid." msgstr "無效的車道位置 '%', 其用來放置興趣點(poi)。" -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:114 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:114 msgid "Definition of tlLogic '%' was not finished." msgstr "號誌邏輯(tlLogic) '%' 的定義未完成。" -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:140 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:158 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:140 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:158 msgid "Cannot load traffic light program for unknown id '%', programID '%'." msgstr "無法載入未知識別名(id) '%' 的時制計畫; 時置計畫識別名(programID) '%'。" -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:331 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:331 msgid "Invalid lane index '%' for edge '%'." msgstr "無效的車道索引 '%', 其位於路段 '%' 上。" -#: /home/micha/programming/sumo/src/netimport/NIXMLTypesHandler.cpp:85 +#: D:\Repos\sumo/src\netimport\NIXMLTypesHandler.cpp:85 msgid "Invalid lane spread type '%'. Using default 'right'" msgstr "無效的車道分佈類型(spread type) '%'。使用預設值 '向右對齊(right)'" -#: /home/micha/programming/sumo/src/netimport/NIXMLTypesHandler.cpp:114 +#: D:\Repos\sumo/src\netimport\NIXMLTypesHandler.cpp:114 msgid "Invalid lane index % for edge type '%' with % lanes" msgstr "無效的車道索引 %; 其路段類型為 '%', 並有 % 車道" -#: /home/micha/programming/sumo/src/netimport/vissim/NIImporter_Vissim.cpp:887 +#: D:\Repos\sumo/src\netimport\vissim\NIImporter_Vissim.cpp:887 msgid "Could not open vissim-file '%'." msgstr "無法開啟 vissim 檔案 '%'。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnection.cpp:241 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnection.cpp:241 msgid "Could not build connection between '%' and '%'." msgstr "無法在 '%' 和 '%' 之間建立連接線(connection)。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnection.cpp:248 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnection.cpp:248 msgid "Lane sizes differ for connection '%'." msgstr "連接線(connection) '%' 車道大小(lane sizes)不同。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnectionCluster.cpp:496 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnectionCluster.cpp:496 msgid "NIVissimConnectionCluster:More than a single node" msgstr "NIVissimConnectionCluster: 不止一個節點" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnectionCluster.cpp:662 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnectionCluster.cpp:662 msgid "NIVissimConnectionCluster: how to get an edge's position?" msgstr "NIVissimConnectionCluster: 如何取得一個路段的位置?" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:205 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:205 #, c-format msgid "Could not build district '%' - edge '%' is missing." msgstr "無法建立分區 '%' - 路段 '%' 缺失。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:360 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:360 msgid "" "No streams assigned at district'%'.\n" " Using default speed 200km/h" -msgstr "沒有流量(streams)被指派到分區 '%'。\n" +msgstr "" +"沒有流量(streams)被指派到分區 '%'。\n" " 使用預設速度 200米/小時" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:377 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:526 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:377 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:526 #, c-format msgid "The referenced speed distribution '%' is not known." msgstr "參考的速度分配 '%' 未知。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:378 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:385 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:378 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:385 msgid ". Using default." msgstr "。 使用預設值。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:143 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:143 msgid "Ugly split to prohibit '%' by '%'." msgstr "醜陋地分割以禁止 '%', 並透過 '%'。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:186 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:186 msgid "Could not prohibit '%' by '%'. Have not found disturbance." msgstr "無法禁止 '%' (透過 '%')。 沒有發現干擾。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:191 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:191 msgid "Could not prohibit '%' by '%'. Disturbance connects same node." msgstr "無法禁止 '%' (透過 '%')。 干擾連接到相同的節點。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:210 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:262 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:210 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:262 #, c-format msgid "Would have to split edge '%' to build a prohibition" msgstr "將不得不分割路段 '%' 來建立一個禁止(prohibition)" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:237 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:237 #, c-format msgid "Could not prohibit '%' - it was not built." msgstr "無法禁止 '%' - 它沒有被構建。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:243 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:243 msgid "Could not prohibit '%' by '%'." msgstr "無法禁止 '%' (透過 '%')。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:307 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:307 msgid "NIVissimDisturbance: no connection" msgstr "NIVissimDisturbance: 無連接線(connection)" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:340 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:340 #, c-format msgid "Could not build % of % disturbances." msgstr "無法建立 %,來自於 % 干擾。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:439 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:439 msgid "Will not build edge '%'." msgstr "將無法建立路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:464 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:472 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:464 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:472 #, c-format msgid "Could not insert node '%' to nodes container." msgstr "無法將節點 '%' 插入到節點容器(container)。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:490 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:490 msgid "Could not build edge '%'; would connect same node." msgstr "無法構建路段 '%'; 將連接到相同的節點。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:532 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:532 msgid "What about distribution '%' " -msgstr "分配 '%' 呢?" +msgstr "分配 '%' 呢? " -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:138 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:138 #, c-format msgid "Could not set tls signal at edge '%' - the edge was not built." msgstr "無法在路段 '%' 處設置交通號誌(tls) - 路段尚未構建。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:152 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:152 msgid "Edge '%': Lanes were not assigned." msgstr "路段 '%': 車道未被指派。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:375 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:375 msgid "" "Error on adding a traffic light\n" " Must be a multiple id ('%')" -msgstr "增加交通號誌時發生錯誤\n" +msgstr "" +"增加交通號誌時發生錯誤\n" " 必須是一個多重(multiple)識別名(id) ('%')" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:383 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:383 msgid "The signal group '%' could not be assigned to tl '%'." msgstr "無法將號誌群組 '%' 指派給交通號誌(tl) '%'。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:392 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:392 msgid "The signal '%' could not be assigned to tl '%'." msgstr "號誌 '%' 無法指派給交通號誌(tl) '%'。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:399 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:399 msgid "Could not set % of % traffic lights." -msgstr "無法設定 % " +msgstr "無法設定 % 交通號誌的 %。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:402 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:402 #, c-format msgid "Could not set % of % groups." msgstr "無法設置 % ,其在 % 個群組中。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:405 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:405 #, c-format msgid "Could not set % of % signals." msgstr "無法設置 % ,其在 % 個號誌中。" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Lichtsignalanlagendefinition.cpp:84 -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:93 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Lichtsignalanlagendefinition.cpp:84 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:93 #, c-format msgid "Unsupported LSA-Type '%' occurred." msgstr "出現不支援的交通號誌類型 '%'。" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgeberdefinition.cpp:73 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgeberdefinition.cpp:73 msgid "Omitting unknown traffic light." msgstr "省略未知的交通號誌。" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:142 -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:170 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:142 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:170 msgid "VAS traffic lights are not supported (lsa=%)" -msgstr "不支援 VAS 交通號誌 (交通號誌(lsa) =%))" +msgstr "不支援 VAS 的交通號誌 (交通號誌(lsa) =%))" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:154 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:154 msgid "VSPLUS traffic lights are not supported (lsa=%)" -msgstr "不支援 VSPLUS 交通號誌 (交通號誌(lsa) =%))" +msgstr "不支援 VSPLUS 的交通號誌 (交通號誌(lsa) =%))" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:162 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:162 msgid "TRENDS traffic lights are not supported (lsa=%)" -msgstr "不支援 TRENDS 交通號誌 (交通號誌(lsa) =%))" +msgstr "不支援 TRENDS 的交通號誌 (交通號誌(lsa) =%))" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:178 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:178 msgid "TL traffic lights are not supported (lsa=%)" -msgstr "不支援 TL 交通號誌 (交通號誌(lsa) =%))" +msgstr "不支援 TL 的交通號誌 (交通號誌(lsa) =%))" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:186 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:186 msgid "POS traffic lights are not supported (lsa=%)" -msgstr "不支援 POS 交通號誌 (交通號誌(lsa) =%))" +msgstr "不支援 POS 的交通號誌 (交通號誌(lsa) =%))" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:194 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:194 msgid "externally defined traffic lights are not supported (lsa=%)" msgstr "不支援外部定義的交通號誌 (交通號誌(lsa) =%))" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Simdauer.cpp:49 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Simdauer.cpp:49 msgid "Simulation duration could not be parsed" msgstr "無法解析(parse)模擬持續時間" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:85 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:85 msgid "Trying to set the effort for the unknown edge '%'." msgstr "嘗試為未知路段 '%' 設定成果(effort)。" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:100 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:100 msgid "Trying to set the travel time for the unknown edge '%'." msgstr "嘗試為未知路段 '%' 設定旅行時間。" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:129 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:129 msgid "Invalid network, no network version declared." msgstr "無效路網,未宣告路網版本。" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:133 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:133 msgid "" "Network contains internal links which are ignored. Vehicles will 'jump' " "across junctions and thus underestimate route lengths and travel times." -msgstr "路網包含被忽略的內部路段。 車輛會以'跳過(jump)'方式跨過路口," -"從而低估路線長度和旅行時間。" +msgstr "" +"路網包含被忽略的內部路段。 車輛會以'跳過(jump)'方式跨過路口,從而低估路線長度" +"和旅行時間。" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:163 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:163 msgid "State was written at a different time=% than the begin time %!" msgstr "狀態(state)是在不同的時間 =% 寫入的,而非在開始時間 %!" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:197 -#: /home/micha/programming/sumo/src/router/RONet.cpp:223 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:197 +#: D:\Repos\sumo/src\router\RONet.cpp:223 #, c-format msgid "A TAZ with id '%' already exists. Not building junction TAZ." -msgstr "具有識別名(id)為 '%' 的分區已存在。不構建路口分區(TAZ)。" +msgstr "具有識別名(id)為 '%' 的分區已存在。不構建路口分區(TAZ)。" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:228 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:228 msgid "" "Loading vehicles ahead of a state file is not supported. Correct --begin " "option or load vehicles with option --route-files" -msgstr "不支援在狀態檔案之前載入車輛。 更正 --begin 選項或" -"使用選項 --route-files 載入車輛" +msgstr "" +"不支援在狀態檔案之前載入車輛。 更正 --begin 選項或使用選項 --route-files 載入" +"車輛" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:256 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:256 msgid "Loading weights from '%'..." msgstr "正在從 '%' 載入權重..." -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:285 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:285 msgid "Loading done." msgstr "載入完成。" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:390 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:390 msgid "Wrong number of state file names!" msgstr "狀態檔案數量錯誤!" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:425 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:425 msgid "Loading % from '%'" msgstr "載入 % (從 '%')" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:445 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:445 #, c-format msgid "The route file '%' is not accessible." msgstr "路徑檔案 '%' 無法讀取。" -#: /home/micha/programming/sumo/src/netload/NLDetectorBuilder.cpp:526 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:461 +msgid "" +"LaneData requested for mesoscopic simulation but --meso-lane-queue is not " +"active. Falling back to edgeData." +msgstr "" + +#: D:\Repos\sumo/src\netload\NLDetectorBuilder.cpp:526 msgid "" "The netstate type 'hbefa' is deprecated. Please use the type 'emissions' " "instead." msgstr "路網狀態(netstate)類型 'hbefa' 已不適用。 請改用類型 'emissions'。" -#: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:198 +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:198 msgid "Asymmetrical neigh lane '%' for lane '%'" msgstr "不對稱鄰車道 '%' (對於車道 '%' 而言)" -#: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:218 +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:218 #, c-format msgid "" "Internal edge '%' is not properly connected (probably a manually modified " "net.xml)." msgstr "內部路段 '%' 未正確連接 (可能這是一個手動修改的路網檔案(net.xml))。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:391 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:391 msgid "Unknown from-node '%' for edge '%'." msgstr "未知的起始節點 (from-node) '%'; 路段為 '%'。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:395 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:395 msgid "Unknown to-node '%' for edge '%'." msgstr "未知的到達節點 (to-node) '%'; 路段為 '%'。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:535 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:535 #, c-format msgid "" "Shape of lane '%' is broken.\n" " Can not build according edge." -msgstr "車道 '%' 的形狀已損壞。\n" +msgstr "" +"車道 '%' 的形狀已損壞。\n" " 無法建立相關的路段。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:557 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:557 #, c-format msgid "Another lane with the id '%' exists." msgstr "另一個具有識別名(id) '%' 已存在。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:627 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:627 msgid "An unknown lane ('%') was tried to be set as incoming to junction '%'." msgstr "嘗試將未知車道 ('%') 設定進入(incoming)到路口 '%'。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:781 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:781 msgid "Traffic light '%' has unknown type '%'." msgstr "交通號誌 '%' 有未知的類型 '%'。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:785 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:785 #, c-format msgid "" "Traffic light type '%' cannot be used in mesoscopic simulation. Using '%' as " "fallback." msgstr "交通號誌類型 '%' 不能用於中觀(meso)模擬。使用 '%' 作為後降(fallback)。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:874 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:874 msgid "maxDur % should not be smaller than minDir % in phase of tlLogic %" -msgstr "最大持續時間(maxDur) % 不應小於 最小持續時間(minDir) %, " -"其位於號誌邏輯(tlLogic) % 時相內" +msgstr "" +"最大持續時間(maxDur) % 不應小於 最小持續時間(minDir) %, 其位於號誌邏輯" +"(tlLogic) % 時相內" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:889 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:889 msgid "Duplicate condition '%' in tlLogic '%'" msgstr "號誌邏輯(tlLogic) % 中的條件 '%' 重複" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:942 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:942 msgid "Invalid person mode '%' in E1 detector definition '%'" msgstr "人員(person)模式 '%' 無效, 其位於 E1 偵測器定義 '%' 內" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1001 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1001 msgid "" "VTypeProbes are deprecated. Use fcd-output devices (assigned to the vType) " "instead." msgstr "VTypeProbe 已不適用。 請改用 fcd-output 裝置 (指派給 vType)。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1061 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1061 msgid "Ignoring deprecated argument 'cont' for E2 detector '%'" -msgstr "忽略已不適用的引數 'cont', 其用於 E2 偵測器 '%'" +msgstr "忽略已不適用的引數 'cont', 其用於 E2 偵測器 '%'" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1077 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1077 msgid "Invalid person mode '%' in E2 detector definition '%'" msgstr "人員(person)模式 '%' 無效,其位於 E2 偵測器定義 '%' 內" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1091 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1091 msgid "" "Trying to specify detector's lane by the given id since the argument 'lane' " "is missing." msgstr "由於缺少引數 'lane',試圖通過給定的識別名(id)指定偵測器的車道。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1131 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1131 msgid "" "Missing argument 'pos' for E2Detector '%'. Assuming detector start == lane " "start of lane '%'." -msgstr "缺少E2 偵測器 '%' 的引數 'pos'。" -"假設偵測器開始 == 車道 '%' 的車道開端。" +msgstr "" +"缺少E2 偵測器 '%' 的引數 'pos'。假設偵測器開始 == 車道 '%' 的車道開端。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1136 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1136 msgid "" "Missing argument 'endPos' for E2Detector '%'. Assuming detector end == lane " "end of lane '%'." -msgstr "缺少E2 偵測器 '%' 的引數 'endPos'。" -"假設偵測器末端 == 車道 '%' 的車道末端。" +msgstr "" +"缺少E2 偵測器 '%' 的引數 'endPos'。假設偵測器末端 == 車道 '%' 的車道末端。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1205 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1205 #, c-format msgid "" "Ignoring argument 'period' for E2Detector '%' since argument 'tl' was given." msgstr "因為引數 'tl' 已給定, 忽略 E2 偵測器 '%' 的引數 'period'。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1262 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1262 msgid "Invalid person mode '%' in E3 detector definition '%'" msgstr "人員(person)模式 '%' 無效, 其位於 E3 偵測器定義 '%' 內" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1341 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1341 msgid "Invalid person mode '%' in edgeData definition '%'" msgstr "人員(person)模式 '%' 無效, 其位於路段資料(edgeData)定義 '%' 內" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1365 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1365 msgid "Unknown edge '%' in edgeData definition '%'" msgstr "未知路段 '%', 其位於路段資料(edgeData)定義 '%' 內" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1414 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1372 +msgid "" +"LaneData '%' requested for mesoscopic simulation but --meso-lane-queue is " +"not active. Falling back to edgeData." +msgstr "" + +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1419 #, c-format msgid "Unknown from-edge '%' in connection." msgstr "在連接(connection)中, 起始路段(from-edge) '%' 未知。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1420 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1425 #, c-format msgid "Unknown to-edge '%' in connection." msgstr "在連接(connection)中, 到達路段(to-edge) '%' 未知。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1425 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1430 msgid "Invalid lane index in connection from '%' to '%'." msgstr "從 '%' 到 '%' 的連接線的車道索引無效。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1506 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1511 #, c-format msgid "Unknown from-edge '%' in conflict." msgstr "衝突中未知的起始路段(from-edge) '%' 。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1511 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1516 #, c-format msgid "Unknown to-edge '%' in connflict." msgstr "衝突中未知的到達路段(to-edge) '%' 。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1516 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1521 msgid "Invalid lane index in conflict with '%' to '%'." msgstr "無效的車道索引(index)與 '%' 至 '%' 衝突。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1568 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1573 msgid "" "no valid geo projection loaded from network. fcd-output.geo will not work" msgstr "沒有從路網載入有效的地理投影。 fcd-output.geo 將無作用" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1596 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1601 msgid "Replacing junction-taz '%' with loaded TAZ." msgstr "用載入的分區(TAZ)替換路口分區(junction-taz) '%'。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1639 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1644 msgid "Skipping visualization of taz '%', polygon already exists." msgstr "跳過視覺化分區 '%', 多邊形已存在。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1670 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1675 msgid "At district '%': succeeding edge '%' does not exist." msgstr "分區 '%': 後續路段 '%' 不存在。" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:116 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:116 msgid "Information about the number of nodes was missing." msgstr "缺少節點數量的資訊。" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:126 -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:143 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:126 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:143 msgid "Ignoring junction logic for junction '%'." msgstr "忽略路口 '%' 的路口邏輯。" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:333 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:333 msgid "Invalid traffic light type '%'" msgstr "無效的交通號誌類型 '%'" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:344 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:344 #, c-format msgid "Another logic with id '%' and programID '%' exists." msgstr "另一個具有識別名(id) '%' 的邏輯及時相識別名(programID) '%' 已存在。" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:471 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:471 msgid "Traffic lights could not be built." msgstr "無法建立交通號誌。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:75 +#: D:\Repos\sumo/src\netload\NLNetShapeHandler.cpp:163 +#, c-format +msgid "" +"% edges of the primary network did not occur in the alternative-net-file" +msgstr "" + +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:75 msgid "Vaporizers are deprecated. Use rerouters instead." msgstr "汽化器(vaporizers)已不適用。 請改用路徑重新搜尋裝置(rerouters)。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:84 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:84 msgid "Unknown edge ('%') referenced in a vaporizer." msgstr "未知路段 ('%')被引用於汽化器(vaporizer)內。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:93 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:93 msgid "A vaporization begin time is negative (edge id='%')." msgstr "汽化(vaporization)開始時間為負(路段識別名(id)='%')。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:97 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:97 msgid "A vaporization ends before it starts (edge id='%')." msgstr "汽化(vaporization)在開始之前結束(路段識別名(id)='%')。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:191 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:191 msgid "" "The overheadWireSegment '%' was not created as it is attached to internal " "lane. It will be build automatically." -msgstr "未構建 overheadWireSegment '%',因為它被附加到內部車道。它將被自動構建。" +msgstr "" +"未構建 overheadWireSegment '%',因為它被附加到內部車道。它將被自動構建。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:196 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:196 #, c-format msgid "" "The overheadWireSegment '%' not built as it is attached to internal lane. It " "will be build automatically." -msgstr "未構建 overheadWireSegment '%',因為它被附加到內部車道。它將被自動構建。" +msgstr "" +"未構建 overheadWireSegment '%',因為它被附加到內部車道。它將被自動構建。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:208 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:208 #, c-format msgid "" "The overheadWireSegment '%' has wrong position. Automatically set from 0 to " "the length of the lane." msgstr "overheadWireSegment 位置錯誤。將自動地由 0 設定為車道長度。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:216 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:216 msgid "" "Overhead wire solver (Eigen) not compiled in, expect errors in overhead wire " "simulation" msgstr "架空線解答器 (Eigen) 未編譯, 預計架空線模擬會出現錯誤" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:376 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:376 msgid "" "A connecting overhead wire start segment '%' defined for overhead wire clamp " "'%' is not assigned to the traction substation '%'." -msgstr "具有起始段 '%' 的連接架空線是定義給架空線夾 '%', 其未指派給牽引變電站 '%'。" +msgstr "" +"具有起始段 '%' 的連接架空線是定義給架空線夾 '%', 其未指派給牽引變電站 '%'。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:378 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:378 msgid "" "A connecting overhead wire end segment '%' defined for overhead wire clamp " "'%' is not assigned to the traction substation '%'." -msgstr "具有結束段 '%' 的連接架空線是定義給架空線夾 '%', 其未指派給牽引變電站 '%'。" +msgstr "" +"具有結束段 '%' 的連接架空線是定義給架空線夾 '%', 其未指派給牽引變電站 '%'。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:382 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:382 msgid "" "The overhead wire clamp '%' defined in an overhead wire section was not " "assigned to the substation '%'. Please define proper in additional files before defining overhead wire section." -msgstr "在架空電線部分中定義的高架線夾 '%' 未分配給變電站的 '%'。在定義架空電線部分之前" -",請在附加檔案(additional files)中定義適當的。" +msgstr "" +"在架空電線部分中定義的高架線夾 '%' 未分配給變電站的 '%'。在定義架空電線部分之" +"前,請在附加檔案(additional files)中定義適當的。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:397 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:397 msgid "" "Cannot check circuit, overhead circuit solver support (Eigen) not compiled " "in." msgstr "無法檢查電路,架空電路解算器的支援 (Eigen) 未編譯。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:469 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:469 msgid "" "Not building overhead wire clamps, overhead wire solver support (Eigen) not " "compiled in." msgstr "不構建架空線夾,架空線解算器的支援 (Eigen) 未編譯。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:472 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:472 msgid "" "Ignoring overhead wire clamps, they make no sense when overhead wire circuit " "solver is off." msgstr "忽略架空線夾,當架空線電路解算器關閉時,它們沒有任何意義。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:526 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:526 msgid "Ignoring invalid access from non-pedestrian lane '%' in busStop '%'." msgstr "忽略來自非人行步道 '%' 的無效連接通道(access); 在公車站(busStop) '%'。" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:54 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:54 msgid "The generated net will be written to FILE" msgstr "產生的路網將被寫入檔案內" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:59 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:59 msgid "Prefix of files to write plain xml nodes, edges and connections to" msgstr "檔案的字首,用來寫出一般(plain)的XML格式的節點,路段和連接線" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:62 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:62 msgid "Write all lanes and their attributes even when they are not customized" msgstr "即使未自訂,也要寫出所有車道及它們的屬性" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:69 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:69 msgid "Defines a prefix for edge and junction names" msgstr "定義路段與路口名稱的字首(prefix)" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:74 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:74 msgid "Write geo coordinates in plain-xml" msgstr "在純 xml 檔案 (plain-xml) 內寫地理坐標" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:79 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:79 msgid "The generated net will be written to FILE using Amitran format" msgstr "產生的路網將依 Amitran 格式寫入檔案內" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:82 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:82 msgid "The generated net will be written to FILE using MATsim format" msgstr "產生的路網將依 MATsim 格式寫入檔案內" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:85 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:85 msgid "The generated net will be written to FILE using OpenDRIVE format" msgstr "產生的路網將依 OpenDRIVE 格式寫入檔案內" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:88 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:88 msgid "" "The generated net will be written to dlr-navteq files with the given PREFIX" msgstr "產生的路網將按照給定的字首(PREFIX) 及 dlr-navteq 格式寫入檔案內" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:91 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:91 msgid "" "The network coordinates are written with the specified level of output " "precision" msgstr "路網坐標依據指定的輸出精確度數寫出" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:94 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:94 msgid "Street names will be included in the output (if available)" msgstr "街道名稱將包含在輸出檔案內 (如果有)" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:97 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:97 msgid "Writes original names, if given, as parameter" msgstr "寫出原始名稱(如果給定)作為參數" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:100 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:100 msgid "Writes street signs as POIs to FILE" msgstr "將街道標誌作為興趣點(POIs)寫入檔案" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:104 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:104 msgid "Writes public transport stops to FILE" msgstr "將大眾運輸停靠點寫入檔案" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:106 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:106 msgid "Writes public transport lines to FILE" msgstr "將大眾運輸路線寫入檔案" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:108 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:108 msgid "Clean-up pt stops that are not served by any line" msgstr "清理未提供服務的路線停靠點" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:111 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:111 msgid "Writes parking areas to FILE" msgstr "將停車區域寫入檔案" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:114 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:114 msgid "Analyze topology of the railway network" msgstr "分析鐵路路網的拓撲結構(topology)" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:118 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:118 msgid "" "Write shapes that are embedded in the network input and that are not " "supported by polyconvert (OpenDRIVE)" msgstr "寫出在路網輸入內且不受 polyconvert 支援的形狀 (OpenDRIVE)" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:123 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:123 msgid "" "Builds parameterized curves whenever the angular change between straight " "segments exceeds FLOAT degrees" msgstr "當直線段之間的角度變化超過 FLOAT 度時,構建參數化曲線" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:127 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:127 msgid "Write lanes in lefthand networks on the left side (positive indices)" msgstr "在左行(lefthand)路網內的左側寫入車道 (正索引值)" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:130 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:130 msgid "" "Match loaded shapes to the closest edge within FLOAT and export as road " "objects" msgstr "將載入的形狀在 FLOAT 範圍內與最近的路段匹配並導出(export)為道路物件" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:154 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:153 msgid "OpenDRIVE export needs internal links computation." msgstr "exportOpenDRIVE 導出需要內部路段計算。" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:164 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:163 msgid "" "OpenDRIVE cannot represent oblique lane cuts and should use option " "'rectangular-lane-cut'." -msgstr "OpenDRIVE 不能表示出斜的車道切割,應該使用選項 'rectangular-lane-cut'。" +msgstr "" +"OpenDRIVE 不能表示出斜的車道切割,應該使用選項 'rectangular-lane-cut'。" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:173 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:173 msgid "public transport lines output requires 'ptstop-output' to be set" msgstr "大眾運輸路線輸出需要設置 'ptstop-output'" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:177 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:177 msgid "" "'ptline-clean-up' only works in conjunction with 'ptline-output'. Ignoring " "invalid option." msgstr "'ptline-clean-up' 只能與 'ptline-output' 一起結合使用。忽略無效選項。" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:186 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:186 msgid "Writing network" msgstr "正在寫出路網" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:91 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:91 msgid "" "DlrNavteq node data will be written in (floating point) cartesian coordinates" msgstr "DlrNavteq 節點資料將以(浮點數(floating point))笛卡爾坐標寫入" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:155 -#: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:162 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:155 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:162 msgid "Could not reconstruct shape for edge:'%' (%)." msgstr "無法重建路段的形狀:'%' (%)。" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:307 +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:313 msgid "Could not compute smooth shape for edge '%'." msgstr "無法計算路段 '%' 的平滑形狀。" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:450 +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:456 msgid "" "Could not compute smooth shape from lane '%' to lane '%'. Use option " "'junctions.scurve-stretch' or increase radius of junction '%' to fix this." -msgstr "無法計算從車道 '%' 到車道 '%' 的平滑形狀。 使用選項 " -"'junctions.scurve-stretch' 或增加連接點 '%' 的半徑來解決這個問題。" +msgstr "" +"無法計算從車道 '%' 到車道 '%' 的平滑形狀。 使用選項 'junctions.scurve-" +"stretch' 或增加連接點 '%' 的半徑來解決這個問題。" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:957 +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:963 msgid "" "Uneven stop line at lane '%' (dist=%) cannot be represented in OpenDRIVE." msgstr "OpenDRIVE 中無法表示出車道 '%' (距離=%) 處的不均勻停止線。" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:231 +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:235 msgid "" "Embedding TAZ-data inside the network is deprecated. Use option --taz-output " "instead" msgstr "在路網中嵌入 的分區(TAZ)資料已不適用。 使用選項 --taz-output 代替" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:351 +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:458 msgid "Could not find bidi-connection for edge '%'" msgstr "找不到路段 '%' 的雙向連接線 (bidi-connection)" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:517 +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:545 #, c-format msgid "Lane '%' has a maximum allowed speed of 0." msgstr "車道 '%' 的最大允許速度為 0。" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_XML.cpp:88 -#: /home/micha/programming/sumo/src/polyconvert/PCPolyContainer.cpp:105 +#: D:\Repos\sumo/src\netwrite\NWWriter_XML.cpp:88 +#: D:\Repos\sumo/src\polyconvert\PCPolyContainer.cpp:105 msgid "" "Ignoring option \"proj.plain-geo\" because no geo-conversion has been defined" msgstr "忽略選項 \"proj.plain-geo\", 因為沒有定義地理坐標轉換" -#: /home/micha/programming/sumo/src/od/ODAmitranHandler.cpp:48 +#: D:\Repos\sumo/src\od2trips_main.cpp:80 +msgid "Loads TAZ (districts; also from networks) from FILE(s)" +msgstr "從檔案載入 TAZ (分區; 也來自路網)" + +#: D:\Repos\sumo/src\od2trips_main.cpp:102 +msgid "Writes trip definitions into FILE" +msgstr "將旅次定義寫入檔案" + +#: D:\Repos\sumo/src\od2trips_main.cpp:105 +msgid "Writes flow definitions into FILE" +msgstr "將流量定義寫入檔案" + +#: D:\Repos\sumo/src\od2trips_main.cpp:108 +msgid "Writes probabilistic flow instead of evenly spaced flow" +msgstr "寫入機率流量而不是均勻間隔流量" + +#: D:\Repos\sumo/src\od2trips_main.cpp:111 +msgid "Writes pedestrians instead of vehicles" +msgstr "寫入行人而不是車輛" + +#: D:\Repos\sumo/src\od2trips_main.cpp:114 +msgid "Writes persontrips instead of vehicles" +msgstr "寫入個人旅次(persontrips)而不是車輛" + +#: D:\Repos\sumo/src\od2trips_main.cpp:117 +msgid "Add modes attribute to personTrips" +msgstr "將模式屬性(modes attribute)增加到 人旅次(personTrips)" + +#: D:\Repos\sumo/src\od2trips_main.cpp:124 +msgid "Writes trips between junctions" +msgstr "寫入路口之間的旅次" + +#: D:\Repos\sumo/src\od2trips_main.cpp:129 +#: D:\Repos\sumo/src\router\ROFrame.cpp:116 +msgid "Defines the begin time; Previous trips will be discarded" +msgstr "定義開始時間; 其先前的旅次(trips)將被廢棄" + +#: D:\Repos\sumo/src\od2trips_main.cpp:132 +#: D:\Repos\sumo/src\router\ROFrame.cpp:119 +msgid "" +"Defines the end time; Later trips will be discarded; Defaults to the maximum " +"time that SUMO can represent" +msgstr "定義結束時間; 後面的旅次將被廢棄; 預設值為 SUMO 可以表示的最大時間" + +#: D:\Repos\sumo/src\od2trips_main.cpp:140 +msgid "Spreads trips uniformly over each time period" +msgstr "將旅次均勻地(uniformly)分佈在每個時間段內" + +#: D:\Repos\sumo/src\od2trips_main.cpp:143 +msgid "Always choose source and sink edge which are not identical" +msgstr "一直選擇不相同的起始和結束路段" + +#: D:\Repos\sumo/src\od2trips_main.cpp:149 +msgid "Defines the prefix for vehicle names" +msgstr "定義車輛名稱的字首(prefix)" + +#: D:\Repos\sumo/src\od2trips_main.cpp:162 +msgid "Disable console output of current time step" +msgstr "禁用目前時間步長的控制台輸出(console output)" + +#: D:\Repos\sumo/src\od2trips_main.cpp:193 +msgid "No TAZ input file (-n) specified." +msgstr "未指定分區(TAZ)輸入檔案 (-n)。" + +#: D:\Repos\sumo/src\od2trips_main.cpp:197 +msgid "No input specified." +msgstr "未指定輸入檔案。" + +#: D:\Repos\sumo/src\od2trips_main.cpp:201 +msgid "No trip table output file (-o) or flow-output is specified." +msgstr "沒有指定旅次表(trip table)輸出文件 (-o) 或流量輸出(flow-output)。" + +#: D:\Repos\sumo/src\od2trips_main.cpp:205 +msgid "Only one of the the options 'pedestrians' and 'persontrips' may be set." +msgstr "只能設定選項 'pedestrians' 和 'persontrips' 其中之一。" + +#: D:\Repos\sumo/src\od2trips_main.cpp:248 +msgid "" +"Importer of O/D-matrices for the microscopic, multi-modal traffic simulation " +"SUMO." +msgstr "用於微觀多運具模式交通模擬 SUMO 的旅次起迄矩陣的導入器。" + +#: D:\Repos\sumo/src\od2trips_main.cpp:270 +msgid "You must supply a TAZ, network or districts file ('-n')." +msgstr "您必須使用交通分區(TAZ), 路網或分區(districts)檔案 ('-n')。" + +#: D:\Repos\sumo/src\od2trips_main.cpp:276 +msgid "No districts loaded." +msgstr "沒有載入任何分區(districts)。" + +#: D:\Repos\sumo/src\od2trips_main.cpp:282 +msgid "No vehicles loaded." +msgstr "沒有載入任何車輛。" + +#: D:\Repos\sumo/src\od\ODAmitranHandler.cpp:48 msgid "Invalid duration for timeSlice starting %." msgstr "開始於 % 的時間片斷(timeSlice) 的持續時間無效。" -#: /home/micha/programming/sumo/src/od/ODDistrictCont.cpp:72 +#: D:\Repos\sumo/src\od\ODDistrictCont.cpp:72 #, c-format msgid "Could not access network file '%' to load." -msgstr "無法存取網路檔案 '%' 以進行載入" +msgstr "無法存取網路檔案 '%' 以進行載入。" -#: /home/micha/programming/sumo/src/od/ODDistrictHandler.cpp:130 +#: D:\Repos\sumo/src\od\ODDistrictHandler.cpp:130 msgid "'probability' must be positive (in definition of % '%')." msgstr "'probability' 必須為正值 (在 % '%' 的定義中)。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:80 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:80 msgid "Missing origin '%' and destination '%' (% vehicles)." msgstr "缺少出發地 '%' 和目的地 '%' (% 車輛)。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:86 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:86 msgid "Missing origin '%' (% vehicles)." msgstr "缺少出發地 '%' (% 車輛)。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:91 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:91 msgid "Missing destination '%' (% vehicles)." msgstr "缺少目的地 '%' (% 車輛)。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:97 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:97 #, c-format msgid "District '%' has no source." msgstr "分區 '%' 沒有起點。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:101 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:101 #, c-format msgid "District '%' has no sink." msgstr "分區 '%' 沒有迄點。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:193 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:193 msgid "" "Cannot find different source and sink edge for origin '%' and destination " "'%'." -msgstr "無法為出發地 '%' 和目的地 '%' 找到不同的起始及結束路段" +msgstr "無法為出發地 '%' 和目的地 '%' 找到不同的起始及結束路段。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:364 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:384 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:410 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:364 D:\Repos\sumo/src\od\ODMatrix.cpp:384 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:410 msgid "" "Flow density of % vehicles per second, cannot be represented with a simple " "probability. Falling back to even spacing." -msgstr "每秒 % 車輛的流量密度不能用簡單的姬率表示。 設定回到均勻間距(even spacing)。" +msgstr "" +"每秒 % 車輛的流量密度不能用簡單的姬率表示。 設定回到均勻間距(even spacing)。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:434 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:434 msgid "End of file while reading %." msgstr "讀取 % 時,到了文件結尾。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:461 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:461 msgid "Broken period definition '%'." msgstr "損壞的期間定義 '%'。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:475 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:475 msgid "Broken factor: '%'." msgstr "損壞的係數(factor): '%'。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:509 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:509 #, c-format msgid "Missing line with % district names." msgstr "缺少帶有 % 分區名稱的列(line)。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:519 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:519 msgid "Missing line for district %." msgstr "缺少分區 % 的列(line)。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:533 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:533 msgid "More entries than districts found." msgstr "找到比分區更多的輸入項目(entries)。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:538 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:586 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:538 D:\Repos\sumo/src\od\ODMatrix.cpp:586 msgid "Not numeric vehicle number in line '%'." -msgstr " 在 '%' 列中有不是數字的車輛編號。" +msgstr "在 '%' 列中有不是數字的車輛編號。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:584 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:584 msgid "Missing at least one information in line '%'." msgstr "在列 '%' 中至少缺少一項資訊。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:647 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:154 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:647 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:154 msgid "Could not open '%'." msgstr "無法開啟 '%'。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:658 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:664 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:658 D:\Repos\sumo/src\od\ODMatrix.cpp:664 #, c-format msgid "'%' does not contain the needed information about the time described." msgstr "'%' 不包含有關所描述時間的必要資訊。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:674 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:687 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:674 D:\Repos\sumo/src\od\ODMatrix.cpp:687 #, c-format msgid "Could not access matrix file '%' to load." msgstr "無法讀取要載入的矩陣(matrix)檔案 '%' 。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:714 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:714 #, c-format msgid "Could not access route file '%' to load." msgstr "無法讀取要載入的路徑檔案 '%'。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:731 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:731 msgid "Assuming 24 entries for a day timeline, but got %." msgstr "假設一天時間線有 24 個登錄項目,但得到 %。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:741 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:741 msgid "Broken time line definition: missing a value in '%'." msgstr "損壞的時間線定義: '%' 中缺少一個值。" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:80 -msgid "Loads TAZ (districts; also from networks) from FILE(s)" -msgstr "從檔案載入 TAZ (分區; 也來自路網)" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:102 -msgid "Writes trip definitions into FILE" -msgstr "將旅次定義寫入檔案" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:105 -msgid "Writes flow definitions into FILE" -msgstr "將流量定義寫入檔案" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:108 -msgid "Writes probabilistic flow instead of evenly spaced flow" -msgstr "寫入機率流量而不是均勻間隔流量" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:111 -msgid "Writes pedestrians instead of vehicles" -msgstr "寫入行人而不是車輛" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:114 -msgid "Writes persontrips instead of vehicles" -msgstr "寫入個人旅次(persontrips)而不是車輛" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:117 -msgid "Add modes attribute to personTrips" -msgstr "將模式屬性(modes attribute)增加到 人旅次(personTrips)" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:124 -msgid "Writes trips between junctions" -msgstr "寫入路口之間的旅次" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:129 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:116 -msgid "Defines the begin time; Previous trips will be discarded" -msgstr "定義開始時間; 其先前的旅次(trips)將被廢棄" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:132 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:119 -msgid "" -"Defines the end time; Later trips will be discarded; Defaults to the maximum " -"time that SUMO can represent" -msgstr "定義結束時間; 後面的旅次將被廢棄; 預設值為 SUMO 可以表示的最大時間" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:140 -msgid "Spreads trips uniformly over each time period" -msgstr "將旅次均勻地(uniformly)分佈在每個時間段內" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:143 -msgid "Always choose source and sink edge which are not identical" -msgstr "一直選擇不相同的起始和結束路段" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:149 -msgid "Defines the prefix for vehicle names" -msgstr "定義車輛名稱的字首(prefix)" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:162 -msgid "Disable console output of current time step" -msgstr "禁用目前時間步長的控制台輸出(console output)" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:193 -msgid "No TAZ input file (-n) specified." -msgstr "未指定分區(TAZ)輸入檔案 (-n)。" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:197 -msgid "No input specified." -msgstr "未指定輸入檔案。" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:201 -msgid "No trip table output file (-o) or flow-output is specified." -msgstr "沒有指定旅次表(trip table)輸出文件 (-o) 或流量輸出(flow-output)。" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:205 -msgid "Only one of the the options 'pedestrians' and 'persontrips' may be set." -msgstr "只能設定選項 'pedestrians' 和 'persontrips' 其中之一。" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:248 -msgid "" -"Importer of O/D-matrices for the microscopic, multi-modal traffic simulation " -"SUMO." -msgstr "用於微觀多運具模式交通模擬 SUMO 的旅次起迄矩陣的導入器。" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:270 -msgid "You must supply a TAZ, network or districts file ('-n')." -msgstr "您必須使用交通分區(TAZ), 路網或分區(districts)檔案 ('-n')。" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:276 -msgid "No districts loaded." -msgstr "沒有載入任何分區(districts)。" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:282 -msgid "No vehicles loaded." -msgstr "沒有載入任何車輛。" - -#: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:471 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:168 +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:471 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:168 msgid "Could not load '%'." msgstr "無法載入 '%'。" -#: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:491 +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:491 msgid "Loaded decal '%' with bounding box % %." msgstr "已載入貼印(decal) '%'; 定界框為 % %。" -#: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:597 +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:597 msgid "Could not load '%'. The model is replaced by a cone shape." msgstr "無法載入 '%'。 此模式被一個圓錐形取代。" -#: /home/micha/programming/sumo/src/osgview/GUIOSGManipulator.cpp:257 +#: D:\Repos\sumo/src\osgview\GUIOSGManipulator.cpp:257 #, c-format msgid "Currently in % camera mode. Press [F] to switch." msgstr "目前處於 % 相機模式。 按 [F] 進行切換。" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:166 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:166 msgid "Could not load traffic light files." msgstr "無法載入交通號誌檔案。" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:454 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:454 msgid "Invalid link index in '%'." -msgstr " '%' 中有無效的連接索引(link index)。" +msgstr "'%' 中有無效的連接索引(link index)。" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:456 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:456 msgid "Unknown traffic light in '%'." -msgstr " '%' 中有未知的交通號誌。" +msgstr "'%' 中有未知的交通號誌。" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:992 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:992 msgid " (No projection defined)" msgstr " 投影方式未定義" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:996 -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:997 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:996 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:997 msgid "N/A" msgstr "不適用" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:107 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:208 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:263 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:341 -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:240 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:107 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:208 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:263 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:341 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:240 msgid "Unable to project coordinates for polygon '%'." -msgstr "無法投影多邊形 '%' 的坐標" +msgstr "無法投影多邊形 '%' 的坐標。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:184 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:184 msgid "Missing id under '%'" msgstr "在 '%' 下缺少識別名(id)" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:232 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:265 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:140 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:299 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:271 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:385 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:232 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:265 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:140 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:299 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:271 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:385 msgid "Unable to project coordinates for POI '%'." -msgstr "無法投影興趣點(POI) '%' 的坐標" +msgstr "無法投影興趣點(POI) '%' 的坐標。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:300 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:300 msgid "Unsupported shape type occurred (id='%')." msgstr "出現不支援的形狀類型 (id='%')。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:71 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:71 msgid "Could not open dlr-navteq-poi-file '%'." msgstr "無法開啟 dlr-navteq 格式的興趣點檔案(dlr-navteq-poi-file) '%'。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:86 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:86 msgid "Could not open dlr-navteq-poly-file '%'." -msgstr "無法開啟 dlr-navteq 格式的多邊形檔案(dlr-navteq-poly-file) " -"'%'。" +msgstr "無法開啟 dlr-navteq 格式的多邊形檔案(dlr-navteq-poly-file) '%'。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:128 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:128 msgid "Invalid x coordinate for POI '%'." msgstr "興趣點(POI) '%' 的 x 坐標無效。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:132 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:132 msgid "Invalid y coordinate for POI '%'." msgstr "興趣點(POI) '%' 的 y 坐標無效。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:137 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:137 msgid "The name of a POI is missing." msgstr "缺少興趣點(POI)的名稱。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:191 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:191 msgid "Invalid dlr-navteq-polygon - line: '%'." msgstr "無效的 dlr-navteq 格式的多邊形(dlr-navteq-polygon) - 列: '%'。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:220 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:220 #, c-format msgid "The polygon '%' is empty." msgstr "多邊形 '%' 是空的。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:224 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:224 msgid "The name of a polygon is missing; it will be discarded." msgstr "缺少多邊形的名稱; 它將被廢棄。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:157 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:157 msgid "Could not import polygon from relation '%' (missing ways)" msgstr "無法從關係(relation) '%' 導入多邊形 (缺少路徑(ways))" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:212 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:212 msgid "" "Could not import polygon from relation '%' (name:% reason: found gap of %m " "to way '%')\n" " Total length of remaining ways: %m." -msgstr "無法從關係(relation) '%' 導入多邊形 (名稱:% ;原因: 發現 % 米間距(gap)" -"到路徑(way) '%')\n" +msgstr "" +"無法從關係(relation) '%' 導入多邊形 (名稱:% ;原因: 發現 % 米間距(gap)到路徑" +"(way) '%')\n" "剩餘路徑(ways)的總長度: % 米。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:230 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:230 msgid "Assembled polygon from relation '%' (name:%)" msgstr "從關係 '%' 組合的多邊形 (名稱:%)" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:254 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:254 #, c-format msgid "Polygon '%' has no shape." msgstr "多邊形 '%' 沒有形狀(shape)。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:114 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:114 msgid "Could not open visum-file '%'." msgstr "無法開啟 visum 格式的檔案(visum-file) '%'。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:149 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:149 msgid "Unable to project coordinates for point '%'." msgstr "無法投影節點(point) '%' 的坐標。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderXML.cpp:63 +#: D:\Repos\sumo/src\polyconvert\PCLoaderXML.cpp:63 msgid "Could not open xml-file '%'." msgstr "無法開啟 xml 格式的檔案(xml-file) '%'。" -#: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:55 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:55 msgid "Could not open net-file '%'." msgstr "無法開啟路網檔案(net-file) '%'。" -#: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:71 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:71 msgid "Could not find projection parameter in net." msgstr "無法在路網內發現投影參數。" -#: /home/micha/programming/sumo/src/polyconvert/PCTypeDefHandler.cpp:71 +#: D:\Repos\sumo/src\polyconvert\PCTypeDefHandler.cpp:71 msgid "Could not add polygon type '%' (probably the id is already used)." msgstr "無法增加多邊形類型 '%' (可能該識別名(id)已被使用)。" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:81 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:81 msgid "Loads SUMO-network FILE as reference to offset and projection" msgstr "載入 SUMO路網檔案作為偏移(offset)和投影的參考" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:85 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:85 msgid "" "Reads polygons from FILE assuming they're coded in DLR-Navteq (Elmar)-format" msgstr "從檔案中讀取多邊形, 假設它們以 DLR-Navteq (Elmar) 格式編碼" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:87 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:87 msgid "" "Reads pois from FILE+ assuming they're coded in DLR-Navteq (Elmar)-format" -msgstr "從檔案(FILE+)中讀取興趣點(pois), 假設它們以 DLR-Navteq (Elmar) 格式編碼" +msgstr "" +"從檔案(FILE+)中讀取興趣點(pois), 假設它們以 DLR-Navteq (Elmar) 格式編碼" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:92 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:92 msgid "Reads polygons from FILE assuming it's a Visum-net" msgstr "從檔案中讀取多邊形, 假設它們是 visum 格式的路網(Visum-net)" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:100 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:100 msgid "Reads pois and shapes from FILE assuming they're coded in XML" msgstr "從檔案中讀取位置和形狀,並假設它們是用 XML 編碼" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:105 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:105 msgid "Reads pois from FILE+ assuming they're coded in OSM" msgstr "從檔案(FILE+)中讀取興趣點(pois),並假設它們是用 OSM 編碼" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:107 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:107 msgid "The type will be made of the key-value - pair" msgstr "此類型將由鍵值(key-value)組成 - 成對(pair)" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:109 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:109 msgid "The id will be set from the given 'name' attribute" msgstr "此識別名(id)將依據給定的 'name' 屬性設定" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:111 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:111 msgid "" "If FLOAT >= 0, assemble one polygon from all ways of a relation if they all " "connect with gaps below FLOAT" -msgstr "如果浮點數(FLOAT) >= 0, 且如果它們都以低於 FLOAT 的間距連接, 則從" -"則從關係內的所有路徑(ways)組合一個多邊形" +msgstr "" +"如果浮點數(FLOAT) >= 0, 且如果它們都以低於 FLOAT 的間距連接, 則從則從關係內的" +"所有路徑(ways)組合一個多邊形" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:118 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:118 msgid "Reads shapes from shapefiles FILE+" msgstr "從形狀檔案(shapefiles FILE+) 讀入形狀" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:122 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:122 msgid "Guesses the shapefile's projection" msgstr "猜測形狀檔案(shapefile)的投影" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:130 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:130 msgid "Defines in which column the id can be found" msgstr "定義可以在哪一行(column)中找到識別名(id)" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:134 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:134 msgid "Defines which columns form the type id (comma separated list)" msgstr "定義哪些行(column)構成類型識別名(id) (用逗號分隔的清單)" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:137 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:137 msgid "A running number will be used as id" msgstr "流水號(running number)將用作識別名(id)" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:140 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:140 msgid "Extract all additional columns as params" msgstr "提取所有附加行(additional columns)作為參數" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:143 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:143 msgid "" "[auto|true|false]. Forces the 'fill' status to the given value. Default " "'auto' tries to determine it from the data type" -msgstr "[auto|true|false]。 將 'fill' 狀態強制為給定值。 預設值為'auto' " -"嘗試從資料類型中確定它" +msgstr "" +"[auto|true|false]。 將 'fill' 狀態強制為給定值。 預設值為'auto' 嘗試從資料類" +"型中確定它" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:148 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:148 msgid "Reads types from FILE" msgstr "從檔案讀取類型" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:156 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:156 msgid "Write generated polygons/pois to FILE" msgstr "將產生的多邊形/興趣點寫入檔案" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:159 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:159 msgid "Write generated polygons/pois to a dlr-tdp file with the given prefix" msgstr "將產生的多邊形/興趣點依據給定的字首(prefix)寫入 dlr-tdp 格式的檔案" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:165 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:169 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:172 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:177 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:181 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:165 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:169 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:172 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:177 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:181 msgid "Pruning" msgstr "修整(Pruning)" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:165 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:165 msgid "Enables pruning on net boundaries" msgstr "啟用修整路網邊界" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:169 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:169 msgid "" "Uses FLOAT,FLOAT,FLOAT,FLOAT as offset definition added to the net boundary. " "Positive values grow the boundary on all sides while negative values shrink " "it." -msgstr "使用 FLOAT,FLOAT,FLOAT,FLOAT 作為增加到路網邊界的偏移量定義。" -"正值會擴大所有邊的邊界,而負值會縮小邊界。" +msgstr "" +"使用 FLOAT,FLOAT,FLOAT,FLOAT 作為增加到路網邊界的偏移量定義。正值會擴大所有邊" +"的邊界,而負值會縮小邊界。" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:172 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:172 msgid "Uses STR as pruning boundary" msgstr "使用 字串(STR) 作為修整的邊界" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:177 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:177 msgid "Items in STR will be kept though out of boundary" msgstr "STR 中的項目將被保留在邊界外" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:181 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:181 msgid "Items with names in STR[] will be removed" msgstr "具有 STR[] 中的名稱的項目將被移除" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:196 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:196 msgid "Imports all attributes as key/value pairs" msgstr "將所有屬性導入為鍵/值對(key/value pairs)" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:202 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:202 msgid "" "Adds FLOAT to the layer value for each poi (i.e. to raise it above polygons)" msgstr "將 FLOAT 增加到每個興趣點(poi)的層值 (即將其提升到多邊形的上方)" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:206 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:206 msgid "Sets STR as default color" msgstr "設置 STR 為預設顏色" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:209 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:209 msgid "Sets STR as default prefix" msgstr "設置 STR 為預設字首(prefix)" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:212 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:212 msgid "Sets STR as default type" msgstr "設置 STR 為預設類型" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:215 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:215 msgid "Fills polygons by default" msgstr "填滿多邊形為預設值" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:218 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:218 msgid "Sets FLOAT as default layer" msgstr "設置 FLOAT 為預設層" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:221 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:221 msgid "Sets default action to discard" msgstr "將預設操作設置為廢棄" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:225 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:225 msgid "Write geo coordinates in output" msgstr "將地理坐標寫入輸出內" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:232 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:232 msgid "" "Importer of polygons and POIs for the microscopic, multi-modal traffic " "simulation SUMO." msgstr "用於微觀多運具模式交通模擬 SUMO 的多邊形和興趣點(POIs)的導入器。" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:285 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:285 msgid "In order to prune the input on the net, you have to supply a network." msgstr "為了修整路網的輸入項目,您必須提供一個路網。" -#: /home/micha/programming/sumo/src/router/ROEdge.cpp:204 +#: D:\Repos\sumo/src\router\ROEdge.cpp:204 msgid "" "No interval matches passed time=% in edge '%'.\n" " Using edge's length / max speed." -msgstr "沒有區間(interval)與通過的時間=% 配對; 路段: '%'。\n" +msgstr "" +"沒有區間(interval)與通過的時間=% 配對; 路段: '%'。\n" " 使用路段長度/最大速度。" -#: /home/micha/programming/sumo/src/router/ROEdge.cpp:230 +#: D:\Repos\sumo/src\router\ROEdge.cpp:230 msgid "" "No interval matches passed time=% in edge '%'.\n" " Using edge's length / edge's speed." -msgstr "沒有區間(interval)與通過的時間=% 配對; 路段: '%'。\n" +msgstr "" +"沒有區間(interval)與通過的時間=% 配對; 路段: '%'。\n" " 使用路段長度/最大速度。" -#: /home/micha/programming/sumo/src/router/ROEdge.cpp:453 +#: D:\Repos\sumo/src\router\ROEdge.cpp:453 msgid "" "Option weights.priority-factor does not take effect because all edges have " "the same priority." -msgstr "選項 weights.priority-factor 不生效, 因為所有路段都具有相同的優先級別。" +msgstr "" +"選項 weights.priority-factor 不生效, 因為所有路段都具有相同的優先級別。" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:47 +#: D:\Repos\sumo/src\router\ROFrame.cpp:47 msgid "Write generated routes to FILE" msgstr "將產生的路徑寫入檔案內" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:53 +#: D:\Repos\sumo/src\router\ROFrame.cpp:53 msgid "Write used vehicle types into separate FILE" msgstr "將使用的車輛類型寫入單獨的檔案內" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:56 +#: D:\Repos\sumo/src\router\ROFrame.cpp:56 msgid "Keep vTypeDistribution ids when writing vehicles and their types" msgstr "在寫出車輛及其類型時,保留 vTypeDistribution 識別名(ids)" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:63 +#: D:\Repos\sumo/src\router\ROFrame.cpp:63 msgid "Use FILE as SUMO-network to route on" msgstr "使用檔案作為 SUMO 路網進行路徑搜尋/導引" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:66 +#: D:\Repos\sumo/src\router\ROFrame.cpp:66 msgid "Write vehicles that reference routes by their id" msgstr "寫出引用識別名(id)於路徑的車輛" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:73 +#: D:\Repos\sumo/src\router\ROFrame.cpp:73 msgid "Read additional network data (districts, bus stops) from FILE(s)" msgstr "從一個或多個檔案讀取額外的路網資料 (地區,公交車站)" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:87 +#: D:\Repos\sumo/src\router\ROFrame.cpp:87 msgid "Read sumo routes, alternatives, flows, and trips from FILE(s)" msgstr "從一個或多個檔案讀取SUMO路徑, 替代路徑, 流量與旅次" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:101 +#: D:\Repos\sumo/src\router\ROFrame.cpp:101 msgid "Read network weights from FILE(s)" msgstr "從一個或多個檔案讀取路網權重" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:104 +#: D:\Repos\sumo/src\router\ROFrame.cpp:104 msgid "Read lane-based network weights from FILE(s)" msgstr "從一個或多個檔案讀取車道為主的路網權重" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:125 +#: D:\Repos\sumo/src\router\ROFrame.cpp:125 msgid "Continue if a route could not be build" msgstr "如果路徑無法被建立, 繼續運行" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:128 +#: D:\Repos\sumo/src\router\ROFrame.cpp:128 msgid "Prune the number of alternatives to INT" msgstr "將替代路徑的數量修改為 INT" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:131 +#: D:\Repos\sumo/src\router\ROFrame.cpp:131 msgid "Use origin and destination zones (districts) for in- and output" msgstr "將出發地和目的地區 (分區(districts)) 用於輸入和輸出" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:139 +#: D:\Repos\sumo/src\router\ROFrame.cpp:139 msgid "Assume input is unsorted" msgstr "假設輸入未排序" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:148 +#: D:\Repos\sumo/src\router\ROFrame.cpp:148 msgid "generate random departure times for flow input" msgstr "為輸入的流量產生隨機出發時間" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:151 +#: D:\Repos\sumo/src\router\ROFrame.cpp:151 msgid "" "Remove loops within the route; Remove turnarounds at start and end of the " "route" msgstr "去除路徑內的迴路(loops); 移除路徑起點和終點的迴轉(turnarounds)" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:154 +#: D:\Repos\sumo/src\router\ROFrame.cpp:154 msgid "Tries to correct a false route" msgstr "嘗試修正錯誤的路徑" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:157 +#: D:\Repos\sumo/src\router\ROFrame.cpp:157 msgid "" "Tries to correct an invalid starting edge by using the first usable edge " "instead" msgstr "使用第一個可使用的路段來嘗試更正無效的起始路段" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:160 +#: D:\Repos\sumo/src\router\ROFrame.cpp:160 msgid "" "Tries to correct an invalid destination edge by using the last usable edge " "instead" msgstr "使用最後一個可使用的路段來嘗試更正無效的目的地路段" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:163 +#: D:\Repos\sumo/src\router\ROFrame.cpp:163 msgid "" "Maximum distance when mapping input coordinates (fromXY etc.) to the road " "network" msgstr "當映射(mapping)輸入坐標時,離道路的最大距離" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:166 +#: D:\Repos\sumo/src\router\ROFrame.cpp:166 msgid "Match positions to junctions instead of edges" msgstr "將位置配對到路口, 而不是路段" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:169 +#: D:\Repos\sumo/src\router\ROFrame.cpp:169 msgid "Aggregate routing queries with the same origin" msgstr "彙總(aggregate)同一起點的路徑查詢" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:173 +#: D:\Repos\sumo/src\router\ROFrame.cpp:173 msgid "The number of parallel execution threads used for routing" msgstr "用於選路的平行執行緒(threads)的數量" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:177 +#: D:\Repos\sumo/src\router\ROFrame.cpp:177 msgid "" "Select among routing algorithms ['dijkstra', 'astar', 'CH', 'CHWrapper']" msgstr "在路徑演算法 ['dijkstra', 'astar', 'CH', 'CHWrapper'] 中選擇" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:181 +#: D:\Repos\sumo/src\router\ROFrame.cpp:181 msgid "" "Comma separated list of param keys to compare for additional restrictions" msgstr "以逗號分隔的參數鍵清單, 用於比較其他限制條件" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:186 +#: D:\Repos\sumo/src\router\ROFrame.cpp:186 msgid "Interpolate edge weights at interval boundaries" msgstr "在區間邊界內插(interpolate)路段的權重值" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:190 +#: D:\Repos\sumo/src\router\ROFrame.cpp:190 msgid "Expand the end of the last loaded weight interval to infinity" msgstr "將最後載入的權重區間(weight interval)的末尾擴展到無限大" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:194 +#: D:\Repos\sumo/src\router\ROFrame.cpp:194 msgid "" "Apply the given time penalty when computing routing costs for minor-link " "internal lanes" msgstr "在計算次要路段內部車道的路徑成本時, 應用給定的時間懲罰" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:217 +#: D:\Repos\sumo/src\router\ROFrame.cpp:217 msgid "Defaults will override given values" msgstr "預設值將覆蓋給定值" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:222 +#: D:\Repos\sumo/src\router\ROFrame.cpp:222 msgid "Defines how often statistics shall be printed" msgstr "定義列印統計數據的頻率" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:233 +#: D:\Repos\sumo/src\router\ROFrame.cpp:233 msgid "No output specified." msgstr "未指定輸出。" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:238 +#: D:\Repos\sumo/src\router\ROFrame.cpp:238 msgid "A positive number of alternatives must be enabled." msgstr "必須啟用正的(positive)替代路徑數量。" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:62 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:64 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:83 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:85 +#: D:\Repos\sumo/src\router\ROLoader.cpp:62 +#: D:\Repos\sumo/src\router\ROLoader.cpp:64 +#: D:\Repos\sumo/src\router\ROLoader.cpp:83 +#: D:\Repos\sumo/src\router\ROLoader.cpp:85 msgid "Trying to set a weight for the unknown edge '%'." msgstr "嘗試為未知路段 '%' 設定權重。" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:114 +#: D:\Repos\sumo/src\router\ROLoader.cpp:114 #, c-format msgid "The network file '%' is not accessible." msgstr "路網檔案 '%' 不能存取。" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:140 +#: D:\Repos\sumo/src\router\ROLoader.cpp:140 #, c-format msgid "The additional file '%' is not accessible." -msgstr "無法讀取附加檔案(additional file) '%'" +msgstr "無法讀取附加檔案(additional file) '%'。" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:217 +#: D:\Repos\sumo/src\router\ROLoader.cpp:217 msgid "Routes found between time steps % and %." msgstr "在時間步長 % 和 % 之間找到的路徑。" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:243 +#: D:\Repos\sumo/src\router\ROLoader.cpp:243 msgid "The loader for % from file '%' could not be initialised (%)." msgstr "% 的載入器(位於檔案 '%' 中)無法進行初始化 (%)。" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:281 -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:158 +#: D:\Repos\sumo/src\router\ROLoader.cpp:281 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:183 msgid "failed." msgstr "失敗。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:162 +#: D:\Repos\sumo/src\router\RONet.cpp:162 #, c-format msgid "The edge '%' occurs at least twice." msgstr "路段 '%' 至少出現兩次。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:176 +#: D:\Repos\sumo/src\router\RONet.cpp:176 #, c-format msgid "The TAZ '%' occurs at least twice." msgstr "交通分區(TAZ) '%' 至少出現兩次。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:199 +#: D:\Repos\sumo/src\router\RONet.cpp:199 #, c-format msgid "The TAZ '%' is unknown." msgstr "交通分區(TAZ) '%' 未知。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:204 +#: D:\Repos\sumo/src\router\RONet.cpp:204 #, c-format msgid "The edge '%' for TAZ '%' is unknown." msgstr "未知路段 '%' 位於交通分區(TAZ) '%'內。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:259 +#: D:\Repos\sumo/src\router\RONet.cpp:259 #, c-format msgid "The bidi edge '%' is not known." -msgstr "雙向路段(bidi edge) '%' 未知" +msgstr "雙向路段(bidi edge) '%' 未知。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:270 +#: D:\Repos\sumo/src\router\RONet.cpp:270 #, c-format msgid "The node '%' occurs at least twice." msgstr "節點 '%' 至少出現兩次。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:279 +#: D:\Repos\sumo/src\router\RONet.cpp:279 msgid "The % '%' occurs at least twice." -msgstr " % '%' 至少出現兩次。" +msgstr "% '%' 至少出現兩次。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:446 +#: D:\Repos\sumo/src\router\RONet.cpp:446 #, c-format msgid "The vehicle type '%' occurs at least twice." msgstr "車輛類型 '%' 至少出現兩次。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:498 +#: D:\Repos\sumo/src\router\RONet.cpp:498 msgid "Requesting departure time for unknown vehicle '%'" msgstr "請求未知車輛 '%' 的出發時間" -#: /home/micha/programming/sumo/src/router/RONet.cpp:528 +#: D:\Repos\sumo/src\router\RONet.cpp:528 #, c-format msgid "Another person with the id '%' exists." msgstr "另一個識別名(id)為 '%' 的人已存在。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:637 +#: D:\Repos\sumo/src\router\RONet.cpp:637 msgid "" "Bulking different maximum speeds ('%' and '%') may lead to suboptimal routes." msgstr "批量處理不同的最大速度 ('%' 和 '%') 可能會導致次佳路徑。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:640 +#: D:\Repos\sumo/src\router\RONet.cpp:640 msgid "" "Bulking different vehicle classes ('%' and '%') may lead to invalid routes." msgstr "批量處理不同的車輛類別 ('%' 和 '%') 可能會導致路徑無效。" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:137 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:137 msgid "Unknown node '%'." msgstr "未知的節點 '%'。" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:243 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:243 msgid "Ignoring lane '%' with broken shape." msgstr "忽略形狀(shape)損壞的車道 '%'。" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:280 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:280 msgid "Skipping isolated junction '%'." msgstr "跳過孤立的路口 '%'。" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:299 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:299 #, c-format msgid "unknown from-edge '%' in connection" msgstr "在連接(connection)中, 未知的起始路段(from-edge) '%'" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:302 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:302 #, c-format msgid "unknown to-edge '%' in connection" msgstr "在連接(connection)中, 未知的抵達路段(to-edge) '%'" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:316 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:316 #, c-format msgid "unknown via-edge '%' in connection" msgstr "在連接(connection)中, 未知的經過路段(via-edge) '%'" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:368 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:368 msgid "Ignoring invalid access from non-pedestrian edge '%'." msgstr "忽略源自非行人使用路段 '%' 的無效連絡通道(access)。" -#: /home/micha/programming/sumo/src/router/RORouteDef.cpp:123 +#: D:\Repos\sumo/src\router\RORouteDef.cpp:123 msgid "Repaired route of vehicle '%'." msgstr "車輛 '%' 的路徑已修復。" -#: /home/micha/programming/sumo/src/router/RORouteDef.cpp:222 +#: D:\Repos\sumo/src\router\RORouteDef.cpp:222 msgid "" "There are stop edges which were not part of the original route for vehicle " "'%'." msgstr "這裡有不屬於車輛 '%' 的原始路徑的停等路段(stop edges)。" -#: /home/micha/programming/sumo/src/router/RORouteDef.cpp:237 +#: D:\Repos\sumo/src\router\RORouteDef.cpp:237 msgid "Edge '%' not connected to edge '%' for vehicle '%'." msgstr "“路段 '%' 未連接到路段 '%'; 車輛: '%'。" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:200 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:200 msgid "Triggered departure for person '%' requires starting with a ride." msgstr "人員 '%' 的觸發出發(triggered departure)需要從一個乘車(ride)開始。" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:202 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:202 msgid "" "Triggered departure for container '%' requires starting with a transport." -msgstr "貨櫃 '%' 的觸發出發(triggered departure)需要從一個運送(transport)" -"開始。" +msgstr "" +"貨櫃 '%' 的觸發出發(triggered departure)需要從一個運送(transport)開始。" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:224 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:224 #, c-format msgid "Found % outside container element" msgstr "找到 % 外部貨櫃元素" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:338 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:338 msgid "No probability for route %, using default." msgstr "無路徑 % 的機率,使用預設值。" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:493 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:493 msgid "Ids of internal route distributions are ignored (vehicle '%')." msgstr "忽略內部路徑分佈的識別名(ids) (車輛 '%')。" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:609 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:609 msgid "Discarding person '%' because her plan is empty" msgstr "丟棄人員(person) '%', 因為他/她的計劃是空的" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:635 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:635 msgid "Discarding personFlow '%' because their plan is empty" msgstr "丟棄人流量(personFlow) '%', 因為他/她的計劃是空的" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:643 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:643 #, c-format msgid "probabilistic personFlow '%' must specify end time" msgstr "機率的人流量(personFlow) '%' 必須指定結束時間" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:716 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:716 msgid "Discarding container '%' because it's plan is empty" msgstr "丟棄貨櫃 '%', 因為它的計劃是空的" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:733 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:733 msgid "Discarding containerFlow '%' because it's plan is empty" msgstr "丟棄貨櫃流量(containerFlow) '%', 因為它的計劃是空的" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1036 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1041 msgid "Triggered departure for container '%' requires a unique lines value." -msgstr "貨櫃 '%' 的觸發出發(triggered departure)需要一個唯一的列值" -"(unique lines value)。" +msgstr "" +"貨櫃 '%' 的觸發出發(triggered departure)需要一個唯一的列值(unique lines " +"value)。" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1076 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1081 msgid "Cannot convert geo-positions because the network has no geo-reference" msgstr "無法轉換地理位置, 因為路網沒有地理參考系統(geo-reference)" -#: /home/micha/programming/sumo/src/sumo_main.cpp:49 +#: D:\Repos\sumo/src\sumo_main.cpp:49 msgid "Another interrupt signal received, hard exit." msgstr "收到另一個中斷信號, 強行退出。" -#: /home/micha/programming/sumo/src/sumo_main.cpp:52 +#: D:\Repos\sumo/src\sumo_main.cpp:52 msgid "Interrupt signal received, trying to exit gracefully." msgstr "收到中斷信號, 試圖正常退出。" -#: /home/micha/programming/sumo/src/sumo_main.cpp:86 +#: D:\Repos\sumo/src\sumo_main.cpp:86 msgid "A microscopic, multi-modal traffic simulation." msgstr "微觀多運具模式交通模擬軟體。" -#: /home/micha/programming/sumo/src/sumo_main.cpp:114 -#: /home/micha/programming/sumo/src/sumo_main.cpp:123 +#: D:\Repos\sumo/src\sumo_main.cpp:114 D:\Repos\sumo/src\sumo_main.cpp:123 msgid "Quitting (on error)." msgstr "退出 (由於錯誤)。" -#: /home/micha/programming/sumo/src/sumo_main.cpp:126 +#: D:\Repos\sumo/src\sumo_main.cpp:126 msgid "Quitting (on unknown error)." msgstr "退出 (發生未知錯誤)。" -#: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:76 +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:76 msgid "Unknown actor configuration '%' for vehicle '%'!" msgstr "未知的行動者設定(actor configuration) '%'; 車輛為 '%'!" -#: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:94 +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:94 msgid "Motion state for unknown vehicle '%'!" msgstr "未知車輛 '%' 的運轉狀態!" -#: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:136 +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:136 msgid "Acceleration information is missing; try running with --compute-a." msgstr "缺少加速度資訊; 嘗試使用 --compute-a 運行。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:62 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:62 msgid "Computes emissions by driving a time line using SUMO's emission models." -msgstr "使用 SUMO 的排放模式並透過驅動時間線(driving a time line)來計算排放量。" +msgstr "" +"使用 SUMO 的排放模式並透過驅動時間線(driving a time line)來計算排放量。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:70 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:70 msgid "Defines the file to read the driving cycle from." msgstr "定義要從中讀取駕駛循環(driving cycle)的檔案。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:74 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:74 msgid "Skips the first NUM lines." msgstr "跳過前 NUM 行。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:78 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:78 msgid "Defines the entry separator." msgstr "定義輸入項(entry)的分隔字元。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:83 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:83 msgid "" "Defines the netstate, route and trajectory files to read the driving cycles " "from." msgstr "定義路網狀態, 路徑和軌跡檔案以從中讀取駕駛循環(driving cycles)。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:86 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:86 msgid "Load emission parameters (vTypes) from FILE(s)" msgstr "從檔案載入排放參數 (車輛類型(vTypes))" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:89 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:89 msgid "Defines for which emission class the emissions shall be generated. " -msgstr "定義應針對哪個排放類別(class)產生排放物。" +msgstr "定義應針對哪個排放類別(class)產生排放物。 " -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:92 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:92 msgid "Defines the vehicle type to use for emission parameters." -msgstr "定義用於排放參數的車輛類型" +msgstr "定義用於排放參數的車輛類型。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:96 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:96 msgid "" "If set, the acceleration is computed instead of being read from the file. " -msgstr "如果設定,則計算加速度而不是從檔案中讀取。" +msgstr "如果設定,則計算加速度而不是從檔案中讀取。 " -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:99 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:99 msgid "" "If set, the acceleration for time t is computed from v(t+1) - v(t) instead " "of v(t) - v(t-1). " -msgstr "如果設定,則時間 t 的加速度從 v(t+1) - v(t) 而不是從 v(t) - v(t-1) 計算。" +msgstr "" +"如果設定,則時間 t 的加速度從 v(t+1) - v(t) 而不是從 v(t) - v(t-1) 計算。 " -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:102 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:102 msgid "If set, the acceleration for time t is set to 0 if the speed is 0. " -msgstr "如果設定,則當速度為 0 時,時間 t 的加速度設為 0。" +msgstr "如果設定,則當速度為 0 時,時間 t 的加速度設為 0。 " -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:105 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:105 msgid "If set, the first line of the read file is skipped." msgstr "如果設定,則跳過讀取檔案的第一列。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:108 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:108 msgid "If set, the given speed is interpreted as being given in km/h." msgstr "如果設定,則給定速度被視為以公里/小時(km/h)為單位。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:111 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:111 msgid "If set, the fourth column is read and used as slope (in deg)." msgstr "如果設定,則讀取第四行(column)並將其用作坡度 (以度為單位)。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:114 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:114 msgid "" "Sets a global slope (in deg) that is used if the file does not contain slope " "information." msgstr "如果檔案內不含坡度訊息,設定一個整體的坡度(global slope) (以度為單位)。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:119 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:119 msgid "Defines the file to write the emission cycle results into." msgstr "定義檔案,以將排放週期(emission cycle)結果寫入其內。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:122 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:122 msgid "Defines the attributes to write." msgstr "定義要寫出的屬性。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:125 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:125 msgid "Save the emission values of each vehicle in XML" msgstr "以 XML 格式儲存每輛車的排放值" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:129 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:129 msgid "Save the aggregated and normed emission values of each vehicle in CSV" msgstr "在 CSV 內儲存每輛車的彙總(aggregated)和賦範的(normed)排放值" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:145 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:145 msgid "Defines the begin time in seconds;" -msgstr "以秒為單位定義開始時間;" +msgstr "以秒為單位定義開始時間;" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:148 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:148 msgid "Defines the end time in seconds;" -msgstr "以秒為單位定義結束時間;" +msgstr "以秒為單位定義結束時間;" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:152 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:152 msgid "Not writing anything." msgstr "不寫任何東西。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:169 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:169 msgid "Either a timeline or a netstate / amitran file must be given." msgstr "必須給定一個時間線或路網狀態 / amitran 格式檔案。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:172 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:172 msgid "The output file must be given." msgstr "輸出檔案必須給定。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:185 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:185 #, c-format msgid "Unknown attribute '%' to write in output." msgstr "要寫入輸出檔案的未知屬性 '%'。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:213 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:213 msgid "" "Option --vtype requires option --additional-files for loading vehicle types" msgstr "選項 --vtype 需要選項 --additional-files 以載入車輛類型" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:225 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:225 #, c-format msgid "Vehicle type '%' is not defined" msgstr "車輛類型 '%' 為定義" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:245 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:245 msgid "Unreadable file '%'." msgstr "無法讀取的檔案 '%'。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:276 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:276 msgid "Missing an entry in line '%'." msgstr "在列 '%' 缺少輸入項(entry)。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:278 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:278 msgid "Not numeric entry in line '%'." msgstr "在列 '%' 沒有數值輸入項(entry)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:58 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:58 msgid "Writing map of '%' into '%'." msgstr "將 '%' 的映成表(map)寫入 '%'。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:62 -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:291 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:62 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:291 #, c-format msgid "Could not open file '%' for writing." msgstr "無法開啟檔案 '%' 進行寫入。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:86 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:86 msgid "Builds and writes an emissions map for SUMO's emission models." msgstr "為 SUMO 的排放模式構建並編寫排放物映成表(emissions map)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:92 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:92 msgid "If set, maps for all available emissions are written." msgstr "如果設定,則寫入所有可得的排放物的映成表(maps)內。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:95 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:95 msgid "Defines the name of the emission class to generate the map for." msgstr "定義排放物類別的名稱, 將為它產生映成表(map)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:98 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:98 msgid "Defines the minimum velocity boundary of the map to generate (in m/s)." msgstr "定義產生的映成表(map)的最小速度邊界 (以米/秒為單位)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:100 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:100 msgid "Defines the maximum velocity boundary of the map to generate (in m/s)." msgstr "定義產生的映成表(map)的最大速度邊界 (以米/秒為單位)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:102 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:102 msgid "Defines the velocity step size (in m/s)." msgstr "定義速度的步長大小(step size) (以米/秒為單位)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:104 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:104 msgid "" "Defines the minimum acceleration boundary of the map to generate (in m/s^2)." msgstr "定義產生的映成表(map)的最小加速度邊界 (以米/平方秒為單位)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:106 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:106 msgid "" "Defines the maximum acceleration boundary of the map to generate (in m/s^2)." msgstr "定義產生的映成表(map)的最大加速度邊界 (以米/平方秒為單位)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:108 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:108 msgid "Defines the acceleration step size (in m/s^2)." msgstr "定義加速度的步長大小(step size) (以米/平方秒為單位)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:110 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:110 msgid "Defines the minimum slope boundary of the map to generate (in deg)." msgstr "定義產生的映成表(map)的最小坡度邊界 (以度(deg)為單位)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:112 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:112 msgid "Defines the maximum slope boundary of the map to generate (in deg)." msgstr "定義產生的映成表(map)的最大坡度邊界 (以度(deg)為單位)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:114 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:114 msgid "Defines the slope step size (in deg)." msgstr "定義坡度的步長大小(step size) (以度(deg)為單位)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:119 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:119 msgid "" "Defines the file (or the path if --iterate was set) to write the map(s) into." msgstr "定義將寫入映成表(map)的檔案 (或檔案路徑(path), 如果設置了 --iterate)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:159 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:159 msgid "The emission class (-e) must be given." msgstr "排放物類別 (-e) 必須給定。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:162 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:162 msgid "The output file (-o) must be given." msgstr "輸出檔案 (-o) 必須給定。" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:314 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:314 msgid "Starting TraCI without using internal lanes!" msgstr "在不使用內部車道的情況下, 啟動 TraCI!" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:320 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:320 msgid "***Starting server on port % ***" msgstr "***在埠(port) % 上啟動服務器 % ***" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:323 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:323 #, c-format msgid " waiting for % clients..." msgstr " 等待 % 個用戶端..." -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:347 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:347 msgid " client connected" msgstr " 已連結用戶端" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:480 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:480 msgid "" "Execution order (libsumo::CMD_SETORDER) was not set for all TraCI clients in " "pre-execution phase." -msgstr "執行順序 (libsumo::CMD_SETORDER) 未在預執行階段為所有 TraCI 用戶端設置。" +msgstr "" +"執行順序 (libsumo::CMD_SETORDER) 未在預執行階段為所有 TraCI 用戶端設置。" -#: /home/micha/programming/sumo/src/utils/common/FileHelpers.cpp:73 +#: D:\Repos\sumo/src\utils\common\FileHelpers.cpp:73 msgid "Cannot get file attributes for file '%'!" msgstr "無法取得檔案 '%' 的檔案屬性!" -#: /home/micha/programming/sumo/src/utils/common/FileHelpers.h:318 +#: D:\Repos\sumo/src\utils\common\FileHelpers.h:318 msgid "Invalid follower index in route '%'!" msgstr "在路徑 '%' 內有無效的隨動者索引(follower index)!" -#: /home/micha/programming/sumo/src/utils/common/FileHelpers.h:328 +#: D:\Repos\sumo/src\utils\common\FileHelpers.h:328 #, c-format msgid "An edge within the route '%' is not known!" msgstr "在路徑 '%' 內的一個路段是未知的!" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:153 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:178 #, c-format msgid "done (%ms)." msgstr "完成 (%毫秒)。" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:155 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:180 msgid "done." msgstr "完成。" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:253 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:278 msgid "Could not set locale to '%'." msgstr "無法將環境(locale)設置為 '%'。" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:258 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:283 msgid "" "Environment variable SUMO_HOME is not set, could not find localized messages." msgstr "未設置環境變量 SUMO_HOME,找不到定位(localized)訊息。" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:264 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:289 msgid "Could not find localized messages." msgstr "找不到定位(localized)訊息。" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:87 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:87 msgid "Invalid conversion from string to double (%)" msgstr "從字串(string)到雙精度(doubles)的無效轉換 (%)" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:90 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:90 msgid "Invalid conversion from string to double (empty value)" msgstr "從字串(string)到雙精度(doubles)的無效轉換 (空值)" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:109 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:109 msgid "Invalid conversion from string to doubles (%)" msgstr "從字串(string)到雙精度(doubles)的無效轉換 (%)" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:112 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:112 msgid "Invalid conversion from string to doubles (empty value)" msgstr "從字串(string)到雙精度(doubles)的無效轉換 (空值)" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:205 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:205 msgid "Invalid format of parameter (%)" msgstr "參數的格式無效 (%)" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:230 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:230 msgid "Invalid format of attribute '%'. Attribute must start with a letter" msgstr "屬性 (%) 的格式無效。 屬性必須以字母開頭" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:237 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:237 msgid "Invalid format of attribute (%)" msgstr "屬性 (%) 的格式無效" -#: /home/micha/programming/sumo/src/utils/common/RandHelper.cpp:65 +#: D:\Repos\sumo/src\utils\common\RandHelper.cpp:65 msgid "Initialises the random number generator with the current system time" msgstr "使用目前系統時間進行隨機數產生器的初始化" -#: /home/micha/programming/sumo/src/utils/common/RandHelper.cpp:69 +#: D:\Repos\sumo/src\utils\common\RandHelper.cpp:69 msgid "Initialises the random number generator with the given value" msgstr "使用給定的值進行隨機數產生器的初始化" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:187 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:187 msgid "Simultaneous specification of vClasses and exceptions is not allowed" msgstr "不允許同時指定車輛類別(vClasses)和例外情況(exceptions)" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:191 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:191 msgid "StopOffset requires an offset value" msgstr "StopOffset 需要一個偏移(offset)值" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:341 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:341 #, c-format msgid "Unknown vehicle class '%' encountered." msgstr "遇到未知的車輛類別 '%'。" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:382 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:382 msgid "" "SVCPermissions must be specified either via 'allow' or 'disallow'. Ignoring " "'disallow'" msgstr "SVCPermissions 必須通過 'allow' 或 'disallow' 指定。 忽略 'disallow'" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:408 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:408 #, c-format msgid "The vehicle class '%' is deprecated, use '%' instead." msgstr "車輛類別 '%' 已不適用,請改用 '%'。" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:43 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:43 msgid "Loads the named config on startup" msgstr "在啟動時,載入已命名的設定(config)" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:48 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:48 msgid "Saves current configuration into FILE" msgstr "將目前的設定(configuration)儲存到檔案" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:52 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:52 msgid "Enforce relative paths when saving the configuration" msgstr "儲存設定(configuration)時, 強制使用相對路徑" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:55 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:55 msgid "Saves a configuration template (empty) into FILE" msgstr "將設定模板(configuration template)儲存於檔案" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:58 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:58 msgid "Saves the configuration schema into FILE" msgstr "將設定綱目(configuration schema)存入檔案" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:62 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:62 msgid "Adds comments to saved template, configuration, or schema" -msgstr "對已儲存的模板(template)、設定(configuration)或綱目(schema)" -"增加註釋" +msgstr "對已儲存的模板(template)、設定(configuration)或綱目(schema)增加註釋" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:71 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:71 msgid "Switches to verbose output" msgstr "切換到詳細輸出(verbose output)" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:74 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:74 msgid "Prints option values before processing" msgstr "在處理之前, 印出選項值" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:77 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:77 msgid "Prints this screen or selected topics" msgstr "印出此螢幕或選定的主題" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:80 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:80 msgid "Prints the current version" msgstr "印出目前的版本" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:97 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:97 msgid "Disables output of warnings" msgstr "禁用警告輸出" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:100 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:100 msgid "Aggregate warnings of the same type whenever more than INT occur" msgstr "每當發生超過 INT 時,整合(aggregate)相同類型的警告" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:104 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:104 msgid "Writes all messages to FILE (implies verbose)" msgstr "將所有訊息寫入檔案 (暗示詳細的(verbose))" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:107 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:107 msgid "Writes all non-error messages to FILE (implies verbose)" msgstr "將所有非錯誤訊息寫入檔案 (暗示詳細的(verbose))" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:110 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:110 msgid "Writes all warnings and errors to FILE" msgstr "將所警告及錯誤寫入檔案" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:113 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:113 msgid "Language to use in messages" msgstr "在訊息中使用的語言" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:116 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:116 msgid "Include license info into every output file" msgstr "每個輸出檔案中將包含許可證資訊" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:119 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:119 msgid "" "Prefix which is applied to all output files. The special string 'TIME' is " "replaced by the current time." msgstr "應用於所有輸出檔案的字首(prefix)。 特殊字串 'TIME' 被目前時間替換。" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:122 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:122 msgid "Defines the number of digits after the comma for floating point output" msgstr "定義浮點數輸出的逗號後的位數" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:125 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:125 msgid "Defines the number of digits after the comma for lon,lat output" msgstr "定義經緯度(lon,lat)輸出的逗號後的位數" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:128 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:128 msgid "" "Write time values as hour:minute:second or day:hour:minute:second rather " "than seconds" msgstr "將時間值寫為小時:分鐘:秒 或 天:小時:分鐘:秒, 而不是秒" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:43 -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:184 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:43 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:184 msgid "Process Error" msgstr "處理發生錯誤" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:72 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:72 msgid "Empty Data" msgstr "空的資料" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:99 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:99 msgid "Invalid Number Format %" msgstr "無效的數字格式 %" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:112 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:112 msgid "Invalid Time Format %" msgstr "無效的時間格式 %" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:125 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:125 msgid "Invalid Bool Format %" msgstr "無效的布林(Bool)格式 %" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:137 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:137 msgid "Out Of Bounds" msgstr "超出邊界" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:151 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:151 msgid "Unknown Element" msgstr "未知的元素" -#: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:74 -#: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:76 -#: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:93 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:74 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:76 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:93 msgid "Invalid format of distribution parameterized" msgstr "已參數化的分配的格式無效" -#: /home/micha/programming/sumo/src/utils/emissions/EnergyParams.cpp:153 +#: D:\Repos\sumo/src\utils\emissions\EnergyParams.cpp:153 msgid "Vehicle device '%' doesn't have a valid value for parameter % (%)." msgstr "車輛裝置設備 '%' 的參數 % 沒有有效的值 (%)。" -#: /home/micha/programming/sumo/src/utils/emissions/HelpersEnergy.cpp:225 +#: D:\Repos\sumo/src\utils\emissions\HelpersEnergy.cpp:225 msgid "An acceleration given by the power was not found." msgstr "未找到電力(power)給定的加速度。" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:71 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:74 msgid "Add decal" msgstr "增加貼印" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:71 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:74 msgid "Add decal." msgstr "增加貼印(decal)。" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:151 -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:162 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:160 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:171 msgid "Invalid row or column" msgstr "無效列或行" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:186 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:195 msgid "Invalid row" msgstr "無效列" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:196 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:205 msgid "Invalid column" msgstr "無效行" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:332 -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:790 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:341 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:798 msgid "Open decal" msgstr "開啟貼印(decal)" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:337 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:346 msgid "All files (*)" msgstr "所有檔案 (*)" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:790 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:798 msgid "Open decal." msgstr "開啟貼印(decal)。" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:798 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:806 msgid "Remove decal" msgstr "移除貼印(decal)" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:798 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:806 msgid "Remove decal." -msgstr "移除貼印(decal)" +msgstr "移除貼印(decal)。" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:87 +#: D:\Repos\sumo/src\utils\foxtools\MFXTextFieldSearch.cpp:66 +msgid "Type to search..." +msgstr "" + +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:87 msgid "Ignoring geoidgrids and vgridshift in projection" msgstr "忽略投影中的大地水準面網格(geoidgrids)和垂直網格偏移(vgridshift)" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:232 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:232 msgid "Inverse projection works only with explicit proj parameters." msgstr "反向投影僅適用於明確的投影(proj)參數。" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:237 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:237 msgid "The projection method needs to be uniquely defined." msgstr "投影方法需要是唯一的(unique)。" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:288 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:288 msgid "Uses a simple method for projection" msgstr "使用簡單的方法進行投影" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:291 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:291 msgid "Scaling factor for input coordinates" msgstr "輸入坐標的縮放係數(scaling factor)" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:294 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:294 msgid "Rotation (clockwise degrees) for input coordinates" msgstr "輸入坐標的旋轉度數 (順時針度數)" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:298 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:298 msgid "" "Determine the UTM zone (for a universal transversal mercator projection " "based on the WGS84 ellipsoid)" msgstr "確定 UTM 區帶 (用於基於 WGS84 橢球體的通用橫向麥卡托(mercator)投影)" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:304 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:304 msgid "Uses STR as proj.4 definition for projection" msgstr "使用字串(STR) 作為投影時的 proj.4 定義" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:307 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:307 msgid "Inverses projection" msgstr "反向投影" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:310 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:310 msgid "Convert from Gauss-Krueger to UTM" msgstr "從 Gauss-Krueger 轉換為 UTM 投影方法" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:434 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:434 msgid "Could not transform (%,%)" msgstr "無法轉換 (%,%)" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:578 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:578 #, c-format msgid "" "Ignoring loaded location attribute nr. % for tracking of original location" msgstr "忽略載入的位置屬性數字(nr.) %, 其用於跟踪原始位置" -#: /home/micha/programming/sumo/src/utils/geom/GeomHelper.cpp:238 +#: D:\Repos\sumo/src\utils\geom\GeomHelper.cpp:238 msgid "GeomHelper::makeCircle() requires nPoints>=3" msgstr "GeomHelper::makeCircle() 要求 nPoints>=3" -#: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:607 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:607 msgid "Splitting vector close to end (pos: %, length: %)" msgstr "分割(splitting)的向量接近末端 (位置: %, 長度: %)" -#: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:1503 -#: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:1517 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:1503 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:1517 msgid "Trying to subtract PositionVectors of different lengths." msgstr "嘗試減去不同長度的 PositionVectors。" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:960 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:963 msgid "'lane' and 'length' must be defined together in a lane area detector." -msgstr "'lane' 和 'length' 必須在車道區域偵測器(lane area detector)中一起定義。" +msgstr "" +"'lane' 和 'length' 必須在車道區域偵測器(lane area detector)中一起定義。" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:965 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:968 msgid "'lanes' and 'endPos' must be defined together in a lane area detector." -msgstr "'lane' 和 'endPos' 必須在車道區域偵測器(lane area detector)中一起定義。" +msgstr "" +"'lane' 和 'endPos' 必須在車道區域偵測器(lane area detector)中一起定義。" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1242 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1245 msgid "Calibrators need either an edge or a lane" msgstr "校估器需要一個路段或一個車道" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1289 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1292 msgid "" "CalibratorFlows need either the attribute vehsPerHour or speed or type (or " "any combination of these)" -msgstr "校估流量(CalibratorFlows)需要屬性 每小時車輛數(vehsPerHour) 或 速度(speed)" -"或類型(type) (或這些屬性的任意組合)" +msgstr "" +"校估流量(CalibratorFlows)需要屬性 每小時車輛數(vehsPerHour) 或 速度(speed)或" +"類型(type) (或這些屬性的任意組合)" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1428 -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1454 -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1479 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1431 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1457 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1482 #, c-format msgid "Probability of % must be equal or greater than 0" msgstr "機率 % 必須大於或等於 0" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1665 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1668 msgid "X and Y must be be defined together in POIs" msgstr "X 和 Y 必須一起定義於興趣點(POIs)內" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1671 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1674 msgid "lane and position must be be defined together in POIs" msgstr "車道和位置必須一起定義於興趣點(POIs)內" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1677 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1680 msgid "lon and lat must be be defined together in POIs" msgstr "經度(lon)和緯度(lat)必須一起定義於興趣點(POIs)內" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1743 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1746 msgid "Parameters must be defined within an object." msgstr "參數必須定義於一個物件(object)內。" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1745 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:848 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1748 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:857 msgid "Parameters cannot be defined in the additional file's root." msgstr "參數無法定義於附加檔案(additional file)的根(root)中內。" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1747 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:850 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1750 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:859 msgid "Parameters cannot be defined within another parameter." msgstr "參數無法定義於其它參數內。" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1755 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1758 #, c-format msgid "Error parsing key from % generic parameter. Key cannot be empty." msgstr "解析 % 通用參數的密鑰(key)發生錯誤。 密鑰(key)不可以是空的。" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1757 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1760 #, c-format msgid "" "Error parsing key from % generic parameter. Key contains invalid characters." msgstr "解析 % 通用參數的密鑰(key)發生錯誤。 密鑰(key)含有無效的字元。" -#: /home/micha/programming/sumo/src/utils/handlers/DataHandler.cpp:111 +#: D:\Repos\sumo/src\utils\handlers\DataHandler.cpp:111 msgid "Data elements cannot load attributes as params" msgstr "資料元素(data elements)無法載入屬性作為參數(params)" -#: /home/micha/programming/sumo/src/utils/handlers/MeanDataHandler.cpp:54 +#: D:\Repos\sumo/src\utils\handlers\MeanDataHandler.cpp:54 msgid "MeanData elements cannot load attributes as params" msgstr "平均資料(MeanData)無法載入屬性作為參數(params)" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:370 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:373 msgid "" "Could not build % with ID '%' in netedit; ID contains invalid characters." msgstr "無法在 netedit 中構建 % (其識別名(ID)為 '%'); ID 含有無效字元。" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:420 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:423 msgid "" "a route must be defined either within a vehicle/flow or with an ID attribute" msgstr "路徑必須定義於一個車輛/流量內, 或是用一個識別名(ID)屬性" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:437 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:440 #, c-format msgid "cycleTime of % must be equal or greater than 0" msgstr "週期時間(cycleTime) % 必須大於或等於 0" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:482 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:549 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:485 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:552 msgid "Attributes 'from' and 'fromJunction' cannot be defined together" msgstr "無法同時定義屬性 'from' 和 'fromJunction'" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:484 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:551 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:487 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:554 msgid "Attributes 'to' and 'toJunction' cannot be defined together" msgstr "無法同時定義屬性 'to' 和 'toJunction'" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:515 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:518 msgid "trip definition needs either 'from/to' or 'fromJunction/toJunction'" msgstr "旅次定義需要 'from/to' 或 'fromJunction/toJunction'" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:846 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:855 msgid "Parameters must be defined within an object" msgstr "參數必須定義在一個物件(object)內" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:858 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:867 #, c-format msgid "Error parsing key from % generic parameter. Key cannot be empty" msgstr "解析 % 通用參數的密鑰(key)發生錯誤。 密鑰(key)不可以是空的" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:860 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:869 #, c-format msgid "" "Error parsing key from % generic parameter. Key contains invalid characters" msgstr "解析 % 通用參數的密鑰(key)發生錯誤。 密鑰(key)含有無效的字元" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:876 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:224 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:885 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:225 msgid "" "Defining car-following parameters in a nested element is deprecated in vType " "'%', use attributes instead!" -msgstr "在車輛類型(vType) '%' 的巢狀元素(nested element)內定義的跟車參數已不適用" -"改用屬性(attributes)!" +msgstr "" +"在車輛類型(vType) '%' 的巢狀元素(nested element)內定義的跟車參數已不適用改用" +"屬性(attributes)!" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:884 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:886 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:227 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:229 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:893 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:895 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:228 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:230 msgid "Invalid parsing embedded VType" msgstr "解析嵌入的(embedded)車輛類型(vType)無效" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:970 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:979 msgid "A stop must be defined either with an edge or with an lane, not both" msgstr "停靠站必須要定義在一個路段或是一個車道, 不可以兩者" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:984 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:995 msgid "A stop must be defined only in a StoppingPlace" msgstr "停靠站只能定義在一個可停下的地方(StoppingPlace)" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:987 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:998 msgid "A stop must be defined in an edge, a lane, or in a StoppingPlace" -msgstr "停靠站必須要定義在一個路段, 一個車道或是一個可停下的地方(StoppingPlace)" +msgstr "" +"停靠站必須要定義在一個路段, 一個車道或是一個可停下的地方(StoppingPlace)" -#: /home/micha/programming/sumo/src/utils/handlers/TemplateHandler.cpp:67 +#: D:\Repos\sumo/src\utils\handlers\TemplateHandler.cpp:67 msgid "Could not load template '%'." msgstr "無法載入範本(template) '%'。" -#: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice.cpp:86 +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice.cpp:86 msgid "No port number given." -msgstr "沒有給定埠號(port number)" +msgstr "沒有給定埠號(port number)。" -#: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice.cpp:161 +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice.cpp:161 msgid "Error on closing output devices." msgstr "關閉輸出裝置時發生錯誤。" -#: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice_File.cpp:46 +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice_File.cpp:46 msgid "Could not redirect to NUL device (%)." msgstr "無法重定向到NUL裝置 (%)。" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:315 +#: D:\Repos\sumo/src\utils\options\Option.cpp:352 #, c-format msgid "'%' is not a valid float." msgstr "'%' 不是有效的浮點數。" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:349 +#: D:\Repos\sumo/src\utils\options\Option.cpp:386 #, c-format msgid "'%' is not a valid bool." msgstr "'%' 不是有效的布林(bool)。" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:409 +#: D:\Repos\sumo/src\utils\options\Option.cpp:446 msgid "" "Please note that using ';' as list separator is deprecated and not accepted " "anymore." msgstr "請注意,使用';'作為清單分隔符號已不適用,並不再接受。" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:419 +#: D:\Repos\sumo/src\utils\options\Option.cpp:456 #, c-format msgid "'%' is not a valid integer vector." msgstr "'%' 不是有效的整數向量。" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:65 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:66 msgid "" "Copyright (C) 2001-2023 German Aerospace Center (DLR) and others; https://" "sumo.dlr.de" msgstr "版權(C)2001-2023德國航空航天中心(DLR)等; https://sumo.dlr.de" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:151 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:152 msgid "Internal request for unknown option '%'!" msgstr "未知選項'%'的內部要求!" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:174 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:175 #, c-format msgid "No option with the name '%' exists." msgstr "沒有任何名稱為 '%' 的選項。" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:191 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:192 #, c-format msgid "" "Please note that '%' is deprecated.\n" @@ -10426,91 +10672,91 @@ "請注意,'%' 已不適用。\n" " 改用 '%'。" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:387 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:388 #, c-format msgid "The file list for '%' is empty." msgstr "'%' 的檔案清單是空的。" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:393 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:394 msgid "File '%' is not accessible (%)." msgstr "檔案 '%' 不可存取(%)。" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:396 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:397 msgid "Empty file name given; ignoring." msgstr "給出空白檔案名稱; 忽略。" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:417 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:418 msgid "Option '%' needs option '%'." msgstr "選項 '%' 需要選項 '%' 。" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:616 -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:638 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:621 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:643 msgid " Build features: " -msgstr "構建功能: " +msgstr " 構建功能: " -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:620 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:625 msgid "" " License EPL-2.0: Eclipse Public License Version 2 " msgstr "" -"許可證EPL-2.0: Eclipse公共許可證版本 2 " -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:621 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:626 msgid " Use --help to get the list of options." -msgstr "使用 --求助 獲取選項清單。" +msgstr " 使用 --求助 獲取選項清單。" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:669 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:674 msgid "Could not save configuration to '%'" msgstr "無法將設定(configuration)保存到 '%'" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:673 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:678 msgid "Written configuration to '%'" msgstr "將設定(configuration)寫入 '%'" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:686 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:691 msgid "Could not save template to '%'" msgstr "無法將範本(template)儲存到 '%'" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:690 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:695 msgid "Written template to '%'" msgstr "將範本(template)寫入 '%'" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:702 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:707 msgid "Could not save schema to '%'" msgstr "無法將綱目(schema)儲存到 '%'" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:706 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:711 msgid "Written schema to '%'" msgstr "將綱目(schema)寫入 '%'" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:88 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:135 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:88 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:135 msgid "Could not parse commandline options." msgstr "無法剖析命令列的選項。" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:103 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:103 msgid "Could not access configuration '%'." -msgstr "無法存取設定(configuration) '%'。" +msgstr "無法存取設定(configuration) '%'。" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:107 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:107 msgid "Loading configuration" msgstr "載入設定(configuration)" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:121 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:121 msgid "Could not load configuration '%'." msgstr "無法載入設定(configuration)'%'。" -#: /home/micha/programming/sumo/src/utils/options/OptionsLoader.cpp:77 +#: D:\Repos\sumo/src\utils\options\OptionsLoader.cpp:77 msgid "Could not set option '%' (probably defined twice)." msgstr "無法設定選項 '%' (可能定義了兩次)。" -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:127 -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:134 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:127 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:134 msgid "Missing value for parameter '%'." msgstr "缺少參數 '%' 的值。" -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:146 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:146 #, c-format msgid "" "The parameter '%' is not allowed in this context.\n" @@ -10519,407 +10765,415 @@ "此上下文中不允許使用參數 '%'。\n" " 需要切換或是提供參數名稱。" -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:150 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:150 msgid "Mixed parameter syntax in '%'." msgstr "'%' 中有混合參數語法(syntax)。" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:124 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:124 msgid "Could not load landmark-lookup-table from '%'." msgstr "無法從 '%' 載入地標對照表。" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:138 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:138 #, c-format msgid "Duplicate edge '%' in landmark file." msgstr "在地標檔案內有重複的路段 '%'。" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:143 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:143 #, c-format msgid "Landmark edge '%' does not exist in the network." msgstr "地標路段 '%' 不存在於路網內。" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:154 -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:167 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:154 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:167 #, c-format msgid "Unknown or unordered edge '%' in landmark file." msgstr "地標檔案內有未知或是未排序的路段 '%'。" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:164 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:164 msgid "Broken landmark file, unexpected number of entries (%) for edge '%'." msgstr "地標檔案損壞, 路段 '%' 有超出預期的登錄項目數量 (%)。" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:187 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:187 msgid "Calculating new lookup table." -msgstr "正在計算新的對照表" +msgstr "正在計算新的對照表。" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:194 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:194 msgid "No lookup table for landmark edge '%', recalculating." msgstr "地標路段 '%' 沒有對照表, 重新計算中。" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:196 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:196 msgid "" "Not all network edges were found in the lookup table '%' for landmark edge " "'%'." msgstr "並非所有路網路段都在對照表 '%' 內找到 (針對地標路段 '%')。" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:293 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:293 msgid "Saving new matrix to '%'." msgstr "將新的矩陣存入 '%'。" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:295 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:295 #, c-format msgid "Edge '%' not found in intermodal network.'" msgstr "路段 '%' 不在多運具(intermodal)路網內。" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:304 -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:338 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:304 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:338 #, c-format msgid "Depart edge '%' not found in intermodal network." msgstr "出發路段 '%' 不在多運具(intermodal)路網內。" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:350 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:350 #, c-format msgid "Arrival edge '%' not found in intermodal network." msgstr "抵達路段 '%' 不在多運具(intermodal)路網內。" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:620 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:620 msgid "Ignoring unordered stop at '%' until % for vehicle '%'." msgstr "忽略未排序的停靠站於 '%' 處, 直到(until) %; 車輛為 '%'。" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:632 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:632 msgid "Ignoring stop at '%' until % for vehicle '%'." msgstr "忽略停靠站於 '%' 處, 直到(until) %; 車輛為 '%'。" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:637 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:637 #, c-format msgid "" "Not using public transport line '%' for routing persons. It has less than " "two usable stops." msgstr "不使用大眾運輸路線 '%' 來安排人員的路徑。 它只有不到兩個可用的停靠點。" -#: /home/micha/programming/sumo/src/utils/router/IntermodalRouter.h:214 -#: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:125 +#: D:\Repos\sumo/src\utils\router\IntermodalRouter.h:220 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:125 msgid "Do not use this method" msgstr "不要使用這種方法" -#: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:87 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:87 #, c-format msgid "Departure edge '%' does not allow pedestrians." msgstr "出發路段 '%' 不允許行人使用。" -#: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:91 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:91 #, c-format msgid "Destination edge '%' does not allow pedestrians." msgstr "目的地路段 '%' 不允許行人使用。" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:84 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:84 msgid "Error parsing key from shape generic parameter. Key cannot be empty" msgstr "形狀通用參數解析密鑰(key)時, 發生錯誤。 密鑰(key)不可以是空的" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:86 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:86 msgid "" "Error parsing key from shape generic parameter. Key contains invalid " "characters" msgstr "形狀通用參數解析密鑰(key)時, 發生錯誤。 密鑰(key)含有無效字元" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:139 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:139 msgid "Invalid characters for PoI ID" msgstr "興趣點(PoI) '%' 有無效的字元" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:170 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:170 msgid "Either (x, y), (lon, lat) or (lane, pos) must be specified for PoI '%'." -msgstr "(x, y), (lon, lat) 或是 (lane, pos)其中之一必須用以指定興趣點(PoI) '%'。" +msgstr "" +"(x, y), (lon, lat) 或是 (lane, pos)其中之一必須用以指定興趣點(PoI) '%'。" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:173 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:173 msgid "" "(lon, lat) is specified for PoI '%' but no geo-conversion is specified for " "the network." -msgstr "(經度(lon), 緯度(lat)) 用於指定興趣點(PoI) '%', 但沒有為路網指定" -"地理坐標轉換(geo-conversion)。" +msgstr "" +"(經度(lon), 緯度(lat)) 用於指定興趣點(PoI) '%', 但沒有為路網指定地理坐標轉換" +"(geo-conversion)。" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:185 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:185 msgid "Unable to project coordinates for PoI '%'." msgstr "無法投影興趣點(PoI) '%' 得坐標。" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:191 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:191 #, c-format msgid "PoI '%' already exists." msgstr "興趣點(PoI) '%' 已經存在。" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:209 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:209 msgid "Invalid characters for Poly ID" msgstr "多邊形識別名(Poly ID)有無效的字元" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:252 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:252 msgid "Polygon's shape cannot be empty." msgstr "多邊形的形狀不可以是空的。" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:257 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:257 msgid "Polygon's lineWidth must be greater than 0." msgstr "多邊形的線寬(lineWidth) 必須大於 0。" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:262 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:262 #, c-format msgid "Polygon '%' already exists." msgstr "多邊形 '%' 已經存在。" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:279 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:279 #, c-format msgid "Loading of shapes from % failed." msgstr "從 % 中載入形狀(shapes)失敗。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:44 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:44 #, c-format msgid "The node: '%' already exists." msgstr "節點: '%' 已經存在。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:239 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:239 msgid "Index of renumbered node exceeded the reduced number of equations." msgstr "重新編號的節點的索引(index)超出了已減少的方程式數量。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:250 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:250 msgid "Index of renumbered element exceeded the reduced number of equations." msgstr "重新編號的元素的索引(index)超出了已減少的方程式數量。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:257 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:257 msgid "Structural error in reduced circuit matrix." msgstr "簡化電路矩陣中的結構錯誤。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:288 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:288 msgid "Initial solution x used during solving DC circuit is out of bounds.\n" msgstr "求解 DC 電路時,使用的初始解 x 超出邊界限。\n" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:312 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:456 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:312 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:456 msgid "wrongly assigned row of matrix A during solving the circuit" msgstr "求解電路時,錯誤指派矩陣 A 的列(row)" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:354 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:479 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:354 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:479 msgid "The negative node of current source is not the groud." msgstr "電流源的負節點不與地面連接。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:508 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:518 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:526 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:508 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:518 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:526 msgid "Results deployment during circuit evaluation was unsuccessful." msgstr "電路評估期間的結果部署不成功。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:576 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:576 msgid "" "Cannot assign unambigous electric current value to two voltage sources " "connected in parallel at the same node." msgstr "不能指派明確的電流值給與同一節點平行連結的兩個電壓源。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:798 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:798 msgid "" "Trying to add resistor element into the overhead wire circuit with " "resistance < 1e-6. " -msgstr "嘗試在電阻 < 1e-6 的架空線電路中增加電阻元素(element)。" +msgstr "嘗試在電阻 < 1e-6 的架空線電路中增加電阻元素(element)。 " -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:800 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:800 msgid "" "Trying to add resistor element into the overhead wire circuit with " "resistance < 0. " -msgstr "嘗試在電阻 < 0 的架空線電路中增加電阻元素(element)。" +msgstr "嘗試在電阻 < 0 的架空線電路中增加電阻元素(element)。 " -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:919 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:919 msgid "" "Circuit Voltage Source '%' is connected to less than two nodes, please " "adjust the definition of the section (with substation '%')." msgstr "電路電壓源 '%' 連接到少於兩個節點, 請調整區段定義(具有分站 '%')。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:927 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:927 msgid "" "Circuit Element '%' is connected to less than two nodes, please adjust the " "definition of the section (with substation '%')." msgstr "電路元素 '%' 連接到少於兩個節點, 請調整區段定義(具有分站 '%')。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:942 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:942 msgid "" "Circuit Node with id '-1' is not the grounded, please adjust the definition " "of the section (with substation '%')." -msgstr "帶有識別名(id) '-1' 的電路節點未連接到地面, 請調整區段定義(具有分站 '%')。" +msgstr "" +"帶有識別名(id) '-1' 的電路節點未連接到地面, 請調整區段定義(具有分站 '%')。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:966 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:966 msgid "" "A Circuit Resistor Element connects the ground, please adjust the definition " "of the section (with substation '%')." -msgstr "電路電阻元素(Circuit Resistor Element)連接地面, 請調整區段定義" -"(具有分站 '%')。" +msgstr "" +"電路電阻元素(Circuit Resistor Element)連接地面, 請調整區段定義(具有分站 " +"'%')。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:975 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:975 msgid "" "Circuit Node or Voltage Source with internal id '%' has been not visited " "during checking of the circuit. The circuit is disconnected, please adjust " "the definition of the section (with substation '%')." -msgstr "在電路檢查期間,未訪問到內部識別名(id)為 '%' 的電路節點或電壓源。" -"電路已切斷,請調整區段(section)定義(具有分站 '%')。" +msgstr "" +"在電路檢查期間,未訪問到內部識別名(id)為 '%' 的電路節點或電壓源。電路已切斷,請" +"調整區段(section)定義(具有分站 '%')。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Element.cpp:53 +#: D:\Repos\sumo/src\utils\traction_wire\Element.cpp:53 msgid "Undefined element type for '%'." -msgstr " '%' 有未定義的元素類型。" +msgstr "'%' 有未定義的元素類型。" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:63 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:64 msgid "Route file should be sorted by departure time, ignoring '%'!" msgstr "路徑檔案應按出發時間排序, 忽略 '%'!" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParameter.cpp:653 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParameter.cpp:658 msgid "Invalid % % given for %. Using edge end instead." msgstr "無效的 % % 給定給 %。 改用路段末端。" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParameter.cpp:703 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParameter.cpp:708 msgid "" "Value of stop attribute 'trigger' must be 'person', 'container', 'join' or a " "boolean" -msgstr "停靠屬性 'trigger' 的值必須是 '人員(person)', '貨櫃(container)', '合併(join)'" -"或一個布林值(boolean)" +msgstr "" +"停靠屬性 'trigger' 的值必須是 '人員(person)', '貨櫃(container)', '合併" +"(join)'或一個布林值(boolean)" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:268 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:267 msgid "Undefined end for % '%', defaulting to 24hour duration." -msgstr " % '%' 的結束未定義, 預設為 24 小時持續時間。" +msgstr "% '%' 的結束未定義, 預設為 24 小時持續時間。" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:402 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:401 msgid "Invalid % id '%'." msgstr "無效的 % 的識別名(id) '%'。" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:404 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:403 msgid "Invalid % id '%'. Contains invalid characters." msgstr "無效的 % 的識別名(id) '%'。 含有無效的字元。" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:947 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:946 msgid "Lane change model 'JE2013' is deprecated. Using default model instead." msgstr "車道變化模式 'JE2013' 已經不適用。 改為使用預設模式。" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1139 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1138 msgid "maneuverAngleTimes format for vType '%' % contains an invalid triplet." -msgstr "車輛類型(vType) '%' % 的 maneuverAngleTimes 格式含有一個無效的" -"三個二進制元素位元組(Triplet)。" +msgstr "" +"車輛類型(vType) '%' % 的 maneuverAngleTimes 格式含有一個無效的三個二進制元素" +"位元組(Triplet)。" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1148 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1147 #, c-format msgid "" "Triplet '%' for vType '%' maneuverAngleTimes cannot be parsed as 'int double " "double'" -msgstr "maneuverAngleTimes 的三個二進制元素位元組(Triplet) '%' (車輛類型(vType)為 '%')" -"無法解析為 'int double double'" +msgstr "" +"maneuverAngleTimes 的三個二進制元素位元組(Triplet) '%' (車輛類型(vType)為 " +"'%')無法解析為 'int double double'" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1174 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1173 msgid "Unknown car-following model % when parsing vType '%'" -msgstr "未知的跟車模式 % 出現於解析 vType '%' 的時候" +msgstr "未知的跟車模式 % 出現於解析 vType '%' 的時候" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1176 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1175 msgid "Unknown car-following model when parsing vType '%'" msgstr "當解析 vType '%' 時, 未知的跟車模式" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1209 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1225 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1208 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1224 msgid "Invalid Car-Following-Model Attribute %. Cannot be parsed to float" msgstr "無效的跟車模式屬性 %。 無法解析為浮點數" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1213 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1236 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1212 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1235 msgid "Invalid Car-Following-Model Attribute %. Must be greater than 0" msgstr "無效的跟車模式屬性 %。 必須大於 0" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1247 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1246 msgid "" "Invalid Car-Following-Model Attribute %. Only values between [0-1] are " "allowed" msgstr "無效的跟車模式屬性 %。 只允許 [0-1] 之間的值" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1506 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1505 msgid "Invalid Lane-Change-Model Attribute %. Cannot be parsed to float" msgstr "無效的車道變換模式屬性 %。 無法解析為浮點數" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1523 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1522 msgid "Invalid Lane-Change-Model Attribute %. Must be equal or greater than 0" msgstr "無效的車道變換模式屬性 %。必須等於或是大於 0" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1534 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1533 msgid "Invalid Lane-Change-Model Attribute %. Must be greater than 0" msgstr "無效的車道變換模式屬性 %。 必須大於 0" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1545 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1544 msgid "Invalid Lane-Change-Model Attribute %. Must be between -1 and 1" msgstr "無效的車道變換模式屬性 %。 必須在 -1 與 1 之間" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1591 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1576 msgid "Invalid Junction-Model Attribute %. Cannot be parsed to float" msgstr "無效的路口模式屬性 %。 無法解析為浮點數" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1600 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1585 msgid "" "Invalid Junction-Model Attribute %. Only values between [0-1] are allowed" msgstr "無效的路口模式屬性 %。 只允許 [0-1] 之間的值" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1606 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1591 msgid "Invalid Junction-Model Attribute %. Must be equal or greater than 0" msgstr "無效的路口模式屬性 %。 必須等於或大於 0" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1636 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1621 msgid "The vehicle class '%' for % '%' is not known." -msgstr " % '%' 的車輛類別(vehicle class)未知。" +msgstr "% '%' 的車輛類別(vehicle class)未知。" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1654 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1639 msgid "The shape '%' for % '%' is not known." -msgstr " % '%' 的形狀(shape)未知。" +msgstr "% '%' 的形狀(shape)未知。" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:271 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:271 msgid "Undefined vehicleType parameter" msgstr "未定義的車輛類型(vehicleType)參數" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:281 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:281 msgid "Undefined vehicle parameter" msgstr "未定義的車輛參數" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:291 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:291 msgid "Undefined stop parameter" msgstr "未定義的停靠點參數(stop parameter)" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:513 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:513 msgid "Trying to get undefined % attribute '%' in SUMOBaseObject '%'" msgstr "嘗試在 SUMOBaseObject '%' 中得到未定義的 % 屬性 '%'" -#: /home/micha/programming/sumo/src/utils/xml/GenericHandler.cpp:83 -#: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:105 +#: D:\Repos\sumo/src\utils\xml\GenericHandler.cpp:83 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:105 msgid "Found root element '%' in file '%' (expected '%')." msgstr "在檔案'%' (應為 '%')中找到根元件(root element) '%'。" -#: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:209 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:209 msgid " In file '" -msgstr "在檔案 '" +msgstr " 在檔案 '" -#: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:210 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:210 msgid " At line/column " -msgstr "在列/行(line/column) " +msgstr " 在列/行(line/column) " -#: /home/micha/programming/sumo/src/utils/xml/SAXWeightsHandler.cpp:145 +#: D:\Repos\sumo/src\utils\xml\SAXWeightsHandler.cpp:145 msgid "Missing value '%' in edge '%'." msgstr "路段 '%' 中缺少值 '%' 。" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:110 -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:136 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:110 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:136 msgid "Cannot read file '%'!" msgstr "無法讀取檔案 '%'!" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:113 -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:139 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:113 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:139 #, c-format msgid "File '%' is a directory!" msgstr "檔案 '%' 是一個資料夾!" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:156 -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:165 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:156 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:165 msgid "The XML-parser was not initialized." msgstr "XML解析器(parser)無法初始化。" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:191 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:191 msgid "The XML-parser could not be build." msgstr "無法建立XML解析器(parser)。" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:92 -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:98 -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:105 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:92 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:98 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:105 msgid "" "Environment variable SUMO_HOME is not set properly, disabling XML " "validation. Set 'auto' or 'always' for web lookups." @@ -10927,7 +11181,7 @@ "環境變數 SUMO_HOME 設置不正確,禁用了 XML 驗證。設定'自動(auto)'或'一直" "(always)'進行在網路上查找(web lookups)。" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:111 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:111 msgid "" "Environment variable SUMO_HOME is not set properly, XML validation will fail " "or use slow website lookups." @@ -10935,26 +11189,26 @@ "環境變數 SUMO_HOME 設置不正確,XML 驗證將失敗或是使用慢速網站查找(website " "lookups)。" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:120 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:120 msgid "Cannot read local schema '%'." msgstr "無法讀取局部綱目(local schema) '%'。" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:167 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:167 msgid "" "Disabling XML validation for external file '%'. Use 'auto' or 'always' to " "enable." msgstr "" "對外部文件'%'禁用 XML 驗證。使用'自動(auto)'或'一直(always)'啟用 XML 驗證。" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:189 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:189 msgid "Runtime error: % while parsing '%'" msgstr "執行期錯誤: % 發生於解析 '%' 時" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:191 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:191 msgid "Error occurred: % while parsing '%'" msgstr "發生錯誤: % 發生於解析 '%' 時" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:193 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:193 msgid "" "SAX error occured while parsing '%':\n" " %" @@ -10962,10 +11216,40 @@ "SAX 錯誤發生於解析 '%' 時:\n" " %" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:195 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:195 msgid "Unspecified error occurred wile parsing '%'" msgstr "當解析'%'時,發生未指定的錯誤" +#~ msgid "Could not determine position on lane '% at lateral position %." +#~ msgstr "無法決定在車道 '% 上的側向位置為 % 的位置。" + +#~ msgid "parkingZoneReroute not implemented for meso" +#~ msgstr "中觀模擬內尚未建置停車區域內重新導引路徑的函數(parkingZoneReroute)" + +#~ msgid "Ignoring departEdge % for vehicle '% with % route edges" +#~ msgstr "忽略出發路段(departEdge) %,其發生在車輛 '%' 的 % 路徑路段" + +#~ msgid "" +#~ "Vehicle '%' collision with person '%', lane='%', gap=%, time=%, stage=%." +#~ msgstr "車輛 '%' 與人 '%' 發生碰撞,車道='%',間距=%,時間=%,階段=%。" + +#~ msgid "Vehicle '%' collision with person '%', lane='%', time=%, stage=%." +#~ msgstr "車輛 '%' 與人 '%' 發生碰撞,車道='%',時間=%,階段=%。" + +#~ msgid "Invalid collision.action '%'." +#~ msgstr "無效的 碰撞.動作(collision.action) '%'。" + +#~ msgid "" +#~ "Specifies which measures will be logged (as a space or comma-separated " +#~ "sequence of IDs in ('TTC', 'DRAC', 'PET'))" +#~ msgstr "" +#~ "指定將記錄哪些指標值(在('TTC', 'DRAC', 'PET')中作為以空格或逗號分隔的識別" +#~ "名(ID)序列)" + +#, c-format +#~ msgid "Edge '% is not unique." +#~ msgstr "路段 '%' 不是唯一的。" + #~ msgid "Driver State Device" #~ msgstr "駕駛者狀態裝置" diff -Nru sumo-1.17.0/data/po/zh_py.po sumo-1.18.0/data/po/zh_py.po --- sumo-1.17.0/data/po/zh_py.po 1970-01-01 00:00:00.000000000 +0000 +++ sumo-1.18.0/data/po/zh_py.po 2023-06-28 20:02:17.000000000 +0000 @@ -0,0 +1,136 @@ +# Chinese translations for sumo package. +# Copyright (C) 2023 THE sumo'S COPYRIGHT HOLDER +# This file is distributed under the same license as the sumo package. +# Automatically generated, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: sumo\n" +"Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" +"POT-Creation-Date: 2023-05-26 14:09+0200\n" +"PO-Revision-Date: 2023-05-25 07:25+0000\n" +"Last-Translator: yunpangfloetteroed \n" +"Language-Team: Chinese (Simplified) \n" +"Language: zh\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.18-dev\n" + +#: D:\Repos\sumo/tools/game\runner.py:63 +msgid "Interactive Traffic Light" +msgstr "交互式交通灯" + +#: D:\Repos\sumo/tools/game\runner.py:64 +msgid "Research intersection Ingolstadt" +msgstr "因戈尔施塔特市(Ingolstadt)內的研究交叉点" + +#: D:\Repos\sumo/tools/game\runner.py:65 +msgid "Simple Junction" +msgstr "简单路口" + +#: D:\Repos\sumo/tools/game\runner.py:66 +msgid "Simple Junction (Demo)" +msgstr "简单路口(演示)" + +#: D:\Repos\sumo/tools/game\runner.py:67 +msgid "Four Junctions" +msgstr "四个路口" + +#: D:\Repos\sumo/tools/game\runner.py:68 +msgid "Six Junctions" +msgstr "六个路口" + +#: D:\Repos\sumo/tools/game\runner.py:69 +msgid "Prof. Kühne" +msgstr "屈內(Kühne)教授" + +#: D:\Repos\sumo/tools/game\runner.py:70 +msgid "3D Junction Virtual World" +msgstr "三維路口虚拟世界" + +#: D:\Repos\sumo/tools/game\runner.py:71 +msgid "3D Junction OpenStreetMap" +msgstr "三維路口開放地图(OpenStreetMap)" + +#: D:\Repos\sumo/tools/game\runner.py:72 +msgid "Highway Ramp" +msgstr "高速公路匝道" + +#: D:\Repos\sumo/tools/game\runner.py:73 +msgid "Combined Highway On and Off Ramp" +msgstr "合併的高速公路进出匝道" + +#: D:\Repos\sumo/tools/game\runner.py:74 +msgid "Corridor" +msgstr "走廊" + +#: D:\Repos\sumo/tools/game\runner.py:75 +msgid "Highway Ramp A10" +msgstr "高速公路匝道 A10" + +#: D:\Repos\sumo/tools/game\runner.py:76 +msgid "Demand Responsive Transport (new)" +msgstr "需求响应运输(新)" + +#: D:\Repos\sumo/tools/game\runner.py:77 +msgid "DRT - Advanced (new)" +msgstr "需求响应运输(DRT) - 進階(新)" + +#: D:\Repos\sumo/tools/game\runner.py:78 +msgid "DRT - Demo" +msgstr "需求响应运输(DRT) - 演示" + +#: D:\Repos\sumo/tools/game\runner.py:79 D:\Repos\sumo/tools/game\runner.py:89 +msgid "Highscore" +msgstr "排行榜" + +#: D:\Repos\sumo/tools/game\runner.py:80 +msgid "Reset Highscore" +msgstr "重置排行榜" + +#: D:\Repos\sumo/tools/game\runner.py:81 +msgid "German" +msgstr "德语" + +#: D:\Repos\sumo/tools/game\runner.py:82 +msgid "English" +msgstr "英语" + +#: D:\Repos\sumo/tools/game\runner.py:83 +msgid "Italian" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:84 +msgid "Spanish" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:85 +msgid "French" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:86 +msgid "Chinese (simplified)" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:87 +msgid "Chinese (traditional)" +msgstr "" + +#: D:\Repos\sumo/tools/game\runner.py:88 +msgid "Quit" +msgstr "退出" + +#: D:\Repos\sumo/tools/game\runner.py:90 +msgid "Congratulations!" +msgstr "恭喜!" + +#: D:\Repos\sumo/tools/game\runner.py:91 +msgid "Your Score" +msgstr "您的分数" + +#: D:\Repos\sumo/tools/game\runner.py:92 +msgid "Continue" +msgstr "继续" diff -Nru sumo-1.17.0/data/po/zh_sumo.po sumo-1.18.0/data/po/zh_sumo.po --- sumo-1.17.0/data/po/zh_sumo.po 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/po/zh_sumo.po 2023-06-28 20:02:17.000000000 +0000 @@ -7,9 +7,9 @@ msgstr "" "Project-Id-Version: sumo\n" "Report-Msgid-Bugs-To: sumo-dev@eclipse.org\n" -"POT-Creation-Date: 2023-04-15 12:21+0200\n" -"PO-Revision-Date: 2023-04-24 13:17+0000\n" -"Last-Translator: yunpangfloetteroed \n" +"POT-Creation-Date: 2023-06-15 09:59+0200\n" +"PO-Revision-Date: 2023-06-07 08:30+0000\n" +"Last-Translator: Xiaoxu Bei \n" "Language-Team: Chinese (Simplified) \n" "Language: zh\n" @@ -19,407 +19,409 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.18-dev\n" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:46 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:46 msgid "Reading input" msgstr "正在读取数据输入" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:54 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:54 msgid "Consolidating statistics" msgstr "正在合并统计" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:58 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:58 msgid "Building street representation" msgstr "正在搭建街道显示" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:62 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:62 msgid "Generating work positions" msgstr "正在生成工作场所" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:66 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:66 msgid "Building bus lines" msgstr "正在搭建公交路线" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:71 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:71 msgid "Generating population" msgstr "正在生成人口数据" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:75 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:75 msgid "Allocating schools" msgstr "正在分配学校" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:79 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:79 msgid "Allocating work places" msgstr "正在分配工作场所" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGen.cpp:83 +#: D:\Repos\sumo/src\activitygen\AGActivityGen.cpp:83 msgid "Allocating car places" msgstr "正在分配车位" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGenHandler.cpp:178 +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:174 +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:181 +msgid "Invalid % value of edge % is treated as zero." +msgstr "" + +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:186 #, c-format msgid "Edge '%' is not known." msgstr "边缘 '%' i 未知。" -#: /home/micha/programming/sumo/src/activitygen/AGActivityGenHandler.cpp:329 +#: D:\Repos\sumo/src\activitygen\AGActivityGenHandler.cpp:337 msgid "Unknown bus station '%'." msgstr "未知公交车站'%'。" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:61 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:61 msgid "Use FILE as SUMO-network to create trips for" msgstr "使用FILE作为SUMO网络,以创建行程,用于" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:64 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:64 msgid "Loads the SUMO-statistics FILE" msgstr "加载SUMO统计文件" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:72 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:72 msgid "Write generated trips to FILE" msgstr "将生成的行程写入文件" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:81 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:81 msgid "" "Sets the time of beginning of the simulation during the first day (in " "seconds)" msgstr "设置第一天模拟的开始时间(以秒为单位)" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:84 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:84 msgid "" "Sets the time of ending of the simulation during the last day (in seconds)" msgstr "设置最后一天模拟的结束时间(以秒为单位)" -#: /home/micha/programming/sumo/src/activitygen/AGFrame.cpp:87 +#: D:\Repos\sumo/src\activitygen\AGFrame.cpp:87 msgid "Sets the duration of the simulation in days" msgstr "设置模拟的持续时间(以天为单位)" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:64 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:111 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:64 +#: D:\Repos\sumo/src\router\ROLoader.cpp:111 msgid "Missing definition of network to load!" msgstr "缺少要加载的网络定义!" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:67 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:67 #, c-format msgid "The network file '%' could not be accessed." msgstr "无法访问网络文件“%' c”。" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:69 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:116 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:69 +#: D:\Repos\sumo/src\router\ROLoader.cpp:116 msgid "Loading net" msgstr "加载网络" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:79 -#: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:227 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:133 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:79 +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:227 +#: D:\Repos\sumo/src\router\ROLoader.cpp:133 #, c-format msgid "Deprecated vehicle classes '%' in input network." msgstr "输入网络中的废弃车辆类 '%'。" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:89 +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:89 msgid "" "Generates trips of persons throughout a day for the microscopic, multi-modal " "traffic simulation SUMO." msgstr "为微观、多模态的交通仿真软件SUMO生成全天的人员行程。" -#: /home/micha/programming/sumo/src/activitygen/activitygen_main.cpp:113 -#, fuzzy, c-format +#: D:\Repos\sumo/src\activitygen\activitygen_main.cpp:113 +#, c-format msgid "Loaded % edges." -msgstr "已加载 % edges。" +msgstr "已载入 %路段。" -#: /home/micha/programming/sumo/src/activitygen/city/AGCity.cpp:427 +#: D:\Repos\sumo/src\activitygen\city\AGCity.cpp:425 msgid "No street that allows passenger vehicles found in this city." msgstr "在该城市未发现允许客运车辆通行的街道。" -#: /home/micha/programming/sumo/src/activitygen/city/AGWorkPosition.cpp:126 +#: D:\Repos\sumo/src\activitygen\city\AGWorkPosition.cpp:126 msgid "Work position already occupied. Cannot give it to another adult." msgstr "工作场所已占用,无法提供给另一位成年人。" -#: /home/micha/programming/sumo/src/dfrouter/RODFDetFlowLoader.cpp:76 +#: D:\Repos\sumo/src\dfrouter\RODFDetFlowLoader.cpp:76 msgid "At least one value lies beyond given time boundaries." msgstr "至少有一个值超出了给定的时间界限。" -#: /home/micha/programming/sumo/src/dfrouter/RODFDetFlowLoader.cpp:104 -#, fuzzy +#: D:\Repos\sumo/src\dfrouter\RODFDetFlowLoader.cpp:104 msgid "At least one line does not contain the correct number of columns." -msgstr "至少有一行未包含正确的一列数字" +msgstr "至少有一列包含正确的一行数字(number of columns)。" -#: /home/micha/programming/sumo/src/dfrouter/RODFDetector.cpp:171 +#: D:\Repos\sumo/src\dfrouter\RODFDetector.cpp:171 msgid "Missing routes for detector '%'." msgstr "缺少装有检测器“%”的路线。" -#: /home/micha/programming/sumo/src/dfrouter/RODFDetector.cpp:305 +#: D:\Repos\sumo/src\dfrouter\RODFDetector.cpp:305 #, c-format msgid "Detector '%' has no routes!?" msgstr "检测器'%'没有路线!?" -#: /home/micha/programming/sumo/src/dfrouter/RODFDetectorHandler.cpp:86 +#: D:\Repos\sumo/src\dfrouter\RODFDetectorHandler.cpp:86 msgid "Could not add detector '%' (probably the id is already used)." msgstr "无法添加检测器“%”(可能 id 已被使用)。" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:61 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:61 msgid "Loads the SUMO-network FILE" msgstr "加载 SUMO 网络文件" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:70 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:70 msgid "Loads detector descriptions from FILE" msgstr "从文件中加载检测器描述" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:75 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:75 msgid "Loads detector flows from FILE(s)" msgstr "从文件中加载检测器贯流" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:82 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:82 msgid "Saves computed routes to FILE" msgstr "将计算出的路程保存到 FILE中" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:85 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:85 msgid "Forces dfrouter to compute routes for in-between detectors" msgstr "强制 dfrouter 计算中间检测器的路程" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:89 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:89 msgid "Saves typed detectors to FILE" msgstr "将输入的检测器保存到FILE中" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:92 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:92 msgid "Saves detector positions as pois to FILE" msgstr "将检测器位置保存为pois并添加至FILE" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:95 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:95 msgid "Saves emitter definitions for source detectors to FILE" msgstr "将源检测器的发射器定义保存到 FILE中" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:98 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:98 msgid "Add vehicle types to the emitters file (PKW, LKW)" msgstr "将车辆类型添加到发射器文件(PKW、LKW)中" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:101 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:101 msgid "" "Write generated vehicle types into separate FILE instead of including them " "into the emitters-output" msgstr "将生成的车辆类型写入单独的 FILE 中,而不是将其添加至发射器输出" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:104 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:104 msgid "Saves emitter positions as pois to FILE" msgstr "将发射器位置保存为 pois 并添加至FILE" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:108 -#, fuzzy +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:108 msgid "Saves variable seed sign definitions for sink detectors to FILE" -msgstr "将下沉检测器的变量种子符号定义保存至 FILE" +msgstr "将起点探测器(sink detectors)的可变速度标志定义存储于文件中" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:111 -#, fuzzy +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:111 msgid "Saves rerouter definitions for sink detectors to FILE" -msgstr "将下沉检测器的重发器定义保存到 FILE" +msgstr "將起点探测器(sink detectors)的改道装置(rerouter)定义存储于文件中" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:114 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:114 msgid "" "Write induction loop definitions for the given detector positions to FILE" msgstr "将给定检测器位置的感应线圈定义写进FILE中" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:117 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:117 msgid "Add source detectors to the validation output" msgstr "将源检测器添加至验证输出" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:123 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:123 msgid "Derive missing flow values from upstream or downstream (not working!)" msgstr "从上游或下游推导出缺失的流量值(不工作!)" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:127 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:127 msgid "Switches to highway-mode" msgstr "切换到高速公路模式" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:131 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:131 msgid "Only warn about unparseable detectors" msgstr "只对无法解析的检测器发出警告" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:135 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:135 msgid "Recomputes detector types even if given" msgstr "重新计算检测器类型,即使给定" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:139 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:139 msgid "Recomputes routes even if given" msgstr "重新计算路线,即使给定" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:143 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:143 msgid "Keeps routes even if they have exhausted max-search-depth" msgstr "保持路线,即使它们已经用尽了最大搜索深度" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:146 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:146 msgid "Keeps routes even if a shorter one exists" msgstr "即使有更短的路线存在,也要保留" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:150 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:150 msgid "Number of edges to follow a route without passing a detector" msgstr "在不通过检测器的情况下遵循一条路径的路段的数量" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:153 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:153 msgid "Writes only emission times" msgstr "只写排放时间" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:156 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:156 msgid "Do not route on these edges" msgstr "不要在这些路段上布路径" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:159 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:159 msgid "Only route on edges allowing the given vclass" msgstr "只在允许给定vclass的路段上布路径" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:162 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:162 msgid "Allow turnarounds as route continuations" msgstr "允许掉头作为路径的延续" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:167 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:167 msgid "Minimum distance in meters between start and end node of every route" msgstr "每条路线的起点和终点节点之间的最小距离(米)" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:170 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:170 msgid "generate random departure times for emitted vehicles" msgstr "为排放的车辆生成随机的出发时间" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:174 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:174 msgid "Multiply flow times with TIME to get seconds" msgstr "将流量倍数与时间相乘,得到秒数" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:177 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:177 msgid "Subtracts TIME seconds from (scaled) flow times" msgstr "从(按比例)车流时间中减去时间秒数" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:180 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:180 msgid "Expected distance between two successive data sets" msgstr "两个连续的数据集之间的预期距离" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:185 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:185 msgid "Write calibrators to FILE" msgstr "将校准器写入文件(FILE)中" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:188 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:188 msgid "Include routes in the output which have no vehicles" msgstr "在输出中包括没有车辆的路径" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:192 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:192 msgid "" "Checks whether detectors with calculated flow 0 can attract additional " "traffic" msgstr "检查计算流量为0的检测器是否能吸引额外的流量" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:195 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:195 msgid "Removes empty detectors from the list" msgstr "从列表中删除空的检测器" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:198 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:198 msgid "" "Whether edges with unknown status can prevent an edge from becoming a source" msgstr "状态未知的路段是否能阻止一个路段成为一个来源" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:201 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:201 msgid "" "Try to determine further inflows to an inbetween detector when computing " "split probabilities" msgstr "在计算分裂概率时,尝试确定进一步流入一个中间探测器的流量" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:205 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:205 msgid "Scale factor for flows" msgstr "流量的比例系数" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:209 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:123 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:167 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:199 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:209 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:123 +#: D:\Repos\sumo/src\od2trips_main.cpp:167 +#: D:\Repos\sumo/src\router\ROFrame.cpp:199 msgid "Assigns a default depart lane" msgstr "指派一个默认的出发车道" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:212 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:127 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:170 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:202 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:212 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:127 +#: D:\Repos\sumo/src\od2trips_main.cpp:170 +#: D:\Repos\sumo/src\router\ROFrame.cpp:202 msgid "Assigns a default depart position" msgstr "指定一个默认的出发点位置" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:215 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:131 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:173 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:205 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:215 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:131 +#: D:\Repos\sumo/src\od2trips_main.cpp:173 +#: D:\Repos\sumo/src\router\ROFrame.cpp:205 msgid "Assigns a default depart speed" msgstr "指定一个默认的出发速度" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:218 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:135 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:176 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:208 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:218 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:135 +#: D:\Repos\sumo/src\od2trips_main.cpp:176 +#: D:\Repos\sumo/src\router\ROFrame.cpp:208 msgid "Assigns a default arrival lane" msgstr "指定一个默认的到达车道" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:221 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:139 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:179 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:211 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:221 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:139 +#: D:\Repos\sumo/src\od2trips_main.cpp:179 +#: D:\Repos\sumo/src\router\ROFrame.cpp:211 msgid "Assigns a default arrival position" msgstr "指定一个默认的到达位置" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:224 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:143 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:182 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:214 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:224 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:143 +#: D:\Repos\sumo/src\od2trips_main.cpp:182 +#: D:\Repos\sumo/src\router\ROFrame.cpp:214 msgid "Assigns a default arrival speed" msgstr "指定一个默认的到达速度" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:227 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:227 msgid "The default speed deviation of vehicles" msgstr "车辆的默认速度偏差" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:231 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:231 msgid "Defines the begin time; Previous defs will be discarded" msgstr "定义了开始时间;以前的定义将被丢弃" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:234 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:234 msgid "Defines the end time; Later defs will be discarded; Defaults to one day" msgstr "定义结束时间;以后的定义将被丢弃;默认为一天" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:239 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:239 msgid "Lists detectors with no flow (enable -v)" msgstr "列出没有流量的检测器(启用-v)" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:242 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:242 msgid "Prints aggregated detector flows" msgstr "打印汇总的检测器流量" -#: /home/micha/programming/sumo/src/dfrouter/RODFFrame.cpp:246 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:225 +#: D:\Repos\sumo/src\dfrouter\RODFFrame.cpp:246 +#: D:\Repos\sumo/src\router\ROFrame.cpp:225 msgid "Disable console output of route parsing step" msgstr "禁用路径解析步骤的控制台输出" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:113 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:113 msgid "Computing detector types" msgstr "计算检测器类型" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:142 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:142 msgid "Computed detector types:" msgstr "计算出的探测器类型:" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:143 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:143 #, c-format msgid " % source detectors" -msgstr " % 源检测器" +msgstr " % 起点探测器(source detectors)" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:144 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:144 #, c-format msgid " % sink detectors" msgstr " % 汇检测器" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:145 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:145 #, c-format msgid " % in-between detectors" msgstr " % 探测器之间" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:146 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:146 #, c-format msgid " % invalid detectors" msgstr " % 无效检测器" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:281 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:281 msgid "Could not close route for '%'" msgstr "无法关闭'%'的路径" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:439 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:439 #, c-format msgid "" "Detector '%' has no flows.\n" @@ -428,362 +430,362 @@ "探测器'%'没有流量。\n" " 试图重建。" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:467 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:467 msgid " Could not build list of previous flows." msgstr " 无法建立以前的流量列表。" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:504 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:504 msgid " Could not build list of latter flows." msgstr " 无法建立后面的流量清单。" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:591 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:591 msgid "Removed detector '%' because no flows for him exist." msgstr "删除了检测器'%',因为不存在它的流量。" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:614 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:614 #, c-format msgid "Detector '%' has no flow." msgstr "探测器'%'没有流量。" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:693 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:693 #, c-format msgid "" "Quitting checking for being a source for detector '%' due to seen edge limit." msgstr "由于看到路段限制,停止检查是否是检测器'%'的来源。" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:793 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:793 #, c-format msgid "" "Quitting checking for being a destination for detector '%' due to seen edge " "limit." msgstr "由于看到路段限制,停止检查是否是检测器'%'的目的地。" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:869 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:869 #, c-format msgid "" "Quitting checking for being a false source for detector '%' due to seen edge " "limit." msgstr "由于看到路段限制,停止检查检测器'%'是否为虚假来源。" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:1002 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:1002 msgid "Average speedFactor for PKW is % maximum speedFactor is %." msgstr "小汽车(PKW)的平均速度因子为%,最大速度因子为%。" -#: /home/micha/programming/sumo/src/dfrouter/RODFNet.cpp:1006 +#: D:\Repos\sumo/src\dfrouter\RODFNet.cpp:1006 msgid "Average speedFactor for LKW is % maximum speedFactor is %." msgstr "载重车(LKW)的平均速度因子为%,最大速度因子为%。" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:70 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:70 msgid "No detector file given (use --detector-files )." msgstr "没有给出检测器文件(使用-检测器-文件)。" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:76 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:76 msgid "Could not open detector file '%'" msgstr "无法打开检测器文件'%'" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:88 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:88 msgid "No detectors found." msgstr "没有发现检测器。" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:103 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:103 #, c-format msgid "The measure-file '%' can not be opened." msgstr "措施文件'%'无法打开。" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:124 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:124 msgid "Removing empty detectors" msgstr "移除空的检测器" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:128 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:128 msgid "Scanning for empty detectors" msgstr "扫描空检测器" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:143 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:143 msgid "No source detectors found." msgstr "没有发现源探测器。" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:147 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:147 msgid "Computing routes" msgstr "计算路径" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:158 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:158 msgid "The detector types are not defined; use in combination with a network" msgstr "探测器的类型没有定义;与网络结合使用" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:162 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:162 msgid "The emitters have no routes; use in combination with a network" -msgstr "发射器没有路径;与网络结合使用。" +msgstr "车辆(emitters)沒有路径; 与路网合并使用" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:193 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:193 msgid "Rechecking loaded flows" msgstr "重新检查加载的流量" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:198 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:198 msgid "Writing emitters" msgstr "写入发射器" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:210 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:210 msgid "Writing emitter pois" msgstr "写作排放物的pois" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:217 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:217 msgid "Writing speed triggers" msgstr "写入速度触发器" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:224 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:224 msgid "Writing validation detectors" msgstr "编写验证性检测器" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:231 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:231 msgid "Writing highway end rerouter" msgstr "编写高速终点站的重定向器" -#: /home/micha/programming/sumo/src/dfrouter/dfrouter_main.cpp:251 +#: D:\Repos\sumo/src\dfrouter\dfrouter_main.cpp:251 msgid "Builds vehicle routes for SUMO using detector values." msgstr "使用检测器值为SUMO建立车辆路径。" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:69 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:69 msgid "Write generated route alternatives to FILE" msgstr "将生成的路径备选方案写到文件(FILE)中" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:72 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:72 msgid "Write edge splits and connectivity to FILE" msgstr "将路段分割和连接写入文件(FILE)中" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:75 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:75 msgid "Write intermodal edges with lengths and travel times to FILE" msgstr "将带有长度和旅行时间的多式联运路段写入文件(FILE)中" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:78 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:78 msgid "Write trips instead of vehicles (for validating trip input)" msgstr "写下行程而不是车辆(用于验证行程输入)" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:81 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:81 msgid "Write trips with geo-coordinates" msgstr "用地理坐标写行程" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:84 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:84 msgid "Write trips with fromJunction and toJunction" msgstr "用地理坐标写行程" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:87 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:87 msgid "Include the cost attribute in route output" msgstr "在路径输出中包括成本属性" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:92 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:559 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:92 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:565 msgid "" "Edge weights for routing are dynamically disturbed by a random factor drawn " "uniformly from [1,FLOAT)" msgstr "用于路径的路段权重由一个从[1,FLOAT]中均匀抽取的随机因子动态扰动" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:95 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:118 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:95 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:118 msgid "" "Aggregation period for the given weight files; triggers rebuilding of " "Contraction Hierarchy" msgstr "给定权重文件的聚集期;触发重建收缩层次结构" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:98 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:112 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:568 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:98 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:112 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:574 msgid "" "Consider edge priorities in addition to travel times, weighted by factor" msgstr "除考虑旅行时间外,还考虑路段的优先次序,按系数加权计算" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:101 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:574 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:101 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:580 msgid "" "Initialize lookup table for astar from the given file (generated by marouter " "--all-pairs-output)" msgstr "从给定的文件(由marouter --all-pairs-output生成)初始化astar的查询表" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:104 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:577 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:104 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:583 msgid "Initialize lookup table for astar ALT-variant from the given file" msgstr "从给定文件中初始化astar ALT-variant的查找表" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:107 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:107 msgid "Save lookup table for astar ALT-variant to the given file" -msgstr "将astar ALT-variant的查询表保存到给定的文件中。" +msgstr "將astar ALT-variant路径搜寻法的查找表存储于指定的文件" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:117 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:206 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:117 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:206 msgid "Use FLOAT as Gawron's beta" msgstr "使用FLOAT作为Gawron的测试版" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:121 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:210 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:121 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:210 msgid "Use FLOAT as Gawron's a" msgstr "使用FLOAT作为Gawron的一个" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:124 -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:62 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:213 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:124 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:62 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:213 msgid "Write exit times (weights) for each edge" msgstr "写录每条路段的退出时间(权重)" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:127 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:251 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:127 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:251 msgid "Include total route length in the output" msgstr "在输出中包括路径的总长度" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:130 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:216 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:130 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:216 msgid "Save routes with near zero probability" msgstr "以接近零的概率保存路径" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:133 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:219 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:133 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:219 msgid "Only reuse routes from input, do not calculate new ones" msgstr "只重复使用输入的路径,不计算新的路径" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:136 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:136 msgid "The probability of keeping the old route" msgstr "保留旧路径的概率" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:139 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:139 msgid "Route all public transport input" msgstr "为所有的公共交通输入提供路径" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:142 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:202 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:142 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:202 msgid "Choose a route choice method: gawron, logit, or lohse" msgstr "选择一种路径选择方法:Gawron, logit, 或Lohse" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:145 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:145 msgid "Use c-logit model (deprecated in favor of --route-choice-method logit)" msgstr "使用c-logit模型(已废弃,改用--路径选择法logit)" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:149 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:149 msgid "Use FLOAT as logit's beta" msgstr "使用FLOAT作为logit的beta值" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:153 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:153 msgid "Use FLOAT as logit's gamma" msgstr "使用FLOAT作为Logit的gamma值" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:157 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:157 msgid "Use FLOAT as logit's theta (negative values mean auto-estimation)" msgstr "使用FLOAT作为Logit的theta(负值意味着自动估计)" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:160 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:580 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:160 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:586 msgid "" "Use FLOAT as a factor on pedestrian maximum speed during intermodal routing" msgstr "在多式联运路线中,将FLOAT作为行人最高速度的一个因素" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:163 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:583 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:163 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:589 msgid "" "Use FLOAT as a factor on walking speed against vehicle traffic direction" msgstr "使用FLOAT作为步行速度的一个因素,与车辆交通方向相对" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:170 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:590 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:170 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:596 msgid "Where taxis can drop off customers ('allJunctions, 'ptStops')" msgstr "出租车可以让顾客下车的地方('allJunctions, 'ptStops')" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:173 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:593 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:173 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:599 msgid "Where taxis can pick up customers ('allJunctions, 'ptStops')" msgstr "出租车可以接客的地方('allJunctions, 'ptStops')" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:176 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:599 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:176 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:605 msgid "Estimated time for taxi pickup" msgstr "出租车接人的预计时间" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:179 -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:602 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:179 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:608 msgid "" "Use FLOAT as a maximum train length when initializing the railway router" msgstr "在初始化铁路路径器时,使用FLOAT作为最大列车长度" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:216 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:216 msgid "Routing algorithm '%' does not support weight-attribute '%'." msgstr "寻路径算法'%'不支持权重属性'%'。" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:220 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:220 #, c-format msgid "Routing algorithm '%' does not support bulk routing." msgstr "寻路径算法'%'不支持批量路径。" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:228 -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:243 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:228 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:243 msgid "Invalid route choice method '%'." msgstr "无效的路径选择方法'%'。" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:232 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:232 msgid "" "The --logit option is deprecated, please use --route-choice-method logit." msgstr "--logit选项已被弃用,请使用--路径选择法logit。" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:244 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:244 msgid "Cannot derive file name for alternatives output, skipping it." msgstr "无法得出替代输出的文件名,跳过它。" -#: /home/micha/programming/sumo/src/duarouter/RODUAFrame.cpp:251 +#: D:\Repos\sumo/src\duarouter\RODUAFrame.cpp:251 msgid "" "Option --write-trips.junctions takes no affect when --write-trips is " "disabled." msgstr "当-写行程(write-trips)被禁用时,选项-write-trips.junctions没有影响。" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:107 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:107 #, c-format msgid "Routing algorithm '%' does not support restriction-params" msgstr "路径算法'%'不支持限制性参数" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:151 -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:180 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:151 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:180 msgid "Unknown routing Algorithm '%'!" msgstr "未知的路径算法'%'!" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:178 -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:210 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:178 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:210 msgid "No weight data was loaded for attribute '%'." msgstr "没有加载属性'%'的权重数据。" -#: /home/micha/programming/sumo/src/duarouter/duarouter_main.cpp:238 +#: D:\Repos\sumo/src\duarouter\duarouter_main.cpp:238 msgid "" "Shortest path router and DUE computer for the microscopic, multi-modal " "traffic simulation SUMO." msgstr "最短途径路径和DUE计算机用于微观、多模式交通仿真SUMO。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTREdge.cpp:64 +#: D:\Repos\sumo/src\jtrrouter\ROJTREdge.cpp:64 #, c-format msgid "The edges '%' and '%' are not connected." msgstr "路段'%'和'%'不相连。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:59 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:59 msgid "Read turning ratios from FILE(s)" msgstr "从文件中读取转弯比率" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:69 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:69 msgid "Use STR[] as default turn definition" msgstr "使用STR[]作为默认的转向定义" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:73 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:73 msgid "Use STR[] as list of sink edges" msgstr "使用STR[]作为汇路段的列表" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:76 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:76 msgid "Whether all edges are allowed as sink edges" msgstr "是否允许所有的路段作为汇路段" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:79 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:79 msgid "Ignore road restrictions based on vehicle class" msgstr "忽略基于车辆类别的道路限制" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:82 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:82 msgid "Allow to re-use a road" msgstr "允许重新使用一条道路" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:85 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:85 msgid "Use all source edges as sink edges." msgstr "将所有的源路段作为汇路段。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRFrame.cpp:88 +#: D:\Repos\sumo/src\jtrrouter\ROJTRFrame.cpp:88 msgid "" "Subtract upstream flow when inserting a new flow. When option --sources-are-" "sinks is set, the upstream flow is limited to the value of the source flow " @@ -792,74 +794,74 @@ "在插入一个新的流量时减去上游流量。当选项--sources-are-sinks被设置时,上游流量" "被限制为源流量的值,其余部分终止。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:68 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:68 msgid "" "The turn-file format with elements %, % is deprecated, please use % instead." msgstr "带有%、%元素的turn-file格式已被废弃,请使用%代替。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:87 -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:143 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:87 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:143 #, c-format msgid "The edge '%' declared as a sink is not known." msgstr "宣布为汇路段'%'不知道是什么。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:116 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:116 msgid "Ignoring flow '%' without 'from'" msgstr "忽略没有 \"来自 \"的流量'%'" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:128 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:128 #, c-format msgid "The edge '%' declared as a source is not known." msgstr "宣布为来源的路段'%'不知道。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:152 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:152 #, c-format msgid "" "The edge '%' is not known within the network (within a 'from-edge' tag)." msgstr "路段'%'在网络中不为人知(在'从-路段'标签内)。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:172 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:172 #, c-format msgid "The edge '%' is not known within the network (within a 'to-edge' tag)." msgstr "路段'%'在网络中不为人知(在'to-edge'标签内)。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:178 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:178 msgid "'probability' must be positive (in definition of to-edge '%')." msgstr "'概率'必须是正数(在to-edge'%'的定义中)。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:201 -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:206 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1302 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1400 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:201 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:206 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1302 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1400 #, c-format msgid "The edge '%' is not known." msgstr "路段'%'是不知道的。" -#: /home/micha/programming/sumo/src/jtrrouter/ROJTRTurnDefLoader.cpp:210 +#: D:\Repos\sumo/src\jtrrouter\ROJTRTurnDefLoader.cpp:210 msgid "'probability' must be positive (in edgeRelation from '%' to '%'." msgstr "'概率'必须是正数(在路段关系(edgeRelation)中从'%'到'%'。" -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:94 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:94 msgid "" "The defaults for turnings must be a tuple of at least two numbers divided by " "','." msgstr "匝数的默认值必须是一个至少由两个数字除以','的元组。" -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:101 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:101 msgid "A turn default is not numeric." msgstr "转弯的默认值不是数字。" -#: /home/micha/programming/sumo/src/jtrrouter/jtrrouter_main.cpp:182 +#: D:\Repos\sumo/src\jtrrouter\jtrrouter_main.cpp:182 msgid "" "Router for the microscopic, multi-modal traffic simulation SUMO based on " "junction turning ratios." msgstr "基于路口转弯率的微观、多模式交通仿真SUMO的路径器。" -#: /home/micha/programming/sumo/src/libsumo/GUI.cpp:330 +#: D:\Repos\sumo/src\libsumo\GUI.cpp:332 msgid "This system has no OpenGL support. Exiting." msgstr "该系统不支持OpenGL。退出。" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:904 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:904 #, c-format msgid "" "Ignoring veh '%' no-opposite subscription filter for geographic range object " @@ -867,796 +869,790 @@ msgstr "" "忽略车辆'%'无对立的订阅过滤器,用于地理范围对象的收集。考虑使用'车道'过滤器。" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1067 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1067 msgid "" "Lanes filter is only feasible for context domain 'vehicle' (current is '%'), " "ignoring filter..." msgstr "车道过滤器只对上下文域 \"车辆 \"可行(目前是\"%\"),忽略了过滤器..." -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1164 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1164 msgid "" "Turn filter is only feasible for context domain 'vehicle' (current is '%'), " "ignoring filter..." msgstr "转向过滤器只对上下文域 \"车辆 \"可行(目前是\"%\"),忽略过滤器..." -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1229 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1229 msgid "" "Field of vision opening angle ('%') should be within interval (0, 360), " "ignoring filter..." msgstr "视野开放角度('%')应在区间(0,360)内,忽略过滤器。" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1341 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1341 msgid "" "addSubscriptionFilterLateralDistance could not determine shape of lane '%' " "with a lateral shift of %." msgstr "" "addSubscriptionFilterLateralDistance无法确定车道'%'的形状,横向移动为%。" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1399 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1399 msgid "Vehicle '%' was removed though being controlled by TraCI" -msgstr "车辆'%'被移除,但被TraCI控制。" +msgstr "'%' 车辆受交通控制界面(TraCI)的控制而被移除" -#: /home/micha/programming/sumo/src/libsumo/Helper.cpp:1408 +#: D:\Repos\sumo/src\libsumo\Helper.cpp:1408 msgid "Person '%' was removed though being controlled by TraCI" -msgstr "虽然被TraCI控制,但'%'的人被删除了。" +msgstr "'%' 人员受交通控制界面(TraCI)的控制而被移除" -#: /home/micha/programming/sumo/src/libsumo/MeanData.cpp:83 +#: D:\Repos\sumo/src\libsumo\MeanData.cpp:83 msgid "Found % meanData definitions with id '%'." msgstr "找到id为'%'的% meanData定义。" -#: /home/micha/programming/sumo/src/libsumo/Person.cpp:530 +#: D:\Repos\sumo/src\libsumo\Person.cpp:535 #, c-format msgid "" "Departure time=% for person '%' is in the past; using current time=% instead." msgstr "人'%'的出发时间=%是过去的;用当前时间=%代替。" -#: /home/micha/programming/sumo/src/libsumo/Person.cpp:929 -msgid "Could not determine position on lane '% at lateral position %." -msgstr "无法确定车道上的位置'%在横向位置%。" +#: D:\Repos\sumo/src\libsumo\Person.cpp:934 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1741 +msgid "Could not determine position on lane '%' at lateral position %." +msgstr "无法确定横向位置%的车道'%'上的位置。" -#: /home/micha/programming/sumo/src/libsumo/Simulation.cpp:105 +#: D:\Repos\sumo/src\libsumo\Simulation.cpp:105 msgid "Simulation version % started via libsumo with time: %." msgstr "仿真版本 % 通过 libsumo 启动,时间: %。" -#: /home/micha/programming/sumo/src/libsumo/Simulation.cpp:699 +#: D:\Repos\sumo/src\libsumo\Simulation.cpp:699 msgid "" "Ignoring vehicle type '%' when performing intermodal routing because it is " "not allowed on the start edge '%'." msgstr "" "在执行多式联运路径时,忽略了车辆类型'%',因为它不允许出现在起始路段'%'。" -#: /home/micha/programming/sumo/src/libsumo/TrafficLight.cpp:697 +#: D:\Repos\sumo/src\libsumo\TrafficLight.cpp:697 #, c-format msgid "" "Cannot check for all deadlocks on swapConstraints because the route for " "vehicle '%' is not computed yet" -msgstr "不能检查swapConstraints的所有死锁,因为车辆'%'的路径还没有被计算出来。" +msgstr "" +"由于车辆 '%' 的路径尚未计算,所以无法检查在swapConstraintsg上所有的交通死结" +"(deadlocks)" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1122 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1133 msgid "" "Stop replacement parameter 'teleport=%' ignored for vehicle '%' when only " "removing stop." msgstr "当只删除停车时,对车辆'%'的停车替换参数'teleport=%'被忽略。" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1231 -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1354 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1246 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1374 msgid "Unsupported parameter '%'" msgstr "不支持的参数'%'" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1306 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1326 msgid "Waypoint (speed = %) at index % does not support triggers" msgstr "索引%的行驶点(速度=%)不支持触发器" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1340 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1360 msgid "" "Triggered stop at index % cannot be changed into a waypoint by setting speed " "to %" msgstr "索引%处的触发式停靠不能通过设置速度为%来改变为一个行驶点" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1457 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1477 #, c-format msgid "Ignoring changeLaneRelative for vehicle '%' that isn't on the road" msgstr "忽略不在路上的车辆'%'的换车道关系(changeLaneRelative)" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1459 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1479 msgid "Ignoring indexOffset % for vehicle '%' on laneIndex %." msgstr "忽略车道索引 %上的车辆'%'的索引偏移(indexOffset) %。" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1551 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1575 #, c-format msgid "" "Departure time for vehicle '%' is in the past; using current time instead." msgstr "车辆'%'的出发时间是过去的;用当前时间代替。" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1717 -msgid "Could not determine position on lane '%' at lateral position %." -msgstr "无法确定横向位置%的车道'%'上的位置。" - -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:1914 -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:422 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:1938 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:422 msgid "Invalid route replacement for vehicle '%'. %" msgstr "替换车辆'%'的路径无效。%" -#: /home/micha/programming/sumo/src/libsumo/Vehicle.cpp:2597 +#: D:\Repos\sumo/src\libsumo\Vehicle.cpp:2634 msgid "" "Ignoring lane change subscription filter with non-neighboring lane offset " "direction=%." msgstr "忽略非相邻车道偏移方向=%的车道变化订阅过滤器。" -#: /home/micha/programming/sumo/src/libsumo/VehicleType.cpp:289 +#: D:\Repos\sumo/src\libsumo\VehicleType.cpp:322 #, c-format msgid "Automatically setting emergencyDecel to % for vType '%' to match decel." msgstr "对vType'%'自动设置紧急减速(emergencyDecel)为%,以匹配减速(decel)。" -#: /home/micha/programming/sumo/src/libsumo/VehicleType.cpp:301 +#: D:\Repos\sumo/src\libsumo\VehicleType.cpp:334 msgid "New value of emergencyDecel (%) is lower than decel (%)" -msgstr "紧急减速(emergencyDecel) (%)的新值低于减速(decel )(%)。" +msgstr "紧急減速度 (%) 的新值低于减速度 (%)" -#: /home/micha/programming/sumo/src/marouter/ROMAAssignments.cpp:190 +#: D:\Repos\sumo/src\marouter\ROMAAssignments.cpp:190 msgid "Unknown origin '%'." msgstr "未知来源'%'。" -#: /home/micha/programming/sumo/src/marouter/ROMAAssignments.cpp:194 +#: D:\Repos\sumo/src\marouter\ROMAAssignments.cpp:194 msgid "Unknown destination '%'." msgstr "未知目的地'%'。" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:71 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:121 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:71 +#: D:\Repos\sumo/src\od2trips_main.cpp:121 msgid "Does not save vtype information" msgstr "不保存vtype信息" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:74 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:74 msgid "Writes edge loads and final costs into FILE" msgstr "将路段载荷和最终成本写入文件(FILE)中" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:77 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:77 msgid "Writes complete distance matrix into FILE" msgstr "将完整的距离矩阵写进文件(FILE)" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:81 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:85 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:81 +#: D:\Repos\sumo/src\od2trips_main.cpp:85 msgid "Loads O/D-files from FILE(s)" -msgstr "从文件FILE(s)中加载O/D文件。" +msgstr "从文件载入交通起始矩阵文件(O/D-files)" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:86 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:90 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:86 +#: D:\Repos\sumo/src\od2trips_main.cpp:90 msgid "Loads O/D-matrix in Amitran format from FILE(s)" -msgstr "从FILE(s)加载Amitran格式的O/D矩阵。" +msgstr "从文件载入以Amitran为格式的交通起始矩阵文件(O/D-files)" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:89 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:93 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:89 +#: D:\Repos\sumo/src\od2trips_main.cpp:93 msgid "Loads O/D-matrix in tazRelation format from FILE(s)" -msgstr "从FILE(s)中加载交通分区关系(tazRelation)格式的O/D矩阵。" +msgstr "从文件载入以分区关系(tazRelation)为格式的交通起始矩阵文件(O/D-files)" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:93 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:97 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:93 +#: D:\Repos\sumo/src\od2trips_main.cpp:97 msgid "Define data attribute for loading counts (default 'count')" msgstr "定义加载计数的数据属性(默认为'计数')" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:96 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:96 msgid "The travel time influence of prior intervals" msgstr "之前的间隔时间对旅行时间的影响" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:99 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:99 msgid "Parameter key(s) defining source (and sink) taz" msgstr "定义源(和汇)的参数键交通分区( taz)" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:102 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:102 msgid "Ignore attributes 'fromTaz' and 'toTaz'" msgstr "忽略 \"fromTaz \"和 \"toTaz \"属性" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:106 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:106 msgid "" "Defines the time interval when aggregating single vehicle input; Defaults to " "one hour" msgstr "定义汇总单一车辆输入时的时间间隔;默认为1小时" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:109 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:109 msgid "Ignore edge priorities when calculating capacities and restraints" msgstr "在计算能力和约束条件时,忽略路段优先级" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:115 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:115 msgid "" "Aggregate routing queries with the same origin for different vehicle types" msgstr "对不同类型的车辆进行具有相同出发地的路径查询汇总" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:153 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:137 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:153 +#: D:\Repos\sumo/src\od2trips_main.cpp:137 msgid "Scales the loaded flows by FLOAT" msgstr "用FLOAT来衡量加载的流量" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:156 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:146 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:156 +#: D:\Repos\sumo/src\od2trips_main.cpp:146 msgid "Defines the name of the vehicle type to use" msgstr "定义了要使用的车辆类型的名称" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:159 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:159 msgid "Defines the prefix for vehicle flow names" msgstr "定义了车辆流量名称的前缀" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:162 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:152 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:162 +#: D:\Repos\sumo/src\od2trips_main.cpp:152 msgid "Uses STR[] as a timeline definition" msgstr "使用STR[]作为时间线的定义" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:165 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:155 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:165 +#: D:\Repos\sumo/src\od2trips_main.cpp:155 msgid "Uses STR as a 24h-timeline definition" msgstr "使用STR作为24小时时间线的定义" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:168 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:168 msgid "Keep traffic flows of all time slots in the net" msgstr "保持网络中所有时段的流量" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:172 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:172 msgid "Choose a assignment method: incremental, UE or SUE" msgstr "选择一种分配方法:递增、UE或SUE" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:175 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:175 msgid "Use FLOAT as tolerance when checking for SUE stability" msgstr "检查SUE稳定性时,使用FLOAT作为公差" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:178 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:178 msgid "" "Use left-turn penalty FLOAT to calculate link travel time when searching " "routes" msgstr "在搜索路径时,使用左转处罚FLOAT来计算链接旅行时间" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:181 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:181 msgid "" "Use INTEGER as the number of paths needed to be searched for each OD pair at " "each iteration" msgstr "使用INTEGER作为每次迭代时每个OD对需要搜索的路径数" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:184 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:184 msgid "Penalize existing routes with FLOAT to find secondary routes" msgstr "用FLOAT对现有路径进行惩罚,以寻找次级路径" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:188 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:188 msgid "Use FLOAT as the upper bound to determine auxiliary link cost" msgstr "使用FLOAT作为上界来确定辅助链路成本" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:192 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:192 msgid "Use FLOAT as the lower bound to determine auxiliary link cost" msgstr "使用FLOAT作为下限来确定辅助链接成本" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:195 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:195 msgid "" "maximal number of iterations for new route searching in incremental and " "stochastic user assignment" msgstr "增量和随机用户分配中新路径搜索的最大迭代次数" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:198 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:198 msgid "" "maximal number of inner iterations for user equilibrium calculation in the " "stochastic user assignment" msgstr "随机用户分配中用户均衡计算的最大内部迭代次数" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:223 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:223 msgid "Use FLOAT as (c-)logit's beta for the commonality factor" msgstr "用FLOAT作为(c-)logit的beta值的共性因子" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:227 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:227 msgid "Use FLOAT as (c-)logit's gamma for the commonality factor" msgstr "使用FLOAT作为(c-)logit的gamma,作为共性因子" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:231 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:231 msgid "Use FLOAT as (c-)logit's theta" msgstr "使用FLOAT作为(c-)logit的theta" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:239 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:239 msgid "Invalid assignment method '%'." msgstr "无效的分配方法'%'。" -#: /home/micha/programming/sumo/src/marouter/ROMAFrame.cpp:247 +#: D:\Repos\sumo/src\marouter\ROMAFrame.cpp:247 msgid "" "Contraction hierarchies do not work with k shortest path search (please use " "a different routing algorithm)!" msgstr "收缩分层在k最短路径搜索中不起作用(请使用不同的路径算法)!" -#: /home/micha/programming/sumo/src/marouter/ROMARouteHandler.cpp:87 +#: D:\Repos\sumo/src\marouter\ROMARouteHandler.cpp:87 msgid "No origin or no destination given, ignoring '%'!" msgstr "没有给出出发地或目的地,忽略'%'!" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:239 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:239 msgid "" "Deterministic user equilibrium ('UE') is not implemented yet, using " "stochastic method ('SUE')." msgstr "确定性的用户平衡('UE')还没有实现,使用随机方法('SUE')。" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:323 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:315 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:323 +#: D:\Repos\sumo/src\od2trips_main.cpp:315 msgid "No output file given." msgstr "没有给出输出文件。" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:340 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:340 msgid "" "Import O/D-matrices for macroscopic traffic assignment to generate SUMO " "routes." msgstr "为宏观交通分配导入O/D矩阵,生成SUMO路径。" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:376 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:376 msgid "No districts loaded, will use edge ids!" msgstr "没有加载区域,将使用路段ID!" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:387 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:387 msgid "No valid vehicles loaded." msgstr "没有加载有效的车辆。" -#: /home/micha/programming/sumo/src/marouter/marouter_main.cpp:390 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:285 +#: D:\Repos\sumo/src\marouter\marouter_main.cpp:390 +#: D:\Repos\sumo/src\od2trips_main.cpp:285 msgid "Loading failed." msgstr "加载失败。" -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:89 -#: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:66 -#: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:184 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:89 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:66 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:185 msgid "Vehicle '%' teleports beyond arrival edge '%', time=%." msgstr "车辆'%'传送到到达路段'%'之外,时间=%。" -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:109 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:109 msgid "Vehicle '%' ends teleporting on edge '%':%, time=%." msgstr "车辆'%'在路段'%'结束传送:%,时间=%。" -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:167 -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:197 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:167 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:197 msgid "Teleporting vehicle '%'; waited too long, from edge '%':%, time=%." msgstr "传送车辆'%';等待时间过长,从路段'%':%,时间=%。" -#: /home/micha/programming/sumo/src/mesosim/MELoop.cpp:187 +#: D:\Repos\sumo/src\mesosim\MELoop.cpp:187 msgid "" "Teleporting vehicle '%'; waited too long, from edge '%':% to edge '%':%, " "time=%." msgstr "传送车辆'%';等待时间过长,从路段'%':%到路段'%':%,时间=%。" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:137 -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:603 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:137 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:603 msgid "Clearing jam at calibrator '%' at time=%." msgstr "清除校准器'%'处的干扰,时间=%。" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:145 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:145 msgid "Could not clear jam at calibrator '%' at time=%." msgstr "无法清除校准器'%'处的干扰,时间=%。" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:177 -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:414 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:177 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:414 msgid "No valid routes in calibrator '%'." msgstr "校准器中没有有效的路径'%'。" -#: /home/micha/programming/sumo/src/mesosim/METriggeredCalibrator.cpp:181 -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:418 +#: D:\Repos\sumo/src\mesosim\METriggeredCalibrator.cpp:181 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:418 msgid "Route '%' in calibrator '%' does not contain edge '%'." msgstr "校准器'%'中的路径'%'不包含路段%'。" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:220 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:220 msgid "Join stops are not available in meso yet (vehicle '%', segment '%')." msgstr "在中轴线上还没有连接站(车辆'%',分段'%')。" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:247 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:247 msgid "" "Vehicle '%' has multiple stops on segment '%', time=% (stop-output will be " "merged)." msgstr "车辆'%'在'%'段有多个停车点,时间=%(停车输出将被合并)。" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:370 -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1669 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:370 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1656 #, c-format msgid "" "Vehicle '%' ignores triggered stop on lane '%' due to capacity constraints." msgstr "由于容量限制,车辆'%'忽略了在车道'%'上触发的停车。" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:387 -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1684 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:387 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1671 #, c-format msgid "" "Vehicle '%' ignores container triggered stop on lane '%' due to capacity " "constraints." msgstr "由于容量限制,车辆'%'忽略了货箱在车道'%'上触发的停车。" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.cpp:554 +#: D:\Repos\sumo/src\mesosim\MEVehicle.cpp:554 msgid "Error: Invalid vehicles in state (may be a micro state)!" msgstr "错误:状态中的无效车辆(可能是一个微型状态)!" -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.h:188 -#: /home/micha/programming/sumo/src/mesosim/MEVehicle.h:194 -msgid "parkingZoneReroute not implemented for meso" -msgstr "停车区改道未在meso中实施" - -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:172 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:172 msgid "Changing a vehicle ID is not permitted" msgstr "不允许更改车辆ID" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:289 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:289 msgid "Vehicle '%' is not allowed on any lane of via edge '%'." msgstr "车辆'%'不允许在通过路段'%'的任何车道上行驶。" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:317 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:317 msgid "Vehicle '%' has no valid route from edge '%' to stop edge '%'." msgstr "车辆'%'从路段'%'到停止路段'%'没有有效路径。" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:361 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:361 #, c-format msgid "Vehicle '%' has no valid route." msgstr "车辆'%'没有有效路径。" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:363 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:363 msgid "Removing vehicle '%' which has no valid route." msgstr "移除没有有效路径的车辆'%'。" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:377 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:377 #, c-format msgid "No route for vehicle '%' found." msgstr "移除没有有效路径的车辆'%'。" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:447 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:447 #, c-format msgid "current edge '%' not found in new route" -msgstr "在新路径中没有找到当前的路段'%'。" +msgstr "在新路径中没有找到当前的路段'%'" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:460 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:460 msgid "Vehicle is on junction-internal edge leading elsewhere" msgstr "车辆在交叉口--内侧路段领先于其他地方" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:473 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:473 msgid "" "Vehicle is moving past junction and committed to move to another successor " "edge" msgstr "车辆正驶过交叉口处,并致力于移动到另一个继任路段" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:543 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:543 msgid "Vehicle '%' could not assign stop '%' after rerouting (%) at time=%." msgstr "车辆'%'在时间=%的情况下,改道(%)后无法分配停车'%'。" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:683 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:683 msgid "No connection between edge '%' and edge '%'." msgstr "路段'%'和路段'%'之间没有联系。" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:692 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:692 #, c-format msgid "Edge '%' prohibits." msgstr "路段'%'禁止使用。" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:706 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:706 #, c-format msgid "Vehicle '%' is not allowed to depart on its first edge." msgstr "车辆'%'不允许在其第一个路段出发。" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:736 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:736 msgid "Vehicle '%' has no valid route. %" msgstr "车辆'%'没有有效的路径。%" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:799 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:799 msgid "" "Vehicle '%' ignores attribute arrivalEdge=% after rerouting at time=% " "(routeLength=%)" msgstr "" -"车辆'%'在时间=%(路径长度=%)改变路径后,忽略了 抵达路径(arrivalEdge)=%这一" -"属性。" +"车辆 '%' 忽略属性抵达路段(arrivalEdge)= % 其发生在时间=% 的重新引导路径后(路" +"段长度(routeLength)=%)" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:813 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:813 msgid "Vehicle '%' will not be able to arrive at the given position!" msgstr "车辆'%'将无法到达给定的位置!" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:833 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:833 msgid "Vehicle '%' will not be able to arrive at the given lane '%_%'!" msgstr "车辆'%'将无法到达指定的车道'%_%'!" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:845 -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:857 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:845 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:857 msgid "Vehicle '%' has no usable arrivalLane on edge '%'." msgstr "车辆'%'在路段%'没有可用的到达车道。" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:869 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:869 msgid "Vehicle '%' will not be able to arrive with the given speed!" msgstr "车辆'%'将无法以给定的速度到达!" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.cpp:885 -msgid "Ignoring departEdge % for vehicle '% with % route edges" -msgstr "忽略车辆的出发路段(departEdge )%,其路线路段为%" +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.cpp:885 +msgid "Ignoring departEdge % for vehicle '%' with % route edges" +msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.h:879 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.h:909 msgid "getLeader not yet implemented for meso" msgstr "getLeader还没有在meso实现" -#: /home/micha/programming/sumo/src/microsim/MSBaseVehicle.h:893 +#: D:\Repos\sumo/src\microsim\MSBaseVehicle.h:923 msgid "getFollower not yet implemented for meso" msgstr "getFollower还没有在meso实现" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:660 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:660 msgid "" "Choosing new speed factor % for vehicle '%' to match departure speed % (max " "%)." msgstr "为车辆'%'选择新的速度系数%,以匹配出发速度%(最大%)。" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1264 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1264 #, c-format msgid "Bidi-edge '%' does not exist" msgstr "Bidi-路段'%'不存在" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1277 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1277 msgid "Ambiguous superposable edges between junction '%' and '%'." msgstr "路口'%'和'%'之间有模糊的可叠加路段。" -#: /home/micha/programming/sumo/src/microsim/MSEdge.cpp:1308 +#: D:\Repos\sumo/src\microsim\MSEdge.cpp:1308 #, c-format msgid "Edge '%s' and bidi edge '%s' have no matching bidi lanes" msgstr "路段'%s'和bidi路段'%s'没有匹配的bidi车道" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:78 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:78 msgid "Load road network description from FILE" msgstr "从文件(FILE)中加载路网描述" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:83 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:83 msgid "Load routes descriptions from FILE(s)" msgstr "从文件(FILEs)中加载路线描述" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:87 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:87 msgid "Load further descriptions from FILE(s)" msgstr "从文件 FILE(s)中加载进一步的描述" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:91 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:91 msgid "Load edge/lane weights for online rerouting from FILE" msgstr "从文件(FILE)中加载路段/车道权重以进行在线重新布局" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:94 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:108 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:94 +#: D:\Repos\sumo/src\router\ROFrame.cpp:108 msgid "Name of the xml attribute which gives the edge weight" msgstr "给予路段权重的xml属性的名称" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:97 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:97 msgid "Loads a network state from FILE" msgstr "从FILE(文件)中加载一个网络状态" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:99 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:99 msgid "Shifts all times loaded from a saved state by the given offset" msgstr "将所有从保存状态加载的时间按给定的偏移量进行转移" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:101 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:101 msgid "Removes vehicles with the given IDs from the loaded state" msgstr "从加载状态中移除具有给定ID的车辆" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:104 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:134 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:104 +#: D:\Repos\sumo/src\router\ROFrame.cpp:134 msgid "" "Initialize a TAZ for every junction to use attributes toJunction and " "fromJunction" msgstr "" "为每个路口处初始化一个交通分区(TAZ),以使用属性toJunction和fromJunction" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:114 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:114 msgid "Save complete network states into FILE" msgstr "将完整的网络状态保存到文件(FILE)中" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:119 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:119 msgid "Write also empty edges completely when dumping" msgstr "在倾倒时也要完全写空路段" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:124 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:124 msgid "Write positions and speeds with the given precision (default 2)" -msgstr "以给定的精度写入位置和速度(默认为2)。" +msgstr "根据给定的精确度数,写出位置及速度(预设值为2)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:128 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:128 msgid "Save the emission values of each vehicle" msgstr "保存每辆车的排放值" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:130 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:130 msgid "Write emission values with the given precision (default 2)" msgstr "以给定的精度写入排放值(默认为2)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:132 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:132 msgid "Save the positions in emission output using geo-coordinates (lon/lat)" msgstr "使用地理坐标(LON/LAT)保存排放输出中的位置" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:135 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:135 msgid "" "Write emission values scaled to the step length rather than as per-second " "values" msgstr "写出按步长缩放的排放值,而不是每秒的值" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:138 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:138 msgid "Save the battery values of each vehicle" msgstr "保存每辆车的电池值" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:140 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:140 msgid "Write battery values with the given precision (default 2)" msgstr "以给定的精度写入电池值(默认为2)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:143 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:143 msgid "Save the elecHybrid values of each vehicle" msgstr "保存每辆车的混合动力值" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:145 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:145 msgid "Write elecHybrid values with the given precision (default 2)" msgstr "以给定的精度写入混合动力值(默认为2)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:147 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:147 msgid "Write elecHybrid values into one aggregated file" msgstr "将混合动力的值写入一个汇总文件中" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:150 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:150 msgid "Write data of charging stations" msgstr "写入充电站的数据" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:153 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:153 msgid "Write data of overhead wire segments" msgstr "写入架空线段的数据" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:156 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:156 msgid "Write data of electrical substation stations" msgstr "写入变电站站的数据" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:158 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:158 msgid "Write substation values with the given precision (default 2)" msgstr "以给定的精度写入分站值(默认为2)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:161 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:161 msgid "Save the Floating Car Data" msgstr "保存浮动的汽车数据" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:163 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:163 msgid "Save the Floating Car Data using geo-coordinates (lon/lat)" msgstr "使用地理坐标(lon/lat)保存浮动车数据" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:165 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:165 msgid "Add the vehicle signal state to the FCD output (brake lights etc.)" -msgstr "将车辆信号状态添加到FCD输出(刹车灯等)。" +msgstr "將车辆信号状态加入到浮动车(FCD)输出文件內(刹车灯等)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:167 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:167 msgid "Add kilometrage to the FCD output (linear referencing)" msgstr "在FCD输出中添加公里数(线性参考)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:169 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:169 msgid "Add acceleration to the FCD output" msgstr "在FCD输出中添加加速度" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:171 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:171 msgid "" "Add leader vehicle information to the FCD output (within the given distance)" msgstr "在FCD输出中添加领导车辆信息(在给定距离内)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:173 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:173 msgid "Add generic parameter values to the FCD output" msgstr "在FCD输出中添加通用参数值" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:175 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:175 msgid "Restrict fcd output to the edge selection from the given input file" msgstr "将FCD的输出限制在给定输入文件的路段选择上" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:177 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:177 msgid "List attributes that should be included in the FCD output" msgstr "列出应包括在FCD输出中的属性" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:179 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:179 msgid "List shape names that should be used to filter the FCD output" msgstr "列出应该用于过滤FCD输出的形状名称" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:182 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:182 msgid "" "Restrict SSM device output to the edge selection from the given input file" msgstr "将SSM设备的输出限制在给定输入文件的路段选择上" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:185 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:185 msgid "Save a lot of information for each timestep (very redundant)" msgstr "为每个时间段保存大量的信息(非常多余)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:188 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:188 msgid "Save the vehicle queues at the junctions (experimental)" msgstr "保存路口的车辆排队时间(实验性的)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:190 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:190 msgid "Save vehicle queues with the given period" msgstr "保存给定周期的车辆队列" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:193 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:193 msgid "" "Save complete vehicle positions inclusive speed values in the VTK Format " "(usage: /path/out will produce /path/out_$TIMESTEP$.vtp files)" msgstr "" -"以VTK格式保存完整的车辆位置和速度值(用法:/path/out将产生/path/" -"out_$TIMESTEP$.vtp文件)" +"以VTK格式保存完整的车辆位置和速度值(用法:/path/out将产生/path/out_$TIMESTEP" +"$.vtp文件)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:195 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:195 msgid "Save the vehicle trajectories in the Amitran format" msgstr "以Amitran格式保存车辆轨迹" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:200 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:200 msgid "Save aggregated vehicle departure info into FILE" msgstr "将汇总的车辆离开信息保存到文件(FILE)中" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:203 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:203 msgid "Save summary-output with the given period" msgstr "用给定的周期保存总结-输出" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:206 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:206 msgid "Save aggregated person counts into FILE" msgstr "将汇总的人数保存到文件(FILE)中" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:210 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:210 msgid "Save single vehicle trip info into FILE" msgstr "将单一车辆的行程信息保存到文件(FILE)中" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:213 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:213 msgid "" "Write tripinfo output for vehicles which have not arrived at simulation end" msgstr "为没有到达仿真终点的车辆写入行程信息输出" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:216 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:216 msgid "" "Write tripinfo output for vehicles which have not departed at simulation end " "because of depart delay" msgstr "写出仿真结束时因出发延迟而未出发的车辆的行程信息输出" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:220 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:220 msgid "Save personinfo and containerinfo to separate FILE" msgstr "将人物信息和货箱信息保存在不同的文件中" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:224 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:224 msgid "Save single vehicle route info into FILE" msgstr "将单一车辆的路径信息保存到文件(FILE)中" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:228 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:228 msgid "Write the exit times for all edges" msgstr "写出所有路段的出口时间" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:232 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:232 msgid "Write the last route only" msgstr "只写最后一条路段" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:236 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:236 msgid "Sorts the output by departure time" msgstr "按照出发时间对输出进行排序" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:240 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:240 msgid "Write the output in the duarouter alternatives style" msgstr "用duarouter的替代样式写输出" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:243 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:243 msgid "Write costs for all routes" msgstr "编写所有路径的费用" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:247 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:247 msgid "Write the output with the intended instead of the real departure time" msgstr "用预期的而不是实际的出发时间来写输出结果" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:254 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:254 msgid "" "Write vehroute output for vehicles which have not arrived at simulation end" msgstr "为未到达仿真终点的车辆写出vehroute输出" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:257 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:257 msgid "Skip vehroute output for public transport vehicles" msgstr "跳过公共交通车辆的路线输出" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:260 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:260 msgid "Include invalid routes and route stubs in vehroute output" msgstr "在vehroute输出中包括无效的路径和路径存根" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:263 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:263 msgid "Include information about edges between stops" msgstr "包括站点之间的路段信息" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:266 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:266 msgid "" "Write the vehicle speedFactor (defaults to 'true' if departSpeed is written)" msgstr "写入车辆速度因子(如果写入了出发速度,则默认为'true')" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:269 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:269 msgid "Include internal edges in the output" msgstr "在输出中包括内部路段" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:273 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:273 msgid "Save person and container routes to separate FILE" msgstr "将人员和货箱路径保存到不同的文件中" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:276 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:276 msgid "Save links states into FILE" msgstr "将链接状态保存到文件(FILE)中" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:279 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:279 msgid "Save railsignal-blocks into FILE" msgstr "将railsignal-blocks保存到文件(FILE)中" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:282 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:282 msgid "" "Save bluetooth visibilities into FILE (in conjunction with device.btreceiver " "and device.btsender)" @@ -1664,173 +1660,187 @@ "将蓝牙功能保存到文件(FILE)中(与device.btreceiver和device.btsender一起使" "用)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:285 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:285 msgid "Record lane changes and their motivations for all vehicles into FILE" msgstr "将所有车辆的变道及其动机记录到档案中" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:288 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:288 msgid "Record start of lane change manoeuvres" msgstr "变换车道动作的开始记录" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:291 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:291 msgid "Record end of lane change manoeuvres" msgstr "记录变道动作的结束情况" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:294 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:294 msgid "Record coordinates of lane change manoeuvres" msgstr "记录变道动作的坐标" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:297 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:297 msgid "" "Record stops and loading/unloading of passenger and containers for all " "vehicles into FILE" msgstr "将所有车辆的停车和乘客及货箱的装载/卸载记录到文件中" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:299 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:299 msgid "Write stop output for stops which have not ended at simulation end" msgstr "为在仿真结束时没有结束的停止而写停止输出" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:302 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:302 msgid "Write collision information into FILE" msgstr "将碰撞信息写进文件(FILE)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:305 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:305 msgid "Write aggregated traffic statistics for all edges into FILE" msgstr "将所有路段的汇总流量统计数据写入文件(FILE)中" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:307 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:307 msgid "Write aggregated traffic statistics for all lanes into FILE" msgstr "将所有车道的综合交通统计资料写入文件(FILE)中" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:311 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:311 msgid "Write overall statistics into FILE" msgstr "将总体统计数据写进文件(FILE)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:315 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:315 msgid "Save movereminder states of selected vehicles into FILE" msgstr "将所选车辆的移动提醒状态保存到文件( FILE)中" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:317 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:317 msgid "List of vehicle ids which shall save their movereminder states" msgstr "应保存其移动提醒状态的车辆ID列表" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:321 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:321 msgid "Use TIME[] as times at which a network state written" msgstr "使用TIME[]作为网络状态的写入时间" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:323 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:323 msgid "save state repeatedly after TIME period" msgstr "在TIME期后重复保存状态" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:325 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:325 msgid "Keep only the last INT periodic state files" msgstr "只保留最后的INT定期状态文件" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:327 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:327 msgid "Prefix for network states" msgstr "网络状态的前缀" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:329 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:329 msgid "Suffix for network states (.xml.gz or .xml)" msgstr "网络状态的后缀(.xml.gz或.xml)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:331 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:331 msgid "Files for network states" msgstr "网络状态的文件" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:333 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:333 msgid "Save random number generator states" msgstr "保存随机数发生器的状态" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:335 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:335 msgid "Save person and container states (experimental)" msgstr "保存人和货箱的状态(实验性)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:337 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:337 msgid "Save rail signal constraints" msgstr "存储铁路信号的限制" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:339 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:339 msgid "Write internal state values with the given precision (default 2)" msgstr "以给定的精度写入内部状态值(默认为2)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:343 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:343 msgid "Defines the begin time in seconds; The simulation starts at this time" msgstr "定义开始时间(以秒为单位); 仿真在这个时间开始" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:346 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:346 msgid "Defines the end time in seconds; The simulation ends at this time" msgstr "定义结束时间(以秒为单位); 仿真在这个时间结束" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:349 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:349 msgid "Defines the step duration in seconds" msgstr "定义了以秒为单位的步长" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:352 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:352 msgid "" "Whether to use ballistic method for the positional update of vehicles " "(default is a semi-implicit Euler method)." -msgstr "是否使用弹道法进行车辆的位置更新(默认是半隐式欧拉法)" +msgstr "" +"是否使用弹道法进行车辆的位置更新(默认是半隐式欧拉法 (semi-implicit Euler " +"method))。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:355 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:355 msgid "" "Whether vehicles that depart between simulation steps should extrapolate the " "depart position" msgstr "在仿真步骤之间出发的车辆是否应该推断出出发的位置" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:358 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:358 msgid "Defines the number of threads for parallel simulation" msgstr "定义并行仿真的线程数" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:361 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:361 msgid "" "Defines the resolution in m when handling lateral positioning within a lane " "(with -1 all vehicles drive at the center of their lane" msgstr "在处理车道内的横向定位时,定义分辨率为m(-1时所有车辆在其车道中心行驶" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:365 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:142 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:365 +#: D:\Repos\sumo/src\router\ROFrame.cpp:142 msgid "Load routes for the next number of seconds ahead" msgstr "加载未来若干秒的路径" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:368 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:145 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:368 +#: D:\Repos\sumo/src\router\ROFrame.cpp:145 msgid "Disable (junction) internal links" msgstr "禁用(路口)内部链接" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:371 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:371 msgid "" "Ignore vehicles which block the junction after they have been standing for " "SECONDS (-1 means never ignore)" msgstr "忽略那些停了几秒钟就堵在路口的车辆(-1表示从不忽略)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:374 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:374 msgid "Do not check whether routes are connected" msgstr "不检查路径是否被连接" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:377 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:377 msgid "Do not check whether accidents occur" msgstr "不检查是否发生事故" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:380 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:380 msgid "How to deal with collisions: [none,warn,teleport,remove]" msgstr "如何处理碰撞的问题:[无,警告,传送,删除]" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:383 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:383 +msgid "" +"How to deal with collisions between vehicle and pedestrian: [none,warn," +"teleport,remove]" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:386 msgid "" "Let vehicle stop for TIME before performing collision.action (except for " "action 'none')" msgstr "在执行碰撞动作前让车辆停顿一段时间(除了动作 \"无\")" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:386 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:389 +msgid "" +"Let vehicle stop for TIME before performing intermodal-collision.action " +"(except for action 'none')" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:392 msgid "Enables collisions checks on junctions" msgstr "启用路口处的碰撞检查" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:389 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:395 msgid "Increase or decrease sensitivity for junction collision check" msgstr "增加或减少路口处碰撞检查的灵敏度" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:392 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:398 msgid "" "Sets the fraction of minGap that must be maintained to avoid collision " "detection. If a negative value is given, the carFollowModel parameter is used" @@ -1838,38 +1848,38 @@ "设置为避免碰撞检测而必须保持的minGap的分数。如果给出一个负值,则使用" "carFollowModel参数" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:395 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:401 msgid "Delay vehicle insertion to stay within the given maximum number" msgstr "延迟车辆插入以保持在给定的最大数量内" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:398 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:404 msgid "" "Abort the simulation if the given maximum number of teleports is exceeded" msgstr "如果超过了给定的最大传送次数,则中止仿真" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:401 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:407 msgid "" "Scale demand by the given factor (by discarding or duplicating vehicles)" msgstr "按给定的系数扩大需求规模(通过抛弃或复制车辆)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:404 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:410 msgid "Suffix to be added when creating ids for cloned vehicles" msgstr "为克隆的车辆创建ID时要添加的后缀" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:407 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:413 msgid "" "Specify how long a vehicle may wait until being teleported, defaults to 300, " "non-positive values disable teleporting" msgstr "指定车辆在被传送之前可以等待多长时间,默认为300,非正值禁止传送" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:410 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:416 msgid "" "The waiting time after which vehicles on a fast road (speed > 69km/h) are " "teleported if they are on a non-continuing lane" msgstr "" "快速道路上的车辆(速度>69公里/小时)如果在非连续车道上,将被传送的等待时间" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:413 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:419 msgid "" "The waiting time after which vehicles on a fast road (default: speed > 69km/" "h) are teleported if they are on a non-continuing lane" @@ -1877,103 +1887,103 @@ "快速道路上的车辆(默认:速度>69公里/小时)如果在非连续车道上,将被传送的等待" "时间" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:416 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:422 msgid "" "The waiting time after which vehicles with a disconnected route are " "teleported. Negative values disable teleporting" msgstr "路径断开的车辆被传送的等待时间。负值将禁止传送" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:419 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:425 msgid "" "Whether vehicles shall be removed after waiting too long instead of being " "teleported" msgstr "车辆在等待时间过长后是否应被移走,而不是被传送" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:422 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:428 msgid "" "The waiting time after which persons / containers waiting for a pickup are " "teleported. Negative values disable teleporting" msgstr "等待取货的人员/货箱被传送的等待时间。负值将禁止传送" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:425 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:431 msgid "" "The waiting time after which vehicles on bidirectional edges are teleported" msgstr "双向路段的车辆被传送后的等待时间" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:428 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:434 msgid "" "Length of time interval, over which accumulated waiting time is taken into " "account (default is 100s.)" msgstr "" "时间间隔的长度,在这个时间间隔内,累积的等待时间被考虑在内(默认为100s)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:431 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:437 msgid "Minimum consecutive waiting time before applying startupDelay" msgstr "应用启动延迟前的最小连续等待时间" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:434 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:440 msgid "" "How long vehicles wait for departure before being skipped, defaults to -1 " "which means vehicles are never skipped" msgstr "车辆在被跳过之前等待出发的时间,默认为-1,意味着车辆从不被跳过" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:437 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:443 msgid "" "Whether insertion on an edge shall not be repeated in same step once failed" msgstr "一旦失败,在边上的插入是否不得在同一步骤中重复" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:440 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:446 msgid "Whether each vehicle is checked separately for insertion on an edge" msgstr "是否对每辆汽车进行单独检查以插入边上" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:443 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:449 msgid "" "Allow inserting a vehicle in a situation which requires emergency braking" msgstr "允许在需要紧急制动的情况下插入车辆" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:446 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:452 msgid "" "Each vehicle receives a random offset to its depart value drawn uniformly " "from [0, TIME]" msgstr "每辆车都会收到一个从[0, TIME]中均匀抽取的随机偏移其出发值" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:449 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:455 msgid "Duration of a lane change maneuver (default 0)" msgstr "变道动作的持续时间(默认为0)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:452 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:458 msgid "Whether overtaking on the right on motorways is permitted" msgstr "是否允许在高速公路上靠右超车" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:455 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:461 msgid "Switches off all traffic lights." msgstr "关闭所有交通信号灯。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:458 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:464 msgid "Sets default visibility for actuation detectors" msgstr "设置执行探测器的默认可见性" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:461 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:467 msgid "Sets default jam-threshold parameter for all actuation detectors" msgstr "为所有启动探测器设置默认的干扰阈值参数" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:464 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:470 msgid "Sets default detector length parameter for all actuation detectors" msgstr "为所有启动探测器设置默认的探测器长度参数" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:467 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:473 msgid "Sets default range for detecting delayed vehicles" msgstr "设定检测延迟车辆的默认范围" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:470 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:476 msgid "Minimum deceleration when braking at yellow" msgstr "在黄灯下刹车时的最小减速度" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:473 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:479 msgid "Let railsignals operate in moving-block mode by default" msgstr "默认情况下,让轨道信号在移动块模式下运作" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:476 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:482 msgid "" "Specify how long a vehicle may wait until impatience grows from 0 to 1, " "defaults to 300, non-positive values disable impatience growth" @@ -1981,7 +1991,7 @@ "指定车辆可以等待多长时间,直到不耐烦从0增长到1,默认为300,非正值禁用不耐烦的" "增长" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:479 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:485 msgid "" "Length of the default interval length between action points for the car-" "following and lane-change models (in seconds). If not specified, the " @@ -1993,18 +2003,18 @@ "按默认值使用仿真步长。车辆或VType特定的设置将覆盖默认值。必须是仿真步长的倍" "数。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:482 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:488 msgid "Select default car following model (Krauss, IDM, ...)" msgstr "选择默认的汽车以下跟车模型(Krauss, IDM, ..)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:486 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:492 msgid "" "Select default speed deviation. A negative value implies vClass specific " "defaults (0.1 for the default passenger class" msgstr "" "选择速度偏差的预设值。负值表示 vClass 特定预设值( 0.1为小客车等级的预设值" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:489 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:495 msgid "" "Select default emergencyDecel value among ('decel', 'default', FLOAT) which " "sets the value either to the same as the deceleration value, a vClass-class " @@ -2013,64 +2023,64 @@ "在('decel', 'default', FLOAT)中选择默认的紧急减速值,该值要么与减速值相同,要" "么是vClass-class特定的默认值,要么是给定的FLOAT(米/秒^2)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:492 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:498 msgid "Use Kirchhoff's laws for solving overhead wire circuit" msgstr "使用Kirchhoff 定律来解决架空线电路的问题" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:495 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:501 msgid "" "Enable recuperation from the vehicle equipped with elecHybrid device into " "the overhead wire." msgstr "启用从装有电动混合装置的车辆到架空线的恢复。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:498 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:504 msgid "" "Enable current limits of traction substation during solving the overhead " "wire electrical circuit." msgstr "在解决架空线电气线路时,启用牵引变电站的电流限制。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:501 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:507 msgid "" "Sets the fraction of emergency decel capability that must be used to trigger " "a warning." msgstr "设定必须用于触发警告的紧急减速能力的分数。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:504 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:510 msgid "" "Whether parking simulation includes maneuvering time and associated lane " "blocking" msgstr "停车仿真是否包括机动时间和相关的车道阻塞" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:507 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:513 msgid "Override stop until times with stop ended times when given" msgstr "在给定的停止时间内,用停止结束时间覆盖停止为止的时间" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:510 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:516 msgid "Override stop arrival times with stop started times when given" msgstr "在给定的情况下,用停车开始时间覆盖停车到达时间" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:514 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:520 msgid "Select among pedestrian models ['nonInteracting', 'striping', 'remote']" msgstr "在行人模式中选择['非互动', '剥离', '远程']" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:517 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:523 msgid "" "Width of parallel stripes for segmenting a sidewalk (meters) for use with " "model 'striping'" msgstr "用于分割人行道的平行条纹的宽度(米),与 \"剥离 \"模型一起使用" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:520 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:526 msgid "Factor for random slow-downs [0,1] for use with model 'striping'" msgstr "用于随机减速的系数[0,1],与 \"剥离 \"模型一起使用" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:523 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:529 msgid "" "Minimal gap / safety buffer (in meters) from a pedestrian to another vehicle " "for use with model 'striping'" msgstr "" "从行人到另一车辆的最小间隙/安全缓冲区(以米为单位),与 \"剥离 \"模型一起使用" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:526 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:532 msgid "" "Time in seconds after which pedestrians start squeezing through a jam when " "using model 'striping' (non-positive values disable squeezing)" @@ -2078,7 +2088,7 @@ "使用 \"剥离 \"模型时,行人开始挤过拥堵路段的时间,以秒为单位(非正值禁止挤" "过)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:528 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:534 msgid "" "Time in seconds after which pedestrians start squeezing through a jam while " "on a pedestrian crossing when using model 'striping' (non-positive values " @@ -2087,52 +2097,52 @@ "当使用 \"剥离 \"模型时,行人在人行横道上开始挤过拥堵的时间,以秒为单位(非正" "值禁止挤过)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:530 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:536 msgid "" "Time in seconds after which pedestrians start squeezing through a jam while " "on a narrow lane when using model 'striping'" msgstr "在使用 \"剥离 \"模型时,行人在狭窄车道上开始挤过拥堵的时间(秒)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:533 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:539 msgid "Fraction of stripes to reserve for oncoming pedestrians" msgstr "为迎面而来的行人预留的条纹部分" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:536 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:542 msgid "" "Fraction of stripes to reserve for oncoming pedestrians on crossings and " "walkingareas" msgstr "在十字路口和步行区为迎面而来的行人保留一定比例的条纹" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:539 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:545 msgid "Maximum width in m to reserve for oncoming pedestrians" msgstr "为迎面而来的行人预留的最大宽度(米)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:542 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:548 msgid "Interpret departPosLat for walks in legacy style" msgstr "以传统的方式解释出发地和目的地的关系" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:545 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:551 msgid "" "Generate INT intermediate points to smooth out lanes within the walkingarea" msgstr "生成INT中间点,使行走区域内的车道变得平滑" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:548 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:554 msgid "The address (host:port) of the external simulation" msgstr "外部仿真的地址(host:port)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:551 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:557 msgid "" "Tolerance to apply when matching pedestrian and vehicle positions on " "boarding at individual stops" msgstr "在个别车站的行人和车辆登车位置匹配时适用的宽容度" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:562 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:568 msgid "" "Apply the given time penalty when computing minimum routing costs for minor-" "link internal lanes" msgstr "在计算次要链路内部车道的最小路径成本时,应用给定的时间惩罚" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:565 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:571 msgid "" "Apply scaled travel time penalties based on green split when computing " "minimum routing costs for internal lanes at traffic lights" @@ -2140,247 +2150,247 @@ "在计算交通信号灯下内部车道的最小路径成本时,根据绿灯分流的高低采用相应的旅行" "时间惩罚措施" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:571 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:577 msgid "" "Distinguish travel time by turn direction and shift a fraction of the " "estimated time loss ahead of the intersection onto the internal edges" msgstr "" "按转弯方向区分旅行时间,并将交叉口前方的估计时间损失的一部分转移到内部路段" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:596 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:602 msgid "" "When set, trips between the same origin and destination will share a taxi by " "default" msgstr "设置后,同一出发地和目的地之间的行程将默认共用一辆出租车" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:605 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:611 msgid "Replay exact rerouting sequence from vehroute-output" msgstr "从vehroute-output中重放精确的改道路径的序列" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:610 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:59 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:133 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:123 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:616 +#: D:\Repos\sumo/src\router\ROFrame.cpp:59 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:133 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:123 msgid "Return fuel consumption values in (legacy) unit l instead of mg" msgstr "以(传统)单位l而不是mg返回燃料消耗值" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:613 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:90 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:136 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:126 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:619 +#: D:\Repos\sumo/src\router\ROFrame.cpp:90 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:136 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:126 msgid "Determines where to load PHEMlight definitions from" msgstr "决定从哪里加载PHEMlight的定义" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:616 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:93 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:139 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:129 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:622 +#: D:\Repos\sumo/src\router\ROFrame.cpp:93 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:139 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:129 msgid "Enable fleet age modelling with the given reference year in PHEMlight5" msgstr "在PHEMlight5中以给定的参考年份启用车队车龄模型" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:619 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:96 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:142 -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:132 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:625 +#: D:\Repos\sumo/src\router\ROFrame.cpp:96 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:142 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:132 msgid "Set ambient temperature to correct NOx emissions in PHEMlight5" msgstr "设置环境温度以纠正PHEMlight5中的氮氧化物排放" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:628 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:634 msgid "Disable performance reports for individual simulation steps" msgstr "禁用单个仿真步骤的性能报告" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:631 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:637 msgid "Enable statistics on vehicle trips" msgstr "启用车辆行程的统计数据" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:634 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:640 msgid "Disable console output of current simulation step" msgstr "禁用当前仿真步骤的控制台输出" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:637 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:643 msgid "Number of simulation steps between step-log outputs" msgstr "阶梯式输出之间的仿真步骤数" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:642 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:648 msgid "Enables TraCI Server if set" msgstr "如果设定了,则启用TraCI服务器" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:644 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:650 msgid "Expected number of connecting clients" msgstr "预期的连接客户数量" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:648 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:654 msgid "Enables mesoscopic simulation" msgstr "实现了中观仿真" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:650 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:656 msgid "Length of an edge segment in mesoscopic simulation" msgstr "中观仿真中的路段长度" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:652 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:658 msgid "Factor for calculating the net free-free headway time" msgstr "计算净自由通行时间的因素" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:654 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:660 msgid "Factor for calculating the net free-jam headway time" msgstr "计算无障碍净通行时间的系数" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:656 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:662 msgid "Factor for calculating the jam-free headway time" msgstr "计算无堵塞通行时间的因素" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:658 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:664 msgid "Factor for calculating the jam-jam headway time" msgstr "计算拥堵通行时间的因子" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:663 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:669 msgid "Enable multiple queues at edge ends" msgstr "在路段端启用多个队列" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:665 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:671 msgid "Enable separate queues for every lane" msgstr "启用每条车道的单独队列" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:667 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:673 msgid "" "Do not build queues (or reduce capacity) for lanes allowing only the given " "vclasses" msgstr "不为只允许给定v类的车道建立队列(或减少容量)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:670 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:676 msgid "Enable mesoscopic traffic light and priority junction handling" msgstr "启用中观的交通信号灯和优先路口处理" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:684 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:690 msgid "Enable mesoscopic overtaking" msgstr "启用中观超车" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:686 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:692 msgid "" "Time interval for rechecking insertion into the next segment after failure" msgstr "失败后重新检查插入下一节的时间间隔" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:698 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:704 msgid "Load visualisation settings from FILE" msgstr "从文件中加载可视化设置" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:701 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:707 msgid "Quits the GUI when the simulation stops" msgstr "当仿真停止时退出GUI" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:704 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:710 msgid "Start the GUI in gaming mode" msgstr "在游戏模式下启动GUI" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:707 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:713 msgid "Select the game type ('tls', 'drt')" msgstr "选择游戏类型('tls', 'drt')" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:710 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:716 msgid "Start the simulation after loading" msgstr "加载后开始仿真" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:713 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:719 msgid "Use FLOAT in ms as delay between simulation steps" msgstr "使用FLOAT(毫秒)作为仿真步骤之间的延迟" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:716 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:722 msgid "Use TIME[] as times when the simulation should halt" msgstr "使用TIME[]作为仿真应该停止的时间" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:720 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:726 msgid "Load edge/lane weights for visualization from FILE" msgstr "从文件中加载用于可视化的路段/车道权重" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:723 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:729 msgid "Load a secondary road network for abstract visualization from FILE" msgstr "从文件FILE中加载一个用于抽象可视化的次要道路网" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:726 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:732 msgid "Restart the simulation after ending (demo mode)" msgstr "结束后重新启动仿真(演示模式)" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:729 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:735 msgid "Do not load background pictures" msgstr "不要加载背景图片" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:732 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:738 msgid "Load current viewport from registry" msgstr "从注册表加载当前视口" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:735 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:741 msgid "Create initial window with the given x,y size" msgstr "以给定的x,y尺寸创建初始窗口" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:738 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:744 msgid "Create initial window at the given x,y position" msgstr "在给定的x,y位置创建初始窗口" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:741 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:747 msgid "The aggregation period for value tracker windows" msgstr "价值跟踪窗口的汇总期" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:745 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:751 msgid "Start with an OpenSceneGraph view instead of the regular 2D view" msgstr "从OpenSceneGraph视图开始,而不是常规的2D视图" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:750 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:756 msgid "Enable overlay for screen recognition" msgstr "允许荧屏辨识的覆盖" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:754 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:760 msgid "Enable output messages during GUI-Testing" msgstr "允许在 GU测试期间输出信息" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:758 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:764 msgid "Save gui settings in the given settings output file" msgstr "在给定的设置输出文件中保存gui设置" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:809 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:815 msgid "No network file (-n) specified." msgstr "没有指定网络文件(-n)。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:813 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:819 msgid "Invalid scaling factor." msgstr "无效的缩放系数。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:817 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:823 msgid "A vehroute-output file is needed for exit times." msgstr "出口时间需要一个vehroute-output文件。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:829 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:835 msgid "You can either restart or quit on end." msgstr "你可以重新启动或结束时退出。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:834 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:840 msgid "" "The option 'meso-junction-control.limited' implies 'meso-junction-control'." msgstr "" "选项 \"meso-junction-control.limited \"意味着 \"meso-junction-control\"。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:852 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:858 msgid "The begin time should not be negative." msgstr "开始时间不应该是负数。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:862 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:868 msgid "The end time should be after the begin time." msgstr "结束时间应该是在开始时间之后。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:867 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:873 msgid "the minimum step-length is 0.001" msgstr "最小步长为0.001" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:882 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:888 msgid "The save-state time=% will not be used before simulation end at %." msgstr "保存状态的时间=%在仿真结束前不会被使用。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:894 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:900 msgid "" "option movereminder-output.vehicles requires option movereminder-output to " "be set" msgstr "选项movereminder-output.veh需要设置选项movereminder-output" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:899 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:905 msgid "" "The option 'sloppy-insert' is deprecated, because it is now activated by " "default, see the new option 'eager-insert'." @@ -2388,23 +2398,23 @@ "选项 \"sloppy-insert \"已被废弃,因为它现在被默认激活,请看新选项 \"eager-" "insert\"。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:902 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:908 msgid "" "Only one of the options 'lanechange.duration' or 'lateral-resolution' may be " "given." msgstr "只能给出'lanechange.duration'或'sidal-resolution'中的一个选项。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:906 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:912 msgid "Sublane dynamics are not supported by mesoscopic simulation" msgstr "中观仿真不支持副车道动态" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:910 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:916 msgid "" "The option 'ignore-accidents' is deprecated. Use 'collision.action none' " "instead." msgstr "选项'ignore-accidents'已被废弃。请使用'碰撞.无动作'代替。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:923 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:929 msgid "" "The option tripinfo-output.write-undeparted implies tripinfo-output.write-" "unfinished." @@ -2412,12 +2422,12 @@ "选项 tripinfo-output.write-undeparted 意味着 tripinfo-output. 写入-未完成" "(write-unfinished)。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:945 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:951 #, c-format msgid "Unknown model '%' for option 'carfollow.model'." -msgstr "选项 \"carfollow.model \"的未知模型'%'" +msgstr "选项 '跟车模式(carfollow.model)' 的模式 '%' 未知。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:954 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:960 #, c-format msgid "" "Invalid value '%' for option 'default.emergencydecel'. Must be a FLOAT or " @@ -2426,310 +2436,328 @@ "选项'default.emergencydecel'的值'%'无效。必须是一个 FLOAT 或 'default' 或 " "'decel'" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:960 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:966 msgid "You need a non-negative delay." msgstr "你需要一个非负数的延迟。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:973 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:979 msgid "Parallel simulation is only possible when compiled with Fox." msgstr "平行仿真只有在用Fox编译时才能实现。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:978 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:984 msgid "You need at least one thread." msgstr "你至少要有一条线。" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:982 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:988 msgid "" "Number of threads exceeds number of thread-rngs. Simulation runs with the " "same seed may produce different results" msgstr "" "线程数量超过了线程-rngs的数量。用相同的种子进行仿真运行可能产生不同的结果" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:985 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:991 msgid "game.mode must be one of ['tls', 'drt']" msgstr "game.mode必须是['tls', 'drt']之一" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:992 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:998 msgid "" "Invalid transfer option '%'. Must be one of 'parkingAreas', 'ptStops' and " "'allJunctions'" msgstr "" "无效的转运选项'%'。必须是'parkingAreas'、'ptStops'和'allJunctions'中的一个" -#: /home/micha/programming/sumo/src/microsim/MSFrame.cpp:1051 +#: D:\Repos\sumo/src\microsim\MSFrame.cpp:1057 msgid "" "Integration method was set to 'ballistic', since a default action step " "length was specified." msgstr "集成方法被设置为 \"弹道\",因为指定了一个默认的动作步长。" -#: /home/micha/programming/sumo/src/microsim/MSInsertionControl.cpp:276 -#: /home/micha/programming/sumo/src/router/RONet.cpp:481 +#: D:\Repos\sumo/src\microsim\MSInsertionControl.cpp:276 +#: D:\Repos\sumo/src\router\RONet.cpp:481 #, c-format msgid "Another vehicle with the id '%' exists." msgstr "存在另一辆ID为'%'的车辆。" -#: /home/micha/programming/sumo/src/microsim/MSInternalJunction.cpp:55 +#: D:\Repos\sumo/src\microsim\MSInternalJunction.cpp:55 #, c-format msgid "Internal junction % has no incoming lanes" msgstr "内部路口处%没有进入车道" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:312 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:314 msgid "Unequal lengths of neigh lane '%' and lane '%' (% != %)." msgstr "邻近车道'%'和车道'%'的长度不等(% !=%)。" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:321 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:323 msgid "Unequal lengths of bidi lane '%' and lane '%' (% != %)." msgstr "标线'%'和标线'%'的长度不等(% !=%)。" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:758 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:760 #, c-format msgid "Vehicle '%' is inserted in emergency situation." msgstr "车辆'%'是在紧急情况下插入的。" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:764 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:766 msgid "Vehicle '%' will not be able to depart using the given velocity (%)!" msgstr "车辆'%'将无法使用给定的速度(%)出发!" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:780 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:782 msgid "" "Invalid departPos % given for vehicle '%'. Inserting at lane end instead." msgstr "为车辆'%'提供的出发位置(departPos)%无效。在车道末端插入。" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1025 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:1027 msgid "" "Vehicle '%' is inserted too fast and will violate the speed limit on a lane " "'%'." msgstr "车辆'%'插入速度过快,将违反车道'%'的速度限制。" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1029 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:1031 msgid "" "Vehicle '%' will not be able to depart using the given velocity (slow lane " "ahead)!" msgstr "车辆'%'将无法使用给定的速度出发(前方为慢车道)!!" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1658 -msgid "" -"Vehicle '%' collision with person '%', lane='%', gap=%, time=%, stage=%." -msgstr "车辆'%'与人'%'相撞,车道='%',差距=%,时间=%,阶段=%。" +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2059 +msgid "Vehicle '%'" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2088 +#, c-format +msgid "Teleporting vehicle '%' after" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2093 +#, c-format +msgid "Removing vehicle '%' after" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2097 +#, c-format +msgid "Keeping remote-controlled vehicle '%' after" +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2110 +msgid " collision with person '%', lane='%', gap=%, time=%, stage=%." +msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:1800 -msgid "Vehicle '%' collision with person '%', lane='%', time=%, stage=%." -msgstr "车辆'%'与人'%'发生碰撞,车道='%',时间=%,阶段=%。" +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2113 +msgid " collision with person '%', lane='%', time=%, stage=%." +msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2101 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2179 msgid "Teleporting vehicle '%'; beyond end of lane, target lane='%', time=%." msgstr "遥控车'%';超出车道尽头,目标车道='%',时间=%。" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2108 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2186 msgid "Removing vehicle '%' after earlier collision, lane='%', time=%." msgstr "在先前的碰撞后移走车辆'%',车道='%',时间=%。" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2113 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2191 msgid "Teleporting vehicle '%' after earlier collision, lane='%', time=%." msgstr "在先前的碰撞后,将车辆'%'遥控,车道='%',时间=%。" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:2585 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:2663 msgid "" "Lane '%' is approached multiple times from edge '%'. This may cause " "collisions." msgstr "车道'%'从路段'%'多次接近。这可能导致碰撞。" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:4184 -msgid "Invalid collision.action '%'." -msgstr "无效的碰撞.动作'%'。" +#: D:\Repos\sumo/src\microsim\MSLane.cpp:4268 +msgid "Invalid % '%'." +msgstr "" -#: /home/micha/programming/sumo/src/microsim/MSLane.cpp:4314 +#: D:\Repos\sumo/src\microsim\MSLane.cpp:4405 msgid "" "State was saved with more than % threads. Change the number of threads or do " "not load RNG state" msgstr "状态被保存在超过%的线程中。改变线程数或不加载RNG状态" -#: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:169 -#: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:232 -#: /home/micha/programming/sumo/src/microsim/MSLeaderInfo.h:239 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:169 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:232 +#: D:\Repos\sumo/src\microsim\MSLeaderInfo.h:239 msgid "Method not supported" msgstr "不支持该方法" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:187 -#: /home/micha/programming/sumo/src/router/RONet.cpp:60 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:187 +#: D:\Repos\sumo/src\router\RONet.cpp:60 msgid "A network was not yet constructed." msgstr "一个网络还没有建成。" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:221 -#: /home/micha/programming/sumo/src/router/RONet.cpp:83 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:221 +#: D:\Repos\sumo/src\router\RONet.cpp:83 msgid "A network was already constructed." msgstr "一个网络已经建成。" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:286 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:286 msgid "" "Option weights.separate-turns is only supported when simulating with " "internal lanes" -msgstr "选项weights.separate-turns仅在使用内部车道进行仿真时被支持。" +msgstr "仅在使用內部车道进行仿真时,才可以使用选项 weights.separate-turns" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:388 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:388 msgid "Simulation version % started with time: %." msgstr "仿真版本%开始时间:%。" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1459 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1463 msgid "" "TraCI and Triggers cannot use routing algorithm '%'. using 'astar' instead." msgstr "TraCI和Triggers不能使用路径算法'%',使用'astar'代替。" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1629 -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:427 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:235 -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:221 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1633 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:427 +#: D:\Repos\sumo/src\router\ROLoader.cpp:235 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:221 #, c-format msgid "Loading of % failed." msgstr "加载%失败。" -#: /home/micha/programming/sumo/src/microsim/MSNet.cpp:1649 +#: D:\Repos\sumo/src\microsim\MSNet.cpp:1653 #, c-format msgid "Loading state from '%' failed." msgstr "从'%'载入状态失败。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:103 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:108 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:103 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:108 msgid "Taz usage was requested but no taz present in % '%'!" msgstr "要求使用交通分区(Taz),但%'%'中没有Taz!" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:262 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:262 #, c-format msgid "Vehicle type distribution '%' is empty." msgstr "车辆类型分布'%'为空。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:266 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:910 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:266 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:910 #, c-format msgid "Another vehicle type (or distribution) with the id '%' exists." msgstr "存在另一个ID为'%'的车辆类型(或分布)。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:287 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:316 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:287 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:316 msgid "Ids of internal routes are ignored (vehicle '%')." msgstr "内部路径的编号被忽略(车辆'%')。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:306 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:306 msgid "Invalid reference to route '%' in route %." msgstr "路径%中对路径'%'的引用无效。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:317 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:317 msgid "Attribute 'period' is deprecated for route. Use 'cycleTime' instead." msgstr "路径的属性'period'已被废弃。请使用'cycleTime'代替。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:330 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:330 msgid "Disconnected route % when repeating." msgstr "重复时断开路径%。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:336 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:336 msgid "Invalid cost for route '%'." msgstr "路径'%'的成本无效。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:393 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:393 #, c-format msgid "Route '%' has no edges." msgstr "路径'%'没有路段。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:411 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:446 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:411 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:446 msgid "" "Cannot repeat stops with 'until' in route % because no cycleTime is defined." msgstr "不能重复路径%中带有'until'的站点,因为没有定义cycleTime。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:420 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:420 msgid "" "Cannot repeat stops with 'arrival' in route % because no cycleTime is " "defined." msgstr "不能重复路径%中带有'到达'的站点,因为没有定义cycleTime。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:443 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:443 #, c-format msgid "A vehicle with id '%' already exists." msgstr "已经存在一个ID为'%'的车辆。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:446 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:520 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:446 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:520 #, c-format msgid "Another route (or distribution) with the id '%' exists." msgstr "存在另一个ID为'%'的路径(或分布)。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:524 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:524 #, c-format msgid "Route distribution '%' is empty." msgstr "路径分布'%'是空的。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:564 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:559 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:564 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:559 msgid "" "Vehicle type '%' with vClass=pedestrian should only be used for persons and " "not for vehicle '%'." msgstr "vClass=pedestrian的车辆类型'%'只能用于人员,不能用于车辆'%'。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:573 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:573 msgid "" "Ignoring child element 'route' for vehicle '%' because attribute 'route' is " "set." msgstr "忽略车辆'%'的子元素'route',因为属性'route'已设置。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:582 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:582 #, c-format msgid "Vehicle '%' has no route." msgstr "车辆'%'没有路径。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:724 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:724 msgid "" "Could not merge vehicle stops for vehicle '%' into implicitly defined route " "'%'" -msgstr "无法将车辆'%'的车辆停靠点合并到隐式定义的路径%'中。" +msgstr "无法将车辆 '%' 的车辆停靠点合并到隐式定义的路径中 '%'" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:755 -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:327 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:755 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:327 msgid "" "Person '%' receives type '%' which implicitly uses unsuitable vClass '%'." msgstr "人'%'收到类型'%',隐含地使用不合适的vClass'%'。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:891 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:891 msgid "" "There exists a person and a container with the same id '%'. Starting with " "SUMO 1.9.0 this is an error." msgstr "存在一个人和一个具有相同id'%'的货箱。从SUMO 1.9.0开始,这是一个错误。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:986 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:986 #, c-format msgid "Another flow with the id '%' exists." msgstr "存在另一个ID为'%'的流量。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1127 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1127 msgid "The busStop '%' is not known%." msgstr "公共汽车站'%'不详%。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1133 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1133 msgid "The containerStop '%' is not known%." msgstr "货箱停靠点'%'不详%。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1139 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1139 msgid "The parkingArea '%' is not known%." msgstr "停车区'%'不详%。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1146 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1146 msgid "The chargingStation '%' is not known%." msgstr "充电站'%'不知道%。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1153 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1153 msgid "The overhead wire segment '%' is not known%." msgstr "高架线段'%'不详%。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1157 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1157 msgid "Invalid stop definition%." msgstr "无效的停靠定义%。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1305 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1309 msgid "Stop edge '%' missing in attribute 'via' for % '%'" -msgstr "在属性'via'中缺少'%'的停靠路段,为%的'%'的属性。" +msgstr "在属性'via'中缺少'%'的停靠点路段,其是针对% '%'" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1324 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1198 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1316 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1329 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1203 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1321 msgid "" "The attribute departPos is no longer supported for walks, please use the " "person attribute, the arrivalPos of the previous step or explicit stops." @@ -2737,185 +2765,190 @@ "对于步行,不再支持departPos属性,请使用人的属性、上一步的到达位置" "( arrivalPos)或明确的停靠。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1350 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1355 msgid "Ignoring arrivalPos for % because it is outside the given stop '%'." msgstr "忽略%的到达位置(arrivationPos),因为它在给定站点'%'之外。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1356 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1219 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1361 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1224 msgid "No destination edge for %." msgstr "没有目的地路段的%。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1385 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1239 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1390 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1244 msgid "Start edge not defined for person '%'." msgstr "没有为'%'的人定义起始路段。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1395 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1460 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1250 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1307 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1400 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1465 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1255 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1312 msgid "Non-positive walking duration for '%'." msgstr "为'%'没有正的行走时间。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1422 -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1466 -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1311 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1427 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1471 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1316 msgid "Non-positive walking speed for '%'." msgstr "为'%'没有正的行走速度。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1491 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1496 msgid "No edges to walk for person '%'." msgstr "为人'%'没有步行的路段。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1528 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1533 msgid "" "Could not find departure lane for walk of person '%' when interpreting " "departPosLat" -msgstr "解释departPosLat时,找不到人走的出发车道'%'。" +msgstr "在解释出发侧向位置(departPosLat)时,找不到人员'%' 步行的出发巷道" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1600 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1605 msgid "Could not read tranship speed for container '%'." msgstr "无法读取货箱'%'的转运速度。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1608 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1613 msgid "Non-positive tranship speed for container '%'." msgstr "为货箱\"%\"没有正的转运速度。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1634 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1639 #, c-format msgid "The start edge for container '%' is not known." msgstr "货箱'%'的起始路段未知。" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1653 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1658 msgid "" "Inconsistent tranship for container '%', only one option is allowed: " "'edges', 'to', 'containerStop'" msgstr "" -"货箱'%'的转运(tranship)不一致,只允许一个选项: '路段', '到', '货箱停靠'。" +"货柜 '%' 的转运(tranship)不一致,只允许一个选项:'路段(edges)', '到(to)', '货" +"柜停靠点(containerStop)'" -#: /home/micha/programming/sumo/src/microsim/MSRouteHandler.cpp:1659 +#: D:\Repos\sumo/src\microsim\MSRouteHandler.cpp:1664 msgid "No edges to tranship container '%'." msgstr "没有路段来转运货箱'%'。" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:76 -#: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:64 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:164 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteLoader.cpp:36 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:76 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:64 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:164 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteLoader.cpp:36 msgid "Can not read XML-file '%'." msgstr "无法读取XML-文件'%'。" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:87 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:87 msgid "Could not parse time from state file '%'" msgstr "无法解析状态文件'%'中的时间" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:184 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:184 msgid "State was written with sumo version % (present: %)!" msgstr "状态是用sumo版本%写的(现在:%)!" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:229 -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:285 -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignalConstraint.cpp:144 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:229 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:285 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignalConstraint.cpp:144 #, c-format msgid "Unknown lane '%' in loaded state." msgstr "未知车道'%'处于加载状态。" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:389 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:389 #, c-format msgid "Ignoring program '%' for traffic light '%' in loaded state" -msgstr "忽略交通信号灯'%'在加载状态下的程序'%'。" +msgstr "忽略载入状态(state)內的配时方案 '%'; 交通信号为'%'" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:424 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:424 msgid "Could not load vehicle control state" msgstr "无法加载车辆控制状态" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:433 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:433 msgid "Removed % vehicles while loading state." msgstr "删除了加载状态时的%车辆。" -#: /home/micha/programming/sumo/src/microsim/MSStateHandler.cpp:459 +#: D:\Repos\sumo/src\microsim\MSStateHandler.cpp:459 #, c-format msgid "Could not load vehicle '%' from state" -msgstr "无法从状态中加载车辆'%'。" +msgstr "无法从状态载入车辆 '%'" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:319 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:319 msgid "No gap control available for meso." msgstr "中观不提供间隙控制。" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:714 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:714 msgid "" "Lane change model did not provide a reason for changing (state=%, time=%\n" msgstr "车道变化模型没有提供变化的原因(状态=%,时间=%)。\n" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:755 -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:171 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:755 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:171 msgid "should not happen" msgstr "不应发生" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:944 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:944 msgid "" "Vehicle '%' moved by TraCI from % to % (dist %) with implied speed of % " "(exceeding maximum speed %). time=%." msgstr "" "车辆'%'通过TraCI从%移动到%(距离%),隐含速度为%(超过最大速度%)。 时间=%。" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1701 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1688 msgid "Vehicle '%' aborts joining after extension of %s at time %." msgstr "车辆'%'在时间%的延长后中止加入。" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:1846 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:1833 msgid "Vehicle '%' to split from vehicle '%' is not known. time=%." msgstr "从车辆'%'分出的车辆'%'未知。时间=%。" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:2741 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:2769 msgid "Suspicious right_before_left junction '%'." msgstr "可疑的右先于左(right_before_left)路口'%'。" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4375 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4487 msgid " for unknown reasons" msgstr " 原因不详" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4383 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4495 msgid "" -"Vehicle '%' performs emergency stop at the end of lane '%'% (decel=%, " -"offset=%), time=%." +"Vehicle '%' performs emergency stop at the end of lane '%'% (decel=%, offset=" +"%), time=%." msgstr "车辆'%'在车道'%'的末端执行紧急停车(减速=%,偏移=%),时间=%。" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4458 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4570 msgid "Unexpected end of opposite lane for vehicle '%' at lane '%', time=%." msgstr "车辆'%'在'%'车道上意外结束对向车道,时间=%。" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:4576 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:4688 msgid "" "Vehicle '%' performs emergency braking on lane '%' with decel=%, wished=%, " "severity=%, time=%." msgstr "车辆'%'在车道'%'上执行紧急制动,减速=%,希望=%,严重程度=%,时间=%。" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:5427 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:5571 #, c-format msgid "Vehicle '%' aborts stop." msgstr "车辆'%'放弃停靠。" -#: /home/micha/programming/sumo/src/microsim/MSVehicle.cpp:7213 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:7408 msgid "Error: Invalid vehicles in state (may be a meso state)!" msgstr "错误: 状态中的无效车辆(可能是一个中观状态)!!" -#: /home/micha/programming/sumo/src/microsim/MSVehicleControl.cpp:449 +#: D:\Repos\sumo/src\microsim\MSVehicle.cpp:7439 +msgid "Action steps are out of sync for loaded vehicle '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\MSVehicleControl.cpp:469 #, c-format msgid "Vehicle '%' aborted waiting for a % that will never come." msgstr "车辆'%'中止,等待一个永远不会到来的%。" -#: /home/micha/programming/sumo/src/microsim/MSVehicleTransfer.cpp:169 +#: D:\Repos\sumo/src\microsim\MSVehicleTransfer.cpp:170 msgid "Vehicle '%' ends teleporting on edge '%', time=%." msgstr "车辆'%'在路段'%'结束传送,时间=%。" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:308 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:318 msgid "" "Value of 'emergencyDecel' (%) should be higher than 'decel' (%) for vType " "'%'." msgstr "对于vType'%','紧急emergencyDecel'(%)的值应该高于'decel'(%)。" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:311 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:321 msgid "" "Value of 'emergencyDecel' (%) is lower than 'apparentDecel' (%) for vType " "'%' may cause collisions." @@ -2923,14 +2956,14 @@ "对于vType'%','紧急emergencyDecel'(%)的值低于'apparentDecel'(%),可能会导致碰" "撞。" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:433 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:443 #, c-format msgid "" "Value of tau=% in vehicle type '%' lower than simulation step size may cause " "collisions." msgstr "车辆类型'%'中的tau=%的值低于仿真步长,可能导致碰撞。" -#: /home/micha/programming/sumo/src/microsim/MSVehicleType.cpp:439 +#: D:\Repos\sumo/src\microsim\MSVehicleType.cpp:449 #, c-format msgid "" "Vehicle class '%' of vType '%' is set as ignored by option --meso-ignore-" @@ -2940,328 +2973,329 @@ "vType'%'的车辆类别'%'被选项--meso-ignore-lanes-by-vclass设置为忽略,以确保默" "认车辆容量。设置选项--meso-lane-queue,用于多模式的meso模拟" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_CC.cpp:66 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_CC.cpp:66 msgid "" "The number of lanes needs to be specified in the attributes of carFollowing-" "CC with the \"lanesCount\" attribute" -msgstr "车道的数量需要在carFollowing-CC的属性中用 \"lanesCount \"属性指定。" +msgstr "在 carFollowing-CC 的属性中, 需要指定属性 \"lanesCount\" 的车道数" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Daniel1.cpp:61 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Daniel1.cpp:61 msgid "" "Maximum speed of vehicle '%' is lower than the minimum speed (min: %, max: " "%)." msgstr "车辆的最大速度'%'低于最小速度(最小:%,最大:%)。" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Krauss.cpp:58 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Krauss.cpp:58 msgid "Rounding 'sigmaStep' to % for vType '%'" -msgstr "将'sigmaStep'四舍五入到%,用于vType'%'。" +msgstr "将车辆类型(vType)的参数 'sigmaStep' 四舍五入为 %; 车辆类型为 '%'" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Rail.cpp:50 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Rail.cpp:50 msgid "Unknown train type: %. Exiting!" msgstr "未知列车类型:%。正在退出!" -#: /home/micha/programming/sumo/src/microsim/cfmodels/MSCFModel_Rail.cpp:252 +#: D:\Repos\sumo/src\microsim\cfmodels\MSCFModel_Rail.cpp:252 msgid "" "Anything else than semi implicit euler update is not yet implemented. " "Exiting!" msgstr "除了半隐式euler 更新,其他的都还没有实现。退出!" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:161 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:165 #, c-format msgid "Device '%' cannot save state" msgstr "器件'%'不能保存状态" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:201 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:205 msgid "Invalid float value '%'for parameter '%'" msgstr "参数'%'的浮动值'%'无效" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:214 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:218 msgid "Invalid bool value '%'for parameter '%'" msgstr "参数'%'的bool值'%'无效" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice.cpp:227 +#: D:\Repos\sumo/src\microsim\devices\MSDevice.cpp:231 msgid "Invalid time value '%'for parameter '%'" msgstr "参数'%'的时间值'%'无效" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:65 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:65 msgid "The range of the bt receiver" msgstr "bt接收器的范围" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:68 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:68 msgid "Whether all recognition point shall be written" msgstr "是否所有的识别点都要写上" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:71 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:71 msgid "The offtime used for calculating detection probability (in seconds)" msgstr "用于计算检测概率的关闭时间(秒)" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:295 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:295 msgid "" "The vehicle '%' cannot be in the range of vehicle '%', leave, and enter it " "in one step." msgstr "车辆 '%' 不能在一个步长step)內离开且进入车辆 '%' 范围內。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:421 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTreceiver.cpp:436 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:421 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTreceiver.cpp:436 msgid "" "btreceiver: Can not update position of vehicle '%' which is not on the road." msgstr "bt接收器: 无法更新不在路上的车辆'%'的位置。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTsender.cpp:120 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_BTsender.cpp:134 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTsender.cpp:120 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_BTsender.cpp:134 msgid "" "btsender: Can not update position of vehicle '%' which is not on the road." msgstr "bt发送器: 无法更新不在路上的车辆'%'的位置。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:52 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:52 msgid "Track fuel consumption for non-electric vehicles" msgstr "跟踪非电动汽车的燃料消耗" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:109 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:122 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:128 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:113 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:126 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:132 msgid "" "Battery builder: Vehicle '%' doesn't have a valid value for parameter % (%)." msgstr "电池制造商: 车辆'%'的参数%(%)没有有效值。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:199 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:203 #, c-format msgid "Battery of vehicle '%' is depleted." msgstr "车辆'%'的电池已耗尽。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:309 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:319 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Battery.cpp:329 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:313 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:323 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Battery.cpp:333 msgid "Trying to set into the battery device of vehicle '%' an invalid % (%)." msgstr "试图在车辆'%'的电池设备中设置一个无效的%(%)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Bluelight.cpp:59 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Bluelight.cpp:59 msgid "" "Set the distance at which other drivers react to the blue light and siren " "sound" msgstr "设置其他司机对蓝光和警笛声的反应距离" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Bluelight.cpp:68 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Bluelight.cpp:68 msgid "" "bluelight device is not compatible with mesosim (ignored for vehicle '%')" -msgstr "蓝光设备与mesosim不兼容(对于车辆'%',忽略不计)。" +msgstr "蓝光(bluelight)装置与中观模拟(mesosim)不兼容 (被车辆 '%' 忽略)" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:66 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:66 msgid "Initial value assigned to the driver's awareness." msgstr "分配给司机的意识的初始值。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:68 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:68 msgid "Time scale for the error process." msgstr "误差过程的时间刻度。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:70 msgid "Noise intensity driving the error process." msgstr "驱动错误过程的噪音强度。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:72 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:72 msgid "" "General scaling coefficient for applying the error to the perceived speed " "difference (error also scales with distance)." msgstr "将误差应用于感知速度差异的一般比例系数(误差也与距离成比例)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:74 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:74 msgid "" "General scaling coefficient for applying the error to the perceived distance " "(error also scales with distance)." msgstr "将误差应用于感知距离的一般比例系数(误差也与距离成比例)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:76 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:76 msgid "" "General scaling coefficient for applying the error to the vehicle's own " "speed when driving without a leader (error also scales with own speed)." -msgstr "一般缩放系数,用于将误差应用于车辆在没有前车时的自身速度(误差也随自身速度缩放" -")。" +msgstr "" +"一般缩放系数,用于将误差应用于车辆在没有前车时的自身速度(误差也随自身速度缩" +"放)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:78 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:78 msgid "" "Base threshold for recognizing changes in the speed difference (threshold " "also scales with distance)." msgstr "识别速度差变化的基本阈值(阈值也随距离变化而变化)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:80 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:80 msgid "" "Base threshold for recognizing changes in the headway (threshold also scales " "with distance)." msgstr "识别行进中的变化的基本阈值(阈值也随着距离的增加而变化)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:82 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:82 msgid "Minimal admissible value for the driver's awareness." msgstr "驾驶员意识的最小可接受值。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_DriverState.cpp:84 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_DriverState.cpp:84 msgid "" "Maximal reaction time (~action step length) induced by decreased awareness " "level (reached for awareness=minAwareness)." msgstr "" "意识水平下降引起的最大反应时间(~动作步长)(达到的意识= minAwareness)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:102 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:116 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:116 msgid "Invalid value '%'for vType parameter '%'" -msgstr "vType参数'%'的无效值'%'。" +msgstr "无效的值 '%'; 车辆类型(vType)参数为 '%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:166 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:179 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:166 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:179 msgid "" "ElecHybrid builder: Vehicle '%' doesn't have a valid value for parameter % " "(%)." msgstr "ElecHybrid builder: 车辆'%'没有有效的参数%(%)值。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:374 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:374 #, c-format msgid "" "The resistivity of overhead wire segment connected to vehicle % is < 0. Set " "to 1e-6." msgstr "与车辆连接的架空线段的电阻率%<0。 设置为1e-6。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:432 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:528 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:711 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:848 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:432 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:528 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:711 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:848 msgid "" "Overhead wire solver is on, but the Eigen library has not been compiled in!" msgstr "架空线解算器已打开,但Eigen库还没有被编译进去!" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ElecHybrid.cpp:648 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:883 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ElecHybrid.cpp:648 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:883 msgid "The element or node with the last Id was not found in the circuit!" msgstr "在电路中找不到具有最后一个识别名(ID)的元素或节点!" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Emissions.cpp:47 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Emissions.cpp:47 msgid "Recording begin time for emission-data" msgstr "排放数据的记录开始时间" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Emissions.cpp:50 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Emissions.cpp:50 msgid "Recording period for emission-output" msgstr "排放-输出的记录期" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:48 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:48 msgid "" "An exemplary parameter which can be used by all instances of the example " "device" msgstr "一个可由示例设备的所有实例使用的示范性参数" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:63 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:63 #, c-format msgid "Invalid value '%'for vehicle parameter 'example'" msgstr "车辆参数'示范(example)'的数值'%'无效" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Example.cpp:75 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Example.cpp:75 #, c-format msgid "Invalid value '%'for vType parameter 'example'" -msgstr "vType参数'示范(example)'的无效值'%'。" +msgstr "车辆类型(vType参数 '范例(example)' 的值 '%' 无效" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:67 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:67 msgid "Recording begin time for FCD-data" msgstr "浮动车(FCD)数据的记录开始时间" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:70 -#: /home/micha/programming/sumo/src/microsim/devices/MSTransportableDevice_FCD.cpp:49 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSTransportableDevice_FCD.cpp:49 msgid "Recording period for FCD-data" msgstr "浮动车(FCD)数据的记录期" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:73 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:73 msgid "Record objects in a radius around equipped vehicles" msgstr "记录装备车辆周围半径内的物体" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:123 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:123 #, c-format msgid "Specified shape '%' for filtering fcd-output could not be found." msgstr "找不到用于过滤浮动车资料(fcd)输出的指定形状'%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:148 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:148 msgid "Could not load names of edges for filtering fcd-output from '%'." msgstr "无法从'%'中载入用于过滤浮动车资料(fcd)输出的路段名称。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_FCD.cpp:167 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_FCD.cpp:167 #, c-format msgid "Unknown attribute '%' to write in fcd output." msgstr "将未知属性'%'写入浮动车(FCD)输出数据中。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Friction.cpp:48 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Friction.cpp:48 msgid "" "The measurement noise parameter which can be applied to the friction device" msgstr "可应用于摩擦装置的测量噪音参数" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Friction.cpp:50 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Friction.cpp:50 msgid "" "The measurement offset parameter which can be applied to the friction device " "-> e.g. to force false measurements" msgstr "可应用于摩擦装置的测量偏移参数------例如,强迫错误的测量值" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:49 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:49 msgid "The communication range to the traffic light" msgstr "与交通信号灯的通信范围" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:52 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:52 msgid "The maximum speed factor when approaching a green light" msgstr "接近绿灯时的最高速度系数" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:55 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:55 msgid "Minimum speed when coasting towards a red light" msgstr "向红灯滑行时的最低速度" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_GLOSA.cpp:171 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_GLOSA.cpp:171 msgid "" "Invalid value '%' for parameter 'device.glosa.range' of traffic light '%'" msgstr "交通信号灯'%'的参数'device.glosa.range'的值'%'无效" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:54 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:54 msgid "The period with which the vehicle shall be rerouted" msgstr "车辆应改道的时间" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:58 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:58 msgid "The rerouting period before depart" msgstr "出发前的改道期" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:62 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:62 msgid "The weight of prior edge weights for exponential moving average" msgstr "指数移动平均值的先前(prior)路段权重的权重" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:66 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:66 msgid "The number of steps for moving average weight of prior edge weights" msgstr "先前(prior)路段权重的移动平均权重的次数(number of steps)" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:70 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:70 msgid "The interval for updating the edge weights" msgstr "更新路段权重的时间间隔" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:75 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:75 msgid "Use zones (districts) as routing start- and endpoints" msgstr "使用区域(地区)作为路径的起点和终点" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:78 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:78 msgid "" "Use weight files given with option --weight-files for initializing edge " "weights" -msgstr "使用选项--weight-files指定权重文件,以进行路段权重的初始化。" +msgstr "使用选项--weight-files 指定权重文件,以进行路段权重的初始化" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:82 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:82 msgid "The number of parallel execution threads used for rerouting" msgstr "用于重新搜寻路径的平行执行的线程(threads)数量" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:85 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:85 msgid "Let rerouting happen at the same time for all vehicles" msgstr "让所有车辆在同一时间进行改道" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:88 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:88 msgid "Allow rerouting triggered by rail signals." msgstr "允许由铁路信号引发的改道。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:91 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:91 msgid "Compute separate average speeds for bicycles" msgstr "计算自行车的个别平均速度" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:94 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:94 msgid "Save adapting weights to FILE" msgstr "将适应的权重保存到文件中" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:102 msgid "" "Only one of the options 'device.rerouting.adaptation-steps' or 'device." "rerouting.adaptation-weight' may be given." @@ -3269,37 +3303,35 @@ "只有给定一个选项 'device.rerouting.adaptation-steps' 或是'devicererouting." "adaptation-weight' 。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:106 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:106 msgid "weights.random-factor cannot be less than 1" msgstr "weights.random-factor 不能小于 1" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:110 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:110 msgid "Negative value for device.rerouting.adaptation-interval!" msgstr "device.rerouting.adaptation-interval 的值为负值!" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:115 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:115 msgid "" "The value for device.rerouting.adaptation-weight must be between 0 and 1!" msgstr "device.rerouting.adaptation-weight 的值必须在 0 和 1 之间!" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:120 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:243 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:120 +#: D:\Repos\sumo/src\router\ROFrame.cpp:243 msgid "Parallel routing is only possible when compiled with Fox." msgstr "平行路径只有在用Fox编译时才能实现。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Routing.cpp:125 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Routing.cpp:125 msgid "Adapting number of routing threads to number of simulation threads." msgstr "将路径搜寻的线程(threads)数调整为仿真的线程(threads)数。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:220 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:234 msgid "" "Specifies which measures will be logged (as a space or comma-separated " -"sequence of IDs in ('TTC', 'DRAC', 'PET'))" +"sequence of IDs in ('TTC', 'DRAC', 'PET', 'PPET','MDRAC'))" msgstr "" -"指定将记录哪些指标值(在('TTC', 'DRAC', 'PET')中作为以空格或逗号分隔的识别名" -"(ID)序列)" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:222 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:236 msgid "" "Specifies space or comma-separated thresholds corresponding to the specified " "measures (see documentation and watch the order!). Only events exceeding the " @@ -3308,58 +3340,70 @@ "指定与指定指标相对应的阈值,并用空格或逗号分隔(参见说明文档并注意顺序!)。" "只有超过阈值的事件(event)才会被记录下来。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:224 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:238 msgid "" "Specifies whether trajectories will be logged (if false, only the extremal " "values and times are reported)." msgstr "指定是否要记录轨迹(如果为否的,则仅报告极端值和时间)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:226 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:240 msgid "" "Specifies the detection range in meters. For vehicles below this distance " "from the equipped vehicle, SSM values are traced." msgstr "以米为单位指定检测范围。对于低于此距离的配备车辆,SSM值会被追踪。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:228 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:242 msgid "" "Specifies the time in seconds to be logged after a conflict is over. " "Required >0 if PET is to be calculated for crossing conflicts." msgstr "指定冲突结束后记录的时间(秒)。如果要计算交叉冲突的PET,要求>0。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:230 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:244 +msgid "Specifies the perception reaction time for MDRAC computation." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:246 msgid "Give a global default filename for the SSM output" msgstr "为SSM输出给定一个总体(global)预设档案名称" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:232 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:248 msgid "Whether to use coordinates of the original reference system in output" msgstr "是否在输出中使用原始参考系的坐标" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:234 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:250 msgid "Whether to write positions (coordinates) for each timestep" msgstr "是否写入每个时间段的位置(坐标)" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:236 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:252 msgid "Whether to write lanes and their positions for each timestep" msgstr "是否写入每个时间段的车道和其位置" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:247 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:254 +msgid "" +"Which conflicts will be excluded from the log according to the conflict type " +"they have been classified (combination of values in 'ego', 'foe' , '', any " +"numerical valid conflict type code). An empty value will log all and " +"'ego'/'foe' refer to a certain conflict type subset." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:265 msgid "Could not load names of edges for filtering SSM device output from '%'." msgstr "无法从'%'载入路段名称以过滤SSM装置的输出。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:1057 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:1119 msgid "" "SSM device of vehicle '%' detected collision with vehicle '%' at time=%." msgstr "无法从'%'加载用于过滤SSM设备输出的路段的名称。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2188 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2331 msgid "" "Cannot classify SSM encounter between ego vehicle % and foe vehicle % at " "time=%\n" msgstr "" "无法对自我(ego)车辆%和对方(foe)车辆% 在时间=% 相遇时两者之间的SSM进行分类。\n" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2366 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:2390 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2509 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:2533 msgid "" "Cannot compute SSM due to bad internal lane geometry at junction '%'. " "Crossing point between traffic from links % and % not found." @@ -3367,101 +3411,139 @@ "由于路口'%'处的内部车道几何形状不佳,无法计算SSM。未找到从路段%和%的交通流之" "间的交叉点。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3497 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3699 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3703 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3984 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.measures'." msgstr "车辆参数'ssm.measures'的数值'%'无效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3503 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3705 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3709 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3990 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.measures'." msgstr "车辆类型(vType)参数'ssm.measures'的值'%'无效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3508 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3714 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.file'. Using " "default of '%'." msgstr "车辆'%'没有提供车辆参数'device.ssm.file'文件。使用默认的'%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3531 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3737 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.geo'." msgstr "车辆参数'ssm.geo'的数值'%'无效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3537 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3743 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.geo'." msgstr "vType参数'ssm.geo'的无效值'%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3542 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3748 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.geo'. Using " "default of '%'." msgstr "车辆'%'不提供车辆参数'device.sm.geo'。使用默认的'%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3558 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3764 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.write-positions'." msgstr "车辆参数'SSM.Write-positions'的值'%'无效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3564 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3770 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.write-positions'." msgstr "vType参数'ssm.write-positions'的值'%'无效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3569 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3596 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3775 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3802 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.write-positions'. " "Using default of '%'." msgstr "" "车辆'%'没有提供车辆参数'device.sm.write-positions'记录的位置。使用默认的'%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3585 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3791 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.write-lane-positions'." msgstr "车辆参数'ssm.write-lan-positions'记录的位置值'%'无效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3591 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3797 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.write-lane-positions'." msgstr "vType参数'ssm.write-lan-positions'记录的位置值'%无效'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3612 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3819 +#, c-format +msgid "Invalid value '%' for vehicle parameter 'ssm.conflict-order'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3827 +#, c-format +msgid "Invalid value '%' for vType parameter 'ssm.conflict-order'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3833 +msgid "" +"Vehicle '%' does not supply vehicle parameter 'device.ssm.exclude-conflict-" +"types'. Using default of '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3851 +msgid "" +"SSM order filter '%' is not supported. Aborting construction of SSM device " +"'%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3868 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.range'." msgstr "车辆参数'ssm.range'的值'%'无效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3618 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3874 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.range'." msgstr "vType参数'ssm.range'的值'%'无效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3623 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3879 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.range'. Using " "default of '%'." msgstr "车辆'%'不提供车辆参数'device.sm.range'。使用默认的'%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3639 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3895 +#, c-format +msgid "Invalid value '%'for vehicle parameter 'ssm.mdrac.prt'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3901 +#, c-format +msgid "Invalid value '%'for vType parameter 'ssm.mdrac.prt'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3906 +msgid "" +"Vehicle '%' does not supply vehicle parameter 'device.ssm.mdrac.prt'. Using " +"default of '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3924 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.extratime'." msgstr "车辆参数'ssm.extratime'的值'%'无效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3645 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3930 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.extratime'." msgstr "vType参数'ssm.extratime'的值'%'无效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3650 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3935 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.extratime'. Using " "default of '%'." msgstr "车辆'%'没有提供车辆参数'device.sm.extratime'。使用默认的'%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3656 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3941 #, c-format msgid "" "Negative (or no) value encountered for vehicle parameter 'device.ssm." @@ -3470,50 +3552,50 @@ "车辆参数'device.sm.extratime'在车辆'%'中遇到了负值(或没有),使用默认值%代" "替。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3670 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3955 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.trajectories'." msgstr "车辆参数'ssm.trajectories'的值'%'无效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3676 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3961 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.trajectories'." msgstr "vType参数'SSM.trajectories'的无效值'%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3681 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3966 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.trajectories'. " "Using default of '%'." msgstr "车辆'%'不提供车辆参数'device.sm.trajectories'。使用默认的'%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3710 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:3995 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.measures'. Using " "default of '%'." msgstr "车辆'%'不提供车辆参数'device.sm.measures'。使用默认的'%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3727 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4012 msgid "" "SSM identifier '%' is not supported. Aborting construction of SSM device '%'." msgstr "不支持SSM标识符'%'。正在终止SSM装置'%'的构建。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3738 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4023 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.thresholds'." msgstr "车辆参数'ssm.thresholds'的值'%'无效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3744 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4029 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.thresholds'." msgstr "vType参数'ssm.thresholds'的无效值'%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3749 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4034 msgid "" "Vehicle '%' does not supply vehicle parameter 'device.ssm.thresholds'. Using " "default of '%'." msgstr "车辆'%'不提供车辆参数'device.sm.thresholds'。使用默认的'%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_SSM.cpp:3764 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_SSM.cpp:4049 msgid "" "Given list of thresholds ('%') is not of the same size as the list of " "measures ('%').\n" @@ -3522,172 +3604,214 @@ "给定的阈值列表('%')与量测 (measures)的清单('%')大小不同。\n" "请为每项量测准确指定一个阈值。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:82 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:46 +msgid "" +"Time to wait for a rescue vehicle on the road side when the battery is empty" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:48 +msgid "" +"Additional battery buffer for unexpected traffic situation when estimating " +"the battery need" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:50 +msgid "Battery percentage to go into rescue mode" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:52 +msgid "Search radius in travel time seconds" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:54 +msgid "When to trigger a new search if no station has been found" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:56 +msgid "The maximum charging speed of the vehicle battery" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:58 +msgid "Type of energy transfer" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:60 +msgid "" +"After this waiting time vehicle searches for a new station when the initial " +"one is blocked" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_StationFinder.cpp:124 +msgid "" +"Rerouting using station finder removes all upcoming stops for vehicle '%'." +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:84 msgid "" "The dispatch algorithm [greedy|greedyClosest|greedyShared|routeExtension|" "traci]" msgstr "調度演算法 [greedy|greedyClosest|greedyShared|routeExtension|traci]" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:85 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:87 msgid "Write information from the dispatch algorithm to FILE" msgstr "将调度算法的信息写到文档中" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:88 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:90 msgid "Load dispatch algorithm parameters in format KEY1:VALUE1[,KEY2:VALUE]" -msgstr "以KEY1:VALUE1[,KEY2:VALUE]的格式载入调度算法参数。" +msgstr "以 KEY1:VALUE1[,KEY2:VALUE] 的格式载入调度演算法的参数" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:91 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:93 msgid "The period between successive calls to the dispatcher" msgstr "逐次呼叫调度器之间的时间间隔" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:94 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:96 msgid "The behavior of idle taxis [stop|randomCircling]" msgstr "无载客出租车的行为[停车|巡游揽客]" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:97 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:99 msgid "Write information from the idling algorithm to FILE" msgstr "将空置算法的信息写入文档中" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:115 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:117 msgid "Vehicle '%' with device.taxi should have vClass taxi instead of '%'." msgstr "" "带有device.taxi的车辆'%'应该有车辆类别(vClass )出租车(taxi)而不是'%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:122 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:124 msgid "" "Vehicle '%' with personCapacity % and containerCapacity % is not usable as " "taxi." msgstr "车辆'%'的人员载量%和货箱容量%不能作为出租车使用。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:147 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:149 #, c-format msgid "Dispatch algorithm '%' is not known" msgstr "调度算法'%'不详" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:313 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:328 msgid "Invalid Re-dispatch for existing customer '%' with a new reservation" -msgstr "现有客戶 '%' 新预约的重新派送(re-dispatch)无效" +msgstr "现有客戶 '%' 新预约的重新派送(re-dispatch)无效" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:346 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:361 msgid "Re-dispatch did not mention pickup for existing customer '%'" -msgstr "重新派送时没有提及接取现有客户'%'。" +msgstr "重新派送未提及接取现有客户'%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:453 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:468 msgid "Could not add taxi stop for vehicle '%' to %. time=% error=%." msgstr "无法为车辆'%'添加出租车停靠点至%。时间=% 错误=%。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:569 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:584 msgid "Taxi '%' reaches scheduled end of service at time=%." msgstr "出租车'%'在时间=%时达到预定的服务终点。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_Taxi.cpp:645 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_Taxi.cpp:660 msgid "" "All customers left vehicle '%' at time=% but there are % remaining stops" msgstr "所有客户在时间=%时离开车辆'%',但还有%的剩余站点" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:116 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:116 msgid "Vehicle type for manual driving regime." msgstr "手动驾驶状态(regime)的车辆类型。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:118 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:118 msgid "Vehicle type for automated driving regime." msgstr "自动驾驶系统的车辆类型。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:120 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:120 msgid "Average response time needed by a driver to take back control." msgstr "司机收回控制权所需的平均反应时间。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:122 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:122 msgid "Recovery rate for the driver's awareness after a ToC." msgstr "ToC(take-Over of Control)后司机意识/认知的恢复率。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:124 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:124 msgid "" "Attention level below which a driver restrains from performing lane changes " "(value in [0,1])." msgstr "注意力水平,低于此水平时,驾驶员会限制其进行车道变换(数值为[0,1])。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:126 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:126 msgid "Average awareness a driver has initially after a ToC (value in [0,1])." msgstr "司机最初在ToC之后的平均意识/认知程度(数值为[0,1])。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:128 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:128 msgid "Deceleration rate applied during a 'minimum risk maneuver'." msgstr "在 \"最小风险操作(minimum risk maneuver) \"期间使用的减速率。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:130 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:130 msgid "" "Time, which the vehicle requires to have ahead to continue in automated " "mode. The default value of 0 indicates no dynamic triggering of ToCs." msgstr "车辆需要的时间以继续自动模式。预设值为0,表示没有动态触发ToCs。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:132 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:132 msgid "Probability that a dynamically triggered TOR is not answered in time." msgstr "未及时回答动态触发的TOR概率。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:134 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:134 msgid "If true, the vehicle tries to change to the right during an MRM." msgstr "如果为真,车辆在MRM期间试图向右改变。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:136 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:136 msgid "" "If set, the vehicle tries to reach the given named stopping place during an " "MRM." msgstr "如果设置,车辆在MRM期间试图到达指定的停车地点。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:138 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:138 msgid "Duration the vehicle stays at the safe spot after an MRM." msgstr "在MRM之后,车辆停留在安全停车点的持续时间。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:140 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:140 msgid "" "Maximal acceleration that may be applied during the ToC preparation phase." msgstr "在ToC准备阶段可能使用的最大加速度。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:142 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:142 msgid "Timegap for ToC preparation phase." msgstr "ToC准备阶段的时间间隔。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:144 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:144 msgid "Additional spacing for ToC preparation phase." msgstr "ToC准备阶段的额外间距(spacing)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:146 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:146 msgid "" "Maximal deceleration applied for establishing increased gap in ToC " "preparation phase." msgstr "最大减速应用于在ToC准备阶段建立增加的差距(gap)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:148 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:148 msgid "" "Rate of adaptation towards the increased headway during ToC preparation." msgstr "在ToC准备期间对增加的车间距的调整率。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:150 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:150 msgid "" "Whether a coloring scheme shall by applied to indicate the different ToC " "stages." msgstr "是否应采用着色方案来表示不同的ToC阶段。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:152 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:152 msgid "Switches on output by specifying an output filename." msgstr "通过指定一个输出文件名来打开输出。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:161 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:161 msgid "ToC device is not supported by the mesoscopic simulation." msgstr "中观仿真(mesoscopic simulation)不支持ToC装置。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:200 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:200 #, c-format msgid "Invalid value '%'for vehicle parameter 'ssm.measures'" msgstr "车辆参数'ssm.measures'的值'%'无效" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:206 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:206 #, c-format msgid "Invalid value '%'for vType parameter 'ssm.measures'" msgstr "vType参数'ssm.measures'的值'%'无效" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:220 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:220 msgid "" "Given value for ToC device parameter 'dynamicMRMProbability' (=%) is not in " "the admissible range [0,0.5]. Truncated to %." @@ -3695,7 +3819,7 @@ "ToC装置参数'dynamicMRMProbability'(=%)的给定值不在允许的范围内[0,0.5]。被截" "断为%。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:246 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:246 msgid "" "If any openGap parameters for the ToC model are specified, then at least one " "of toc.ogNewTimeHeadway and toc.ogNewSpaceHeadway must be defined." @@ -3703,124 +3827,128 @@ "如果指定了ToC模式的任何openGap参数,那么必须至少定义toc.ogNewTimeHeadway和" "toc.ogNewSpaceHeadway中的一个。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:578 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:578 msgid "Ignoring unknown safe spot '%' for vehicle '%'." msgstr "忽略车辆'%'的未知安全点'%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:731 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:731 #, c-format msgid "vType '%' for vehicle '%' is not known." msgstr "不知道车辆'%'的v类型'%'。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:933 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:933 msgid "" "Setting device.toc.currentAwareness during automated mode has no effect." msgstr "在自动模式下,设定device.toc.currentAwareness无效。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:950 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:950 #, c-format msgid "" "Value of dynamicToCThreshold must be non-negative. (Given value % for " "vehicle % is ignored)" msgstr "dynamicToCThreshold的值必须为非负值。(忽略车辆%的给定值%)" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:961 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:961 #, c-format msgid "" "Value of dynamicMRMProbability must be non-negative. (Given value % for " "vehicle % is ignored)" msgstr "dynamicMRMProbability的值必须是非负的。(忽略车辆%的给定值%)" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:975 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:975 #, c-format msgid "" "Value of maxPreparationAccel must be non-negative. (Given value % for " "vehicle % is ignored)" msgstr "maxPreparationAccel的值必须为非负数。(忽略车辆%的给定值%)" -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:1000 -#: /home/micha/programming/sumo/src/microsim/devices/MSDevice_ToC.cpp:1021 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:1000 +#: D:\Repos\sumo/src\microsim\devices\MSDevice_ToC.cpp:1021 msgid "Unknown ToCState '%'" msgstr "未知的ToC状态(ToCState)'%'" -#: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:97 +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:97 msgid "" "Mixing reservations of persons and containers with the same group is not " "supported for % and %" -msgstr "不支持%和%的同一群组的人员和货箱混合预约。" +msgstr "不支持 % 和 % 的同一群组的人员和货柜混合预约" -#: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:200 +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:200 msgid "Inconsistent group reservations." msgstr "不一致的群组保留(eservations)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSDispatch.cpp:204 +#: D:\Repos\sumo/src\microsim\devices\MSDispatch.cpp:204 msgid "Inconsistent group reservations (2)." msgstr "不一致的群组保留(eservations)(2)。" -#: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:63 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:65 msgid "Idle taxi '%' has no next segment to stop. time=%." msgstr "空载的出租车'%'没有下一个区段要停。 时间=%。" -#: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:102 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:104 #, c-format msgid "Idle taxi '%' could not stop within %m" -msgstr "空载的出租车'%'无法在%米(m)内停下。" +msgstr "空载的出租车'%'无法在%米(m)内停下" -#: /home/micha/programming/sumo/src/microsim/devices/MSIdling.cpp:155 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:157 #, c-format msgid "Vehicle '%' ends idling in a cul-de-sac" msgstr "车辆'%'在囊底路停止空转结束/怠速" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:96 +#: D:\Repos\sumo/src\microsim\devices\MSIdling.cpp:183 +msgid "Could not determine taxi stand for vehicle '%' at time=%" +msgstr "" + +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:96 msgid "Rerouting is useless if the edge weights do not get updated!" msgstr "如果路段的权重没有得到更新,重新搜寻路径是没有用的!" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:148 +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:148 msgid "weights.priority-factor cannot be negative." msgstr "权重。优先因子(weights.priority-factor)不能是负数。" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:152 +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:152 msgid "" "Option weights.priority-factor does not take effect because all edges have " "the same priority" msgstr "" "选项权重。优先因子(weights.priority-factor)不生效,因为所有路段都有相同的优" -"先级。" +"先级" -#: /home/micha/programming/sumo/src/microsim/devices/MSRoutingEngine.cpp:411 +#: D:\Repos\sumo/src\microsim\devices\MSRoutingEngine.cpp:411 msgid "Unknown routing algorithm '%'!" msgstr "未知的路径算法'%'!" -#: /home/micha/programming/sumo/src/microsim/devices/MSTransportableDevice_Routing.cpp:46 +#: D:\Repos\sumo/src\microsim\devices\MSTransportableDevice_Routing.cpp:46 msgid "The period with which the person shall be rerouted" msgstr "该人应改道的期间" -#: /home/micha/programming/sumo/src/microsim/engine/VehicleEngineHandler.cpp:157 +#: D:\Repos\sumo/src\microsim\engine\VehicleEngineHandler.cpp:157 msgid "Invalid engine map type. Only \"poly\" is supported for now" -msgstr "无效的引擎地图类型。目前只支持 \"poly\"。" +msgstr "无效的引擎地图类型。目前只支持 \"poly\"" -#: /home/micha/programming/sumo/src/microsim/engine/VehicleEngineHandler.cpp:197 +#: D:\Repos\sumo/src\microsim\engine\VehicleEngineHandler.cpp:197 msgid "Unknown tag '%' while parsing." msgstr "解析(parsing时出现未知的标记'%'。" -#: /home/micha/programming/sumo/src/microsim/lcmodels/MSAbstractLaneChangeModel.cpp:82 +#: D:\Repos\sumo/src\microsim\lcmodels\MSAbstractLaneChangeModel.cpp:82 #, c-format msgid "Lane change model '%' is not compatible with sublane simulation" msgstr "车道变化模式'%'与子车道(sublane)模拟不兼容" -#: /home/micha/programming/sumo/src/microsim/lcmodels/MSAbstractLaneChangeModel.cpp:98 +#: D:\Repos\sumo/src\microsim\lcmodels\MSAbstractLaneChangeModel.cpp:98 #, c-format msgid "Lane change model '%' not implemented" -msgstr "未实施车道变更模式'%'。" +msgstr "车道变换模式 '%' 尚未构建" -#: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:124 +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:124 msgid "" "No valid detector length and start position given. Assuming startPos = 0 and " "length = end position" msgstr "" "没有给出有效的检测器长度和起始位置。假设开始位置(startPos)=0,长度=结束位置" -#: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:128 +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:128 msgid "" "No valid detector length and end position given. Assuming endPos = lane " "length and length = endPos-startPos" @@ -3828,36 +3956,36 @@ "没有给出有效的检测器长度和终点位置。假设终点位置(endPos)=车道长度,长度=终" "点位置-开始位置(endPos-startPos)" -#: /home/micha/programming/sumo/src/microsim/output/MSE2Collector.cpp:908 +#: D:\Repos\sumo/src\microsim\output\MSE2Collector.cpp:908 msgid "Multi-lane e2Detector does not support detecting persons yet" msgstr "多车道的e2D检测器还不支持检测人员" -#: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:161 +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:160 msgid "Negative vehicle step fraction for '%' on lane '%'." msgstr "车道'%'上 '%' 的负车辆步长分数(step fraction)。" -#: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:556 +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:554 msgid "aggregated meanData output not yet implemented for trackVehicles" msgstr "尚未为trackVehicles完成汇总(aggregated)的平均资料(meanData)输出" -#: /home/micha/programming/sumo/src/microsim/output/MSMeanData.cpp:755 +#: D:\Repos\sumo/src\microsim\output\MSMeanData.cpp:766 msgid "Unknown attribute '%' to write in meanData '%'." msgstr "在meanData'%'中写入未知属性'%'。" -#: /home/micha/programming/sumo/src/microsim/output/MSStopOut.cpp:69 +#: D:\Repos\sumo/src\microsim\output\MSStopOut.cpp:69 msgid "Vehicle '%' stops on edge '%', time=% without ending the previous stop." msgstr "车辆'%'停在路段'%'上,时间=%,没有结束前一次停车。" -#: /home/micha/programming/sumo/src/microsim/output/MSStopOut.cpp:105 +#: D:\Repos\sumo/src\microsim\output\MSStopOut.cpp:105 msgid "Vehicle '%' ends stop on edge '%', time=% without entering the stop." msgstr "车辆'%'在路段'%'上结束停车,时间=%,没有进入停车。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:139 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:140 #, c-format msgid "Traffic light '%' does not control any links" msgstr "交通灯'%'不控制任何路段" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:227 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:229 msgid "" "Unknown inductionLoop '%' given as custom detector for actuated tlLogic '%', " "program '%." @@ -3865,22 +3993,22 @@ "未知的感应线圈(inductionLoop) '%'作为自定义检测器,用于驱动的信号逻辑" "(tlLogic) '%',程序'%。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:241 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:242 msgid "" "At actuated tlLogic '%', minDur % is too short for a detector gap of %m." msgstr "" "在执行触动式信号逻辑(tlLogic )'%'时,最小时间(minDur )%对于%米的检测器间" "距来说太短。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:406 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:407 msgid "At actuated tlLogic '%', actuated phase % has no controlling detector." msgstr "在执行触动式信号逻辑tlLogic '%'时,触动的相位%没有控制的探测器。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:443 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:444 msgid "At actuated tlLogic '%', linkIndex % has no controlling detector." msgstr "在执行信号逻辑(tlLogic) '%'时,linkIndex %没有控制的探测器。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:452 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:453 msgid "" "Invalid link '%' given as linkMaxDur parameter for actuated tlLogic '%', " "program '%." @@ -3888,7 +4016,7 @@ "指定为触动式信号逻辑(tlLogic)'%' ,时制方案(program) '%' 的linkMaxDur参数的" "连接(link) '%' 无效。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:462 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:463 msgid "" "Invalid link '%' given as linkMinDur parameter for actuated tlLogic '%', " "program '%." @@ -3896,42 +4024,42 @@ "指定为触动式信号逻辑(tlLogic)'%',时制方案(program)'%'的linkMinDur参数的连" "接'%'无效。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:903 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:905 msgid "" "At actuated tlLogic '%', transition phase % should not have multiple next " "phases" msgstr "在执行触动式信号逻辑(tlLogic)'%',过渡相位%不应该有多个下一相位" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1061 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1063 msgid "Unmatched parentheses in condition %'" msgstr "条件式%'中不配对的括号" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1076 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1078 msgid "Invalid empty condition '%'" msgstr "无效的空条件式'%'" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1091 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1093 msgid "Unsupported condition '%'" msgstr "不支持的条件式'%'" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1154 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1156 msgid "Division by 0 in condition '%'" msgstr "在条件'式%'中除以0" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1205 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1207 #, c-format msgid "Modifying global condition '%' is forbidden" msgstr "禁止修改总体条件(global condition)'%'" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1217 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1219 msgid "Invalid empty expression" msgstr "无效的空表式" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSActuatedTrafficLightLogic.cpp:1313 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSActuatedTrafficLightLogic.cpp:1315 msgid "Error when retrieving conditions '%' for tlLogic '%' (%)" msgstr "检索信号逻辑(tlLogic)'%'的条件'%'时出错 (%)" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSDelayBasedTrafficLightLogic.cpp:96 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSDelayBasedTrafficLightLogic.cpp:96 msgid "" "Unknown laneAreaDetector '%' given as custom detector for delay_based " "tlLogic '%', program '%." @@ -3939,86 +4067,86 @@ "未知的车道区域检测器'%'作为基于延迟_的触动式信号逻辑(tlLogic)'%'的自定检测" "器,时制方案'%。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSOffTrafficLightLogic.cpp:80 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSOffTrafficLightLogic.cpp:80 msgid "Invalid 'off'-state for link % at junction '%'" msgstr "路口'%'处的连接线%的'关闭'状态('off'-state)无效" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSOffTrafficLightLogic.cpp:84 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSOffTrafficLightLogic.cpp:84 msgid "Inconsistent 'off'-states for linkIndex % at tlLogic '%'" msgstr "信号逻辑(tlLogic)'%'处的连接索引(linkIndex) %的'关闭'状态不一致" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:109 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:109 #, c-format msgid "Rail signal at junction '%' does not control any links" msgstr "路口'%'的铁路信号不控制任何路段" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:1210 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:1210 msgid "Found circular block after railSignal % (% edges, length %)" msgstr "在铁路信号(RailSignal)%(边缘%,长度%)之后找到圆形区块" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignal.cpp:1321 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignal.cpp:1321 msgid "Found circular block at railSignal % (% edges, length %)" msgstr "在铁路信号(RailSignal)%(边缘%,长度%)处找到圆形区块" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSRailSignalConstraint.cpp:147 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSRailSignalConstraint.cpp:147 #, c-format msgid "Unknown tracker lane '%' in loaded state." -msgstr "在载入状态内,未知的追踪车道(tracker lane)'%'" +msgstr "在载入的状态內,未知的追踪车道(tracker lane) '%'。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:169 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:169 msgid "Listing output lanes" msgstr "列表输出车道" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:243 -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSOTLTrafficLightLogic.cpp:277 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:243 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSOTLTrafficLightLogic.cpp:277 msgid "Unrecognized traffic threshold calculation mode" msgstr "无法辨识的交通流量阈值计算模式" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:57 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:57 msgid "NO VALID POLICY LIST READ" -msgstr "未读到有效的政策清单。" +msgstr "未读到有效的政策清单" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:81 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:81 msgid "VEHICLE TYPES WEIGHT only works with phase policy, which is missing" msgstr "车辆类型权重(VEHICLE TYPES WEIGHT)仅适用于相位策略,缺失中" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:160 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:160 #, c-format msgid "" "MSSwarmTrafficLightLogic::init Intersection % pheromoneInputLanes: lane " "% not allowed" msgstr "" -"MSSwarmTrafficLightLogic::init 路口 % pheromoneInputLanes: 车道 % 不被允许" +"MSSwarmTrafficLightLogic::init 路口 % pheromoneInputLanes: 车道 % 不被允许" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:182 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:182 #, c-format msgid "" "MSSwarmTrafficLightLogic::init Intersection % pheromoneOutputLanes lane " "% not allowed" msgstr "" -"MSSwarmTrafficLightLogic::init 路口 % pheromoneOutputLanes 车道 % 不被允许" +"MSSwarmTrafficLightLogic::init 路口 % pheromoneOutputLanes 车道 % 不被允许" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:194 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:194 msgid "*** Intersection % will run using MSSwarmTrafficLightLogic ***" msgstr "***交叉口%将使用MSSwarmTrafficLightLogic运行 ***" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSSwarmTrafficLightLogic.cpp:202 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSSwarmTrafficLightLogic.cpp:202 msgid "TL % time 0 Policy: % (pheroIn= 0 ,pheroOut= 0 ) OldPolicy: % ." msgstr "交通信号(TL) % 时间 0 政策: % (pheroIn= 0 ,pheroOut= 0 ) 旧政策: % 。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:81 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:81 msgid "Mismatching phase size in tls '%', program '%'." msgstr "在交通信号(tls) '%' 未配对的相位大小,时制方案(program) '%'。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:116 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:116 msgid "No initial signal plan loaded for tls '%'." msgstr "没有为tls '%'加载初始信号方案。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:163 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:163 msgid "Could not build an off-state for tls '%'." msgstr "交通信号(tls) '%' 无法建立一个关闭状态(off-state)。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTLLogicControl.cpp:487 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTLLogicControl.cpp:487 #, c-format msgid "" "The computed factor sum in WAUT '%' at time '%' equals zero;\n" @@ -4027,13 +4155,13 @@ "在时间 '%' 时, WAUT '%' 中计算的系数总和等于零;\n" "假设WAUT 定义內有错误。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:159 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:163 msgid "Unused states in tlLogic '%', program '%' in phase % after tl-index %" msgstr "" "信号逻辑(tlLogic)'%'的未使用的状态, 其发生在信号索引(tl-index) % 后的相位 " "% 內的时制方案'%' 內" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:178 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:182 msgid "" "Missing yellow phase in tlLogic '%', program '%' for tl-index % when " "switching% to phase %." @@ -4041,73 +4169,73 @@ "信号逻辑(tlLogic) '%' 缺少黄灯相位,其发生在切换到相位 % 时,信号索引(tl-" "index) % 的时制方案 '%' 內。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:200 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:204 msgid "Missing green phase in tlLogic '%', program '%' for tl-index %." msgstr "" "信号逻辑(tlLogic) '%' 缺少绿灯相位, 其发生于信号索引(tl-index) % 的时制方案 " "'%' 內。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:263 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:267 msgid "" "Program '%' at tlLogic '%' is incompatible with logic at junction " "'%' (mutual conflict between link indices %,% tl indices %,% phase %).\n" " Rebuild the network with option '--tls.ignore-internal-junction-jam' or " "include the program when building." msgstr "" -"时相方案 '%' (在信号逻辑(tlLogic) '%' )与路口 '%' " -"不相容(互相冲突发生在连接索引(link indices) %,% 信号索引(tl indices) %,% " -"相位(phase) % 之间).\n" -" 使用选项 '--tls.ignore-internal-junction-jam' " -"重建路网,或在路网构建时包含该时相方案。" +"时相方案 '%' (在信号逻辑(tlLogic) '%' )与路口 '%' 不相容(互相冲突发生在连接索" +"引(link indices) %,% 信号索引(tl indices) %,% 相位(phase) % 之间).\n" +" 使用选项 '--tls.ignore-internal-junction-jam' 重建路网,或在路网构建时包含" +"该时相方案。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/MSTrafficLightLogic.cpp:460 +#: D:\Repos\sumo/src\microsim\traffic_lights\MSTrafficLightLogic.cpp:464 msgid "Green fraction is only 1% for link % in tlLogic '%', program '%'." msgstr "" "在信号逻辑(tlLogic) '%' 的时制方案 '%' 內, 连接线(link) % 的绿灯部分仅为 1%。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:164 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:164 msgid "" "At NEMA tlLogic '%', different sizes of NEMA phase states. Please check the " "NEMA XML" msgstr "在NEMA 信号逻辑tlLogic '%',不同大小的NEMA相位状态。请检查NEMA的XML" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:566 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:566 msgid "At NEMA tlLogic '%', actuated phase % has no controlling detector" msgstr "在NEMA信号逻辑 tlLogic'%',执行的相位%没有控制的探测器" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:584 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:584 msgid "At NEMA tlLogic '%, linkIndex % has no controlling detector" msgstr "在NEMA 信号逻辑(tlLogic)'%,路段索引(linkIndex) %没有控制的检测器" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:630 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:630 #, c-format msgid "NEMA tlLogic '%' is not coordinated but an offset was set." -msgstr "EMA 信号逻辑(tlLogic) '%' " -"沒有被协调控制(coordinated),但设置了偏移值(offset)。" +msgstr "" +"EMA 信号逻辑(tlLogic) '%' 沒有被协调控制(coordinated),但设置了偏移值" +"(offset)。" -#: /home/micha/programming/sumo/src/microsim/traffic_lights/NEMAController.cpp:959 +#: D:\Repos\sumo/src\microsim\traffic_lights\NEMAController.cpp:959 msgid "I am starting in the coordinated phases" msgstr "我开始在协调相位" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel.h:180 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel.h:182 msgid "moveTo is ignored by the current movement model" msgstr "移动到(moveTo)被目前的移动模式(movement model)忽略" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel.h:196 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel.h:198 msgid "moveToXY is ignored by the current movement model" msgstr "移动到XY(moveToXY)被目前的移动模式(movement model)忽略" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Remote.cpp:209 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Remote.cpp:209 #, c-format msgid "Edge: % does not allow pedestrians." msgstr "路段:%不允许有行人。" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Remote.cpp:299 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Remote.cpp:299 msgid "Pedestrian model 'remote' does not support simulation.loadState state\n" msgstr "行人模式 '远程(remote)' 不支持 simulation.loadState 状态\n" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:124 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:871 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:124 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:870 msgid "" "Pedestrian vType '%' width % is larger than pedestrian.striping.stripe-width " "and this may cause collisions with vehicles." @@ -4115,1160 +4243,1193 @@ "行人vType'%'宽度%大于pedestrian.striping.stripe-width,这可能导致与车辆发生碰" "撞。" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:179 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:179 msgid "Person '%' could not find sidewalk on edge '%', time=%." msgstr "行人'%'无法在路段'%'找到人行道,时间=%。" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:463 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:466 #, c-format msgid "Invalid walkingarea '%' does not allow continuation." msgstr "无效的步行区域'%'不允许继续。" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:1923 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:1926 msgid "Disconnected walk for person '%'." msgstr "人员 '%' 有不连接的步行。" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPModel_Striping.cpp:2124 +#: D:\Repos\sumo/src\microsim\transportables\MSPModel_Striping.cpp:2127 msgid "Person '%' is jammed on edge '%', time=%." msgstr "行人'%'被卡在路段'%',时间=%。" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:90 +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:90 msgid "Adjusting departPos for cloned walk with routeDistribution '%'" -msgstr "使用路径分配(routeDistribution) '%' 调整复制的步行的出发位置(departPos)" +msgstr "" +"使用路径分配(routeDistribution) '%' 调整复制的步行的出发位置(departPos)" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:94 +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:94 msgid "Adjusting arrivalPos for cloned walk with routeDistribution '%'" -msgstr "使用路径分配(routeDistribution) '%' 调整复制的步行的抵达位置(arrivalPos)" +msgstr "" +"使用路径分配(routeDistribution) '%' 调整复制的步行的抵达位置(arrivalPos)" -#: /home/micha/programming/sumo/src/microsim/transportables/MSPerson.cpp:98 +#: D:\Repos\sumo/src\microsim\transportables\MSPerson.cpp:98 msgid "Adjusting departLane for cloned walk with routeDistribution '%'" -msgstr "使用路径分配(routeDistribution) '%' 调整复制的步行的出发车道(departLane)" +msgstr "" +"使用路径分配(routeDistribution) '%' 调整复制的步行的出发车道(departLane)" -#: /home/micha/programming/sumo/src/microsim/transportables/MSStageTrip.cpp:174 +#: D:\Repos\sumo/src\microsim\transportables\MSStageTrip.cpp:174 msgid "" "Ignoring vehicle type '%' when routing person '%' because it is not allowed " "on the start edge." msgstr "" "在为行人\"%\"安排路径时,忽略了车辆类型\"%\",因为它不允许出现在起始路段。" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:134 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:134 msgid "Changing a transportable ID is not permitted" msgstr "不允许更换可运输的ID" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:256 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:256 msgid "Teleporting % '%'; waited too long, from edge '%', time=%." msgstr "移送(teleporting) % '%; 等待太久,从路段 '%', 时间=%。" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportable.cpp:391 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportable.cpp:391 msgid "parkingAreaReroute not support for containers" msgstr "停车区域重新引导(parkingAreaReroute)不支持货柜" -#: /home/micha/programming/sumo/src/microsim/transportables/MSTransportableControl.cpp:69 +#: D:\Repos\sumo/src\microsim\transportables\MSTransportableControl.cpp:69 msgid "Unknown pedestrian model '%'" msgstr "未知的行人模型'%'" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:142 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:142 msgid "No flow intervals in calibrator '%'." msgstr "校准器中没有流量间隔'%'。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:161 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:161 #, c-format msgid "Calibrator '%' has no active or upcoming interval" msgstr "校准器'%'没有活动或即将到来的间隔时间" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:209 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:209 msgid "Insertion lane may differ from calibrator lane for calibrator '%'." msgstr "插入的车道(insertion lane)可能不同于校估器%' 的校估车道。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:213 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:213 msgid "Unknown vehicle type '%' in calibrator '%'." msgstr "校准器'%'中的未知车辆类型'%'。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:216 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:216 msgid "Mandatory attribute missing in definition of calibrator '%'." msgstr "校准器'%'的定义中缺少强制性属性。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:218 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:218 msgid "" "Non-numeric value for numeric attribute in definition of calibrator '%'." msgstr "校准器'%'定义中的数字属性为非数字值。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:221 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:221 msgid "" "Either 'vehsPerHour', 'speed' or 'type' has to be set in flow definition of " "calibrator '%'." msgstr "在校准器'%'的流量定义中,必须设置'车辆每小时'、'速度'或'类型'。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:224 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:224 msgid "Type calibration is not supported in meso for calibrator '%'." msgstr "中观仿真(meso)不支持校估器 '%' 的类型(type)校估。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:318 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:318 msgid "Calibrator '%' could not remove vehicle '%' time=%." msgstr "校准器'%'无法移除车辆'%'时间=%。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:699 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:699 msgid "Cannot set flow for calibrator '%' with overlapping interval." msgstr "无法为校准器'%'设置流量,且间隔时间重叠。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSCalibrator.cpp:701 +#: D:\Repos\sumo/src\microsim\trigger\MSCalibrator.cpp:701 msgid "Cannot set flow for calibrator '%' with negative interval." msgstr "无法为校验器'%'设置负间隔的流量。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSLaneSpeedTrigger.cpp:176 +#: D:\Repos\sumo/src\microsim\trigger\MSLaneSpeedTrigger.cpp:176 msgid "Invalid or unsorted time entry in vss '%'." msgstr "可变速标志(vss) '%' 中的时间项无效或未排序。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSLaneSpeedTrigger.cpp:192 +#: D:\Repos\sumo/src\microsim\trigger\MSLaneSpeedTrigger.cpp:192 msgid "Time % was set twice for vss '%'; replacing first entry." msgstr "为可变速标志(vss) '%' 设定了两次时间% ; 替换第一个登入项。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:354 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:409 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:454 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:471 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:492 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:518 -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:544 -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:386 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:354 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:409 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:454 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:471 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:492 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:518 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:544 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:386 msgid "" "Overhead circuit solver requested, but solver support (Eigen) not compiled " "in." -msgstr "已请求架空线路解算器(solver),但解算器的支持(Eigen) 尚未编译" +msgstr "已请求架空线路解算器(solver),但解算器的支持(Eigen) 尚未编译。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:579 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:579 msgid "Overhead circuit solver requested, but solver support not compiled in." msgstr "已请架空线路解算器(solver),但解算器支持未被编译。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSOverheadWire.cpp:690 +#: D:\Repos\sumo/src\microsim\trigger\MSOverheadWire.cpp:690 #, c-format msgid "" "The requested total power could not be delivered by the overhead wire. Only " "% of originally requested power was provided." msgstr "要求的总功率无法通过架空线输送。只提供了最初要求的电力的%。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:127 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:127 msgid "MSTriggeredRerouter %: No destination edge id given." msgstr "MSTriggeredRerouter %: 未提供目标路段识别名(id)。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:192 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:192 msgid "MSTriggeredRerouter %: No route id given." msgstr "MSTriggeredRerouter %: 未提供路径。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:217 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:217 msgid "MSTriggeredRerouter %: No parking area id given." msgstr "MSTriggeredRerouter %: 未提供停车区域。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:505 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:505 #, c-format msgid "" "Cannot keep destination edge '%' for vehicle '%' due to closed edges. " "Terminating route." msgstr "由于封闭路段,无法为车辆'%'保留目的地路段'%'。终止路径。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:604 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:604 msgid "Invalid value '%' for vehicle parameter '%'" msgstr "车辆参数'%'的数值无效" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:612 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:612 msgid "Invalid value '%' for vType parameter '%'" msgstr "车辆类型(vType)参数 '%' 的值 '%' 无效" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:784 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:782 #, c-format msgid "" "Parkingarea '%' along the way cannot be used by vehicle '%' for unknown " "reason" msgstr "沿途的停车区'%'不能被车辆'%'使用,原因不明" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1105 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1103 msgid "" "Invalid distance computation for vehicle '%' to parkingArea '%' at time=%." msgstr "车辆'%'到停车区'%'的距离计算无效,时间=%。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1160 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1158 msgid "" "Invalid distance computation for vehicle '%' from parkingArea '%' at time=%." msgstr "在时间=%时,从停车区'%'出发,对车辆'%'的距离计算无效。" -#: /home/micha/programming/sumo/src/microsim/trigger/MSTriggeredRerouter.cpp:1236 +#: D:\Repos\sumo/src\microsim\trigger\MSTriggeredRerouter.cpp:1234 msgid "" "ParkingArea '%' is targeted by rerouter '%' but doesn't have it's own " "rerouter. This may cause parking search to abort." -msgstr "停车区域 '%' 是改道装置(rerouter) '%' " -"的目标,但它沒有自己的改道装置。这可能会导致終止停车位的搜寻。" +msgstr "" +"停车区域 '%' 是改道装置(rerouter) '%' 的目标,但它沒有自己的改道装置。这可能" +"会导致終止停车位的搜寻。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:119 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:153 msgid "Ambiguity in turnarounds computation at junction '%'." msgstr "路口 '%' 处的回转(turnarounds)计算不明确。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:269 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:358 msgid "Converting invalid rail_crossing to priority junction '%'." -msgstr "将无效的平交道(rail_crossing)转换为以优先等级(priority)控制的路口 '%' 。" +msgstr "" +"将无效的平交道(rail_crossing)转换为以优先等级(priority)控制的路口 '%' 。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:273 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:362 msgid "Converting invalid rail_crossing to traffic_light at junction '%'." msgstr "在路口'%'处将无效的铁路交叉口转换为交通灯。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms.cpp:282 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1739 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:423 -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:358 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms.cpp:371 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1744 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:423 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:358 msgid "Could not allocate tls '%'." msgstr "无法分配tls '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:173 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:176 msgid "" "Added % bidi-edges to ensure that all tracks are usable in both directions." msgstr "新增 % 双向路段(bidi-edges)以确保所有轨道都可以在两个方向上使用。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:175 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:178 #, c-format msgid "Ignore % edges because they have the wrong spreadType" msgstr "忽略 % 路段,因为它们有错误的分散类型(spreadType)" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:197 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:200 #, c-format msgid "Bidi-edge '%' prevented by filtering rules." msgstr "双向路段(bidi-edges) '%' 被过滤规则阻止。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:211 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:214 msgid "Could not add bidi-edge '%'." msgstr "无法新增双向路段(bidi-edges) '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:272 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:275 msgid "Railway nodes by number of incoming,outgoing edges:" msgstr "按传出路段数排列的铁路节点:" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:370 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:373 msgid "Found % railway nodes marked as buffer_stop" msgstr "找到标记为 buffer_stop 的 % 铁路节点" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:380 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:383 msgid "Found % bidirectional rail edges" msgstr "找到 % 双向铁路路段" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:406 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:409 msgid "Found % railway edges and % railway nodes (% signals)." msgstr "发现%的铁路路段和%的铁路路口(%的信号)。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:523 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:526 msgid "Added % bidi-edges as extension of existing bidi edges." msgstr "增加 % 双向路段(bidi-edges)作为现有双向路段的延伸。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:534 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:537 msgid "Could not find bidi-edge for edge '%'" msgstr "无法发现路段 '%' 的双向路段(bidi-edges)" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:639 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:642 msgid "Found % reversible edge sequences between broken rail nodes" msgstr "在断的(broken)火车轨道节点之间找到 % 可反向的路段序列(sequence)" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:668 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:671 msgid "Reversed % sequences (count by length: %)" msgstr "反向 % 序列 (按长度计数:%)" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:689 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:692 msgid "Ignoring buffer stop junction '%' with % edges." msgstr "忽略连接% 路段的缓动停止路口(buffer stop junction) '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:746 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:749 msgid "Added % edges to connect % buffer stops in both directions." msgstr "增加 % 路段以在两个方向上连接 % 缓动站(buffer stops)。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:827 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:830 msgid "" "Added % bidi-edges between % pairs of railway switches (count by length: %)" -msgstr "在 % 对(pairs)的铁路道岔之间增加了 % 双向路段(bidi-edges)(按长度计数: %)" +msgstr "" +"在 % 对(pairs)的铁路道岔之间增加了 % 双向路段(bidi-edges)(按长度计数: %)" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:974 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:977 msgid "" "Edge sequence is not consistent with stop sequence in line '%', not adding " "bidi edges." -msgstr "在路线(line) '%' 內,路段顺序与停靠顺序不一致,未添加双向路段(bidi edges)。" +msgstr "" +"在路线(line) '%' 內,路段顺序与停靠顺序不一致,未添加双向路段(bidi edges)。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1016 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1019 #, c-format msgid "" "Stop on edge '%' can only be reached in reverse but edge has the wrong " "spreadType." msgstr "路段 '%' 的停靠点只能反向到达,但路段有错误的分散类型(spreadType)。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1037 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1044 msgid "No connection found between stops on edge '%' and edge '%'." msgstr "在路段 '%' 和路段 '%' 上的停靠点之间找不到连接线(connection)。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1147 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1154 msgid "" "Added % bidi-edges to ensure connectivity of straight tracks at geometry-" "like nodes." msgstr "增加 % 双向路段(bidi-edges)以确保直线轨道在类似几何的节点处的连通性。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1149 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1156 msgid "" "Added % bidi-edges to ensure connectivity of straight tracks at switches." msgstr "增加 % 双向路段(bidi-edges)以确保直线轨道在铁路道岔处的连通性。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1209 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1216 msgid "" "Cannot extend track direction priority because there are no track edges with " "positive priority" msgstr "无法扩展轨道方向优先级別,因为沒有具有正的(positive)优先级别的轨道路段" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Railway.cpp:1265 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1272 msgid "" "Edge '%' was loaded with undefined priority (%) but has unambiguous main " "direction (no bidi edge)" -msgstr "路段 '%' 以未定义的优先级别 (%) 被载入,但具有明确的主方向(无双向路段(bidi " +msgstr "" +"路段 '%' 以未定义的优先级别 (%) 被载入,但具有明确的主方向(无双向路段(bidi " "edge))" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:116 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Railway.cpp:1359 +msgid "Added % rail signals at % stops." +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:116 #, c-format msgid "Can not build ramp on edge '%' - the edge is unsuitable." msgstr "无法在路段 '%' 上建立匝道 - 路段不合适。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:120 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:120 #, c-format msgid "Can not build on ramp on edge '%' - the edge is not known." msgstr "无法在路段 '%' 上建立入口匝道 - 路段未知。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:131 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:131 #, c-format msgid "Can not build off ramp on edge '%' - the edge is not known." msgstr "无法在路段 '%' 上建立出口匝道 - 路段未知。" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:249 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:249 msgid "Ups - could not build on-ramp for edge '%' (node could not be build)!" msgstr "糟糕 - 无法在路段 '%' 建立入口匝道 (无法建立节点)!" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:254 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:254 msgid "Ups - could not build on-ramp for edge '%'!" msgstr "糟糕 - 无法在路段 '%' 建立入口匝道!" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:284 -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:289 -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:400 -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:403 -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:710 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:284 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:289 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:400 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:403 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:710 msgid "Could not set connection!" msgstr "无法设定连接线(connection)!" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:356 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:356 msgid "Ups - could not build off-ramp for edge '%' (node could not be build)!" msgstr "糟糕- 无法为路段 '%' 建立出口匝道 (无法建立节点)!" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:361 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:361 msgid "Ups - could not build off-ramp for edge '%'!" msgstr "糟糕- 无法为路段 '%' 建立出口匝道!" -#: /home/micha/programming/sumo/src/netbuild/NBAlgorithms_Ramps.cpp:423 +#: D:\Repos\sumo/src\netbuild\NBAlgorithms_Ramps.cpp:423 msgid "For edge '%': could not compute shape." msgstr "路段 '%':无法计算形状。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:431 -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:459 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:432 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:460 #, c-format msgid "At least one of edge's '%' nodes is not known." msgstr "至少有一个路段的 '%' 节点未知。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:456 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:457 #, c-format msgid "Edge '%' needs at least one lane." msgstr "路段 '%' 至少需要一个车道。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:462 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:463 msgid "Invalid edge id '%'." msgstr "无效的路段识别名(id) '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:492 -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:626 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:493 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:627 #, c-format msgid "Edge's '%' from- and to-node are at the same position." msgstr "路段的 '%' 起点及终点在相同的位置。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:999 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1000 msgid "Found angle of % degrees at edge '%', segment %." msgstr "在路段 '%',区段 % 处找到 % 度的角度。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1155 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1156 msgid "Could not set connection from '%' to '%'." msgstr "无法从'%' 到 '%' 设定连接线(connection)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1667 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1668 msgid "Connection '%_%->%_%' is only %m short." msgstr "接线(connection) '%_%->%_%' 只有 % 米短。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1768 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1770 msgid "" "Intersecting left turns at junction '%' from lane '%' and lane '%' (increase " "junction radius to avoid this)." -msgstr "从车道 '%' 和车道 '%' 在路口 '%' 与左转交会 (增加路口半径以避免这种情況)。" +msgstr "" +"从车道 '%' 和车道 '%' 在路口 '%' 与左转交会 (增加路口半径以避免这种情況)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:1868 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:1870 msgid "" "Speed of % connection '%' reduced by % due to turning radius of % (length=%, " "angle=%)." msgstr "由于转弯半径为 %,连接线'%' 的速度 % 降低了 % (长度=%,角度=%)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2208 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2210 msgid "In lane '%': lane shape could not be determined (%)." msgstr "在车道 '%':无法确定车道形状 (%)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2221 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2223 msgid "In lane '%': Could not build shape (%)." msgstr "在车道 '%':无法建立形状 (%)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2629 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2637 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " "directions but only % targets" -msgstr "无法在路段 '%' 上应用转弯标志信息,因为有 % 的方向,但只有 % 的目标(targets)" +msgstr "" +"无法在路段 '%' 上应用转弯标志信息,因为有 % 的方向,但只有 % 的目标(targets)" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2670 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2678 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " "directions and % targets (after target pruning)" -msgstr "无法在路段 '%' 上应用转弯标志信息,因为有 % 的方向,但只有 % " -"的目标(targets)(目标修剪后)" +msgstr "" +"无法在路段 '%' 上应用转弯标志信息,因为有 % 的方向,但只有 % 的目标(targets)" +"(目标修剪后)" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2689 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2697 msgid "" "Cannot apply turn sign information for edge '%' because there are % signed " "connections with directions '%' but target edge '%' has only % suitable lanes" -msgstr "无法在路段'%'上应用转弯标志信息,因为有具有%方向的'%'连接线,但目标路段'%'只" -"有%的合适车道。" +msgstr "" +"无法在路段'%'上应用转弯标志信息,因为有具有%方向的'%'连接线,但目标路段'%'只" +"有%的合适车道" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2716 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2724 msgid "" "Cannot apply turn sign information for edge '%' because not enough target " "lanes could be determined for direction '%'" -msgstr "无法在路段\"%\"应用转弯标志信息,因为无法为方向\"%\"确定有足够的目标车道。" +msgstr "" +"无法在路段\"%\"应用转弯标志信息,因为无法为方向\"%\"确定有足够的目标车道" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2955 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2985 msgid "Edge '%' is not connected to outgoing edges at junction '%'." msgstr "路段 '%' 在路口 '%' 未与任何离开(outgoing)路段连接。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2969 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:2999 msgid "Lane '%' is not connected from any incoming edge at junction '%'." msgstr "车道 '%' 在路口 '%' 未与任何进入(incoming)路段连接。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2986 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3016 #, c-format msgid "Ignoring changeLeft prohibition for '%' to avoid dead-end" msgstr "忽略 '%' 的 禁止换左(changeLeft)以避免造成死结(dead-end)" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:2989 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3019 #, c-format msgid "Ignoring changeRight prohibition for '%' to avoid dead-end" msgstr "忽略 '%' 的 禁止换右(changeRight)以避免造成死结(dead-end)" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:3590 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3620 #, c-format msgid "The lane '%' on edge '%' already had a traffic light signal." msgstr "路段 '%' 上的车道 '%'已经有交通信号。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:3596 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:3626 msgid "Could not set any signal of the tlLogic '%' (unknown group)." msgstr "无法设定信号逻辑(tlLogic) '%' 的任何信号 (未知群组)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4079 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4117 msgid "Ignoring invalid stopOffset for edge '%' (negative offset)." msgstr "忽略路段 '%' 的无效 stopOffset (负偏移值(offset))。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4088 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4126 msgid "Ignoring invalid stopOffset for lane '%' (negative offset)." msgstr "忽略车道 '%' 的无效 stopOffset (负偏移值(offset))。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4094 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4132 msgid "Ignoring invalid stopOffset for lane '%' (invalid lane index)." msgstr "忽略车道 '%' 的无效 stopOffset (无效的车道索引)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4357 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4395 #, c-format msgid "Edge % allows pedestrians on all lanes" msgstr "路段 '%' 允许行人在所有车道上" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4415 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4453 #, c-format msgid "Edge '%' already has a dedicated lane for %s. Not adding another one." msgstr "路段 '%' 已经有用于 %s 的专用车道。不再增加另一个。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4452 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4490 #, c-format msgid "Edge '%' doesn't have a dedicated lane for %s. Cannot be restored." msgstr "路段 '%' 沒有用于 %s 的专用车道。无法恢复。" -#: /home/micha/programming/sumo/src/netbuild/NBEdge.cpp:4500 +#: D:\Repos\sumo/src\netbuild\NBEdge.cpp:4538 msgid "Could not avoid overlapping shape at node '%' for edge '%'." msgstr "无法避免在路段 '%' 的节点 '%' 上重叠形状(shape)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:121 -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:140 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:121 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:140 msgid "Invalid boundary: need at least 2 coordinates" msgstr "无效边界:至少需要2个坐标" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:142 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:142 msgid "Invalid boundary: malformed coordinate" msgstr "无效边界:格式错误的坐标" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:259 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:259 msgid "" "Cannot prune edges using a geo-boundary because no projection has been loaded" msgstr "无法使用地理边界修剪路段,因为尚未载入投影(projection)" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:438 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:438 msgid "Attempt to rename edge using existing id '%'" msgstr "企图使用现有识别名(id) '%' 重新命名路段" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:498 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:499 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:501 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:498 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:499 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:501 msgid "Error on parsing a split (edge '%')." msgstr "解析一个分割(split)时,发生错误 (路段 '%')。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:556 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:556 msgid "Split at '%' lies beyond the edge's length (edge '%')." msgstr "在 '%' 处的分割(split)超出路段的长度(路段 '%')。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:639 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:639 msgid "Could not insert edge '%' before split of edge '%'." msgstr "无法在分割路段 '%' 之前,插入路段 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:643 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:643 msgid "Could not insert edge '%' after split of edge '%'." msgstr "无法在分割路段 '%' 之后,插入路段 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:880 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:880 msgid "Moving opposite lane '%' from invalid lane '%' to lane index %." msgstr "將对向车道 '%' 从无效车道 '%' 移动到车道索引(lane index) %。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:882 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:882 msgid "Removing opposite lane '%' for invalid lane '%'." msgstr "移除无效车道 '%' 的对向车道 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:891 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:891 msgid "Removing unknown opposite lane '%' for edge '%'." msgstr "移除路段 '%' 的未知对向车道 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:896 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:896 msgid "Adapting invalid opposite lane '%' for edge '%' to '%'." msgstr "將路段 '%' 的无效对向车道 '%' 调整为 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:902 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:902 msgid "Adapting missing opposite lane '%' for edge '%'." msgstr "为路段 '%' 调整缺失的对向车道“ '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:908 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:908 msgid "Averaging edge lengths for lane '%' (length %) and edge '%' (length %)." msgstr "车道 '%' (长度 %)和路段 '%' (长度 %)的平均路段长度。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:921 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:921 msgid "Opposite lane '%' does not connect the same nodes as edge '%'!" msgstr "对面车道'%'与路段%'不能连接在同一节点!" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1421 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1421 msgid "Replacing loaded roundabout '%' with '%'." msgstr "正在用 '%' 替换载入的环线'%'。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1739 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1739 msgid "Edge '%' overlaps with edge '%' by %." msgstr "路段'%'与路段'%'重叠在%。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1755 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1755 #, c-format msgid "Edge '%' has a vertical jump of %m." -msgstr "路段 '%' 有一个% 米的垂直跳位(jump)" +msgstr "路段 '%' 有一个% 米的垂直跳位(jump)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1757 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1757 #, c-format msgid "Edge '%' has a grade of %%." msgstr "路段 '%' 的坡度(grade)为%%。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1767 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1767 #, c-format msgid "Connection '%' has a vertical jump of %m." -msgstr "连接线(connection) '%' 有一个 % 米的垂直跳位(jump)" +msgstr "连接线(connection) '%' 有一个 % 米的垂直跳位(jump)。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1769 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1769 #, c-format msgid "Connection '%' has a grade of %%." msgstr "连接线(connection) '%' 的坡度(grade)为%%。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1809 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1809 msgid "Not joining tram edge '%' with % lanes." msgstr "没有将电车路段'%'与%车道连接起来。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:1883 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:1883 msgid "Ambiguous tram edges '%' and '%' for lane '%'." msgstr "车道'%'的电车路段'%'和'%'模糊不清。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:2037 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:138 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:554 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:2037 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:138 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:554 #, c-format msgid "Edge's '%' from-node '%' is not known." -msgstr "路段的 '%' 从节点(from-node)'%' 未知" +msgstr "路段的 '%' 从节点(from-node)'%' 未知。" -#: /home/micha/programming/sumo/src/netbuild/NBEdgeCont.cpp:2041 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:142 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:566 +#: D:\Repos\sumo/src\netbuild\NBEdgeCont.cpp:2041 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:142 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:566 #, c-format msgid "Edge's '%' to-node '%' is not known." -msgstr "路段的 '%' 到节点(to-node)'%' 未知" +msgstr "路段的 '%' 到节点(to-node)'%' 未知。" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:52 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:52 msgid "The default number of lanes in an edge" msgstr "在一个路段上的预设车道数" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:56 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:56 msgid "The default width of lanes" msgstr "车道的预设宽度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:59 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:59 msgid "The default method for computing lane shapes from edge shapes" msgstr "从路段形狀计算车道形狀的预设方法" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:63 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:63 msgid "The default speed on an edge (in m/s)" msgstr "路段的预设速度 (以米/秒为单位)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:67 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:67 msgid "The default friction on an edge" msgstr "路段的预设摩擦力" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:71 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:71 msgid "The default priority of an edge" msgstr "路段的预设优先级别" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:74 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:74 msgid "The default edge type" msgstr "预设的路段类型" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:77 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:77 msgid "The default width of added sidewalks" msgstr "增加的人行道的预设宽度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:80 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:80 msgid "The default width of added bike lanes" msgstr "增加的自行车道的预设宽度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:83 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:83 msgid "The default width of a pedestrian crossing" msgstr "人行穿越道的预设宽度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:86 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:86 msgid "The default speed 'limit' on a pedestrian crossing (in m/s)" msgstr "人行穿越道上的预设速度 '限制(limit)' (以米/秒为单位)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:89 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:89 msgid "The default speed 'limit' on a pedestrian walkingarea (in m/s)" msgstr "行人步行区域的预设速度 '限制(limit)' (以米/秒为单位)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:92 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:92 msgid "The default for allowed vehicle classes" msgstr "允许的车辆类型的预设值" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:95 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:95 msgid "The default for disallowed vehicle classes" msgstr "不允许的车辆类别的预设值" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:98 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:98 msgid "Whether junctions should be kept clear by default" msgstr "在预设情況下,路口是否应保持畅通(clear)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:101 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:101 msgid "The default turning radius of intersections" msgstr "路口的预设转弯半径" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:104 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:104 msgid "The default length when overriding connection lengths" msgstr "覆盖连接线(connection)长度时的预设长度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:107 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:107 msgid "" "The default algorithm for computing right of way rules ('default', " "'edgePriority')" msgstr "计算路权规则的预设算法('预设(default)','路段优先级别(edgePriority)')" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:110 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:110 msgid "" "Allow building right-before-left junctions when the incoming edge speeds are " "below FLOAT (m/s)" -msgstr "当进入(incoming)路段速度低于 FLOAT (米/秒)时,允许建立右方车辆优先(right-" +msgstr "" +"当进入(incoming)路段速度低于 FLOAT (米/秒)时,允许建立右方车辆优先(right-" "before-left)的路口" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:113 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:113 msgid "" "Build left-before-right junctions instead of right-before-left junctions" -msgstr "建立左方车辆优先(left-before-right)的路口,而不是右方车辆优先(right-before-" +msgstr "" +"建立左方车辆优先(left-before-right)的路口,而不是右方车辆优先(right-before-" "left)的路口" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:117 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:117 msgid "Omits internal links" msgstr "省略內部路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:120 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:120 msgid "" "Remaps alphanumerical IDs of nodes and edges to ensure that all IDs are " "integers" -msgstr "重新映射(remap)节点和路段的字母数字识别名(IDs),以确保所有识别名都是整数" +msgstr "" +"重新映射(remap)节点和路段的字母数字识别名(IDs),以确保所有识别名都是整数" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:123 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:123 msgid "Remaps IDs of nodes to integers starting at INT" msgstr "将节点的识别名(IDs)重新映射(remap)为以 INT 开头的整数" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:126 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:126 msgid "Remaps IDs of edges to integers starting at INT" msgstr "將路段的识别名(IDs)重新映射(remap)为以 INT 开头的整数" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:130 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:130 msgid "" "Ensures that generated ids do not included any of the typed IDs from FILE " "(sumo-gui selection file format)" -msgstr "确保产生的识别名(ids)不包含來自文件內的任何类型化识别名(ids)(sumo-" -"gui的选择文件(selection file)格式)" +msgstr "" +"确保产生的识别名(ids)不包含來自文件內的任何类型化识别名(ids)(sumo-gui的选择文" +"件(selection file)格式)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:134 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:134 msgid "Removes vehicle class restrictions from imported edges" msgstr "从导入(imported)的路段中刪除车辆类别限制" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:138 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:138 msgid "Disables building turnarounds" msgstr "禁止构建掉头(turnarounds)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:142 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:142 msgid "Disables building turnarounds at tls-controlled junctions" msgstr "禁止在信号控制路口构建掉头(turnarounds)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:145 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:145 msgid "Disables building turnarounds at geometry-like junctions" msgstr "禁止在几何形狀相似的路口构建掉头(turnarounds)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:148 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:148 msgid "Disables building turnarounds except at dead end junctions" msgstr "禁止在终端路口构建掉头(turnarounds)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:151 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:151 msgid "" "Disables building turnarounds except at at junctions with a dedicated " "turning lane" msgstr "除了在有专用转向车道的路口外,其余禁止构建掉头(turnarounds)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:154 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:154 msgid "Disables building turnarounds at fringe junctions" msgstr "禁止在边缘(fringe)路口构建掉头(turnarounds)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:157 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:157 msgid "Disables building connections to left" msgstr "禁止构建左转连接线" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:161 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:161 msgid "Splits edges across geometry nodes" msgstr "跨多个几何节点分割(split)路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:165 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:165 msgid "" "Replace nodes which only define edge geometry by geometry points (joins " "edges)" msgstr "用几何点(合并(joins)路段)替换仅定义路段几何狀的节点" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:168 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:168 msgid "Ensure that the given list of edges is not modified" msgstr "确保給定的路段清单未被修改" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:176 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:176 msgid "Ensure that edges with public transport stops are not modified" msgstr "确保有大众运输停靠站的路段未被修改" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:188 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:192 msgid "splits geometry to restrict segment length" msgstr "分割几何以限制区段长度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:192 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:196 msgid "reduces too similar geometry points" msgstr "减少过于相似的几何点" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:195 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:199 msgid "" "Warn about edge geometries with an angle above DEGREES in successive segments" msgstr "警告连续段中角度超过 DEGREES 的路段几何形狀" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:198 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:202 msgid "" "Warn about edge geometries with a turning radius less than METERS at the " "start or end" msgstr "警告开始或结束时,转弯半径小于METERS 的路段几何形狀" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:201 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:205 msgid "" "Straighten edge geometries to avoid turning radii less than geometry.min-" "radius" msgstr "拉直路段几何以避免转弯半径小于 geometry.min-radius" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:204 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:208 msgid "" "Straighten edge geometries to avoid turning radii less than geometry.min-" "radius (only railways)" msgstr "拉直路段几何以避免转弯半径小于geometry.min-radius (仅限铁路)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:207 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:211 msgid "" "Warn if the junction shape is to far away from the original node position" msgstr "如果路口形狀离原始节点位置太远,则发出警告" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:210 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:214 msgid "Warn if edges overlap by more than the given threshold value" msgstr "如果路段重叠超过給定的阈值,则发出警告" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:213 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:217 msgid "" "Ignore overlapping edges if they are separated vertically by the given " "threshold." msgstr "如果它们被给定的阈值垂直地分开,则忽略重叠路段。" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:216 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:220 msgid "Modify edge geometries to avoid overlap at junctions" msgstr "修改路段几何形狀以避免在路口处重叠" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:219 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:223 msgid "" "join adjacent lanes that have the same permissions and which do not admit " "lane-changing (sidewalks and disallowed lanes)" msgstr "合并(join)具有相同权限且不允许变换车道的相邻车道(人行道和禁止车道)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:222 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:226 msgid "" "Matches stops outside the road network to the referencing pt line when below " "the given distance" msgstr "当低于给定的距离时,將路网外的停靠点与参考的大众运输路线相配对" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:226 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:230 msgid "Repair topology of the railway network" msgstr "修复铁路路网拓扑" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:229 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:233 msgid "" "Repair topology of the railway network just enough to let loaded public " "transport lines to work" msgstr "修复铁路网的拓扑结构,使之足以让加载的大众运输路线正常运作" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:232 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:236 msgid "" "Allow bidirectional rail use wherever rails with opposite directions meet at " "a straight angle" msgstr "允许双向火车在与相反方向行驶的火车以直角相遇的任何地方使用" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:235 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:239 msgid "Add turn-around connections at all loaded stops." -msgstr "在所有载入的停靠点增加回转的连接线(turn-around connections)" +msgstr "在所有载入的停靠点增加回转的连接线(turn-around connections)。" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:238 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:242 +msgid "" +"Penalty factor for adding new bidi edges to connect public transport stops" +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:245 msgid "Make all rails usable in both direction" msgstr "使所有铁路可用与两个方向" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:241 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:248 msgid "Make all rails edge ids from FILE usable in both direction" msgstr "使文件中所有铁路路段识别名(ids)可用于两个方向" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:244 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:251 msgid "Set edge priority values based on estimated main direction" msgstr "根据估计的主方向来设定路段的优先级别值" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:247 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:254 msgid "Extend loaded edge priority values based on estimated main direction" msgstr "根据估计的主方向来扩展载入的路段的优先级别值" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:250 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:257 +msgid "Guess signals that guard public transport stops" +msgstr "" + +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:260 msgid "The search radius for finding suitable road accesses for rail stops" msgstr "为铁路车站寻找合适的通行途径(access)的搜索半径" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:254 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:264 msgid "The maximum road accesses registered per rail stops" msgstr "每个铁路站点登录的最大道路通行途径(road accesses)数量" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:258 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:268 msgid "" "The walking length of the access is computed as air-line distance multiplied " "by FLOAT" msgstr "通行途径access)的步行长度计算为航线距离乘以 FLOAT" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:262 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:272 msgid "Skips automatic generation of stops on the bidi-edge of a loaded stop" msgstr "跳过在载入的停靠点的双向路段(bidi-edge)上自动产生停靠点" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:266 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:276 #, c-format msgid "Warn about edge geometries with a grade in % above FLOAT." msgstr "警告 % 百分比的路段几何形狀高于 FLOAT。" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:269 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:279 msgid "Smooth edge geometries with a grade above the warning threshold." msgstr "用高于警告阈值的度数(grade)平滑路段的几何形狀。" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:273 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:283 msgid "Turn off normalizing node positions" msgstr "关闭标准化的节点位置" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:277 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:186 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:287 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:186 msgid "Adds FLOAT to net x-positions" msgstr "將 FLOAT 增加到路网x 位置" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:281 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:190 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:291 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:190 msgid "Adds FLOAT to net y-positions" msgstr "將 FLOAT增加到路网 y 位置" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:284 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:193 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:294 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:193 msgid "Adds FLOAT to net z-positions" msgstr "將 FLOAT增加到路网 z 位置" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:288 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:298 msgid "Flips the y-coordinate along zero" msgstr "沿着 0 翻转y 坐标" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:292 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:302 msgid "Enable roundabout-guessing" msgstr "启用圆环的猜测" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:295 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:305 msgid "Default visibility when approaching a roundabout" msgstr "当接近圆环时,预设的能见度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:298 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:308 msgid "Enable guessing of opposite direction lanes usable for overtaking" msgstr "启用对可用于超车的相反方向车道的猜测" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:301 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:311 msgid "Ensure that opposite edges have the same length" msgstr "确保对向路段具有相同的长度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:304 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:314 msgid "Enable guessing of network fringe nodes" msgstr "启用路网边缘的节点的猜测" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:307 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:317 msgid "Guess disconnected edges above the given speed as outer fringe" msgstr "猜测高于给定速度的不连接路段为外部边缘(outer fringe)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:310 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:320 msgid "Assumes left-hand traffic on the network" msgstr "假设路网內为左行(left-hand)交通" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:326 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:336 msgid "Interprets STR[] as list of junctions to exclude from joining" msgstr "將 STR[]解释为要从整合(joining)中排除的路口清单" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:338 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:348 msgid "Modifies all edge speeds by adding FLOAT" msgstr "通过增加 FLOAT 修改所有路段速度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:341 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:351 msgid "Modifies all edge speeds by multiplying by FLOAT" msgstr "通过乘以 FLOAT 修改所有路段速度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:344 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:354 msgid "Modifies all edge speeds to at least FLOAT" msgstr "將所有路段速度修改为至少 FLOAT" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:352 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:362 msgid "Generate INT intermediate points to smooth out intersection corners" msgstr "产生 INT 中间点以平滑路口角落的曲线" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:355 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:365 msgid "" "Generate INT intermediate points to smooth out lanes within the intersection" msgstr "产生 INT 中间点以平滑路口內的车道曲线" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:358 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:368 msgid "" "Generate longer intersections to allow for smooth s-curves when the number " "of lanes changes" msgstr "产生较长的路口,以便在车道数量发生变化时能允许有平滑的 s 曲线" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:398 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:411 msgid "Forces rectangular cuts between lanes and intersections" msgstr "强制在车道和路口之间进行矩形切割" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:457 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:470 msgid "Always build walking areas even if there are no crossings" msgstr "即使沒有人行穿越道,也要一直建立步行区" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:460 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:473 msgid "" "Do not create a walkingarea between sidewalks that are connected by a " "pedestrian junction within FLOAT" msgstr "不要在 FLOAT 中由行人路口连接的人行道之间建立步行区" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:605 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:618 msgid "Only keep edges with speed in meters/second > FLOAT" msgstr "只保留以米/秒为单位的速度 > FLOAT 的路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:609 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:622 msgid "Remove edges in STR[]" msgstr "移除在 STR[]中的路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:613 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:626 msgid "" "Only keep edges in STR[] or those which are kept due to other keep-edges or " "remove-edges options" -msgstr "仅保留 STR[] 中的路段或由于其他保留路段(keep-edges)或刪除路段(remove-" -"edges)选项而保留的路段" +msgstr "" +"仅保留 STR[] 中的路段或由于其他保留路段(keep-edges)或刪除路段(remove-edges)选" +"项而保留的路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:616 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:629 msgid "" "Only keep edges in FILE (Each id on a single line. Selection files from sumo-" "gui are also supported) or those which are kept due to other keep-edges or " "remove-edges options" msgstr "" -"只保留文件中的路段(每个识别名(ID)在每个单一的列上,也支持来自sumo-" -"gui的选择文件(Selection files))或由于其他保留路段(keep-edges)或删除路段" -"(remove-edges)选项而被保留的路段。" +"只保留文件中的路段(每个识别名(ID)在每个单一的列上,也支持来自sumo-gui的选" +"择文件(Selection files))或由于其他保留路段(keep-edges)或删除路段(remove-" +"edges)选项而被保留的路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:619 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:632 msgid "" "Remove edges in FILE. (Each id on a single line. Selection files from sumo-" "gui are also supported)" -msgstr "移除文件中的路段。 (每个识别名(id)在每个单一的列上。也支持來自 sumo-gui " -"的选项文件(Selection files))" +msgstr "" +"移除文件中的路段。 (每个识别名(id)在每个单一的列上。也支持來自 sumo-gui 的选" +"项文件(Selection files))" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:623 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:636 msgid "Remove edges after joining" msgstr "合并后,移除路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:627 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:640 msgid "" "Only keep edges which are located within the given boundary (given either as " "CARTESIAN corner coordinates or as polygon )" msgstr "" -"仅保留位于给定边界內的路段(边界以CARTESIAN角坐标 或)" -"多边形 给定)" +"仅保留位于给定边界內的路段(边界以CARTESIAN角坐标 或)多" +"边形 给定)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:630 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:643 msgid "" "Only keep edges which are located within the given boundary (given either as " "GEODETIC corner coordinates or as polygon " ")" msgstr "" -"仅保留位于给定边界內的路段(边界以大地(GEODETIC)端点坐标 或多边形 给定)" +"仅保留位于给定边界內的路段(边界以大地(GEODETIC)端点坐标 或多边形 给定)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:634 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:647 msgid "Only keep edges which allow one of the vclasses in STR[]" msgstr "仅保留允许在 STR[] 內其中一个车辆类别(vclass)的路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:637 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:650 msgid "Remove edges which allow only vclasses from STR[]" msgstr "移除只允许在 STR[] 內的车辆类别(vclasses)的路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:640 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:653 msgid "Only keep edges where type is in STR[]" msgstr "仅保留类型(type)在 STR[] 內的路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:643 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:656 msgid "Only keep the INT largest weakly connected components" msgstr "仅保留 INT 最大的弱连接组件(connected components)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:646 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:659 msgid "Remove edges where type is in STR[]" msgstr "移除类型(type)在 STR[] 內的路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:650 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:663 msgid "Removes isolated edges" msgstr "移除孤立的路段" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:657 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:670 msgid "All nodes will be unregulated" msgstr "所有节点將不受控制(unregulated)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:662 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:675 msgid "Do not regulate nodes in STR[]" msgstr "不控制在 STR[] 內的节点" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:666 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:679 msgid "Do not regulate district nodes" msgstr "不控制分区节点" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:672 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:685 msgid "Enable ramp-guessing" msgstr "启用匝道猜测" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:675 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:688 msgid "" "Guess on-ramps and mark acceleration lanes if they exist but do not add new " "lanes" msgstr "猜测入口匝道并标记加速车道(如果存在),但不增加新的车道" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:679 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:692 msgid "Treat edges with speed > FLOAT as no ramps" msgstr "將速度 > FLOAT 的路段视为非匝道" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:683 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:696 msgid "Treat edges with speed < FLOAT as no highways" msgstr "將速度 < FLOAT 的路段视为非高速公路" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:687 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:700 msgid "Use FLOAT as ramp-length" msgstr "使用 FLOAT 为匝道长度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:691 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:704 msgid "Use FLOAT as minimum ramp-length" msgstr "使用 FLOAT 为最短匝道长度" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:695 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:708 msgid "Tries to handle the given edges as ramps" msgstr "尝试将给定的路段设定为匝道" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:698 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:711 msgid "Do not consider the given edges as ramps" msgstr "不將给定的路段视为匝道" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:702 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:715 msgid "Avoids edge splitting" msgstr "避免路段分割(splitting)" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:713 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:725 #, c-format msgid "unsupported value '%' for option '--tls.default-type'" msgstr "不支持选项'--tls.default-type' 的值 '%'" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:717 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:729 msgid "" "only one of the options 'keep-edges.in-boundary' or 'keep-edges.in-geo-" "boundary' may be given" -msgstr "只能給定 'keep-edges.in-boundary' 或 'keep-edges.in-geo-boundary' " -"其中一个选项" +msgstr "" +"只能給定 'keep-edges.in-boundary' 或 'keep-edges.in-geo-boundary' 其中一个选" +"项" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:721 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:733 msgid "" "only one of the options 'no-internal-links' or 'crossings.guess' may be given" msgstr "只能给定 'no-internal-links' 或 'crossings.guess' 其中一个选项" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:725 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:737 msgid "only one of the options 'no-internal-links' or 'walkareas' may be given" msgstr "只能给定 'no-internal-links' 或 'walkareas' 其中一个选项" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:729 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:741 msgid "" "only one of the options 'tls.green.time' or 'tls.cycle.time' may be given" msgstr "只能给定 'tls.green.time' 或 'tls.cycle.time' 其中一个选项" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:733 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:745 msgid "default.lanenumber must be at least 1" msgstr "default.lanenumber 必须至少为1" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:741 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:753 msgid "" "only one of the options 'default.disallow' or 'default.allow' may be given" msgstr "只能给定 'default.disallow' 或 'default.allow' 其中一个选项" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:745 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:757 msgid "junctions.internal-link-detail must >= 2" msgstr "junctions.internal-link-detail 必须>= 2" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:750 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:762 msgid "" "Option 'junctions.scurve-stretch' requires internal lanes to work. Option '--" "no-internal-links' will be disabled." @@ -5276,964 +5437,979 @@ "选项 'junctions.scurve-stretch' 需要內部车道才能使用。 选项 '--no-internal-" "links' 將被禁用。" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:757 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:769 msgid "" "option 'default.junctions.radius' is smaller than option 'junctions.small-" "radius'" msgstr "选项 'default.junctions.radius' 小于选项 'junctions.small-radius'" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:765 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:777 msgid "tls.layout must be 'opposites', 'incoming' or 'alternateOneWay'" msgstr "tls.layout 必须是 'opposites', 'incoming' 或 'alternateOneWay'" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:770 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:782 msgid "default.right-of-way must be one of '%'" msgstr "default.right-of-way 必须是 '%' 其中之一" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:774 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:786 msgid "roundabouts.visibility-distance must be positive or -1" msgstr "roundabouts.visibility-distance 必须为正数或 -1" -#: /home/micha/programming/sumo/src/netbuild/NBFrame.cpp:790 +#: D:\Repos\sumo/src\netbuild\NBFrame.cpp:802 msgid "Unknown value for default.spreadtype '%'." msgstr "default.spreadtype '%' 的值未知。" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:88 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:88 msgid "Cannot supply height since no height data was loaded" msgstr "无法提供高度, 因为未载入高度资料" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:136 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:136 msgid "Could not get height data for coordinate %" msgstr "无法取得坐标% 的高度资料" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:190 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:190 msgid "Could not open shape file '%'." msgstr "无法开启形狀(shape)文件 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:204 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:204 msgid "" "Could not create geocoordinates converter; check whether proj.4 is installed." msgstr "无法建立地理坐标转换器; 检查是否已安裝 proj.4。" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:231 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:231 msgid "Ignored heightmap feature type %" msgstr "忽略的高度映成表(heightmap)特征类型 %" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:276 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:276 msgid "Cannot load shape file since SUMO was compiled without GDAL support." msgstr "无法载入形状文件,因为 SUMO 是在沒有 GDAL 支持的情況下编译的。" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:288 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:288 msgid "Cannot load GeoTIFF file." msgstr "无法载入 GeoTIFF 文件。" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:303 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:303 msgid "Could not parse geo information from %." msgstr "无法解析来自 % 的地理信息。" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:312 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:312 msgid "Unknown color band in %." msgstr "% 中有未知色帶。" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:319 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:319 msgid "Failure in reading %." msgstr "读取 % 失败。" -#: /home/micha/programming/sumo/src/netbuild/NBHeightMapper.cpp:348 +#: D:\Repos\sumo/src\netbuild\NBHeightMapper.cpp:348 msgid "Cannot load GeoTIFF file since SUMO was compiled without GDAL support." msgstr "无法载入 GeoTIFF 文件,因为 SUMO 是在沒有 GDAL 支持的情況下编译的。" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:89 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:89 msgid "Could not load names of edges too keep from '%'." msgstr "无法从 '%' 载入要保留的路段的名称。" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:107 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:107 msgid "Could not load IDs from '%'." msgstr "无法 '%'载入识别名(IDs)。" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:123 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:123 msgid "Invalid lane id '%' (missing '_')." msgstr "无效的车道识别名(id) '%' (缺少 '_')。" -#: /home/micha/programming/sumo/src/netbuild/NBHelpers.cpp:130 +#: D:\Repos\sumo/src\netbuild\NBHelpers.cpp:130 msgid "Invalid lane index '%' for lane '%'." msgstr "车道 '%' 的车道索引(index) '%' 无效。" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedSUMOTLDef.cpp:359 +#: D:\Repos\sumo/src\netbuild\NBLoadedSUMOTLDef.cpp:359 #, c-format msgid "Could not patch tlLogic '%' for changed crossings" msgstr "无法为更改人行穿越道而修补信号逻辑(tlLogic) '%'" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedSUMOTLDef.cpp:889 +#: D:\Repos\sumo/src\netbuild\NBLoadedSUMOTLDef.cpp:889 msgid "Unused state in tlLogic '%', program '%' at tl-index %" -msgstr "信号逻辑(tlLogic) '%' 有未使用的状态(state), 在信号索引(tl-index) % " -"的时制方案(program) '%'" +msgstr "" +"信号逻辑(tlLogic) '%' 有未使用的状态(state), 在信号索引(tl-index) % 的时制方" +"案(program) '%'" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:83 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:83 msgid "" "TYellow of signal group '%' was less than the computed one; patched (was:%, " "is:%)" msgstr "黄灯信号组 '%' 小于计算值;已修补 (过去是: %, 现在是: %)" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:300 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:300 msgid "During computation of traffic light '%'." msgstr "在计算信号 '%' 期间。" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:514 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:514 msgid "Could not set signal on connection (signal: %, group: %)" msgstr "无法设定连接线(connection)的交通信号 (交通信号: %, 群组: %)" -#: /home/micha/programming/sumo/src/netbuild/NBLoadedTLDef.cpp:612 +#: D:\Repos\sumo/src\netbuild\NBLoadedTLDef.cpp:612 msgid "myNeedsContRelation was not propperly initialized\n" msgstr "myNeedsContRelation 未被正确初始化\n" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:94 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:94 msgid "Removing self-loops" msgstr "移除自我感应线圈(self-loops)" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:98 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:98 msgid "Finding isolated roads" msgstr "寻找孤立的道路" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:103 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:103 msgid "Finding largest components" msgstr "寻找最大的组件(components)" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:110 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:110 msgid "Removing unwished edges" msgstr "移除不需要的路段" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:117 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:117 msgid "Processing public transport stops" msgstr "正在处理大众运输停靠站" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:132 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:132 msgid "Revising public transport stops based on pt lines" msgstr "根据大众运输路线修改大众运输停靠点" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:138 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:138 msgid "Cleaning up public transport stops that are not served by any line" msgstr "清除沒有服务任何路线的大众运输停靠点" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:144 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:144 #, c-format msgid "Removed % pt stops because they could not be assigned to the network" msgstr "刪除了 % 个大众运输停靠点,因为它们无法在路网上定位" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:149 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:149 msgid "Align pt stop id signs with corresponding edge id signs" msgstr "將大众运输停靠点识别名(id)标志与相应的路段识别名(id)标志对齐" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:186 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:186 msgid "Joining tram edges" msgstr "正在合并轻轨电车(tram)路段" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:190 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:190 msgid " Joined % tram edges into roads." -msgstr " % 轻轨电车(tram)路段合并于道路內" +msgstr " % 轻轨电车(tram)路段合并于道路內。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:228 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:228 msgid "Joining junction clusters" msgstr "正在合并路口群集(clusters)" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:233 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:233 #, c-format msgid " Joined % junction cluster(s)." msgstr " 合并的 % 路口群集(cluster(s))。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:236 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:236 msgid "Joining junctions with identical coordinates" msgstr "正在合并具有相同坐标的路口" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:240 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:240 #, c-format msgid " Joined % junctions." msgstr " 合并的 % 路口。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:245 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:245 msgid "Joining lanes" msgstr "正在合并车道" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:248 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:248 #, c-format msgid " Joined lanes on % edges." msgstr " 在 % 路段上合并的车道。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:258 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:258 #, c-format msgid " % nodes removed." msgstr " % 节点已移除。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:278 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:278 msgid "Reducing geometries" msgstr "正在減少几何形狀" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:285 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:285 msgid "Joining similar edges" msgstr "正在合并相似路段" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:295 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:295 msgid "guessing opposite direction edges" msgstr "正在猜测对向路段" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:301 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:301 msgid "Splitting geometry edges" msgstr "正在分割(splitting)几何路段" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:308 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:308 #, c-format msgid " Joined % junctions after splitting geometry." msgstr " 分割(split)几何后,合并的 % 路口。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:313 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:313 msgid "Computing turning directions" msgstr "正在计算转弯方向" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:322 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:322 msgid "Assigning nodes to traffic lights" msgstr "正在將节点指派分配給交通信号灯" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:345 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:345 msgid "Guessing and setting on-/off-ramps" msgstr "正在猜测及设定进出口匝道" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:361 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:361 msgid "Guessed % bike lanes." msgstr "猜测的 % 自行车车道。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:372 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:372 #, c-format msgid "Guessed % sidewalks." msgstr "猜测的 % 人行道。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:382 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:382 #, c-format msgid "Remapped % edge IDs and % node IDs." msgstr "重新映射的(remapped) % 路段识别名(IDs)和 % 节点识别名(IDs)。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:397 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:397 msgid "Sorting nodes' edges" msgstr "正在排序节点的路段" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:402 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:402 msgid "Computing node shapes" msgstr "正在计算节点形狀" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:410 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:410 msgid "Computing edge shapes" msgstr "正在计算路段形狀" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:423 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:423 msgid "Applying speed modifications" msgstr "使用修改后的速度" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:436 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:436 msgid "Computing node types" msgstr "正在计算节点类型" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:447 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:447 #, c-format msgid "Guessed % pedestrian crossings." msgstr "猜测的 % 行人穿越道。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:475 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:475 msgid "Computing priorities" msgstr "正在计算优先顺序等級" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:479 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:479 msgid "Computing approached edges" msgstr "正在计算接近的(approached)路段" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:484 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:484 msgid "Guessing and setting roundabouts" msgstr "正在猜测及设定圆环" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:487 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:487 msgid " Guessed % roundabout(s)." msgstr " 猜测的 % 圆环。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:493 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:493 msgid "Computing approaching lanes" msgstr "正在计算接近的(approached)车道" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:497 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:497 msgid "Dividing of lanes on approached lanes" msgstr "在接近的(approached)车道上划分(divide)车道" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:503 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:503 msgid "Guessing Network fringe" msgstr "正在猜测路网边缘" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:506 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:506 #, c-format msgid " Guessed % fringe nodes." msgstr " 猜测的 % 边缘节点。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:511 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:511 msgid "Processing turnarounds" msgstr "正在处理掉头(turnarounds)" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:529 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:529 msgid "Rechecking of lane endings" msgstr "重新检查车道末端" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:551 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:551 msgid "Joining traffic light nodes" msgstr "正在合并交通信号节点" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:558 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:558 msgid "Computing traffic light control information" msgstr "正在计算交通信号控制信息" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:565 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:565 msgid "Computing node logics" msgstr "正在计算节点逻辑" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:570 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:570 msgid "Computing traffic light logics" msgstr "正在计算交通信号逻辑" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:577 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:577 msgid " % traffic light(s) %computed." msgstr " % 交通信号%已计算完成。" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:585 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:588 msgid "Building inner edges" msgstr "正在建立內部路段" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:598 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:601 msgid "stretching junctions to smooth geometries" msgstr "拉伸路口以平滑几何形狀" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:627 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:630 msgid "Generating street signs" msgstr "正在产生街道标志" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:638 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:641 msgid "Checking overlapping edges" msgstr "正在检查重叠的路段" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:643 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:646 msgid "Checking edge grade" msgstr "正在检查路段坡度(grade)" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:658 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:661 msgid "Find accesses for pt rail stops" msgstr "寻找火车站停靠点的连通通道(accesses)" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:681 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:684 msgid "" "Network contains very large coordinates and will probably flicker in the " "GUI. Check for outlying nodes and make sure the network is shifted to the " "coordinate origin" -msgstr "路网包含非常大的坐标,且可能会在 GUI " -"中闪烁(flicker)。检查外围节点,並确保路网已移动到坐标原点" +msgstr "" +"路网包含非常大的坐标,且可能会在 GUI 中闪烁(flicker)。检查外围节点,並确保路网" +"已移动到坐标原点" -#: /home/micha/programming/sumo/src/netbuild/NBNetBuilder.cpp:688 +#: D:\Repos\sumo/src\netbuild\NBNetBuilder.cpp:691 msgid "Moving network to origin" msgstr "正在移动路网到坐标原点" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:299 -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:321 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:299 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:321 msgid "Invalid node id '%'." msgstr "无效的节点识别点(id) '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:465 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:465 msgid " Removing self-looping edge '%'" msgstr " 移除自我线圈(self-looping)路段 '%'" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:744 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:744 msgid "Could not compute indirect left turn shape at node '%'" msgstr "无法计算节点 '%' 处间接左转形狀" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:760 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:760 #, c-format msgid "Connection '%' starts at a non-existant lane." msgstr "连接线 '%' 从一个不存在的车道开始。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:763 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:763 #, c-format msgid "Connection '%' targets a non-existant lane." msgstr "连接线 '%' 以一个不存在的车道为目标。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:777 -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:795 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:777 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:795 msgid "Could not use custom shape for connection %." msgstr "无法与连接线% 使用自定形狀。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:786 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:786 msgid "Custom shape has distance % to incoming lane for connection %." msgstr "自定形狀与连接线 % 的进入(incoming)车道的距离为 %。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:803 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:803 msgid "Custom shape has distance % to outgoing lane for connection %." msgstr "自定形狀与连接线 % 的离开(outgoing)车道的距离为 %。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1003 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1003 msgid "" "Junction '%' is too complicated (% connections, max %); will be set to %." msgstr "路口 '%' 太复杂 (% 连接线,最大 %); 將被設定为 %。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1144 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1144 #, c-format msgid "Shape for junction '%' has distance % to its given position." msgstr "路口 '%' 的形狀与其給定位置的距离为 %。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1148 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1148 msgid "For junction '%': could not compute shape." msgstr "路口 '%': 无法计算形狀。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:1852 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:1850 msgid "Something went wrong during the building of a connection..." msgstr "建立连接线(connection)时,发生了问题..." -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:2871 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:2878 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (no " "walkingarea found)." msgstr "废除连接路段 [%] 的路口 '%' 处的无效穿越道 '%' (未找到步行区域)。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3047 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3054 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (no vehicle " "lanes to cross)." msgstr "在具有路段 [%] 的路口 '%' 处废除无效的人行道 '%' (无车道可穿越)。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3066 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3073 msgid "" "Discarding invalid crossing '%' at junction '%' with edges [%] (invalid " "shape)." -msgstr "在具有路段 [%] 的路口 '%' 处废除无效的人行道 '%' (无效的形狀(shape))。" +msgstr "" +"在具有路段 [%] 的路口 '%' 处废除无效的人行道 '%' (无效的形狀(shape))。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3217 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3224 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' targets '%' and " "'%'." msgstr "路口 '%' 处的行人拓扑结构(topology)无效; 穿越道 '%' 目标 '%' 和 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3240 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3247 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' is targeted by '%' " "and '%'." -msgstr "路口 '%' 处的行人拓扑结构(topology)无效; 穿越道 '%' 是 '%' 和 '%' 的目标。" +msgstr "" +"路口 '%' 处的行人拓扑结构(topology)无效; 穿越道 '%' 是 '%' 和 '%' 的目标。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3245 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3252 msgid "" "Invalid pedestrian topology at junction '%'; crossing '%' starts and ends at " "walkingarea '%'." -msgstr "路口 '%'处的行人拓扑结构(topology)无效;穿越道 '%' 的起点和终点都在步行区域 " +msgstr "" +"路口 '%'处的行人拓扑结构(topology)无效;穿越道 '%' 的起点和终点都在步行区域 " "'%'。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3465 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3472 msgid "Invalid pedestrian topology: crossing '%' across [%] has no target." msgstr "无效的行人拓扑结构(topology): 跨越 [%] 的人行穿越道 '%'沒有目标。" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3685 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3692 msgid "Request for unknown crossing '%'" msgstr "请求未知人行穿越道 '%'" -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3701 -#: /home/micha/programming/sumo/src/netbuild/NBNode.cpp:3712 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3708 +#: D:\Repos\sumo/src\netbuild\NBNode.cpp:3719 msgid "Request for unknown crossing for the given Edges" msgstr "请求给定路段的未知人行穿越道" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:319 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:319 msgid "Removed a road without junctions: %." msgstr "移除了沒有路口的道路: %。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:406 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:406 msgid "Found % components and removed % (% edges)." msgstr "找到 % 组件并移除 % (% 路段)。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:447 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:447 msgid "Removed % railway components (% edges)." msgstr "移除了 % 火车组件 (% 路段)。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:658 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:663 #, c-format msgid "" "Ignoring join exclusion for junction '%' since it already occurred in a list " "of nodes to be joined." msgstr "忽略路口 '%' 的合并排除,因为它已经出现在要连接的节点清单中。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:691 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:696 msgid "" "Ignoring join-cluster because junction '%' was already excluded from joining." msgstr "忽略合并群集(join-cluster),因为联路口 '%' 已被排除在合并之外。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:694 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:699 #, c-format msgid "" "Ignoring join-cluster because junction '%' already occurred in another join-" "cluster." msgstr "忽略合并群集(join-cluster),因为路口 '%' 已出现在另一个合并群集中。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:700 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:705 #, c-format msgid "Unknown junction '%' in join-cluster." msgstr "有未知的路口 '%' 在合并群集(join-cluster)內。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:708 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:713 msgid "Ignoring join-cluster '%' because it has size '%'." msgstr "忽略合并群集(join-cluster) '%' ,因为它的大小为 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:722 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:727 msgid "unknown junction '%' while joining." -msgstr "当合并时,未知的路口 '%'" +msgstr "当合并时,未知的路口 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:780 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:821 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:828 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:833 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:840 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:785 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:826 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:833 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:838 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:845 msgid "Not joining junctions % (%)." -msgstr "沒有合并的路口" +msgstr "沒有合并的路口% (%)。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:800 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:814 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:805 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:819 msgid "Reducing junction cluster % (%)." msgstr "減少路口群集(cluster) % (%)。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1709 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1714 msgid "Could not join junctions %." msgstr "无法合并路口 %。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:1909 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:1956 msgid "Ambiguous traffic light type for node cluster '%', setting to '%'." msgstr "节点群集(cluster) '%' 的交通信号类型不明确, 设定为 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2005 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2052 #, c-format msgid " The junction '%' to set as not-controlled is not known." msgstr " 设置为不受控制的路口 '%'为未知。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2174 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2221 msgid "Could not build joined tls '%'." msgstr "无法建立合并的交通信号(tls) '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2219 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2266 msgid "Could not build guessed, joined tls." msgstr "无法建立猜测的,合并的交通信号(tls)。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2335 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2382 msgid "Could not build a joined tls." msgstr "无法建立一个合并的交通信号(tls)。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2352 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2399 msgid "Building a tl-logic for junction '%' twice is not possible." msgstr "不可能为路口 '%' 建立一个信号逻辑(tl-logic)两次。" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2434 -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2526 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2481 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2573 msgid "-----------------------------------------------------" msgstr "-----------------------------------------------------" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2435 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2482 msgid "Summary:" msgstr "总结:" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2493 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2540 msgid " Node type statistics:" msgstr " 节点模型统计:" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2522 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2569 msgid " Network boundaries:" msgstr " 路网边界:" -#: /home/micha/programming/sumo/src/netbuild/NBNodeCont.cpp:2555 +#: D:\Repos\sumo/src\netbuild\NBNodeCont.cpp:2602 msgid "Attempt to rename node using existing id '%'" msgstr "当试使用现有识别名(id) '%' 去重新命名节点" -#: /home/micha/programming/sumo/src/netbuild/NBNodeShapeComputer.cpp:441 +#: D:\Repos\sumo/src\netbuild\NBNodeShapeComputer.cpp:444 msgid "Fixing offset for edge '%' at node '%." msgstr "正在修复节点 '%' 处的路段 '%' 的偏移量。" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:561 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:561 #, c-format msgid "" "Minor green from edge '%' to edge '%' exceeds %m/s. Maybe a left-turn lane " "is missing." msgstr "从路段 '%' 到路段 '%' 的次要绿灯超过%。可能缺少左转车道。" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:773 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:773 msgid "" "Generating NEMA phases is not support for traffic light '%' with % incoming " "edges. Using tlType 'actuated' as fallback" -msgstr "产生的 NEMA相位不支持具有 % 进入车道的交通信号'%'。使用 信号类型(tlType) " -"'触动式(actuated)' 作为应变" +msgstr "" +"产生的 NEMA相位不支持具有 % 进入车道的交通信号'%'。使用 信号类型(tlType) '触" +"动式(actuated)' 作为应变" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:799 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:799 msgid "The traffic light '%' cannot be adapted to a cycle time of %." msgstr "交通信号灯'%'不能适应%的周期时间。" -#: /home/micha/programming/sumo/src/netbuild/NBOwnTLDef.cpp:818 +#: D:\Repos\sumo/src\netbuild\NBOwnTLDef.cpp:818 msgid "The traffic light '%' has a high cycle time of %." msgstr "交通信号灯'%'的周期时间太高,为%。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:197 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:197 msgid "Could not retrieve edge '%' for first stop of line '%'." msgstr "无法提取(retrieve)路线 '%' 的第一个停靠点的路段 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:203 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:203 msgid "First stop edge '%' is not part of the route of line '%'." msgstr "第一个停靠点路段 '%' 不是路线 '%' 路径的一部分。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:227 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:227 msgid "Could not retrieve edge '%' for last stop of line '%'." msgstr "无法提取(retrieve)路线 '%' 的最后一个停靠点的路段 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:233 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:233 msgid "Last stop edge '%' is not part of the route of line '%'." msgstr "最后一个停靠点路段 '%' 不是路线'%' 路径的一部分。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:294 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:302 msgid "Removed invalid stop '%' from line '%'." msgstr "从路线 '%' 內移除了无效的停靠点%'。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:312 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:320 msgid "Removed duplicate stop '%' at area '%' from line '%'." msgstr "从路线 '%' 內移除了在区域'%' 中的重复停靠点 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLine.cpp:315 +#: D:\Repos\sumo/src\netbuild\NBPTLine.cpp:323 msgid "Removed duplicate stop '%' named '%' from line '%'." msgstr "从路线 '%' 內移除了名为 '%' 的重复停靠点 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:99 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:99 msgid "" "Cannot revise pt stop localization for pt line '%', which consist of one way " "only. Ignoring!" msgstr "无法修改大众运输路线'%' 的停靠点定位,它仅包含单向。 忽略!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:103 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:103 msgid "" "Cannot revise pt stop localization for pt line '%', which has no route " "edges. Ignoring!" msgstr "无法修改大众运输路线 '%' 的停靠点定位,它沒有路径路段。 忽略!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:122 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:122 msgid "" "Cannot assign stop '%' on edge '%' to pt line '%' (wayNodes not found). " "Ignoring!" -msgstr "无法指派停靠点 '%' 到路段 '%' 給大众运输路线 '%' " -"(找不到路径节点(wayNodes))。 忽略!" +msgstr "" +"无法指派停靠点 '%' 到路段 '%' 給大众运输路线 '%' (找不到路径节点" +"(wayNodes))。 忽略!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:137 -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:151 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:137 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:151 msgid "" "Cannot revise pt stop localization for incomplete pt line '%'. Ignoring!" msgstr "无法为不完整的大众运输路线 '%' 修改停靠站定位。 忽略!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:162 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:162 msgid "Could not re-assign PT stop '%', probably broken osm file." msgstr "无法重新指派大众运输停靠点 '%',可能由于损坏的 osm 文件。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:171 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:171 msgid "PT stop '%' has been moved to edge '%'." msgstr "大众运输停靠点 '%' 已被移至路段 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:243 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:243 msgid "" "Could not assign stop '%' to pt line '%' (closest edge '%', distance %). " "Ignoring!" msgstr "无法指派停靠点 '%' 給大众运输路线'%' (最近的路段 '%', 距离 %)。忽略!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:275 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:275 msgid "Cannot assign stop % on edge '%' to pt line '%'. Ignoring!" msgstr "无法指派停靠点 '%' 到路段 '%' 给大众运输路线'%'。 忽略!" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:458 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:475 msgid "" "Could not determine vehicle class for public transport line of type '%'." msgstr "无法确定类型为%' 的大众运输路线的车辆类别。" -#: /home/micha/programming/sumo/src/netbuild/NBPTLineCont.cpp:523 +#: D:\Repos\sumo/src\netbuild\NBPTLineCont.cpp:540 msgid "Could not determine direction for line '%' at stop '%'." msgstr "无法在停靠点'%' 处确定路线 '%' 的方向。" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:110 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:110 msgid "" "Could not find corresponding edge or compatible lane for pt stop '%' (%). " "Thus, it will be removed!" msgstr "无法找到大众运输停靠点 '%' (%) 的对应路段或合适车道。因此,它將被刪除!" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:136 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:136 msgid "" "Could not create reverse-direction stop for superposed edge '%' (origStop " "'%'). Stop id '%' already in use by stop on edge '%'." msgstr "" -"无法为叠加路段 '%' 建立反向停靠点 (原始停靠点(origStop) " -"'%')。停靠点识别名(id) '%' 已被路段 '%' 上的停靠点使用。" +"无法为叠加路段 '%' 建立反向停靠点 (原始停靠点(origStop) '%')。停靠点识别名" +"(id) '%' 已被路段 '%' 上的停靠点使用。" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:170 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:170 #, c-format msgid "Added % stops for superposed rail edges." msgstr "为叠加(superposed)的轨道路段增加了 % 停靠点。" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:272 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:272 msgid "Could not determine cross product for edge '%'." msgstr "无法确定路段 '%' 的交叉乘积(cross product)。" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:326 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:326 msgid "Removing pt stop '%' on non existing edge '%'." msgstr "移除在不存在路段 '%' 上的大众运输停靠点 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:357 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:357 msgid "Could not re-assign pt stop '%' after replacing edge '%'." msgstr "替换路段 '%' 后,无法重新指派分配大众运输停靠点 '%'。" -#: /home/micha/programming/sumo/src/netbuild/NBPTStopCont.cpp:446 +#: D:\Repos\sumo/src\netbuild\NBPTStopCont.cpp:446 msgid "" "Could not find corresponding edge or compatible lane for free-floating pt " "stop '%' (%). Thus, it will be removed!" -msgstr "无法找到自由移动(free-floating)的大众运输停靠点 '%' (%) " -"的对应路段或合适车道。因此,它將被刪除!" +msgstr "" +"无法找到自由移动(free-floating)的大众运输停靠点 '%' (%) 的对应路段或合适车" +"道。因此,它將被刪除!" -#: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:44 +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:44 #, c-format msgid "Ignoring parking area on edge '%' due to invalid permissions." msgstr "由于无效的权限,忽略路段 '%' 上的停車区域。" -#: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:51 +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:51 #, c-format msgid "Ignoring parking area on edge '%' due to insufficient space." msgstr "由于空间不足,忽略路段 '%' 上的停车区域。" -#: /home/micha/programming/sumo/src/netbuild/NBParking.cpp:71 +#: D:\Repos\sumo/src\netbuild\NBParking.cpp:71 msgid "Could not find edge for parkingArea '%'." msgstr "无法为停车区域 '%' 发现路段。" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:115 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:115 #, c-format msgid "The traffic light '%' does not control any links; it will not be build." msgstr "交通信号'%' 沒有控制任何路段; 它將不会被建立。" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:229 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:229 msgid "Unreachable edge '%' within tlLogic '%'" msgstr "信号逻辑(tlLogic) '%' 內无法到达的路段 '%'" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightDefinition.cpp:509 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightDefinition.cpp:509 #, c-format msgid "The rail crossing '%' does not have any roads." msgstr "火车平交道 '%' 沒有任何道路。" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogic.cpp:100 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogic.cpp:100 #, c-format msgid "When adding phase: illegal character '%' in state" msgstr "当增加相位: 状态(state)中有非法字元 '%'" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogic.cpp:233 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogic.cpp:233 #, c-format msgid "Non-static traffic light '%' does not define variable phase length." msgstr "非定时交通信号 '%' 未定义可变相位长度。" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogicCont.cpp:235 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:243 msgid "Could not build program '%' for traffic light '%'" msgstr "无法建立交通信号 '%' 的时制方案 '%'" -#: /home/micha/programming/sumo/src/netbuild/NBTrafficLightLogicCont.cpp:376 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:384 msgid "Guessing signalID for link index % at traffic light '%'." msgstr "正在猜测交通信号 '%' 处连接索引(link index) % 的信号识别名(ID)。" -#: /home/micha/programming/sumo/src/netconvert_main.cpp:97 +#: D:\Repos\sumo/src\netbuild\NBTrafficLightLogicCont.cpp:491 +#, c-format +msgid "" +"Was not able to apply the OpenDRIVE signal group information onto the signal " +"program of traffic light % generated by SUMO." +msgstr "" + +#: D:\Repos\sumo/src\netconvert_main.cpp:98 msgid "" "Network importer / builder for the microscopic, multi-modal traffic " "simulation SUMO." msgstr "微观多模式交通仿真 SUMO 的路网导入器/构建器。" -#: /home/micha/programming/sumo/src/netconvert_main.cpp:120 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:273 -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:93 +#: D:\Repos\sumo/src\netconvert_main.cpp:121 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:273 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:93 msgid "Could not build projection!" msgstr "无法建立投影!" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:41 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:41 msgid "Read edge-type defs from FILE" msgstr "从文件中读取路段类型定义(edge-type defs)" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:44 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:44 msgid "" "The Ids of generated nodes use an alphanumerical code for easier readability " "when possible" msgstr "产生的节点的识别名(ids)使用字母数字代码,以便在可能的情況下更易于阅读" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:48 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:48 msgid "Generate INT left-turn lanes" msgstr "产生 INT左转车道" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:50 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:50 msgid "Set the length of generated turning lanes to FLOAT" msgstr "將产生的转向车道的长度設定为 FLOAT" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:53 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:53 msgid "" "Apply random spatial perturbation in x direction according the the given " "distribution" msgstr "根据给定的分配,在 x 方向使用随机空间扰动" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:55 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:55 msgid "" "Apply random spatial perturbation in y direction according the the given " "distribution" msgstr "根据给定的分配,在 y 方向使用随机空间扰动" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:57 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:57 msgid "" "Apply random spatial perturbation in z direction according the the given " "distribution" msgstr "根据给定的分配,在 z 方向使用随机空间扰动" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:63 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:63 msgid "Defines the probability to build a reverse edge" msgstr "定义建立反向路段的机率" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:67 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:67 msgid "Draw lane numbers randomly from [1,default.lanenumber]" msgstr "从[1,default.lanenumber] 中随机抽取车道数" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:71 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:71 msgid "Draw edge priority randomly from [1,default.priority]" msgstr "从 [1,default.priority] 中随机抽取路段的优先级别" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:74 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:74 msgid "Draw edge type randomly from all loaded types" msgstr "从所有载入的类型中随机抽取路段类型" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:80 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:80 msgid "Forces NETGEN to build a grid-like network" msgstr "强制NETGEN 建立格狀网络" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:85 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:85 msgid "The number of junctions in both dirs" msgstr "在两个方向上的路口数量" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:90 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:90 msgid "The length of streets in both dirs" msgstr "在两个方向上的街道长度" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:95 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:95 msgid "The number of junctions in x-dir; Overrides --grid-number" msgstr "在 x 方向上的路口数量; 覆盖 --grid-number" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:100 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:100 msgid "The number of junctions in y-dir; Overrides --grid-number" msgstr "在 y 方向上的路口数量; 覆盖 --grid-number" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:105 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:105 msgid "The length of horizontal streets; Overrides --grid-length" msgstr "水平街道的长度; 覆盖 --grid-length" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:110 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:110 msgid "The length of vertical streets; Overrides --grid-length" msgstr "垂直街道的长度; 覆盖 --grid-length" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:114 -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:147 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:114 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:147 msgid "" "The length of streets attached at the boundary; 0 means no streets are " "attached" msgstr "附加到边界上的街道长度; 0 表示沒有附加任何街道" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:117 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:117 msgid "" "The length of streets attached at the boundary in x direction; 0 means no " "streets are attached" msgstr "附加到 x 方向边界上的街道长度; 0 表示沒有附加任何街道" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:119 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:119 msgid "" "The length of streets attached at the boundary in y direction; 0 means no " "streets are attached" msgstr "附加到 y 方向边界上的街道长度; 0 表示沒有附加任何街道" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:124 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:124 msgid "Forces NETGEN to build a spider-net-like network" msgstr "強制 NETGEN 建立蜘蛛网状的路网" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:129 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:129 msgid "The number of axes within the net" msgstr "路网內的轴(axes)数" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:134 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:134 msgid "The number of circles of the net" msgstr "路网的圆圈数量" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:139 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:139 msgid "The distances between the circles" msgstr "圆圈之见的距离" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:144 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:144 msgid "Omit the central node of the network" msgstr "省略路网的中心节点" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:152 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:152 msgid "Forces NETGEN to build a random network" msgstr "強制 NETGEN构建随机路网" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:157 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:157 msgid "Describes how many times an edge shall be added to the net" msgstr "描述应将一个路段增加到路网中的次数" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:162 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:162 msgid "The maximum distance for each edge" msgstr "每个路段的最大距离" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:167 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:167 msgid "The minimum distance for each edge" msgstr "每个路段的最小距离" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:172 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:172 msgid "The minimum angle for each pair of (bidirectional) roads in DEGREES" msgstr "每对(双向)道路的最小角度,以 DEGREES 为单位" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:177 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:177 msgid "The number of tries for creating each node" msgstr "建立每个节点的尝试次数" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:182 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:182 msgid "Probability for roads to continue at each node" msgstr "道路在每个节点连续的机率" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:187 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:187 msgid "Probability for a node having exactly 1 neighbor" msgstr "节点恰好有 1 个邻居的机率" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:192 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:192 msgid "Probability for a node having exactly 2 neighbors" msgstr "节点恰好有 2 个邻居的机率" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:197 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:197 msgid "Probability for a node having exactly 3 neighbors" msgstr "节点恰好有 3 个邻居的机率" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:202 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:202 msgid "Probability for a node having exactly 4 neighbors" msgstr "节点恰好有 4个邻居的机率" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:207 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:207 msgid "Probability for a node having exactly 5 neighbors" msgstr "节点恰好有 5个邻居的机率" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:212 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:212 msgid "Probability for a node having exactly 6 neighbors" msgstr "节点恰好有 6个邻居的机率" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:215 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:215 msgid "Place nodes on a regular grid with spacing rand.min-distance" msgstr "将节点放置在间距为 rand.min-distance 的规则路网上" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:235 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:235 msgid "You have to specify the type of network to generate." msgstr "您必须指定要产生的路网类型。" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:239 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:239 msgid "You may specify only one type of network to generate at once." msgstr "您一次只能指定产生一种类型的路网。" -#: /home/micha/programming/sumo/src/netgen/NGFrame.cpp:274 +#: D:\Repos\sumo/src\netgen\NGFrame.cpp:274 msgid "Option 'random-type' takes no effect unless 'type-files' are loaded" msgstr "除非已载入'类型文件(type-files)',否则选项'随机类型(random-type)'无效" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:90 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:90 msgid "" "[traffic_light|priority|right_before_left|left_before_right|" "traffic_light_right_on_red|priority_stop|allway_stop|...] Determines " @@ -6242,490 +6418,499 @@ "[交通信号|优先级别|右方车辆优先|左方车辆优先|红灯可右行信号|依优先等級停等|一" "直停等|...] 決定 路口类型 (请参见wiki/Networks/PlainXML#Node_types)" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:119 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:120 msgid "Spider networks need at least 3 arms." msgstr "蜘蛛型网络至少需要 3 个手臂。" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:123 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:124 msgid "Spider networks with many arms should use option spider.omit-center" msgstr "多臂的蜘蛛型网络应该使用选项 ommit-center" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:126 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:127 msgid "Spider networks need at least one circle." msgstr "蜘蛛型路网至少需要一个环线。" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:134 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:135 #, c-format msgid "" "The radius of spider networks should be at least % for the given lanenumber, " "lanewidth and junction radius" msgstr "对于给定的车道数、车道宽度和交叉路口半径,蜘蛛型路网的半径应至少为 %" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:176 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:177 msgid "" "The number of nodes must be positive and at least 2 in one direction if " "there are no attachments." -msgstr "如果沒有附加物件(attachments),节点数必须为正数,且在一个方向上至少有 2 个。" +msgstr "" +"如果沒有附加物件(attachments),节点数必须为正数,且在一个方向上至少有 2 个。" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:184 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:185 #, c-format msgid "" "The distance between nodes should be at least % for the given lanenumber, " "lanewidth and junction radius" msgstr "对于给定的车道数、车道宽度和路口半径,节点之间的距离应至少为 %" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:190 -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:195 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:191 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:196 #, c-format msgid "" "The length of attached streets should be at least % for the given " "lanenumber, lanewidth and junction radius" msgstr "对于给定的车道数、车道宽度和路口半径,街道的长度应至少为 %" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:230 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:231 msgid "" "Synthetic network generator for the microscopic, multi-modal traffic " "simulation SUMO." msgstr "用于微观多模式交通仿真 SUMO 的合成(synthetic)路网产生器。" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:266 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:267 msgid " Generation done;" msgstr " 产生完成;" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:267 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:268 #, c-format msgid " % nodes generated." msgstr " 已产生 % 节点。" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:268 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:269 #, c-format msgid " % edges generated." msgstr " 已产生 % 路段。" -#: /home/micha/programming/sumo/src/netgen/netgen_main.cpp:273 +#: D:\Repos\sumo/src\netgen\netgen_main.cpp:274 msgid " Removed % traffic lights at geometry-like nodes" msgstr " 在几何相似的节点处移除 % 交通信号" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:53 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:53 msgid "Read SUMO-net from FILE" msgstr "从文件读取SUMO路网SUMO-net)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:60 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:60 msgid "Read XML-node defs from FILE" msgstr "从文件读取取 XML 节点的定义(XML-node defs)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:66 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:66 msgid "Read XML-edge defs from FILE" msgstr "从文件读取 XML 路段的定义(XML-edge defs)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:72 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:72 msgid "Read XML-connection defs from FILE" msgstr "从文件读取 XML 连接线的定义(XML-connection defs)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:75 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:75 msgid "Read XML-traffic light defs from FILE" msgstr "从文件读取XML 交通信号的定义(XML-traffic light defs)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:81 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:81 msgid "Read XML-type defs from FILE" msgstr "从文件中读取XML 类型的定义(XML-type defs)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:86 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:86 msgid "Reads public transport stops from FILE" msgstr "从档案读取大众运输停靠点" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:88 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:88 msgid "Reads public transport lines from FILE" msgstr "从文件读取大众运输路线" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:90 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:90 msgid "Reads polygons from FILE for embedding in network where applicable" msgstr "从文件中读取多边形,以在适用的情況下嵌入路网內" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:97 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:97 msgid "Read shapefiles (ArcView, Tiger, ...) from files starting with 'FILE'" msgstr "从以 'FILE' 为开头的文件中读取 shapefiles (ArcView, Tiger,...)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:102 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:102 msgid "" "Read converted Navteq GDF data (unsplitted Elmar-network) from path 'FILE'" msgstr "从路径'FILE' 读取转换后的 Navteq GDF 数据(未分割的 Elmar 路网)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:106 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:106 msgid "Read OSM-network from path 'FILE(s)'" msgstr "从路径 'FILE(s)' 读取开放街图文件(OSM-network)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:110 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:110 msgid "Read OpenDRIVE-network from FILE" msgstr "从文件中读取 OpenDRIVE 路网" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:114 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:114 msgid "Read VISUM-net from FILE" msgstr "从文件中读取 VISUM 路网" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:118 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:118 msgid "Read VISSIM-net from FILE" msgstr "从文件中读取 VISSIM 路网" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:123 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:123 msgid "Read RoboCup-net from DIR" msgstr "从文件夹(DIR)中读取 RoboCup 路网" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:127 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:127 msgid "Read MATsim-net from FILE" msgstr "从文件中读取 MATsim 路网" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:131 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:131 msgid "Read ITSUMO-net from FILE" msgstr "从文件中读取 ITSUMO 路网" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:134 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:134 msgid "Read heightmap from ArcGIS shapefile" msgstr "从ArcGIS shapefile 文档中读取高度映成表(heightmap)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:137 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:137 msgid "Read heightmap from GeoTIFF" msgstr "从 GeoTIFF 文件中读取高度映成表(heightmap)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:145 -#: /home/micha/programming/sumo/src/od2trips_main.cpp:159 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:199 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:145 +#: D:\Repos\sumo/src\od2trips_main.cpp:159 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:199 msgid "Continue on broken input" msgstr "在有损坏的输入的情況下,继续执行" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:148 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:148 msgid "Continue on invalid connections" msgstr "在有无效连接线(connections)情況下,继续执行" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:151 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:151 msgid "Show errors in connections at parsing" msgstr "在解析时,显示连接线(connections)的错误信息" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:154 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:154 msgid "Continue on unknown edge types" msgstr "在有未知路段类型的情況下,继续执行" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:157 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:157 msgid "vmax is parsed as given in km/h" msgstr "最大速度(vmax)以公里/小時(km/h)为单位进行解析" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:160 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:160 msgid "" "Use YYYY-MM-DD date to determine the readiness of features under construction" msgstr "使用 YYYY-MM-DD 日期以确定正在建设的功能是否准备就绪" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:163 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:163 msgid "Remove all z-data" msgstr "移除所有高度数据(z-data)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:166 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:166 msgid "Remove the list of keys from all params" msgstr "从所有参数中刪除鍵清单(list of keys)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:169 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:169 msgid "" "List vehicle classes that may ignore lane changing restrictions ('all' " "discards all restrictions)" msgstr "列出可能忽略变换车道限制的车辆类别 ('all' 废弃所有限制)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:174 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:174 msgid "If edge shapes do not end at the node positions, extend them" msgstr "如果路段形狀不在节点位置结束,则延长它们" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:178 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:178 msgid "Skips the check for duplicate nodes and edges" msgstr "跳过对重复节点和路段的检查" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:181 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:181 msgid "Imports elevation data" msgstr "导入高程数据" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:184 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:184 msgid "" "Reconstruct (relative) elevation based on layer data. Each layer is raised " "by FLOAT m" msgstr "根据图层数据重建(相对)高程。 每层以 FLOAT 米的高度提升" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:187 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:187 #, c-format msgid "" "Maximum grade threshold in % at 50km/h when reconstrucing elevation based on " "layer data. The value is scaled according to road speed." -msgstr "当基于图层数据重建高程时,在50 公里/小时的速度的最大坡度阈值 %。 " -"该值根据道路速度进行缩放。" +msgstr "" +"当基于图层数据重建高程时,在50 公里/小时的速度的最大坡度阈值 %。 该值根据道路" +"速度进行缩放。" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:190 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:190 msgid "Whether one-way roads should be spread to the side instead of centered" msgstr "单行道是否应该展开(spread)到一边,而不是居中" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:193 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:193 msgid "Import lane-specific access restrictions" msgstr "导入特定于车道的进出限制" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:197 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:197 msgid "Import bike lanes and fix directions and permissions on bike paths" msgstr "导入自行车道并确定自行车道的方向和权限(permissions)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:200 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:200 msgid "Import sidewalks" msgstr "导入人行道" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:203 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:203 msgid "Import crossings" msgstr "导入人行穿越道" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:206 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:206 msgid "Import turning arrows from OSM to help with connection building" msgstr "从开放街图(OSM)导入转向箭头以帮助建立连接线(connection)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:209 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:209 msgid "The default length of a public transport stop in FLOAT m" msgstr "大众运输停靠站的预设长度, 以 FLOAT 米为单位" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:211 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:211 msgid "The default length of a bus stop in FLOAT m" msgstr "公车停靠站的预设长度, 以 FLOAT 米为单位" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:213 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:213 msgid "The default length of a tram stop in FLOAT m" msgstr "轻轨电车停靠站的预设长度, 以 FLOAT 米为单位" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:215 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:215 msgid "The default length of a train stop in FLOAT m" msgstr "火车停靠站的预设长度, 以 FLOAT 米为单位" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:218 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:219 msgid "Whether additional attributes shall be imported" msgstr "是否应导入附加属性" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:221 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:223 msgid "" "List of additional attributes that shall be imported from OSM via osm.all-" "attributes (set 'all' to import all)" -msgstr "应透过osm.all-attributes 从开放街图OSM)导入的附加属性清单设定 'all' " -"以导入全部)" +msgstr "" +"应透过osm.all-attributes 从开放街图OSM)导入的附加属性清单设定 'all' 以导入全" +"部)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:224 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:226 msgid "" "The speed limit to be set when there is no actual speed limit in reality" msgstr "针对现实中沒有实际限速时所设置的限速" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:228 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:230 msgid "The edge lengths given in the MATSIM-file will be kept" msgstr "MATSIM 文件中所给定路段长度將被保留" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:231 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:233 msgid "The lane number will be computed from the capacity" msgstr "车道数將根据容量计算" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:237 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:239 msgid "Read edge ids from column STR" msgstr "从行(column) STR 中读取路段识别名(ids)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:241 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:243 msgid "Read from-node ids from column STR" msgstr "从行(column) STR 中读取起始节点识别名(from-node ids)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:245 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:247 msgid "Read to-node ids from column STR" msgstr "从行(column) STR 中读取到达节点识别名(to-node ids)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:249 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:251 msgid "Read type ids from column STR" msgstr "从行(column) STR 中读取类型识别名(ids)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:252 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:254 msgid "Read lane number from column STR" msgstr "从行(column) STR 中读取车道编号(lane number)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:255 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:257 msgid "Read speed from column STR" msgstr "从行(column) STR 中读取速度" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:258 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:260 msgid "Read custom edge length from column STR" msgstr "从行(column) STR 中读取自定的路段长度" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:261 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:263 msgid "Read total edge width from column STR" msgstr "从行(column) STR 中读取总路段宽度" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:264 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:266 msgid "Read (non-unique) name from column STR" msgstr "从行(column) STR 中读取(非唯一)名称" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:267 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:269 msgid "" "Distance threshold for determining whether distinct shapes are connected " "(used when from-id and to-id are not available)" msgstr "用以确定不同形狀是否相连的距离阈值(当沒有 from-id 及 to-id 的时候使用)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:270 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:272 msgid "Add the list of field names as edge params" msgstr "增加字段名的列表作为路段参数" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:274 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:276 msgid "Uses edge type defaults on problems" msgstr "遇到问题时,使用路段型预设值" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:279 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:281 msgid "Insert edges in both directions" msgstr "在双向上插入路段" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:283 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:285 msgid "Guess the proper projection" msgstr "猜测正确的投影" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:286 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:125 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:288 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:125 msgid "Use traditional axis order (lon, lat)" msgstr "使用传统的轴顺序(经度(lon)、纬度(lat))" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:291 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:293 msgid "Allow more vehicle classes by default" msgstr "预设允许更多车辆类型" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:294 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:296 msgid "The edge lengths given in the DLR Navteq-file will be kept" msgstr "DLR-Navteq 文件中给定路段长度將被保留" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:300 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:302 msgid "Structure join offset" msgstr "结构合并(join)的偏移量(offset)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:303 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:305 msgid "Use FLOAT as default speed" msgstr "使用 FLOAT作为预设的速度" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:306 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:308 msgid "Factor for edge velocity" msgstr "路段速度系数" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:309 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:311 msgid "Writes lanes without an explicit speed set" msgstr "在沒有明确速度设定的情況下,写入车道" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:314 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:95 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:316 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:95 msgid "Load language mappings from FILE" msgstr "从文件载入语言映射(mappings)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:317 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:319 msgid "Uses priorities from types" msgstr "使用类型的优先级别(priorities)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:320 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:322 msgid "Uses lane numbers from types" msgstr "使用类型中的车道编号" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:323 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:325 msgid "Uses speeds from types" msgstr "使用类型的速度" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:326 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:328 msgid "Sets connector speed" msgstr "设定连接器(connector)速度" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:330 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:332 msgid "Sets connector lane number" msgstr "设定连接器(connector)车道编号" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:333 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:335 msgid "Excludes connectors" msgstr "不包含连接器(connectors)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:337 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:339 msgid "Computes the number of lanes from the edges' capacities" msgstr "根据路段的容量计算车道数" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:340 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:342 msgid "Prints all warnings, some of which are due to VISUM misbehaviour" msgstr "列印出所有警告,其中一些是由于 VISUM 不当行为引起的" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:345 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:347 msgid "The factor for flow to no. lanes conversion" msgstr "流量的系数(factor)是沒有。车道转换" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:350 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:352 msgid "Imports all lane types" msgstr "导入所有车道类型" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:352 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:354 msgid "Whether lane widths shall be ignored." msgstr "是否应忽略车道宽度。" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:354 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:356 msgid "" "The geometry resolution in m when importing curved geometries as line " "segments." msgstr "將曲线几何导入为线段时的几何解析度(以米为单位)。" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:356 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:358 msgid "" "Allow stop lines to be built beyond the start of the junction if the " "geometries allow so" msgstr "如果几何形狀允许,允许在路口起点之外构建停止线" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:358 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:360 msgid "" "The minimum lane width for determining start or end of variable-width lanes" msgstr "用来确定可变宽的车道起点或终点的最小车道宽度" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:360 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:362 msgid "Import internal lane shapes" msgstr "导入內部车道形狀" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:362 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:364 msgid "Sets edge-id based on road-id and offset in m (legacy)" msgstr "根据道路识别名(id)和以米为单位的偏移量设定路段识别名(id) (旧版)" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:364 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:366 msgid "Use custom lane shapes to compensate discarded lane types" msgstr "使用自定车道形狀來补偿废除的车道类型" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:375 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:368 +msgid "" +"Use the OpenDRIVE controller information for the generated signal program" +msgstr "" + +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:379 msgid "" "Discard all railway signal information loaded from other formats than plain-" "xml" msgstr "废除所有从除了 plain-xml 以外的其他格式所载入的铁路信号信息" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:397 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:400 msgid "" "Cannot import network data without PROJ-Library. Please install package proj " "before building sumo" -msgstr "沒有 PROJ-Library 无法导入路网资料。请在构建 sumo 之前安裝 package proj" +msgstr "" +"沒有 PROJ-Library 无法导入路网资料。请在构建 sumo 之前安裝 package proj" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:422 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:314 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:425 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:314 msgid "Environment variable SUMO_HOME is not set, using built in type maps." msgstr "未设定环境变量 SUMO_HOME, 將使用內置类型映成表(maps)。" -#: /home/micha/programming/sumo/src/netimport/NIFrame.cpp:455 +#: D:\Repos\sumo/src\netimport\NIFrame.cpp:458 msgid "It is recommend to use option osm.crossings with osm.sidewalks" msgstr "建议使用选项 osm.crossings 和 osm.sidewalks" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:138 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:139 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:138 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:139 msgid "Could not open shape description '%'." msgstr "无法打开形狀描述 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:187 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:187 msgid "Needed field '%' (street-id) is missing." msgstr "缺少所需字段(field) '%' (街道识别名(street-id))。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:198 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:198 msgid "Needed field '%' (from node id) is missing." msgstr "缺少所需字段(field) '%' (起始节点识别名(from node id))。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:202 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:202 msgid "Needed field '%' (to node id) is missing." msgstr "缺少所需字段(field) '%' (到达节点识别名(to node id))。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:218 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:218 msgid "Unknown type '%' for edge '%'" msgstr "类型 '%' 未知 (路段为'%')" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:233 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:233 #, c-format msgid "" "Required field '%' or '%' is missing (add fields or set option --shapefile." @@ -6734,4082 +6919,4249 @@ "缺少必填字段 '%' 或 '%' (增加字段(fields)或设定选项 --shapefile。use-" "defaults-on-failure)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:249 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:249 msgid "" "Road geometry must be of type 'linestring' or 'linestring25D' (found '%')" msgstr "道路几何必须是 'linestring' 或 'linestring25D' 类型 (找到 '%')" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:261 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:90 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:261 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:90 msgid "No coordinate system found and coordinates look already projected." msgstr "未找到坐标系統,坐标看起來已经投影。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:264 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:93 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:264 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:93 msgid "Could not find geo coordinate system, assuming WGS84." msgstr "无法找到地理坐标系统,假设为 WGS84。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:277 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1488 -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:600 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimAbstractEdge.cpp:44 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:171 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:277 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1562 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:600 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimAbstractEdge.cpp:44 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:171 msgid "Unable to project coordinates for edge '%'." msgstr "无法投影路段 '%' 的坐标。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:290 -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:304 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:304 #, c-format msgid "Node '%' could not be added" msgstr "无法增加节点 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:312 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:312 #, c-format msgid "Edge '%' connects identical nodes, skipping." msgstr "路段 '%' 连接相同的节点, 跳过。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:329 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:329 #, c-format -msgid "Edge '% is not unique." -msgstr "路段 '%' 不是唯一的。" +msgid "Edge '%' is not unique." +msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:338 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:338 msgid "Edge '%' is not unique. Renaming subsequent edge to '%'." msgstr "路段 '%' 不是唯一的。 将随后的路段重新命名为 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:354 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:354 msgid "Could not create edge '%'. An edge with the same id already exists." msgstr "无法建立路段 '%'。 已存在具有相同识别名(id)的路段。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:368 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:368 msgid "Could not create edge '-%'. An edge with the same id already exists." -msgstr "无法建立路段 '-%'。 已存在具有相同识别名(id)的路段。" +msgstr "无法建立路段 '-%'。 已存在具有相同识别名(id)的路段。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ArcView.cpp:382 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:331 +#: D:\Repos\sumo/src\netimport\NIImporter_ArcView.cpp:382 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:331 msgid "SUMO was compiled without GDAL support." msgstr "SUMO 是在沒有 GDA支持的情況下编译的。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:76 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:76 msgid "Loading nodes" msgstr "正在载入节点" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:80 -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:105 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:80 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:105 #, c-format msgid "The file '%' could not be opened." msgstr "无法开启文件 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:90 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:90 msgid "Loading street names" msgstr "正在载入街道名称" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:95 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:95 msgid "Output will not contain street names because the file '%' was not found" msgstr "输出将不包含街道名称,因为未找到文件 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:100 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:100 msgid "Loading edges" msgstr "正在载入路段" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:114 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:114 msgid "Loading traffic lights" msgstr "正在载入交通信号" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:123 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:123 msgid "Loading prohibited manoeuvres" msgstr "正在载入禁止的运转行为(manoeuvres)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:132 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:132 msgid "Loading connected lanes" msgstr "正在载入连接的车道" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:141 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:141 msgid "Loading time restrictions" msgstr "正在载入时间限制" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:210 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:210 msgid "Non-numerical value for intermediate status in node %." msgstr "节点 % 的中间状态为非数字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:215 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:215 msgid "Non-numerical value for number of geometries in node %." msgstr "节点 % 的几何(geometries)数量为非数字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:222 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:222 msgid "Non-numerical value for x-position in node %." msgstr "节点% 的 x 位置为非数字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:226 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:226 msgid "Non-numerical value for y-position in node %." msgstr "节点 % 的 y 位置为非数字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:230 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:321 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:230 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:321 msgid "Unable to project coordinates for node %." msgstr "无法投影节点 % 的坐标。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:240 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:240 msgid "Could not add add node '%'" msgstr "无法增加节点'%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:242 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:260 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:379 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:474 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1350 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:242 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:267 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:386 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:481 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1424 msgid "Could not add node '%'." msgstr "无法增加节点 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:299 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:299 msgid "Missing version string in file '%'." msgstr "文件 '%' 中缺少版本字串(version string)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:309 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:309 msgid "Non-numerical value for form_of_way of link '%'." msgstr "路段 '%' 的道路型式(form_of_way为非数字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:316 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:316 msgid "Non-numerical value for brunnel_type of link '%'." msgstr "路段 '%' 的桥/隧道类型(brunnel_type)为非数字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:329 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:329 msgid "Non-numerical value for street_type of link '%')." msgstr "路段 '%' 的街道类型(street_type)为非数字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:351 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:351 msgid "Non-numerical value for the SPEED_RESTRICTION of link '%'." msgstr "路段 '%' 的速度限制(SPEED_RESTRICTION)为非数字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:366 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:366 msgid "Non-numerical value for the number of lanes of link '%'." msgstr "路段 '%' 的车道数为非数字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:420 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:538 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:596 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:759 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:420 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:545 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:603 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:760 msgid "Could not add edge '%'." msgstr "无法增加路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:431 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:431 msgid "Missing column %." msgstr "缺少行(column) %。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:442 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:442 msgid "Missing optional column % without default value." msgstr "缺少沒有预设值的选项行(column) %。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:499 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:499 #, c-format msgid "The traffic light edge '%' could not be found." msgstr "无法找到交通信号路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:511 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:511 msgid "Could not allocate tls for '%'." msgstr "无法分配交通信号(tls)给 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:702 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:702 msgid "Could not parse YYYY-MM-DD date '%'" msgstr "无法解析 YYYY-MM-DD 日期 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:747 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:747 msgid "Ignoring temporary prohibited manoeuvre (%)." msgstr "忽略临时禁止的运转操作 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:756 -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:801 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:756 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:801 msgid "Ignoring prohibition from unknown start edge '%'." msgstr "忽略来自未知起始路段 '%' 的禁止。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:761 -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:806 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:761 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:806 msgid "Ignoring prohibition from unknown end edge '%'." msgstr "忽略来自未知结束路段 '%' 的禁止。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:811 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:811 msgid "" "Ignoring invalid lane index '%' in connection from edge '%' with % lanes." msgstr "忽略无效车道索引 '%', 其与起始路段(from edge) '%' (有 % 车道) 连接。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:816 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:816 msgid "Ignoring invalid lane index '%' in connection to edge '%' with % lanes" -msgstr "忽略无效车道索引 '%', 其与结束路段(to edge) '%' (有 % 车道) 连接。" +msgstr "忽略无效车道索引 '%', 其与结束路段(to edge) '%' (有 % 车道) 连接" -#: /home/micha/programming/sumo/src/netimport/NIImporter_DlrNavteq.cpp:821 +#: D:\Repos\sumo/src\netimport\NIImporter_DlrNavteq.cpp:821 msgid "Could not set loaded connection from '%' to '%'." msgstr "无法设定从 '%' 到 '%' 的载入连接线(loaded connection)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:117 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:117 msgid "Could not open itsumo-file '%'." msgstr "无法开启文件 itsumo-file '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:217 -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:180 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:217 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:180 msgid "Could not add edge '%'. Probably declared twice." msgstr "无法增加路段 '%'。可能已经宣告了两次。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:232 -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:142 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:703 -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:148 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:232 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:142 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:703 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:148 msgid "Unable to project coordinates for node '%'." msgstr "无法投影节点 '%' 的坐标。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:237 -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:147 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:237 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:147 msgid "Could not add node '%'. Probably declared twice." msgstr "无法增加节点 '%'。可能已经宣告了两次。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:240 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:240 msgid "Not numeric position information for node '%'." msgstr "节点 '%' 沒有数值的位置信息。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:242 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:242 msgid "Missing data in node '%'." msgstr "节点 '%' 內缺少数据。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:260 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:260 msgid "Missing node in laneset '%'." -msgstr "车道集合(laneset) '%' 內缺少节点" +msgstr "车道集合(laneset) '%' 內缺少节点。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:263 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:263 msgid "Fond laneset-id '%' twice." -msgstr "已发现两次车道集合识别名(laneset-id) '%'" +msgstr "已发现两次车道集合识别名(laneset-id) '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:277 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:277 msgid "Not numeric value in laneset '%'." msgstr "车道集合(laneset) '%' 內不是数字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:279 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:279 msgid "Missing data in laneset '%'." msgstr "缺少车道集合(laneset) '%' 的数据。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:290 msgid "Not numeric value in lane '%'." msgstr "车道 '%' 內不是数字值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_ITSUMO.cpp:292 +#: D:\Repos\sumo/src\netimport\NIImporter_ITSUMO.cpp:292 msgid "Missing data in lane '%'." msgstr "车道 '%' 內缺少数据。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:202 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:202 msgid "Bogus capacity period format; requires 'hh:mm:ss'." msgstr "假的容量周期格式; 需要 'hh:mm:ss'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:234 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:234 msgid "Could not find from-node for edge '%'." msgstr "无法发现路段 '%' 的起始节点(from-node)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:237 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:237 msgid "Could not find to-node for edge '%'." -msgstr "" +msgstr "无法发现路段 '%' 的到达节点(to-node)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_MATSim.cpp:253 +#: D:\Repos\sumo/src\netimport\NIImporter_MATSim.cpp:253 msgid "Could not add intermediate node to split loop edge '%'." -msgstr "" +msgstr "无法增加中间节点去分割(split)线圈(loop)路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:211 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:217 msgid "Could not find signal reference '%'." -msgstr "" +msgstr "无法发现信号参考(reference) '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:274 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:312 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:281 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:319 msgid "Could not build node '%'." -msgstr "" +msgstr "无法建立节点 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:411 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:418 msgid "Ignoring road '%' without geometry." -msgstr "" +msgstr "忽略沒有几何形狀的道路 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:435 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:442 msgid "Could not apply laneOffsets for edge '%'" -msgstr "" +msgstr "无法在路段 '%' 使用车道偏移量(laneOffsets)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:668 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:633 #, c-format msgid "Edge '%' has no lanes." -msgstr "" +msgstr "路段 '%' 沒有车道。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:704 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:674 #, c-format msgid "While setting connections: from-edge '%' is not known." -msgstr "" +msgstr "当设定连接线时: 起始路段(from-edge) '%' 未知。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:714 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:684 #, c-format msgid "While setting connections: to-edge '%' is not known." -msgstr "" +msgstr "当设定连接线时: 起始路段(from-edge) '%' 未知。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:740 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:743 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:710 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:713 msgid "Could not find fromEdge representation of '%' in connection '%'." +msgstr "无法找到 '%' 的 fromEdge 表示法 (位于连接线 '%'內)。" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:766 +#, c-format +msgid "" +"Controlling multiple junctions by the same controller '%' is currently not " +"implemented." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:792 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:787 #, c-format msgid "Edge '%' has signals but no lane sections." -msgstr "" +msgstr "路段 '%' 有交通信号,但沒有车道部分。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:814 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:809 msgid "Ambiguous start of connection." -msgstr "" +msgstr "不明确的连接线开始。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:831 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:826 msgid "Ambiguous end of connection." -msgstr "" +msgstr "不明确的连接线末端。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:844 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:859 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:892 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:839 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:854 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:901 msgid "Could not find edge '%' for signal '%'." +msgstr "无法找路段 '%' (交通信号为 '%')。" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:875 +msgid "" +"The signaling of the connection from '%' to '%' (controller '%') is " +"ambiguous because it is overwritten signal '%' and with controller '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:881 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:890 msgid "Found a traffic light signal on an unknown edge (original edge id='%')." +msgstr "在未知路段(原始路段识别名(id)='%')上发现交通信号。" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:921 +msgid "" +"The signaling of the connection from '%' to '%' (controller '%') is " +"ambiguous because it is overwritten with signal '%' and controller '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1287 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1319 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1361 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1393 #, c-format msgid "While setting connections: incoming road '%' is not known." -msgstr "" +msgstr "设定连接线时: 进入道路 '%' 未知。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1362 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1436 msgid "Could not find node '%'." -msgstr "" +msgstr "无法发现节点 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1455 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1529 msgid "Mismatched geometry for edge '%' between geometry segments % and %." -msgstr "" +msgstr "路段 '%' 在 % 和 % 几何区间之间的几何形状失配。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1636 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1710 #, c-format msgid "The sections of edge '%' are not sorted properly." -msgstr "" +msgstr "路段 '%' 的章节部分(sections)未正确排序。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1648 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1722 msgid "" "Almost duplicate s-value '%' for lane sections occurred at edge '%'; second " "entry was removed." msgstr "" +"车道章节部分(sections)有几乎重复的 s 值 '%' 出现在路段 '%';第二个输入项" +"(entry)被删除。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1691 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1765 msgid "Could not compute spiral geometry for edge '%' (cDot=% length=%)." -msgstr "" +msgstr "无法计算路段 '%' 的螺旋几何形状 (cDot=% 长度=%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:1740 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:1814 msgid "Could not compute spiral geometry for edge '%' (%)." -msgstr "" +msgstr "无法计算路段 '%' 的螺旋几何形状 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2012 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2086 msgid "" "Will discard access settings as both denied and allowed classes have been " "specified." -msgstr "" +msgstr "将废弃连通通道设定access settings),因为已指定拒绝和允许的类别。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2320 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2392 msgid "Ignoring invalid pRange value '%' for road '%'." +msgstr "忽略无效的 pRange 值 '%' (在道路 '%')。" + +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2470 +msgid "Ignoring missing signal '%' in controller '%'." msgstr "" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2420 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2617 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2508 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2704 #, c-format msgid "In laneLink-element: incoming road '%' is not known." -msgstr "" +msgstr "在 laneLink 元素中: 进入(incoming)道路 '%' 未知。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2516 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2603 msgid "Ignoring object without id at edge '%'." -msgstr "" +msgstr "忽略路段 '%' 处沒有识别名(id)的物件。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2534 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2621 msgid "Repeat without object at edge '%'." -msgstr "" +msgstr "重复,不包含在路段 '%' 处的物件。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2588 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2675 msgid "Could not set projection (%). This can be ignored with --ignore-errors." -msgstr "" +msgstr "无法设定投影 (%)。 这可以用 --ignore-errors 忽略。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2592 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2679 #, c-format msgid "geoReference format '%' currently not supported" -msgstr "" +msgstr "目前不支持地理參考(geoReference)格式 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2661 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2752 msgid "Mismatching parenthesis in geometry definition for road '%'" -msgstr "" +msgstr "道路 '%' 的几何定义中的括号不配对" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenDrive.cpp:2665 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenDrive.cpp:2756 msgid "Double geometry information for road '%'" -msgstr "" +msgstr "道路 '% 有双重几何信息" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:156 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:104 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:156 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:104 msgid "Could not open osm-file '%'." -msgstr "" +msgstr "无法开启 开放街图(osm)文件 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:168 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:168 #, c-format msgid "Found and substituted % osm nodes." -msgstr "" +msgstr "找到并替换了 % 开放街图(osm)节点。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:192 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:192 msgid "Removing duplicate edges" -msgstr "" +msgstr "正在移除重复路段" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:207 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:207 #, c-format msgid "Removed % duplicate osm edges." -msgstr "" +msgstr "移除 % 重复的开放街图(osm)路段。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:241 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:241 msgid "Discarding way '%' because it has only % node(s)" -msgstr "" +msgstr "废弃路径(way) '%' , 因为它只有 % 个节点" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:404 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:404 msgid "Could not insert junction '%'." -msgstr "" +msgstr "无法插入(insert)路口 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:462 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:462 msgid "" "Discarding edge '%' which connects two identical nodes without geometry." -msgstr "" +msgstr "废弃连接两个沒有几何形状的相同节点的路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:574 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:574 msgid "New value for oneway found: %" -msgstr "" +msgstr "找到单向(oneway)的新值: %" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:606 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:607 msgid "Skipping edge '%' because it has zero lanes." -msgstr "" +msgstr "跳过路段 '%', 因为它是零车道。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:626 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:627 msgid "Skipping edge '%' because it has speed %." -msgstr "" +msgstr "跳过路段 '%', 因为它的速度是 %。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:746 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:747 msgid "" "Forward lanes count for edge '%' ('%') is not matching the number of lanes " "defined in width:lanes:forward key ('%'). Using default width values." msgstr "" +"路段 '%' ('%') 的前向(forward车道数与width:lanes:forward 键中定义的车道数不匹" +"配。使用预设宽度值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:792 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:793 msgid "" "Backward lanes count for edge '%' ('%') is not matching the number of lanes " "defined in width:lanes:backward key ('%'). Using default width values." msgstr "" +"路段 '%' ('%') 的反向(backward)车道数与width:lanes:backward 键中定义的车道数" +"不匹配。使用预设宽度值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:805 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:806 msgid "Could not add edge '-%'." -msgstr "" +msgstr "无法增加路段 '-%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:893 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:894 msgid "" "Attribute 'id' in the definition of a node is not of type long long int." msgstr "节点定义中的属性 '识别名(id)' 不是超长整数(long long int)类型。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:899 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:900 msgid "Tag element on wrong XML hierarchy level." msgstr "在错误的 XML 层次结构级别标记元素。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:941 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:942 msgid "Value of key '%' is invalid ('%') in node '%'." msgstr "键 '%' 的值无效 ('%'); 在节点 '%' 中。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:946 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:947 msgid "Value of key '%' is not numeric ('%') in node '%'." msgstr "键 '%' 的值不是数字值 ('%'); 在节点 '%' 中。。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1091 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:592 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1092 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:592 msgid "The referenced geometry information (ref='%') is not known" msgstr "参考的几何信息 (ref='%') 未知" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1329 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1331 #, c-format msgid "Using default lane width for edge '%' as key '%' could not be parsed." msgstr "路段 '%' 的预设车道宽度作为键key) '%',它无法被解析(parse)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1332 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1334 #, c-format msgid "Using default lane width for edge '%' as value '%' could not be parsed." -msgstr "" +msgstr "路段 '%' 的预设车道宽度作为值(value) '%',它无法被解析(parse)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1375 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1377 msgid "Using minimum lane number from list (%) for edge '%'." -msgstr "" +msgstr "使用清单 (%) 中的最小车道编号数(lane number); 路段为 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1377 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1381 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1392 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1404 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1427 -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1437 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1379 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1383 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1394 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1406 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1429 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1439 msgid "Value of key '%' is not numeric ('%') in edge '%'." -msgstr "" +msgstr "键 '%' 的值不是数字值 ('%'), 其发生在路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1434 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1436 msgid "Ignoring track count % for edge '%'." -msgstr "" +msgstr "忽略轨迹计数(track count) %, 其发生在路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1605 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1607 msgid "Unknown lane use specifier '%' ignored for way '%'" -msgstr "" +msgstr "未知车道使用说明符(specifier) '%' 已忽略; 针对路径(way) '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1714 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1716 msgid "No node found for reference '%' in relation '%'." -msgstr "" +msgstr "找不到参考 '%' 的节点; 其发生在关系 '%' 中。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1776 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1778 msgid "Found unknown restriction type '%' in relation '%'" -msgstr "" +msgstr "找到未知的限制类型 '%'; 其发生在关系 '%' 中" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1814 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1816 msgid "Invalid color value '%' in relation %" -msgstr "" +msgstr "无效的顏色值 '%'; 其发生在关系 '%' 中" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1832 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1834 msgid "No way found for reference '%' in relation '%'" -msgstr "" +msgstr "找不到参考 '%' 的路径(way); 其发生在关系 '%' 中" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1844 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1846 msgid "Ignoring restriction relation '%' with unknown type." -msgstr "" +msgstr "忽略有未知类型的限制关系 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1848 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1850 msgid "Ignoring restriction relation '%' with unknown from-way." -msgstr "" +msgstr "忽略有未知的从路径(from-way)的限制关系 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1852 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1854 msgid "Ignoring restriction relation '%' with unknown to-way." -msgstr "" +msgstr "忽略有未知的到路径(to-way)的限制关系'%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1856 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1858 msgid "Ignoring restriction relation '%' with unknown via." -msgstr "" +msgstr "忽略有未知的行径(via)的限制关系 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1860 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1862 msgid "Ignoring restriction relation '%'." -msgstr "" +msgstr "忽略限制关系 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1885 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1887 #, c-format msgid "" "Platform '%' in relation: '%' is given as polygon, which currently is not " "supported." -msgstr "" +msgstr "在关系(relation)中的平台 '%': '%' 以多边形給定,,目前不支持。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1906 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1908 #, c-format msgid "" "Referenced platform: '%' in relation: '%' is corrupt. Probably OSM file is " "incomplete." msgstr "" +"在关系(relation)中的參考平台: '%': '%' 已损坏。可能开放街图(OSM)文件不完" +"整。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1945 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1947 #, c-format msgid "PT line '%' in relation % seems to be split, only keeping first part." -msgstr "" +msgstr "大众运输路线 '%' (于关系 % 中) 似乎被分割(split), 只保留第一部分。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1978 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1980 msgid "" "PT line in relation % with no stops ignored. Probably OSM file is incomplete." msgstr "" +"大众运输路线于关系 % 中沒有停靠站, 因此被忽略。可能开放街图(OSM)文件不完整。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1984 -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:222 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:1986 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:222 msgid "Ignoring duplicate PT line '%'." -msgstr "" +msgstr "忽略重复的大众运输列(PT line) '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:1999 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2001 msgid "Via-node '%' was not instantiated" -msgstr "" +msgstr "通过节点(Via-node) '%' 未实例化(instantiated)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2005 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2007 #, c-format msgid "from-edge '%' of restriction relation could not be determined" -msgstr "" +msgstr "无法确定限制关系的起始路段(from-edge) '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2009 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2011 #, c-format msgid "to-edge '%' of restriction relation could not be determined" -msgstr "" +msgstr "无法确定限制关系的到达路段(to-edge) '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2039 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2041 msgid "direction of restriction relation could not be determined%" -msgstr "" +msgstr "限制关系的方向无法确定%" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2060 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2062 #, c-format msgid "Ambiguous way reference '%' in restriction relation" -msgstr "" +msgstr "限制关系中的不明确的路径(way)参照(reference) '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2311 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2314 msgid "" "Discarding unknown compound '%' in type '%' (first occurrence for edge '%')." msgstr "" +"废弃未知复合物(compound) '%';发生在类型 '%' 中 (在路段 '%' 第一次出现)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2315 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2320 msgid "Discarding unusable type '%' (first occurrence for edge '%')." -msgstr "" +msgstr "废弃未使用的类型 '%' (在路段 '%' 第一次出现)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2364 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2365 msgid "Discarding compound type '%' (first occurrence for edge '%')." -msgstr "" +msgstr "废弃复合类型(compound type) '%' (在路段 '%' 第一次出现)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2369 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2380 msgid "Adding new type '%' (first occurrence for edge '%')." -msgstr "" +msgstr "新增新的类型 '%' (在路段 '%' 第一次出现)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2404 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2415 msgid "Ambiguous railway kilometrage direction for way '%' (assuming forward)" -msgstr "" +msgstr "路径(way) '%' 的铁路里程方向不明确(假设向前)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2411 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2422 msgid "Inconsistent railway kilometrage direction for way '%': % (skipping)" -msgstr "" +msgstr "路径(way) '%' 的铁路公里方向不一致: % (跳过)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2456 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2467 msgid "Value of railway:position is not numeric ('%') in node '%'." -msgstr "" +msgstr "railway:position 的值不是数字('%');发生在节点 '%' 处。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_OpenStreetMap.cpp:2548 +#: D:\Repos\sumo/src\netimport\NIImporter_OpenStreetMap.cpp:2559 msgid "" "Ignoring turn sign information for % lanes on edge % with % driving lanes" -msgstr "" +msgstr "忽略在 % 车道(lanes)上转向标注信息;其路段为 % 并具有 % 行驶车道" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:118 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:118 msgid "Could not open sumo-net-file '%'." -msgstr "" +msgstr "无法开启sumo的路网文件(sumo-net-file) '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:146 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:146 #, c-format msgid "Edge's '%' from-node and to-node '%' are identical." -msgstr "" +msgstr "路段 '%' 的从节点(from-node)和到节点(to-node) '%' 是相同的。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:165 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:165 msgid "Could not insert edge '%'." -msgstr "" +msgstr "无法插入路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:191 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:787 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:318 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:191 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:787 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:318 #, c-format msgid "Unknown edge '%' given in connection." -msgstr "" +msgstr "在连接线(conneciton)中给定的未知路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:230 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:272 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:230 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:272 #, c-format msgid "The traffic light '%' is not known." -msgstr "" +msgstr "交通信号%' 未知。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:288 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:290 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:292 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:294 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:288 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:290 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:292 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:294 #, c-format msgid "Edge '%' in prohibition was not built." -msgstr "" +msgstr "未构建禁止中的路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:345 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:345 #, c-format msgid "Deprecated vehicle class(es) '%' in input network." -msgstr "" +msgstr "不适用(deprecated)的车辆类别 '%' 出现在输入的路网內。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:403 -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1683 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:403 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1688 #, c-format msgid "Unknown edge '%' in roundabout" -msgstr "" +msgstr "在圆环上有未知的路段 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:520 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:520 #, c-format msgid "Edge '%' occurred at least twice in the input." -msgstr "" +msgstr "路段 '%' 在输入文档中至少出现两次。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:542 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:542 msgid "Unmatched closing tag for tl-logic." -msgstr "" +msgstr "信号逻辑(tl-logic)的结束标记不匹配。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:545 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:545 msgid "Could not add program '%' for traffic light '%'" -msgstr "" +msgstr "无法为增加配时方案'%'给交通信号 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:615 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:615 msgid "Unknown spreadType '%' for edge '%'." -msgstr "" +msgstr "未知的散开类型(spreadType) '%'; 发生在路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:628 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:628 #, c-format msgid "Found lane '%' not within edge element." -msgstr "" +msgstr "发现车道 '%' 不在路段元素內。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:633 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:633 msgid "Renaming lane '%' to '%'." -msgstr "" +msgstr "将车道 '%' 重新命名为 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:699 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:699 msgid "" "Duplicate definition of stopOffset for edge %.\n" "Ignoring duplicate specification." msgstr "" +"路段 '%' 的停等偏移值(stopOffset重复定义。\n" +"忽略重复规格说明。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:705 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:705 msgid "" "Duplicate definition of lane's stopOffset on edge %.\n" "Ignoring duplicate specifications." msgstr "" +"车道 '%' 的停等偏移值(stopOffset)重复定义。\n" +"忽略重复规格说明。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:742 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:742 #, c-format msgid "Junction '%' occurred at least twice in the input." -msgstr "" +msgstr "路口 '%' 在输入文件中至少出现两次。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:839 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:839 msgid "Invalid lane index '%' for connection from '%'." -msgstr "" +msgstr "无效的车道索引 '%' ;发生在从 '%'开始的连接线。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:929 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:929 msgid "Definition of tl-logic '%' was not finished." -msgstr "" +msgstr "交通信号逻辑(tl-logic) '%' 的定义未完成。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:941 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:127 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:941 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:127 msgid "Unknown traffic light type '%' for tlLogic '%'." -msgstr "" +msgstr "未知的交通信号类型 '%' ;发生在信号逻辑(tl-logic) '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:955 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:955 msgid "found phase without tl-logic" -msgstr "" +msgstr "发现沒有交通信号逻辑(tl-logic)的相位(phase)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:963 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:963 msgid "Phase duration for tl-logic '%/%' must be positive." -msgstr "" +msgstr "交通信号(tl-logic) '%/%' 的相位(phase)长度必须是正值。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1019 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1019 msgid "Missing connection divider in prohibition attribute '%'" -msgstr "" +msgstr "禁止属性 '%' 中缺少连接线分隔符号(connection divider)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1026 -#: /home/micha/programming/sumo/src/netimport/NIImporter_SUMO.cpp:1030 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1026 +#: D:\Repos\sumo/src\netimport\NIImporter_SUMO.cpp:1030 msgid "Unknown edge prohibition '%'" -msgstr "" +msgstr "未知的路段禁止 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:205 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:205 msgid "Can not open visum-file '%'." -msgstr "" +msgstr "无法开启 visum 文件 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:247 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:247 #, c-format msgid "Too short value line in % occurred." -msgstr "" +msgstr "以 % 表示的值线(value line)太短。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:249 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:249 msgid "A value in % should be numeric but is not (id='%')." -msgstr "" +msgstr "% 中的值应该是数字,但其并不是 (id='%')。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:251 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:251 msgid "One of the needed values ('%') is missing in %." -msgstr "" +msgstr "所需值之一 ('%') 缺失于 % 內。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:326 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:326 msgid "Duplicate node occurred ('%')." -msgstr "" +msgstr "出现重复节点 ('%')。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:344 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:344 msgid "Unable to project coordinates for district %." -msgstr "" +msgstr "无法投影分区 % 的坐标。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:350 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:350 msgid "Duplicate district occurred ('%')." -msgstr "" +msgstr "出现重复分区('%')。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:368 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:368 msgid "Unable to project coordinates for point %." -msgstr "" +msgstr "无法投影点(point) % 的坐标。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:458 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:475 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:458 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:475 msgid "Duplicate edge occurred ('%')." -msgstr "" +msgstr "出现重复的路段 ('%')。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:580 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:580 msgid "" "Incoming connector '%' will not be build - would be not connected to network." -msgstr "" +msgstr "将不会构建传入(incoming)连接器 '%' - 不会连接到路网。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:584 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:618 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:584 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:618 #, c-format msgid "The district '%' could not be built." -msgstr "" +msgstr "无法建立分区 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:594 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:629 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:594 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:629 msgid "A duplicate edge id occurred (ID='%')." -msgstr "" +msgstr "出现重复的路段识别名(id) (ID='%')。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:614 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:614 msgid "" "Outgoing connector '%' will not be build - would be not connected to network." -msgstr "" +msgstr "将不会构建传出(outgoing)连接器 '%' - 不会连接到路网。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:665 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:671 -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:720 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:665 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:671 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:720 msgid "There is no edge from node '%' to node '%'." -msgstr "" +msgstr "从节点 '%' 到节点 '%' 沒有路段。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:698 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:698 msgid "Error in geometry description from node '%' to node '%'." -msgstr "" +msgstr "从节点 '%' 到节点 '%' 的几何描述错误。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:757 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:757 msgid "A lane number for edge '%' is not numeric (%)." -msgstr "" +msgstr "路段 '%' 的车道数不是数字值 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:762 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:762 msgid "A lane number for edge '%' is not positive (%)." -msgstr "" +msgstr "路段 '%' 的车道数不是正值 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:781 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:781 msgid "A lane length for edge '%' is not numeric (%)." -msgstr "" +msgstr "路段 '%' 的车道长度不是数字值 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:785 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:785 msgid "A lane length for edge '%' is not positive (%)." -msgstr "" +msgstr "路段 '%' 的车道长度不是正值 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:846 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:846 msgid "Could not find split position for edge '%'." -msgstr "" +msgstr "无法找到路段 '%' 的分割(split)位置。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:856 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:856 msgid "Ups - could not insert node!" -msgstr "" +msgstr "糟糕 - 无法插入节点!" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:917 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:917 #, c-format msgid "Could not find TLS '%' for setting the signal group." -msgstr "" +msgstr "无法找到交通信号 '%' 以设定信号群组。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:930 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:930 msgid "Ignoring SIGNALGRUPPEZUFSABBIEGER because LsaNr is not known" -msgstr "" +msgstr "忽略 SIGNALGRUPPEZUFSABBIEGER, 因为 LsaNr 未知" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:987 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:987 msgid "Unknown edge in TEILFLAECHENELEMENT" -msgstr "" +msgstr "在TEILFLAECHENELEMENT中有未知的路段" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1007 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1007 msgid "Unknown are for area part '%'." -msgstr "" +msgstr "用于区域部分 '%' 未知。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1069 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1069 msgid "" "Ignoring lane-to-lane connection (not yet implemented for this format " "version)" -msgstr "" +msgstr "忽略车道到车道间的連接线 (尚未实现于此格式版本內)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1107 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1107 msgid "A from-lane number for edge '%' is not numeric (%)." -msgstr "" +msgstr "路段 '%' 的起始车道编号数(from-lane number)不是数字 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1112 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1112 msgid "A from-lane number for edge '%' is not positive (%)." -msgstr "" +msgstr "路段 '%' 的到达车道(to-lane number)编号数不是正数 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1121 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1121 msgid "A to-lane number for edge '%' is not numeric (%)." -msgstr "" +msgstr "路段 '%' 的到达车道(to-lane number)编号数不是数字 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1126 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1126 msgid "A to-lane number for edge '%' is not positive (%)." -msgstr "" +msgstr "路段 '%' 的到达车道(to-lane number)编号数不是正数 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1142 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1142 msgid "" "A from-lane number for edge '%' is larger than the edge's lane number (%)." -msgstr "" +msgstr "路段 '%' 的起始车道编号数(from-lane number)大于路段车道数 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1146 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1146 msgid "" "A to-lane number for edge '%' is larger than the edge's lane number (%)." -msgstr "" +msgstr "路段 '%' 的到达车道编号数(to-lane number)大于路段车道数 (%)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1162 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1162 msgid "Ignoring stopping place '%' without edge id" -msgstr "" +msgstr "忽略沒有路段识别名(id)的停止位置 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1164 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1164 msgid "Ignoring stopping place '%' without node informatio" -msgstr "" +msgstr "忽略沒有节点信息的停止位置 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1171 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1171 msgid "" "Could not find edge with from-node '%' and base id '%' for stopping place '%'" msgstr "" +"无法找到起始点(from-node)为 '%' 且基本识别名(id)为 '%' 的路段; 其用于停等位" +"置 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1176 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1176 msgid "Unexpected from-node '%' for edge '%' of stopping place '%'" -msgstr "" +msgstr "无预期的起始点(from-node), 其被用于路段 '%' 上的停等位置 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1182 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1182 msgid "" "Could not find edge with to-node '%' and base id '%' for stopping place '%'" msgstr "" +"无法找到到达点(to-node)为 '%' 且基本识别名(id)为%' 的路段; 其用于停等位置 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1187 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1187 msgid "Unexpected to-node '%' for edge '%' of stopping place '%'" -msgstr "" +msgstr "无预期的到达点to-node), 其被用于路段 '%' 上的停等位置 '%'" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1271 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1271 #, c-format msgid "The node '%' is not known." -msgstr "" +msgstr "节点 '%' 未知。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1508 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1508 msgid "Could not build connector node '%'." -msgstr "" +msgstr "无法构建连接器节点(connector node) '%'。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1518 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1518 msgid " The from-node was not found within the net" -msgstr "" +msgstr " 在路网中找不到起始点(from-node)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1521 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1521 msgid " The to-node was not found within the net" -msgstr "" +msgstr " 在路网中找不到到达点(to-node)" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1524 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1524 msgid " Both nodes are the same" -msgstr "" +msgstr " 两个节点相同" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1539 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:431 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1539 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:431 msgid "Could not load VISUM language map from '%'." -msgstr "" +msgstr "无法从 '%' 载入 VISUM 语言映成表(map)。" -#: /home/micha/programming/sumo/src/netimport/NIImporter_VISUM.cpp:1551 +#: D:\Repos\sumo/src\netimport\NIImporter_VISUM.cpp:1551 #, c-format msgid "Unknown entry '%' in VISUM language map" -msgstr "" +msgstr "VISUM 语言映成表(map)中的未知输入项(entry) '%'" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:103 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:103 msgid " Removed % traffic lights before loading plain-XML" -msgstr "" +msgstr " 在载入纯 XML(plain-XML)文件之前,删除了 % 交通信号" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:112 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:112 msgid "No nodes loaded." -msgstr "" +msgstr "沒有载入节点。" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:115 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:115 msgid "No edges loaded." -msgstr "" +msgstr "没有加载路段。" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:126 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:126 msgid " Import done:" -msgstr "" +msgstr " 导入完成:" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:128 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:128 #, c-format msgid " % districts loaded." -msgstr "" +msgstr " % 分区已载入。" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:130 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:130 #, c-format msgid " % nodes loaded." -msgstr "" +msgstr " % 节点已载入。" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:132 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:132 msgid " % types loaded." -msgstr "" +msgstr " % 类型已载入。" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:134 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:134 #, c-format msgid " % edges loaded." -msgstr "" +msgstr " % 路段已载入。" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:136 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:136 #, c-format msgid "The split of edges was performed % times." -msgstr "" +msgstr "路段分割(split) % 次了。" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:144 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:144 msgid "Proj projection parameters used: '%'." -msgstr "" +msgstr "使用的 Proj 投影参数: '%'。" -#: /home/micha/programming/sumo/src/netimport/NILoader.cpp:165 +#: D:\Repos\sumo/src\netimport\NILoader.cpp:165 #, c-format msgid "Deprecated vehicle class(es) '%' in input edge files." -msgstr "" +msgstr "在输入路段文件中已不适用的车辆类别(class(es)) '%'。" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:61 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:61 msgid "Invalid speed code (edge '%')." -msgstr "" +msgstr "速度代码无效(路段 %)。" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:64 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:64 msgid "Non-numerical value for an edge's speed type occurred (edge '%')." -msgstr "" +msgstr "路段速度类型出现非数值 (路段 %)。" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:90 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:90 msgid "Invalid lane number (edge '%')." -msgstr "" +msgstr "无效的车道编号 (路段 %)。" -#: /home/micha/programming/sumo/src/netimport/NINavTeqHelper.cpp:94 +#: D:\Repos\sumo/src\netimport\NINavTeqHelper.cpp:94 msgid "Non-numerical value for an edge's lane number occurred (edge '%'." -msgstr "" +msgstr "路段车道编号出現非数值 (路段 %)。" -#: /home/micha/programming/sumo/src/netimport/NITypeLoader.cpp:62 +#: D:\Repos\sumo/src\netimport\NITypeLoader.cpp:62 msgid "Could not open %-file '%'." -msgstr "" +msgstr "无法开启%-文件 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIVisumTL.cpp:76 +#: D:\Repos\sumo/src\netimport\NIVisumTL.cpp:76 msgid "invalid node for traffic light '%'" -msgstr "" +msgstr "交通信号 '%' 的节点无效" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:85 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:85 msgid "" "Target edge '%' is not connected with '%'; the connection cannot be reset." -msgstr "" +msgstr "目标路段 '%' 未与 '%' 连接; 无法重設连接线(connection)。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:99 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:99 msgid "Edge '%' has no connection to lane '%'; the connection cannot be reset." -msgstr "" +msgstr "路段 '%' 与车道 '%' 沒有连接; 无法重設连接线(connection)。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:267 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:267 msgid "Unable to project shape for connection from edge '%' to edge '%'." -msgstr "" +msgstr "无法投影从路段 '%' 到路段 '%' 的连接线(connection)形状。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:275 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:275 msgid "Could not set loaded connection from lane '%' to lane '%'." -msgstr "" +msgstr "无法设定从车道 '%' 到车道 '%' 的载入的连接线。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:347 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:347 #, c-format msgid "Node '%' in crossing is not known." -msgstr "" +msgstr "人行穿越道(crossing)的节点 '%' 未知。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:356 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:356 msgid "No edges specified for crossing at node '%'." -msgstr "" +msgstr "在节点 '%' 处没有指定用于设定人行穿越道的路段。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:364 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:364 #, c-format msgid "Edge '%' for crossing at node '%' is not known." -msgstr "" +msgstr "用于设定人行穿越道的路段 '%' 未知; 位于节点 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:372 -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:450 -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:455 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:372 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:450 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:455 msgid "Edge '%' does not touch node '%'." -msgstr "" +msgstr "路段 '%' 未与节点 '%' 接触。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:385 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:385 #, c-format msgid "Crossing at controlled node '%' must be prioritized" -msgstr "" +msgstr "在交通控制节点 '%' 的人行穿越道必须优先考虑 (prioritized)" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:390 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:390 msgid "Unable to project shape for crossing at node '%'." -msgstr "" +msgstr "无法投影节点 '%' 处的人行穿越道形状。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:403 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:403 msgid "Crossing with edges '%' already exists at node '%'." -msgstr "" +msgstr "路段 '%' 的人行穿越道已存在于节点 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:435 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:435 msgid "No edges specified for walkingArea at node '%'." -msgstr "" +msgstr "沒有为节点 '%' 处的步行区域指定路段。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:441 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:441 #, c-format msgid "Edge '%' for walkingArea at node '%' is not known." -msgstr "" +msgstr "步行区域(walkingArea)的路段 '%' 未知; 发生于节点 '%' 。" -#: /home/micha/programming/sumo/src/netimport/NIXMLConnectionsHandler.cpp:467 +#: D:\Repos\sumo/src\netimport\NIXMLConnectionsHandler.cpp:467 msgid "Unable to project shape for walkingArea at node '%'." -msgstr "" +msgstr "无法投影节点 '%' 处的步行区域形状。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:222 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:222 msgid "Duplicate edge id occurred ('%'); assuming overwriting is wished." -msgstr "" +msgstr "出现重复的路段识别名(id) ('%'); 假设希望被覆盖。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:227 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:227 #, c-format msgid "Edge '%' changed it's type; assuming type override is wished." -msgstr "" +msgstr "路段 '%' 改变了它的类型; 假设希望类型被覆盖。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:315 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:315 msgid "Ignoring self-looped edge '%' at junction '%'" -msgstr "" +msgstr "忽略自我线圈路段 '%'; 发生在路口 '%'" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:393 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:393 #, c-format msgid "'%' is deprecated, please use '%' instead." -msgstr "" +msgstr "'%' 已不适用,请改用 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:403 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:403 msgid "Lane index is larger than number of lanes (edge '%')." -msgstr "" +msgstr "车道索引大于车道数 (路段 %)。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:447 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:447 msgid "Unable to project coordinates for lane '%'." -msgstr "" +msgstr "无法投影车道 '%' 的坐标。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:472 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:472 msgid "Ignoring 'split' because it cannot be assigned to an edge" -msgstr "" +msgstr "忽略'分割(split)' ,因为它不能指定使用路一个路段" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:481 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:481 msgid "Edge '%' has a split at invalid position %." -msgstr "" +msgstr "路段 '%' 在无效位置 % 处有一个分割(split)。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:486 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:486 msgid "Edge '%' has already a split at position %." -msgstr "" +msgstr "路段 '%' 在位置 % 处已有一个分割(split)。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:520 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:520 msgid "Invalid split node id for edge '%' (from- and to-node are forbidden)" msgstr "" +"路段 '%' 上有无效的分割节点 (禁止起始节点(from- and)和到达节点(to-node))" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:558 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:558 msgid "The from-node is not given for edge '%'." -msgstr "" +msgstr "沒有为路段 '%' 给定起始节点(from-node)。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:570 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:570 msgid "The to-node is not given for edge '%'." -msgstr "" +msgstr "沒有为路段 '%' 给定到达节点(to-node)。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:616 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:616 msgid "Ignoring unknown spreadType '%' for edge '%'." -msgstr "" +msgstr "没有为路段 '%' 给定到达节点(to-node)。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:674 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:674 #, c-format msgid "Duplicate edge '%' occurred." -msgstr "" +msgstr "发生重复的路段 '%' 。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:683 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:683 msgid "An important information is missing in edge '%'." -msgstr "" +msgstr "路段 '%' 缺少一个重要信息。" -#: /home/micha/programming/sumo/src/netimport/NIXMLEdgesHandler.cpp:705 +#: D:\Repos\sumo/src\netimport\NIXMLEdgesHandler.cpp:705 #, c-format msgid "Unknown edge '%' in roundabout." -msgstr "" +msgstr "在圆环处未知的路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:151 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:151 msgid "Missing position (at node ID='%')." -msgstr "" +msgstr "缺少位置 (在节点识别名(ID)='%')。" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:184 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:184 msgid "Could not insert node though checked this before (id='%')." -msgstr "" +msgstr "虽然已检查,无法插入节点(识别名(id)='%')。" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:213 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:213 msgid "Unable to project node shape at node '%'." -msgstr "" +msgstr "无法投射节点 '%' 的形状。" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:321 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:321 msgid "Unknown traffic light type '%' for node '%'." -msgstr "" +msgstr "未知的交通信号类型 '%'; 发生在节点 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:330 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:330 msgid "Unknown traffic light layout '%' for node '%'." -msgstr "" +msgstr "未知的交通信号布置(layout) '%';发生在节点 '%'。" -#: /home/micha/programming/sumo/src/netimport/NIXMLNodesHandler.cpp:341 +#: D:\Repos\sumo/src\netimport\NIXMLNodesHandler.cpp:341 msgid "Changing traffic light type '%' to '%' for tl '%'." -msgstr "" +msgstr "将交通信号类型由 '%' 更改为 '%'; 相关的交通信号识别名是(tl) '%'。" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:153 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:153 #, c-format msgid "Edge '%' for stop '%' not found" -msgstr "" +msgstr "找不到路段 '%' 给停靠点 '%'" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:161 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:161 #, c-format msgid "Lane '%' for stop '%' not found" -msgstr "" +msgstr "找不到车道(lane) '%' 给停靠点'%'" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:173 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:173 msgid "Could not add public transport stop '%' (already exists)" -msgstr "" +msgstr "无法增加大众运输停靠站 '%' (已经存在)" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:192 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:192 #, c-format msgid "Edge '%' for access to stop '%' not found" -msgstr "" +msgstr "找不到连接通道(access)相接的路段 '%' 到停靠点 '%'" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:253 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:253 msgid "Found route outside line definition" -msgstr "" +msgstr "找到路径外界线(route outside line)的定义" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:263 -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:283 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:263 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:283 #, c-format msgid "Edge '%' in route of line '%' not found" -msgstr "" +msgstr "路径中路段 '%' 无法找到; 路线(line)为 '%'" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:302 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:302 msgid "Stop '%' within line '%' not found" -msgstr "" +msgstr "停靠点 '%' 无法找到; 路线(line)为 '%'" -#: /home/micha/programming/sumo/src/netimport/NIXMLPTHandler.cpp:318 +#: D:\Repos\sumo/src\netimport\NIXMLPTHandler.cpp:318 msgid "Stop '%' within route '%' not found" -msgstr "" +msgstr "停靠点 '%' 无法找到; 路径(route)为 '%'" -#: /home/micha/programming/sumo/src/netimport/NIXMLShapeHandler.cpp:46 -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1744 +#: D:\Repos\sumo/src\netimport\NIXMLShapeHandler.cpp:46 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1749 #, c-format msgid "Lane '%' to place poi '%' on is not known." -msgstr "" +msgstr "未知的车道 '%', 其用来放置兴趣点(poi) '%'。" -#: /home/micha/programming/sumo/src/netimport/NIXMLShapeHandler.cpp:59 -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1757 +#: D:\Repos\sumo/src\netimport\NIXMLShapeHandler.cpp:59 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1762 #, c-format msgid "lane position % for poi '%' is not valid." -msgstr "" +msgstr "无效的车道位置 '%', 其用来放置兴趣点(poi)。" -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:114 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:114 msgid "Definition of tlLogic '%' was not finished." -msgstr "" +msgstr "信号逻辑(tlLogic) '%' 的定义未完成。" -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:140 -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:158 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:140 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:158 msgid "Cannot load traffic light program for unknown id '%', programID '%'." -msgstr "" +msgstr "无法载入未知识别名(id) '%' 的配时方案; 配时方案识别名(programID) '%'。" -#: /home/micha/programming/sumo/src/netimport/NIXMLTrafficLightsHandler.cpp:331 +#: D:\Repos\sumo/src\netimport\NIXMLTrafficLightsHandler.cpp:331 msgid "Invalid lane index '%' for edge '%'." -msgstr "" +msgstr "无效的车道索引 '%', 其位于路段 '%' 上。" -#: /home/micha/programming/sumo/src/netimport/NIXMLTypesHandler.cpp:85 +#: D:\Repos\sumo/src\netimport\NIXMLTypesHandler.cpp:85 msgid "Invalid lane spread type '%'. Using default 'right'" -msgstr "" +msgstr "无效的车道分布模型(spread type) '%'。使用预设值 '向右对齐(right)'" -#: /home/micha/programming/sumo/src/netimport/NIXMLTypesHandler.cpp:114 +#: D:\Repos\sumo/src\netimport\NIXMLTypesHandler.cpp:114 msgid "Invalid lane index % for edge type '%' with % lanes" -msgstr "" +msgstr "无效的车道索引 %; 其路段类型为 '%', 并有 % 车道" -#: /home/micha/programming/sumo/src/netimport/vissim/NIImporter_Vissim.cpp:887 +#: D:\Repos\sumo/src\netimport\vissim\NIImporter_Vissim.cpp:887 msgid "Could not open vissim-file '%'." -msgstr "" +msgstr "无法开启 vissim 文件 '%'。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnection.cpp:241 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnection.cpp:241 msgid "Could not build connection between '%' and '%'." -msgstr "" +msgstr "无法在 '%' 和 '%' 之间建立连接线(connection)。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnection.cpp:248 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnection.cpp:248 msgid "Lane sizes differ for connection '%'." -msgstr "" +msgstr "连接线(connection) '%' 车道大小(lane sizes)不同。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnectionCluster.cpp:496 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnectionCluster.cpp:496 msgid "NIVissimConnectionCluster:More than a single node" -msgstr "" +msgstr "NIVissimConnectionCluster: 不止一个节点" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimConnectionCluster.cpp:662 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimConnectionCluster.cpp:662 msgid "NIVissimConnectionCluster: how to get an edge's position?" -msgstr "" +msgstr "NIVissimConnectionCluster: 如何取得一个路段的位置?" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:205 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:205 #, c-format msgid "Could not build district '%' - edge '%' is missing." -msgstr "" +msgstr "无法建立分区 '%' - 路段 '%' 缺失。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:360 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:360 msgid "" "No streams assigned at district'%'.\n" " Using default speed 200km/h" msgstr "" +"没有流量(streams)被指派到分区 '%'。\n" +" 使用预测速度 200米/小时" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:377 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:526 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:377 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:526 #, c-format msgid "The referenced speed distribution '%' is not known." -msgstr "" +msgstr "参考的速度分配 '%' 未知。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:378 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDistrictConnection.cpp:385 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:378 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDistrictConnection.cpp:385 msgid ". Using default." -msgstr "" +msgstr "。 使用预测值。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:143 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:143 msgid "Ugly split to prohibit '%' by '%'." -msgstr "" +msgstr "丑陋的分割以禁止 '%', 并透过 '%'。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:186 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:186 msgid "Could not prohibit '%' by '%'. Have not found disturbance." -msgstr "" +msgstr "无法禁止 '%' (透过 '%')。没有发现干扰。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:191 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:191 msgid "Could not prohibit '%' by '%'. Disturbance connects same node." -msgstr "" +msgstr "无法禁止 '%' (透过 '%')。 干扰连接到相同的节点。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:210 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:262 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:210 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:262 #, c-format msgid "Would have to split edge '%' to build a prohibition" -msgstr "" +msgstr "将不得不分割路段 '%' 来建立一个禁止(prohibition)" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:237 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:237 #, c-format msgid "Could not prohibit '%' - it was not built." -msgstr "" +msgstr "无法禁止 '%' - 它沒有被构建。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:243 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:243 msgid "Could not prohibit '%' by '%'." -msgstr "" +msgstr "无法禁止 '%' (透过'%')。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:307 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:307 msgid "NIVissimDisturbance: no connection" -msgstr "" +msgstr "NIVissimDisturbance: 无连接线(connection)" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimDisturbance.cpp:340 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimDisturbance.cpp:340 #, c-format msgid "Could not build % of % disturbances." -msgstr "" +msgstr "无法建立 %,来自于 % 干扰。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:439 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:439 msgid "Will not build edge '%'." -msgstr "" +msgstr "将无法建立路段 '%'。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:464 -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:472 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:464 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:472 #, c-format msgid "Could not insert node '%' to nodes container." -msgstr "" +msgstr "无法将节点 '%' 插入到节点容器(container)。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:490 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:490 msgid "Could not build edge '%'; would connect same node." -msgstr "" +msgstr "无法构建路段 '%'; 将连接到相同的节点。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimEdge.cpp:532 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimEdge.cpp:532 msgid "What about distribution '%' " -msgstr "" +msgstr "分配 '%' 呢? " -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:138 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:138 #, c-format msgid "Could not set tls signal at edge '%' - the edge was not built." -msgstr "" +msgstr "无法在路段 '%' 处设置交通信号(tls) - 路段尚未构建。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:152 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:152 msgid "Edge '%': Lanes were not assigned." -msgstr "" +msgstr "路段 '%': 车道未被指派。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:375 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:375 msgid "" "Error on adding a traffic light\n" " Must be a multiple id ('%')" msgstr "" +"增加交通信号时发生错误\n" +" 必须是一个多重(multiple)识别名(id) ('%')" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:383 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:383 msgid "The signal group '%' could not be assigned to tl '%'." -msgstr "" +msgstr "无法将信号群组'%' 指派给交通信号(tl) '%'。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:392 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:392 msgid "The signal '%' could not be assigned to tl '%'." -msgstr "" +msgstr "信号 灯'%' 无法指派给交通信号(tl) '%'。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:399 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:399 msgid "Could not set % of % traffic lights." -msgstr "" +msgstr "无法设定 % 交通信号的 %。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:402 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:402 #, c-format msgid "Could not set % of % groups." -msgstr "" +msgstr "无法设置 % ,其在 % 个群组中。" -#: /home/micha/programming/sumo/src/netimport/vissim/tempstructs/NIVissimTL.cpp:405 +#: D:\Repos\sumo/src\netimport\vissim\tempstructs\NIVissimTL.cpp:405 #, c-format msgid "Could not set % of % signals." -msgstr "" +msgstr "无法设置 % ,其在 % 个信号中。" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Lichtsignalanlagendefinition.cpp:84 -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:93 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Lichtsignalanlagendefinition.cpp:84 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:93 #, c-format msgid "Unsupported LSA-Type '%' occurred." -msgstr "" +msgstr "出现不支持的交通信号类型 '%'。" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgeberdefinition.cpp:73 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgeberdefinition.cpp:73 msgid "Omitting unknown traffic light." -msgstr "" +msgstr "省略未知的交通信号。" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:142 -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:170 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:142 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:170 msgid "VAS traffic lights are not supported (lsa=%)" -msgstr "" +msgstr "不支持VAS 的交通信号 (交通信号(lsa) =%))" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:154 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:154 msgid "VSPLUS traffic lights are not supported (lsa=%)" -msgstr "" +msgstr "不支持 VSPLUS 的交通信号 (交通信号(lsa) =%))" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:162 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:162 msgid "TRENDS traffic lights are not supported (lsa=%)" -msgstr "" +msgstr "不支持 TRENDS 的交通信号 (交通信号(lsa) =%))" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:178 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:178 msgid "TL traffic lights are not supported (lsa=%)" -msgstr "" +msgstr "不支持 TL 的交通信号 (交通信号(lsa) =%))" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:186 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:186 msgid "POS traffic lights are not supported (lsa=%)" -msgstr "" +msgstr "不支持 POS 的交通信号 (交通信号lsa) =%))" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Signalgruppendefinition.cpp:194 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Signalgruppendefinition.cpp:194 msgid "externally defined traffic lights are not supported (lsa=%)" -msgstr "" +msgstr "不支持外部定义的交通信号 (交通信号(lsa) =%))" -#: /home/micha/programming/sumo/src/netimport/vissim/typeloader/NIVissimSingleTypeParser_Simdauer.cpp:49 +#: D:\Repos\sumo/src\netimport\vissim\typeloader\NIVissimSingleTypeParser_Simdauer.cpp:49 msgid "Simulation duration could not be parsed" -msgstr "" +msgstr "无法解析(parse)仿真持续时间" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:85 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:85 msgid "Trying to set the effort for the unknown edge '%'." -msgstr "" +msgstr "尝试为未知路段 '%' 设定成果(effort)。" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:100 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:100 msgid "Trying to set the travel time for the unknown edge '%'." -msgstr "" +msgstr "尝试为未知路段 '%' 设定旅行时间。" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:129 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:129 msgid "Invalid network, no network version declared." -msgstr "" +msgstr "无效路网,未宣告路网版本。" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:133 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:133 msgid "" "Network contains internal links which are ignored. Vehicles will 'jump' " "across junctions and thus underestimate route lengths and travel times." msgstr "" +"路网包含被忽略的內部路段。 车辆会以'跳过(jump)'方式跨过路口,从而低估路线长度" +"和旅行时间。" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:163 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:163 msgid "State was written at a different time=% than the begin time %!" -msgstr "" +msgstr "状态(state)是在不同的时间 =% 写入的,而非在开始时间 %!" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:197 -#: /home/micha/programming/sumo/src/router/RONet.cpp:223 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:197 +#: D:\Repos\sumo/src\router\RONet.cpp:223 #, c-format msgid "A TAZ with id '%' already exists. Not building junction TAZ." -msgstr "" +msgstr "具有识别名(id)为 '%' 的分区已存在。不构建路口分区(TAZ)。" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:228 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:228 msgid "" "Loading vehicles ahead of a state file is not supported. Correct --begin " "option or load vehicles with option --route-files" msgstr "" +"不支持在状态文件之前载入车辆。 更正 --begin 选项或使用选项 --route-files载入" +"车辆" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:256 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:256 msgid "Loading weights from '%'..." -msgstr "" +msgstr "正在从 '%'载入权重..." -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:285 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:285 msgid "Loading done." -msgstr "" +msgstr "载入完成。" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:390 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:390 msgid "Wrong number of state file names!" -msgstr "" +msgstr "状态文件数量錯誤!" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:425 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:425 msgid "Loading % from '%'" -msgstr "" +msgstr "载入 % (从 '%')" -#: /home/micha/programming/sumo/src/netload/NLBuilder.cpp:445 +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:445 #, c-format msgid "The route file '%' is not accessible." +msgstr "路径文件 '%' 无法读取。" + +#: D:\Repos\sumo/src\netload\NLBuilder.cpp:461 +msgid "" +"LaneData requested for mesoscopic simulation but --meso-lane-queue is not " +"active. Falling back to edgeData." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLDetectorBuilder.cpp:526 +#: D:\Repos\sumo/src\netload\NLDetectorBuilder.cpp:526 msgid "" "The netstate type 'hbefa' is deprecated. Please use the type 'emissions' " "instead." -msgstr "" +msgstr "路网状态(netstate)类型 'hbefa' 已不适用。请改用类型 'emissions'。" -#: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:198 +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:198 msgid "Asymmetrical neigh lane '%' for lane '%'" -msgstr "" +msgstr "不对称邻车道道 '%' (对于车道 '%' 而言)" -#: /home/micha/programming/sumo/src/netload/NLEdgeControlBuilder.cpp:218 +#: D:\Repos\sumo/src\netload\NLEdgeControlBuilder.cpp:218 #, c-format msgid "" "Internal edge '%' is not properly connected (probably a manually modified " "net.xml)." -msgstr "" +msgstr "內部路段 '%' 未正确连接 (可能这是一个手动修改的路网文件(net.xml))。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:391 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:391 msgid "Unknown from-node '%' for edge '%'." -msgstr "" +msgstr "未知的起始节点 (from-node) '%'; 路段为 '%'。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:395 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:395 msgid "Unknown to-node '%' for edge '%'." -msgstr "" +msgstr "未知的到达节点 (to-node) '%'; 路段为 '%'。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:535 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:535 #, c-format msgid "" "Shape of lane '%' is broken.\n" " Can not build according edge." msgstr "" +"车道 '%' 的形状已损坏。\n" +" 无法建立相关的路段。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:557 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:557 #, c-format msgid "Another lane with the id '%' exists." -msgstr "" +msgstr "另一个具有识别名(id) '%' 已存在。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:627 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:627 msgid "An unknown lane ('%') was tried to be set as incoming to junction '%'." -msgstr "" +msgstr "尝试将未知车道 ('%') 设定进入(incoming)到路口 '%'。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:781 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:781 msgid "Traffic light '%' has unknown type '%'." -msgstr "" +msgstr "交通信号 '%' 有未知的类型 '%'。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:785 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:785 #, c-format msgid "" "Traffic light type '%' cannot be used in mesoscopic simulation. Using '%' as " "fallback." -msgstr "" +msgstr "交通信号类型'%' 不能用于中观(meso)仿真。使用 '%' 作为备降(fallback)。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:874 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:874 msgid "maxDur % should not be smaller than minDir % in phase of tlLogic %" msgstr "" +"最大持续时间(maxDur) % 不应小于 最小持续时间(minDir) %, 其位于信号逻辑" +"(tlLogic) % 相位內" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:889 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:889 msgid "Duplicate condition '%' in tlLogic '%'" -msgstr "" +msgstr "信号逻辑(tlLogic) % 中的条件 '%' 重复" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:942 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:942 msgid "Invalid person mode '%' in E1 detector definition '%'" -msgstr "" +msgstr "人员(person)模式 '%' 无效, 其位於 E1 探测器定义 '%' 內" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1001 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1001 msgid "" "VTypeProbes are deprecated. Use fcd-output devices (assigned to the vType) " "instead." -msgstr "" +msgstr "VTypeProbe 已不适用。请改用 fcd-output 装置 (指派给vType)。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1061 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1061 msgid "Ignoring deprecated argument 'cont' for E2 detector '%'" -msgstr "" +msgstr "忽略已不适用的引数 'cont', 其用于 E2 探测器 '%'" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1077 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1077 msgid "Invalid person mode '%' in E2 detector definition '%'" -msgstr "" +msgstr "人员(person)模式 '%' 无效,其位于E2 探测器定义 '%' 內" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1091 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1091 msgid "" "Trying to specify detector's lane by the given id since the argument 'lane' " "is missing." -msgstr "" +msgstr "由于缺少参数 'lane',试图通过给定的识别名(id)指定探测器的车道。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1131 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1131 msgid "" "Missing argument 'pos' for E2Detector '%'. Assuming detector start == lane " "start of lane '%'." msgstr "" +"缺少E2 探测器 '%' 的参数 'pos'。假设探测器开始 == 车道 '%' 的车道开端。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1136 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1136 msgid "" "Missing argument 'endPos' for E2Detector '%'. Assuming detector end == lane " "end of lane '%'." msgstr "" +"缺少E2 探测器 '%' 的参数 'endPos'。假设探测器末端 == 车道 '%' 的车道末端。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1205 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1205 #, c-format msgid "" "Ignoring argument 'period' for E2Detector '%' since argument 'tl' was given." -msgstr "" +msgstr "因为参数 'tl' 已给定, 忽略 E2 探测器 '%' 的参数 'period'。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1262 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1262 msgid "Invalid person mode '%' in E3 detector definition '%'" -msgstr "" +msgstr "人员(person)模式 '%' 无效, 其位于 E3 探测器定义 '%' 內" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1341 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1341 msgid "Invalid person mode '%' in edgeData definition '%'" -msgstr "" +msgstr "人员(person)模式 '%' 无效, 其位于路段数据(edgeData)定义 '%' 內" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1365 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1365 msgid "Unknown edge '%' in edgeData definition '%'" +msgstr "未知路段 '%', 其位于路段数据(edgeData)定义 '%' 內" + +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1372 +msgid "" +"LaneData '%' requested for mesoscopic simulation but --meso-lane-queue is " +"not active. Falling back to edgeData." msgstr "" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1414 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1419 #, c-format msgid "Unknown from-edge '%' in connection." -msgstr "" +msgstr "在连接(connection)中, 起始路段(from-edge) '%' 未知。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1420 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1425 #, c-format msgid "Unknown to-edge '%' in connection." -msgstr "" +msgstr "在连接(connection)中, 到达路段(to-edge) '%' 未知。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1425 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1430 msgid "Invalid lane index in connection from '%' to '%'." -msgstr "" +msgstr "从 '%' 到 '%' 的连接线的车道索引无效。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1506 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1511 #, c-format msgid "Unknown from-edge '%' in conflict." -msgstr "" +msgstr "冲突中未知的起始路段(from-edge) '%' 。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1511 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1516 #, c-format msgid "Unknown to-edge '%' in connflict." -msgstr "" +msgstr "冲突中未知的到达路段(to-edge) '%' 。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1516 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1521 msgid "Invalid lane index in conflict with '%' to '%'." -msgstr "" +msgstr "无效的车道索引(index)与 '%' 至 '%' 冲突。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1568 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1573 msgid "" "no valid geo projection loaded from network. fcd-output.geo will not work" -msgstr "" +msgstr "没有从路网载入有效的地理投影。 fcd-output.geo 将无作用" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1596 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1601 msgid "Replacing junction-taz '%' with loaded TAZ." -msgstr "" +msgstr "用载入的分区(TAZ)替换路口分区(junction-taz) '%'。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1639 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1644 msgid "Skipping visualization of taz '%', polygon already exists." -msgstr "" +msgstr "跳过视觉化分区 '%', 多边形已存在。" -#: /home/micha/programming/sumo/src/netload/NLHandler.cpp:1670 +#: D:\Repos\sumo/src\netload\NLHandler.cpp:1675 msgid "At district '%': succeeding edge '%' does not exist." -msgstr "" +msgstr "分区 '%': 后续路段 '%' 不存在。" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:116 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:116 msgid "Information about the number of nodes was missing." -msgstr "" +msgstr "缺少节点数量的信息。" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:126 -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:143 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:126 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:143 msgid "Ignoring junction logic for junction '%'." -msgstr "" +msgstr "忽略路口 '%' 的路口逻辑。" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:333 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:333 msgid "Invalid traffic light type '%'" -msgstr "" +msgstr "无效的交通信号类型'%'" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:344 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:344 #, c-format msgid "Another logic with id '%' and programID '%' exists." msgstr "" +"另一个具有识别名(id) '%' 的逻辑及配时方案识别名(programID) '%' 已存在。" -#: /home/micha/programming/sumo/src/netload/NLJunctionControlBuilder.cpp:471 +#: D:\Repos\sumo/src\netload\NLJunctionControlBuilder.cpp:471 msgid "Traffic lights could not be built." +msgstr "无法建立交通信号。" + +#: D:\Repos\sumo/src\netload\NLNetShapeHandler.cpp:163 +#, c-format +msgid "" +"% edges of the primary network did not occur in the alternative-net-file" msgstr "" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:75 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:75 msgid "Vaporizers are deprecated. Use rerouters instead." -msgstr "" +msgstr "汽化器(vaporizers)已不适用。 请改用路径重新搜寻装置(rerouters)。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:84 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:84 msgid "Unknown edge ('%') referenced in a vaporizer." -msgstr "" +msgstr "未知路段 ('%')被引用于汽化器(vaporizer)內。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:93 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:93 msgid "A vaporization begin time is negative (edge id='%')." -msgstr "" +msgstr "汽化(vaporization)开始时间为负(路段识别名(id)='%')。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:97 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:97 msgid "A vaporization ends before it starts (edge id='%')." -msgstr "" +msgstr "汽化(vaporization)在开始之前结束(路段识别名(id)='%')。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:191 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:191 msgid "" "The overheadWireSegment '%' was not created as it is attached to internal " "lane. It will be build automatically." msgstr "" +"未构建 overheadWireSegment '%',因为它被附加到內部车道。它将被自动构建。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:196 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:196 #, c-format msgid "" "The overheadWireSegment '%' not built as it is attached to internal lane. It " "will be build automatically." msgstr "" +"未构建 overheadWireSegment '%',因为它被附加到內部车道。它将被自动构建。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:208 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:208 #, c-format msgid "" "The overheadWireSegment '%' has wrong position. Automatically set from 0 to " "the length of the lane." -msgstr "" +msgstr "overheadWireSegment 位置错误。将自动地由 0 设定为车道长度。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:216 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:216 msgid "" "Overhead wire solver (Eigen) not compiled in, expect errors in overhead wire " "simulation" -msgstr "" +msgstr "架空线解答器 (Eigen) 未编译, 预计架空线模拟会出现错误" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:376 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:376 msgid "" "A connecting overhead wire start segment '%' defined for overhead wire clamp " "'%' is not assigned to the traction substation '%'." msgstr "" +"具有起始段 '%' 的连接架空线是定义给架空线夹'%', 其未指派给牵引变电站 '%'。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:378 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:378 msgid "" "A connecting overhead wire end segment '%' defined for overhead wire clamp " "'%' is not assigned to the traction substation '%'." msgstr "" +"具有结束段 '%' 的连接架空线是定义给架空线夹 '%', 其未指派给牵引变电站 '%'。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:382 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:382 msgid "" "The overhead wire clamp '%' defined in an overhead wire section was not " "assigned to the substation '%'. Please define proper in additional files before defining overhead wire section." msgstr "" +"在架空电线部分中定义的高架线夹 '%' 未分配给变电站的 '%'。在定义架空电线部分之" +"前,请在附加文件(additional files)中定义适当的。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:397 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:397 msgid "" "Cannot check circuit, overhead circuit solver support (Eigen) not compiled " "in." -msgstr "" +msgstr "无法检查电路,架空电路解算器的支持 (Eigen) 未编译。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:469 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:469 msgid "" "Not building overhead wire clamps, overhead wire solver support (Eigen) not " "compiled in." -msgstr "" +msgstr "不构建架空线夹,架空线解算器的支持 (Eigen) 未编译。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:472 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:472 msgid "" "Ignoring overhead wire clamps, they make no sense when overhead wire circuit " "solver is off." -msgstr "" +msgstr "忽略架空线夹,当架空线电路解算器关闭时,它们沒有任何意义。" -#: /home/micha/programming/sumo/src/netload/NLTriggerBuilder.cpp:526 +#: D:\Repos\sumo/src\netload\NLTriggerBuilder.cpp:526 msgid "Ignoring invalid access from non-pedestrian lane '%' in busStop '%'." -msgstr "" +msgstr "忽略來自非人行步道 '%' 的无效连接通道(access); 在公交站(busStop) '%'。" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:54 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:54 msgid "The generated net will be written to FILE" -msgstr "" +msgstr "产生的路网将被写入文件內" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:59 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:59 msgid "Prefix of files to write plain xml nodes, edges and connections to" -msgstr "" +msgstr "文件的字首,用來写出一般(plain)的XML格式的节点,路段和连接线" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:62 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:62 msgid "Write all lanes and their attributes even when they are not customized" -msgstr "" +msgstr "即使未自订,也要写出所有车道及它们的属性" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:69 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:69 msgid "Defines a prefix for edge and junction names" -msgstr "" +msgstr "定义路段与路口名称的字首(prefix)" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:74 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:74 msgid "Write geo coordinates in plain-xml" -msgstr "" +msgstr "在纯 xml 文件 (plain-xml) 內写地理坐标" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:79 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:79 msgid "The generated net will be written to FILE using Amitran format" -msgstr "" +msgstr "产生的路网将依 Amitran 格式写入文件內" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:82 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:82 msgid "The generated net will be written to FILE using MATsim format" -msgstr "" +msgstr "产生的路网将依 MATsim 格式写入文件內" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:85 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:85 msgid "The generated net will be written to FILE using OpenDRIVE format" -msgstr "" +msgstr "产生的路网將依 OpenDRIVE 格式写入文件內" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:88 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:88 msgid "" "The generated net will be written to dlr-navteq files with the given PREFIX" -msgstr "" +msgstr "产生的路网将按照给定的字首(PREFIX) 及 dlr-navteq 格式写入文件內" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:91 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:91 msgid "" "The network coordinates are written with the specified level of output " "precision" -msgstr "" +msgstr "路网坐标依据指定的输出精确度数写出" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:94 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:94 msgid "Street names will be included in the output (if available)" -msgstr "" +msgstr "街道名称将包含在输出文件內 (如果有)" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:97 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:97 msgid "Writes original names, if given, as parameter" -msgstr "" +msgstr "写出原始名称(如果给定)作为参数" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:100 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:100 msgid "Writes street signs as POIs to FILE" -msgstr "" +msgstr "将街道标志作为兴趣点(POIs)写入文件" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:104 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:104 msgid "Writes public transport stops to FILE" -msgstr "" +msgstr "将大众运输停靠电写入文件" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:106 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:106 msgid "Writes public transport lines to FILE" -msgstr "" +msgstr "将大众运输路线写入文件" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:108 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:108 msgid "Clean-up pt stops that are not served by any line" -msgstr "" +msgstr "清理未提供服务的路线停靠点" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:111 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:111 msgid "Writes parking areas to FILE" -msgstr "" +msgstr "将停车区域写入文件" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:114 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:114 msgid "Analyze topology of the railway network" -msgstr "" +msgstr "分析铁路网的拓扑结构(topology)" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:118 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:118 msgid "" "Write shapes that are embedded in the network input and that are not " "supported by polyconvert (OpenDRIVE)" -msgstr "" +msgstr "写出在路网输入內且不受 polyconvert 支持的形状 (OpenDRIVE)" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:123 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:123 msgid "" "Builds parameterized curves whenever the angular change between straight " "segments exceeds FLOAT degrees" -msgstr "" +msgstr "当直线段之间的角度变化超过 FLOAT 度时,构建参数化曲线" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:127 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:127 msgid "Write lanes in lefthand networks on the left side (positive indices)" -msgstr "" +msgstr "在左行(lefthand)路网內的左侧写入车道 (正索引值)" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:130 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:130 msgid "" "Match loaded shapes to the closest edge within FLOAT and export as road " "objects" -msgstr "" +msgstr "将载入的形状在 FLOAT 范围內与最近的路段匹配并导出(export)为道路物件" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:154 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:153 msgid "OpenDRIVE export needs internal links computation." -msgstr "" +msgstr "exportOpenDRIVE 导出需要內部路段計算。" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:164 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:163 msgid "" "OpenDRIVE cannot represent oblique lane cuts and should use option " "'rectangular-lane-cut'." msgstr "" +"OpenDRIVE 不能表示出斜的车道切割,应该使用选项 'rectangular-lane-cut'。" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:173 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:173 msgid "public transport lines output requires 'ptstop-output' to be set" -msgstr "" +msgstr "大众运输路线输出需要设置 'ptstop-output'" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:177 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:177 msgid "" "'ptline-clean-up' only works in conjunction with 'ptline-output'. Ignoring " "invalid option." -msgstr "" +msgstr "'ptline-clean-up' 只能与 'ptline-output' 一起结合使用。忽略无效选项。" -#: /home/micha/programming/sumo/src/netwrite/NWFrame.cpp:186 +#: D:\Repos\sumo/src\netwrite\NWFrame.cpp:186 msgid "Writing network" -msgstr "" +msgstr "正在写出路网" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:91 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:91 msgid "" "DlrNavteq node data will be written in (floating point) cartesian coordinates" -msgstr "" +msgstr "DlrNavteq 节点数据将以(浮点数(floating point))笛卡尔坐标写入" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:155 -#: /home/micha/programming/sumo/src/netwrite/NWWriter_DlrNavteq.cpp:162 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:155 +#: D:\Repos\sumo/src\netwrite\NWWriter_DlrNavteq.cpp:162 msgid "Could not reconstruct shape for edge:'%' (%)." -msgstr "" +msgstr "无法重建路段的形状:'%' (%)。" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:307 +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:313 msgid "Could not compute smooth shape for edge '%'." -msgstr "" +msgstr "无法计算路段 '%' 的平滑形状。" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:450 +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:456 msgid "" "Could not compute smooth shape from lane '%' to lane '%'. Use option " "'junctions.scurve-stretch' or increase radius of junction '%' to fix this." msgstr "" +"无法计算从车道 '%' 到车道 '%' 的平滑形状。 使用选项 'junctions.scurve-" +"stretch' 或增加连接点 '%' 的半径來解决这个问题。" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_OpenDrive.cpp:957 +#: D:\Repos\sumo/src\netwrite\NWWriter_OpenDrive.cpp:963 msgid "" "Uneven stop line at lane '%' (dist=%) cannot be represented in OpenDRIVE." -msgstr "" +msgstr "OpenDRIVE 中无法表示出车道 '%' (距离=%) 处的不均勻停止线。" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:231 +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:235 msgid "" "Embedding TAZ-data inside the network is deprecated. Use option --taz-output " "instead" -msgstr "" +msgstr "在路网中嵌入 的分区(TAZ)数据已不适用。 使用选项 --taz-output 代替" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:351 +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:458 msgid "Could not find bidi-connection for edge '%'" -msgstr "" +msgstr "找不到路段 '%' 的双向连接线 (bidi-connection)" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_SUMO.cpp:517 +#: D:\Repos\sumo/src\netwrite\NWWriter_SUMO.cpp:545 #, c-format msgid "Lane '%' has a maximum allowed speed of 0." -msgstr "" +msgstr "车道 '%' 的最大允许速度为 0。" -#: /home/micha/programming/sumo/src/netwrite/NWWriter_XML.cpp:88 -#: /home/micha/programming/sumo/src/polyconvert/PCPolyContainer.cpp:105 +#: D:\Repos\sumo/src\netwrite\NWWriter_XML.cpp:88 +#: D:\Repos\sumo/src\polyconvert\PCPolyContainer.cpp:105 msgid "" "Ignoring option \"proj.plain-geo\" because no geo-conversion has been defined" -msgstr "" +msgstr "忽略选项 \"proj.plain-geo\", 因为沒有定义地理坐标转换" + +#: D:\Repos\sumo/src\od2trips_main.cpp:80 +msgid "Loads TAZ (districts; also from networks) from FILE(s)" +msgstr "从文件载入 TAZ (分区; 也来自路网)" + +#: D:\Repos\sumo/src\od2trips_main.cpp:102 +msgid "Writes trip definitions into FILE" +msgstr "将行程定义写进文件内" + +#: D:\Repos\sumo/src\od2trips_main.cpp:105 +msgid "Writes flow definitions into FILE" +msgstr "将流量定义写进文件内" + +#: D:\Repos\sumo/src\od2trips_main.cpp:108 +msgid "Writes probabilistic flow instead of evenly spaced flow" +msgstr "写入机率流量而不是均匀间隔流量" + +#: D:\Repos\sumo/src\od2trips_main.cpp:111 +msgid "Writes pedestrians instead of vehicles" +msgstr "写入行人而不是车辆" + +#: D:\Repos\sumo/src\od2trips_main.cpp:114 +msgid "Writes persontrips instead of vehicles" +msgstr "写入个人旅次(persontrips)而不是车辆" + +#: D:\Repos\sumo/src\od2trips_main.cpp:117 +msgid "Add modes attribute to personTrips" +msgstr "将模式属性(modes attribute)增加到 人行程(personTrips)" + +#: D:\Repos\sumo/src\od2trips_main.cpp:124 +msgid "Writes trips between junctions" +msgstr "写入路口之间的行程" + +#: D:\Repos\sumo/src\od2trips_main.cpp:129 +#: D:\Repos\sumo/src\router\ROFrame.cpp:116 +msgid "Defines the begin time; Previous trips will be discarded" +msgstr "定义开始时间; 其先前的行程(trips)将被废弃" + +#: D:\Repos\sumo/src\od2trips_main.cpp:132 +#: D:\Repos\sumo/src\router\ROFrame.cpp:119 +msgid "" +"Defines the end time; Later trips will be discarded; Defaults to the maximum " +"time that SUMO can represent" +msgstr "定义结束时间; 后面的行程将被废弃; 预设值为SUMO 可以表示的最大时间" + +#: D:\Repos\sumo/src\od2trips_main.cpp:140 +msgid "Spreads trips uniformly over each time period" +msgstr "将行程均匀地(uniformly)分布在每个时间段內" + +#: D:\Repos\sumo/src\od2trips_main.cpp:143 +msgid "Always choose source and sink edge which are not identical" +msgstr "一直选择不相同的起始和结束路段" + +#: D:\Repos\sumo/src\od2trips_main.cpp:149 +msgid "Defines the prefix for vehicle names" +msgstr "定义车辆名称的字首(prefix)" + +#: D:\Repos\sumo/src\od2trips_main.cpp:162 +msgid "Disable console output of current time step" +msgstr "禁用目前时间步长的控制台输出(console output)" + +#: D:\Repos\sumo/src\od2trips_main.cpp:193 +msgid "No TAZ input file (-n) specified." +msgstr "未指定分区(TAZ)输入文件(-n)。" + +#: D:\Repos\sumo/src\od2trips_main.cpp:197 +msgid "No input specified." +msgstr "未指定输入文件。" + +#: D:\Repos\sumo/src\od2trips_main.cpp:201 +msgid "No trip table output file (-o) or flow-output is specified." +msgstr "沒有指定行程表(trip table)输出文件 (-o) 或流量输出(flow-output)。" -#: /home/micha/programming/sumo/src/od/ODAmitranHandler.cpp:48 +#: D:\Repos\sumo/src\od2trips_main.cpp:205 +msgid "Only one of the the options 'pedestrians' and 'persontrips' may be set." +msgstr "只能设定选项 'pedestrians' 和 'persontrips' 其中之一。" + +#: D:\Repos\sumo/src\od2trips_main.cpp:248 +msgid "" +"Importer of O/D-matrices for the microscopic, multi-modal traffic simulation " +"SUMO." +msgstr "用于微观多运具模式交通仿真SUMO 的行程O/D矩阵的导入器。" + +#: D:\Repos\sumo/src\od2trips_main.cpp:270 +msgid "You must supply a TAZ, network or districts file ('-n')." +msgstr "您必须使用交通分区TAZ), 路网或分区(districts)文件 ('-n')。" + +#: D:\Repos\sumo/src\od2trips_main.cpp:276 +msgid "No districts loaded." +msgstr "沒有载入任何分区(districts)。" + +#: D:\Repos\sumo/src\od2trips_main.cpp:282 +msgid "No vehicles loaded." +msgstr "沒有载入任何车辆。" + +#: D:\Repos\sumo/src\od\ODAmitranHandler.cpp:48 msgid "Invalid duration for timeSlice starting %." -msgstr "" +msgstr "开始于 % 的时间片段(timeSlice) 的持续时间无效。" -#: /home/micha/programming/sumo/src/od/ODDistrictCont.cpp:72 +#: D:\Repos\sumo/src\od\ODDistrictCont.cpp:72 #, c-format msgid "Could not access network file '%' to load." -msgstr "" +msgstr "无法存取路网文件 '%' 以进行载入。" -#: /home/micha/programming/sumo/src/od/ODDistrictHandler.cpp:130 +#: D:\Repos\sumo/src\od\ODDistrictHandler.cpp:130 msgid "'probability' must be positive (in definition of % '%')." -msgstr "" +msgstr "'probability必须为正值 (在 % '%' 的定义中)。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:80 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:80 msgid "Missing origin '%' and destination '%' (% vehicles)." -msgstr "" +msgstr "缺少出发地 '%' 和目的地 '%' (% 车辆)。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:86 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:86 msgid "Missing origin '%' (% vehicles)." -msgstr "" +msgstr "缺少出发地 '%' (% 车辆)。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:91 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:91 msgid "Missing destination '%' (% vehicles)." -msgstr "" +msgstr "缺少目的地 '%' (% 车辆)。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:97 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:97 #, c-format msgid "District '%' has no source." -msgstr "" +msgstr "分区 '%' 没有起点。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:101 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:101 #, c-format msgid "District '%' has no sink." -msgstr "" +msgstr "分区 '%' 没有起点。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:193 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:193 msgid "" "Cannot find different source and sink edge for origin '%' and destination " "'%'." -msgstr "" +msgstr "无法为出发地 '%' 和目的地 '%' 找到不同的起始及结束路段。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:364 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:384 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:410 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:364 D:\Repos\sumo/src\od\ODMatrix.cpp:384 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:410 msgid "" "Flow density of % vehicles per second, cannot be represented with a simple " "probability. Falling back to even spacing." msgstr "" +"每秒 % 车辆的流量密度不能用简单的机率表示。 设定回到均勻间距(even spacing)。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:434 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:434 msgid "End of file while reading %." -msgstr "" +msgstr "读取 % 时,到了文件结尾。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:461 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:461 msgid "Broken period definition '%'." -msgstr "" +msgstr "损坏的期间定义 '%'。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:475 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:475 msgid "Broken factor: '%'." -msgstr "" +msgstr "损坏的系数(factor): '%'。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:509 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:509 #, c-format msgid "Missing line with % district names." -msgstr "" +msgstr "缺少带有 % 分区名称的列(line)。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:519 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:519 msgid "Missing line for district %." -msgstr "" +msgstr "缺少分区 % 的列(line)。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:533 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:533 msgid "More entries than districts found." -msgstr "" +msgstr "找到比分区更多的输入项目(entries)。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:538 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:586 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:538 D:\Repos\sumo/src\od\ODMatrix.cpp:586 msgid "Not numeric vehicle number in line '%'." -msgstr "" +msgstr "在 '%' 列中有不是数字的车辆编号。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:584 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:584 msgid "Missing at least one information in line '%'." -msgstr "" +msgstr "在列 '%' 中至少缺少一项信息。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:647 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:154 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:647 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:154 msgid "Could not open '%'." msgstr "无法打开'%'。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:658 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:664 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:658 D:\Repos\sumo/src\od\ODMatrix.cpp:664 #, c-format msgid "'%' does not contain the needed information about the time described." -msgstr "" +msgstr "'%' 不包含有关所描述时间的必要信息。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:674 -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:687 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:674 D:\Repos\sumo/src\od\ODMatrix.cpp:687 #, c-format msgid "Could not access matrix file '%' to load." -msgstr "" +msgstr "无法读取要载入的矩阵(matrix)文件 '%' 。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:714 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:714 #, c-format msgid "Could not access route file '%' to load." -msgstr "" +msgstr "无法读取要载入的路径文件 '%'。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:731 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:731 msgid "Assuming 24 entries for a day timeline, but got %." -msgstr "" +msgstr "假设一天时间线有 24 个登录项目,但得到 %。" -#: /home/micha/programming/sumo/src/od/ODMatrix.cpp:741 +#: D:\Repos\sumo/src\od\ODMatrix.cpp:741 msgid "Broken time line definition: missing a value in '%'." -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:80 -msgid "Loads TAZ (districts; also from networks) from FILE(s)" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:102 -msgid "Writes trip definitions into FILE" -msgstr "" +msgstr "损坏的时间线定义: '%' 中缺少一个值。" -#: /home/micha/programming/sumo/src/od2trips_main.cpp:105 -msgid "Writes flow definitions into FILE" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:108 -msgid "Writes probabilistic flow instead of evenly spaced flow" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:111 -msgid "Writes pedestrians instead of vehicles" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:114 -msgid "Writes persontrips instead of vehicles" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:117 -msgid "Add modes attribute to personTrips" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:124 -msgid "Writes trips between junctions" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:129 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:116 -msgid "Defines the begin time; Previous trips will be discarded" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:132 -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:119 -msgid "" -"Defines the end time; Later trips will be discarded; Defaults to the maximum " -"time that SUMO can represent" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:140 -msgid "Spreads trips uniformly over each time period" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:143 -msgid "Always choose source and sink edge which are not identical" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:149 -msgid "Defines the prefix for vehicle names" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:162 -msgid "Disable console output of current time step" -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:193 -msgid "No TAZ input file (-n) specified." -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:197 -msgid "No input specified." -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:201 -msgid "No trip table output file (-o) or flow-output is specified." -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:205 -msgid "Only one of the the options 'pedestrians' and 'persontrips' may be set." -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:248 -msgid "" -"Importer of O/D-matrices for the microscopic, multi-modal traffic simulation " -"SUMO." -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:270 -msgid "You must supply a TAZ, network or districts file ('-n')." -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:276 -msgid "No districts loaded." -msgstr "" - -#: /home/micha/programming/sumo/src/od2trips_main.cpp:282 -msgid "No vehicles loaded." -msgstr "" - -#: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:471 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:168 +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:471 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:168 msgid "Could not load '%'." -msgstr "" +msgstr "无法载入 '%'。" -#: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:491 +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:491 msgid "Loaded decal '%' with bounding box % %." -msgstr "" +msgstr "已载入贴印(decal) '%'; 定界框为 % %。" -#: /home/micha/programming/sumo/src/osgview/GUIOSGBuilder.cpp:597 +#: D:\Repos\sumo/src\osgview\GUIOSGBuilder.cpp:597 msgid "Could not load '%'. The model is replaced by a cone shape." -msgstr "" +msgstr "无法载入 '%'。 此模式被一个圆锥形取代。" -#: /home/micha/programming/sumo/src/osgview/GUIOSGManipulator.cpp:257 +#: D:\Repos\sumo/src\osgview\GUIOSGManipulator.cpp:257 #, c-format msgid "Currently in % camera mode. Press [F] to switch." -msgstr "" +msgstr "目前处于% 摄像模式。 按 [F] 进行切换。" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:166 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:166 msgid "Could not load traffic light files." -msgstr "" +msgstr "无法载入交通信号文件。" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:454 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:454 msgid "Invalid link index in '%'." -msgstr "" +msgstr "'%' 中有无效的连接索引(link index)。" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:456 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:456 msgid "Unknown traffic light in '%'." -msgstr "" +msgstr "'%' 中有未知的交通信号。" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:992 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:992 msgid " (No projection defined)" msgstr " (未定義投影方式)" -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:996 -#: /home/micha/programming/sumo/src/osgview/GUIOSGView.cpp:997 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:996 +#: D:\Repos\sumo/src\osgview\GUIOSGView.cpp:997 msgid "N/A" msgstr "不适用" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:107 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:208 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:263 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:341 -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:240 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:107 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:208 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:263 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:341 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:240 msgid "Unable to project coordinates for polygon '%'." -msgstr "" +msgstr "无法投影多边形 '%' 的坐标。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:184 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:184 msgid "Missing id under '%'" -msgstr "" +msgstr "在 '%' 下缺少识别名(id)" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:232 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:265 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:140 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:299 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:271 -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:385 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:232 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:265 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:140 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:299 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:271 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:385 msgid "Unable to project coordinates for POI '%'." -msgstr "" +msgstr "无法投影兴趣点(POI) '%' 的坐标。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderArcView.cpp:300 +#: D:\Repos\sumo/src\polyconvert\PCLoaderArcView.cpp:300 msgid "Unsupported shape type occurred (id='%')." -msgstr "" +msgstr "出现不支持的形状类型 (id='%')。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:71 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:71 msgid "Could not open dlr-navteq-poi-file '%'." -msgstr "" +msgstr "无法开启 dlr-navteq 格式的兴趣点文件(dlr-navteq-poi-file) '%'。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:86 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:86 msgid "Could not open dlr-navteq-poly-file '%'." -msgstr "" +msgstr "无法开启 dlr-navteq 格式的多边形文件(dlr-navteq-poly-file) '%'。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:128 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:128 msgid "Invalid x coordinate for POI '%'." -msgstr "" +msgstr "兴趣点(POI) '%' 的 x 坐标无效。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:132 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:132 msgid "Invalid y coordinate for POI '%'." -msgstr "" +msgstr "兴趣点(POI) '%' 的 y 坐标无效。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:137 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:137 msgid "The name of a POI is missing." -msgstr "" +msgstr "缺少兴趣点(POI)的名称。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:191 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:191 msgid "Invalid dlr-navteq-polygon - line: '%'." -msgstr "" +msgstr "无效的 dlr-navteq 格式的多边形(dlr-navteq-polygon) - 列: '%'。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:220 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:220 #, c-format msgid "The polygon '%' is empty." -msgstr "" +msgstr "多边形 '%' 是空的。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderDlrNavteq.cpp:224 +#: D:\Repos\sumo/src\polyconvert\PCLoaderDlrNavteq.cpp:224 msgid "The name of a polygon is missing; it will be discarded." -msgstr "" +msgstr "缺少多边形的名称; 它将被废弃。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:157 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:157 msgid "Could not import polygon from relation '%' (missing ways)" -msgstr "" +msgstr "无法从关系(relation) '%' 导入多边形 (缺少路径(ways))" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:212 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:212 msgid "" "Could not import polygon from relation '%' (name:% reason: found gap of %m " "to way '%')\n" " Total length of remaining ways: %m." msgstr "" +"无法从关系(relation) '%' 导入多边形 (名称:% ;原因: 发现 % 米间距(gap)到路径" +"(way) '%')\n" +"剩余路径(ways)的总长度: % 米。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:230 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:230 msgid "Assembled polygon from relation '%' (name:%)" -msgstr "" +msgstr "从关系 '%' 组合的多变形形 (名称:%)" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderOSM.cpp:254 +#: D:\Repos\sumo/src\polyconvert\PCLoaderOSM.cpp:254 #, c-format msgid "Polygon '%' has no shape." -msgstr "" +msgstr "多边形 '%' 沒有形状(shape)。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:114 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:114 msgid "Could not open visum-file '%'." -msgstr "" +msgstr "无法开启 visum 格式的文件(visum-file) '%'。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderVisum.cpp:149 +#: D:\Repos\sumo/src\polyconvert\PCLoaderVisum.cpp:149 msgid "Unable to project coordinates for point '%'." -msgstr "" +msgstr "无法投影节点(point) '%' 的坐标。" -#: /home/micha/programming/sumo/src/polyconvert/PCLoaderXML.cpp:63 +#: D:\Repos\sumo/src\polyconvert\PCLoaderXML.cpp:63 msgid "Could not open xml-file '%'." -msgstr "" +msgstr "无法开启 xml 格式的文件(xml-file) '%'。" -#: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:55 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:55 msgid "Could not open net-file '%'." -msgstr "" +msgstr "无法开启路网文件(net-file) '%'。" -#: /home/micha/programming/sumo/src/polyconvert/PCNetProjectionLoader.cpp:71 +#: D:\Repos\sumo/src\polyconvert\PCNetProjectionLoader.cpp:71 msgid "Could not find projection parameter in net." -msgstr "" +msgstr "无法在路网內发现投影参数。" -#: /home/micha/programming/sumo/src/polyconvert/PCTypeDefHandler.cpp:71 +#: D:\Repos\sumo/src\polyconvert\PCTypeDefHandler.cpp:71 msgid "Could not add polygon type '%' (probably the id is already used)." -msgstr "" +msgstr "无法增加多边形类型 '%' (可能该识别名(id)已被使用)。" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:81 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:81 msgid "Loads SUMO-network FILE as reference to offset and projection" -msgstr "" +msgstr "载入 SUMO路网文件作为偏移(offset)和投影的参考" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:85 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:85 msgid "" "Reads polygons from FILE assuming they're coded in DLR-Navteq (Elmar)-format" -msgstr "" +msgstr "从文件中读取多边形, 假设它们以 DLR-Navteq (Elmar) 格式编码" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:87 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:87 msgid "" "Reads pois from FILE+ assuming they're coded in DLR-Navteq (Elmar)-format" msgstr "" +"从档案(FILE+)中读取兴趣点(pois), 假设它们以 DLR-Navteq (Elmar) 格式编码" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:92 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:92 msgid "Reads polygons from FILE assuming it's a Visum-net" -msgstr "" +msgstr "从档案中读取多边形, 假設它们是 visum 格式的路网(Visum-net)" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:100 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:100 msgid "Reads pois and shapes from FILE assuming they're coded in XML" -msgstr "" +msgstr "从文件中读取位置和形状,并假设它们是用 XML 编码" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:105 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:105 msgid "Reads pois from FILE+ assuming they're coded in OSM" -msgstr "" +msgstr "从文件(FILE+)中读取兴趣点(pois),并假设它们是用 OSM 编码" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:107 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:107 msgid "The type will be made of the key-value - pair" -msgstr "" +msgstr "此类型将由键值(key-value)组成 - 成对(pair)" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:109 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:109 msgid "The id will be set from the given 'name' attribute" -msgstr "" +msgstr "此识别名(id)将依据给定的 'name' 属性设定" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:111 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:111 msgid "" "If FLOAT >= 0, assemble one polygon from all ways of a relation if they all " "connect with gaps below FLOAT" msgstr "" +"如果浮点数(FLOAT) >= 0, 且如果它们都以低于 FLOAT 的间距连接, 则从关系內的所有" +"路径(ways)组合一个多边形" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:118 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:118 msgid "Reads shapes from shapefiles FILE+" -msgstr "" +msgstr "从形状文件(shapefiles FILE+) 读入形状" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:122 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:122 msgid "Guesses the shapefile's projection" -msgstr "" +msgstr "猜测形状文件(shapefile)的投影" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:130 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:130 msgid "Defines in which column the id can be found" -msgstr "" +msgstr "定义可以在哪一行(column)中找到识别名(id)" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:134 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:134 msgid "Defines which columns form the type id (comma separated list)" -msgstr "" +msgstr "定义哪些行(column)构成类型识别名(id) (用逗号分隔的清单)" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:137 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:137 msgid "A running number will be used as id" -msgstr "" +msgstr "流水号(running number)将用作识别名(id)" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:140 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:140 msgid "Extract all additional columns as params" -msgstr "" +msgstr "提取所有附加行(additional columns)作为参数" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:143 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:143 msgid "" "[auto|true|false]. Forces the 'fill' status to the given value. Default " "'auto' tries to determine it from the data type" msgstr "" +"[auto|true|false]。 将 'fill' 状态强制为给定值。 预设值为'auto' 尝试从数据类" +"型中确定它" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:148 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:148 msgid "Reads types from FILE" -msgstr "" +msgstr "从文件读取类型" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:156 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:156 msgid "Write generated polygons/pois to FILE" -msgstr "" +msgstr "将产生的多边形/兴趣点写入文件" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:159 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:159 msgid "Write generated polygons/pois to a dlr-tdp file with the given prefix" -msgstr "" +msgstr "将产生的多边形/兴趣点依据给定的字首(prefix)写入 dlr-tdp 格式的文件" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:165 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:169 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:172 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:177 -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:181 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:165 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:169 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:172 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:177 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:181 msgid "Pruning" -msgstr "" +msgstr "修整(Pruning)" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:165 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:165 msgid "Enables pruning on net boundaries" -msgstr "" +msgstr "启用修整路网边界" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:169 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:169 msgid "" "Uses FLOAT,FLOAT,FLOAT,FLOAT as offset definition added to the net boundary. " "Positive values grow the boundary on all sides while negative values shrink " "it." msgstr "" +"使用 FLOAT,FLOAT,FLOAT,FLOAT 作为增加到路网边界的偏移量定义。正值会扩大所有边" +"的边界,而负值会缩小边界。" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:172 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:172 msgid "Uses STR as pruning boundary" -msgstr "" +msgstr "使用 字串(STR) 作为修整的边界" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:177 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:177 msgid "Items in STR will be kept though out of boundary" -msgstr "" +msgstr "STR 中的项目将被保留在边界外" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:181 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:181 msgid "Items with names in STR[] will be removed" -msgstr "" +msgstr "具有 STR[] 中的名称的项目将被移除" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:196 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:196 msgid "Imports all attributes as key/value pairs" -msgstr "" +msgstr "将所有属性导入为键/值对(key/value pairs)" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:202 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:202 msgid "" "Adds FLOAT to the layer value for each poi (i.e. to raise it above polygons)" -msgstr "" +msgstr "将 FLOAT 增加到每个兴趣点(poi)的层值(即将其提升到多边形的上方)" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:206 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:206 msgid "Sets STR as default color" -msgstr "" +msgstr "设置 STR 为预设顏色" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:209 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:209 msgid "Sets STR as default prefix" -msgstr "" +msgstr "设置STR为预设字首(prefix)" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:212 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:212 msgid "Sets STR as default type" -msgstr "" +msgstr "设置STR 为预设类型" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:215 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:215 msgid "Fills polygons by default" -msgstr "" +msgstr "填满多边形为预设值" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:218 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:218 msgid "Sets FLOAT as default layer" -msgstr "" +msgstr "设置 FLOAT 为预设层" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:221 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:221 msgid "Sets default action to discard" -msgstr "" +msgstr "将预设操作设置为废弃" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:225 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:225 msgid "Write geo coordinates in output" -msgstr "" +msgstr "将地理坐标写入输出內" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:232 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:232 msgid "" "Importer of polygons and POIs for the microscopic, multi-modal traffic " "simulation SUMO." -msgstr "" +msgstr "用于微观多运具模式交通仿真 SUMO 的多边形和兴趣点(POIs)的导入器。" -#: /home/micha/programming/sumo/src/polyconvert/polyconvert_main.cpp:285 +#: D:\Repos\sumo/src\polyconvert\polyconvert_main.cpp:285 msgid "In order to prune the input on the net, you have to supply a network." -msgstr "" +msgstr "为了修整路网的输入项目,您必须提供一个路网。" -#: /home/micha/programming/sumo/src/router/ROEdge.cpp:204 +#: D:\Repos\sumo/src\router\ROEdge.cpp:204 msgid "" "No interval matches passed time=% in edge '%'.\n" " Using edge's length / max speed." msgstr "" +"沒有区间(interval)与通过的时间=% 配对; 路段: '%'。\n" +" 使用路段长度/最大速度。" -#: /home/micha/programming/sumo/src/router/ROEdge.cpp:230 +#: D:\Repos\sumo/src\router\ROEdge.cpp:230 msgid "" "No interval matches passed time=% in edge '%'.\n" " Using edge's length / edge's speed." msgstr "" +"沒有区间(interval)与通过的时间=% 配对; 路段: '%'。\n" +" 使用路段长度/最大速度。" -#: /home/micha/programming/sumo/src/router/ROEdge.cpp:453 +#: D:\Repos\sumo/src\router\ROEdge.cpp:453 msgid "" "Option weights.priority-factor does not take effect because all edges have " "the same priority." msgstr "" +"选项 weights.priority-factor 不生效, 因为所有路段都具有相同的优先级别。" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:47 +#: D:\Repos\sumo/src\router\ROFrame.cpp:47 msgid "Write generated routes to FILE" -msgstr "" +msgstr "将产生的路径写入文件內" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:53 +#: D:\Repos\sumo/src\router\ROFrame.cpp:53 msgid "Write used vehicle types into separate FILE" -msgstr "" +msgstr "将使用的车辆类型写入单独的文件內" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:56 +#: D:\Repos\sumo/src\router\ROFrame.cpp:56 msgid "Keep vTypeDistribution ids when writing vehicles and their types" -msgstr "" +msgstr "在写出车辆及其类型时,保留 vTypeDistribution 识别名(ids)" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:63 +#: D:\Repos\sumo/src\router\ROFrame.cpp:63 msgid "Use FILE as SUMO-network to route on" -msgstr "" +msgstr "使用文件作为 SUMO 路网进行路径搜寻/引导" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:66 +#: D:\Repos\sumo/src\router\ROFrame.cpp:66 msgid "Write vehicles that reference routes by their id" -msgstr "" +msgstr "写出引用识别名(id)于路径的车辆" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:73 +#: D:\Repos\sumo/src\router\ROFrame.cpp:73 msgid "Read additional network data (districts, bus stops) from FILE(s)" -msgstr "" +msgstr "从一个或多个文件读取额外的路网数据 (地区,公交车站)" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:87 +#: D:\Repos\sumo/src\router\ROFrame.cpp:87 msgid "Read sumo routes, alternatives, flows, and trips from FILE(s)" -msgstr "" +msgstr "从一个或多个文件读取SUMO路径, 替代路径, 流量与行程" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:101 +#: D:\Repos\sumo/src\router\ROFrame.cpp:101 msgid "Read network weights from FILE(s)" -msgstr "" +msgstr "从一个或多个文件读取路网权重" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:104 +#: D:\Repos\sumo/src\router\ROFrame.cpp:104 msgid "Read lane-based network weights from FILE(s)" -msgstr "" +msgstr "从一个或多个文件读取车道为主的路网权重" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:125 +#: D:\Repos\sumo/src\router\ROFrame.cpp:125 msgid "Continue if a route could not be build" -msgstr "" +msgstr "如果路径无法被建立, 继续运行" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:128 +#: D:\Repos\sumo/src\router\ROFrame.cpp:128 msgid "Prune the number of alternatives to INT" -msgstr "" +msgstr "将替代路径的数量修改为 INT" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:131 +#: D:\Repos\sumo/src\router\ROFrame.cpp:131 msgid "Use origin and destination zones (districts) for in- and output" -msgstr "" +msgstr "将出发地和目的地区 (分区(districts)) 用于输入和输出" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:139 +#: D:\Repos\sumo/src\router\ROFrame.cpp:139 msgid "Assume input is unsorted" -msgstr "" +msgstr "假设输入未排序" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:148 +#: D:\Repos\sumo/src\router\ROFrame.cpp:148 msgid "generate random departure times for flow input" -msgstr "" +msgstr "为输入的流量产生随机出发时间" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:151 +#: D:\Repos\sumo/src\router\ROFrame.cpp:151 msgid "" "Remove loops within the route; Remove turnarounds at start and end of the " "route" -msgstr "" +msgstr "去除路径內的线圈(loops); 移除路径起点和終点的掉头(turnarounds)" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:154 +#: D:\Repos\sumo/src\router\ROFrame.cpp:154 msgid "Tries to correct a false route" -msgstr "" +msgstr "尝试修正错误的路径" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:157 +#: D:\Repos\sumo/src\router\ROFrame.cpp:157 msgid "" "Tries to correct an invalid starting edge by using the first usable edge " "instead" -msgstr "" +msgstr "使用第一个可使用的路段来尝试更正无效的起始路段" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:160 +#: D:\Repos\sumo/src\router\ROFrame.cpp:160 msgid "" "Tries to correct an invalid destination edge by using the last usable edge " "instead" -msgstr "" +msgstr "使用最后一个可使用的路段来尝试更正无效的目的地路段" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:163 +#: D:\Repos\sumo/src\router\ROFrame.cpp:163 msgid "" "Maximum distance when mapping input coordinates (fromXY etc.) to the road " "network" -msgstr "" +msgstr "当映射(mapping)输入坐标时,离道路的最大距离" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:166 +#: D:\Repos\sumo/src\router\ROFrame.cpp:166 msgid "Match positions to junctions instead of edges" -msgstr "" +msgstr "将位置配对到路口, 而不是路段" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:169 +#: D:\Repos\sumo/src\router\ROFrame.cpp:169 msgid "Aggregate routing queries with the same origin" -msgstr "" +msgstr "汇总(aggregate)同一起点的路径查询" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:173 +#: D:\Repos\sumo/src\router\ROFrame.cpp:173 msgid "The number of parallel execution threads used for routing" -msgstr "" +msgstr "用于选路的平行执行绪(threads)的数量" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:177 +#: D:\Repos\sumo/src\router\ROFrame.cpp:177 msgid "" "Select among routing algorithms ['dijkstra', 'astar', 'CH', 'CHWrapper']" -msgstr "" +msgstr "在路径演算法 ['dijkstra', 'astar', 'CH', 'CHWrapper'] 中选择" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:181 +#: D:\Repos\sumo/src\router\ROFrame.cpp:181 msgid "" "Comma separated list of param keys to compare for additional restrictions" -msgstr "" +msgstr "以逗号分隔的参数键清单, 用于比较其他限制条件" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:186 +#: D:\Repos\sumo/src\router\ROFrame.cpp:186 msgid "Interpolate edge weights at interval boundaries" -msgstr "" +msgstr "在区间边界內插(interpolate)路段的权重值" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:190 +#: D:\Repos\sumo/src\router\ROFrame.cpp:190 msgid "Expand the end of the last loaded weight interval to infinity" -msgstr "" +msgstr "将最后载入的权重区间(weight interval)的末尾扩展到无限大" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:194 +#: D:\Repos\sumo/src\router\ROFrame.cpp:194 msgid "" "Apply the given time penalty when computing routing costs for minor-link " "internal lanes" -msgstr "" +msgstr "在计算次要路段內部车道的路径成本时, 应用给定的时间惩罚" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:217 +#: D:\Repos\sumo/src\router\ROFrame.cpp:217 msgid "Defaults will override given values" -msgstr "" +msgstr "预设值将覆盖给定值" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:222 +#: D:\Repos\sumo/src\router\ROFrame.cpp:222 msgid "Defines how often statistics shall be printed" -msgstr "" +msgstr "定义列印统计数据的频率" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:233 +#: D:\Repos\sumo/src\router\ROFrame.cpp:233 msgid "No output specified." -msgstr "" +msgstr "未指定输出。" -#: /home/micha/programming/sumo/src/router/ROFrame.cpp:238 +#: D:\Repos\sumo/src\router\ROFrame.cpp:238 msgid "A positive number of alternatives must be enabled." -msgstr "" +msgstr "必须启用正的(positive)替代路径数量。" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:62 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:64 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:83 -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:85 +#: D:\Repos\sumo/src\router\ROLoader.cpp:62 +#: D:\Repos\sumo/src\router\ROLoader.cpp:64 +#: D:\Repos\sumo/src\router\ROLoader.cpp:83 +#: D:\Repos\sumo/src\router\ROLoader.cpp:85 msgid "Trying to set a weight for the unknown edge '%'." -msgstr "" +msgstr "尝试为未知路段 '%' 设定权重。" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:114 +#: D:\Repos\sumo/src\router\ROLoader.cpp:114 #, c-format msgid "The network file '%' is not accessible." -msgstr "" +msgstr "路网文件 '%' 不能存取。" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:140 +#: D:\Repos\sumo/src\router\ROLoader.cpp:140 #, c-format msgid "The additional file '%' is not accessible." -msgstr "" +msgstr "无法读取附加文件(additional file) '%'。" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:217 +#: D:\Repos\sumo/src\router\ROLoader.cpp:217 msgid "Routes found between time steps % and %." -msgstr "" +msgstr "在时间步长 % 和 % 之间找到的路径。" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:243 +#: D:\Repos\sumo/src\router\ROLoader.cpp:243 msgid "The loader for % from file '%' could not be initialised (%)." -msgstr "" +msgstr "% 的载入器(位于文件 '%' 中)无法进行初始化 (%)。" -#: /home/micha/programming/sumo/src/router/ROLoader.cpp:281 -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:158 +#: D:\Repos\sumo/src\router\ROLoader.cpp:281 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:183 msgid "failed." -msgstr "" +msgstr "失败。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:162 +#: D:\Repos\sumo/src\router\RONet.cpp:162 #, c-format msgid "The edge '%' occurs at least twice." -msgstr "" +msgstr "路段 '%' 至少出现两次。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:176 +#: D:\Repos\sumo/src\router\RONet.cpp:176 #, c-format msgid "The TAZ '%' occurs at least twice." -msgstr "" +msgstr "交通分区(TAZ) '%' 至少出现两次。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:199 +#: D:\Repos\sumo/src\router\RONet.cpp:199 #, c-format msgid "The TAZ '%' is unknown." -msgstr "" +msgstr "交通分区(TAZ) '%' 未知。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:204 +#: D:\Repos\sumo/src\router\RONet.cpp:204 #, c-format msgid "The edge '%' for TAZ '%' is unknown." -msgstr "" +msgstr "未知路段 '%' 位于交通分区(TAZ) '%'內。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:259 +#: D:\Repos\sumo/src\router\RONet.cpp:259 #, c-format msgid "The bidi edge '%' is not known." -msgstr "" +msgstr "双向路段(bidi edge) '%' 未知。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:270 +#: D:\Repos\sumo/src\router\RONet.cpp:270 #, c-format msgid "The node '%' occurs at least twice." -msgstr "" +msgstr "节点 '%' 至少出现两次。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:279 +#: D:\Repos\sumo/src\router\RONet.cpp:279 msgid "The % '%' occurs at least twice." -msgstr "" +msgstr "% '%' 至少出现两次。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:446 +#: D:\Repos\sumo/src\router\RONet.cpp:446 #, c-format msgid "The vehicle type '%' occurs at least twice." -msgstr "" +msgstr "车辆类型 '%' 至少出现两次。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:498 +#: D:\Repos\sumo/src\router\RONet.cpp:498 msgid "Requesting departure time for unknown vehicle '%'" -msgstr "" +msgstr "请求未知车辆 '%' 的出发时间" -#: /home/micha/programming/sumo/src/router/RONet.cpp:528 +#: D:\Repos\sumo/src\router\RONet.cpp:528 #, c-format msgid "Another person with the id '%' exists." -msgstr "" +msgstr "另一个识别名(id)为 '%' 的人已存在。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:637 +#: D:\Repos\sumo/src\router\RONet.cpp:637 msgid "" "Bulking different maximum speeds ('%' and '%') may lead to suboptimal routes." -msgstr "" +msgstr "批量处理不同的最大速度 ('%' 和 '%') 可能会导致次佳路径。" -#: /home/micha/programming/sumo/src/router/RONet.cpp:640 +#: D:\Repos\sumo/src\router\RONet.cpp:640 msgid "" "Bulking different vehicle classes ('%' and '%') may lead to invalid routes." -msgstr "" +msgstr "批量处理不同的车辆类别 ('%' 和 '%') 可能会导致路径无效。" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:137 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:137 msgid "Unknown node '%'." -msgstr "" +msgstr "未知的节点 '%'。" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:243 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:243 msgid "Ignoring lane '%' with broken shape." -msgstr "" +msgstr "忽略形状(shape)损坏的车道 '%'。" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:280 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:280 msgid "Skipping isolated junction '%'." -msgstr "" +msgstr "跳过孤立的路口 '%'。" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:299 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:299 #, c-format msgid "unknown from-edge '%' in connection" -msgstr "" +msgstr "在连接(connection)中, 未知的起始路段(from-edge) '%'" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:302 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:302 #, c-format msgid "unknown to-edge '%' in connection" -msgstr "" +msgstr "在连接(connection)中, 未知的抵达路段(to-edge) '%'" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:316 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:316 #, c-format msgid "unknown via-edge '%' in connection" -msgstr "" +msgstr "在连接(connection)中, 未知的经过路段(via-edge) '%'" -#: /home/micha/programming/sumo/src/router/RONetHandler.cpp:368 +#: D:\Repos\sumo/src\router\RONetHandler.cpp:368 msgid "Ignoring invalid access from non-pedestrian edge '%'." -msgstr "" +msgstr "忽略源自非行人使用路段 '%' 的无效连络通道(access)。" -#: /home/micha/programming/sumo/src/router/RORouteDef.cpp:123 +#: D:\Repos\sumo/src\router\RORouteDef.cpp:123 msgid "Repaired route of vehicle '%'." -msgstr "" +msgstr "车辆 '%' 的路径已修复。" -#: /home/micha/programming/sumo/src/router/RORouteDef.cpp:222 +#: D:\Repos\sumo/src\router\RORouteDef.cpp:222 msgid "" "There are stop edges which were not part of the original route for vehicle " "'%'." -msgstr "" +msgstr "这里有不属于车辆 '%' 的原始路径的停等路段(stop edges)。" -#: /home/micha/programming/sumo/src/router/RORouteDef.cpp:237 +#: D:\Repos\sumo/src\router\RORouteDef.cpp:237 msgid "Edge '%' not connected to edge '%' for vehicle '%'." -msgstr "" +msgstr "“路段 '%' 未连接到路段 '%'; 车辆: '%'。" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:200 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:200 msgid "Triggered departure for person '%' requires starting with a ride." -msgstr "" +msgstr "人员 '%' 的触发出发(triggered departure)需要从一个乘车(ride)开始。" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:202 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:202 msgid "" "Triggered departure for container '%' requires starting with a transport." -msgstr "" +msgstr "货柜'%' 的触发出发(triggered departure)需要从一个运送(transport)开始。" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:224 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:224 #, c-format msgid "Found % outside container element" -msgstr "" +msgstr "找到 % 外部货柜元素" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:338 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:338 msgid "No probability for route %, using default." -msgstr "" +msgstr "无路径 % 的机率,使用预设值。" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:493 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:493 msgid "Ids of internal route distributions are ignored (vehicle '%')." -msgstr "" +msgstr "忽略內部路径分布的识别名(ids) (车辆 '%')。" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:609 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:609 msgid "Discarding person '%' because her plan is empty" -msgstr "" +msgstr "丢弃人员person) '%', 因为他/她的计划是空的" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:635 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:635 msgid "Discarding personFlow '%' because their plan is empty" -msgstr "" +msgstr "丢弃人流量(personFlow) '%', 因为他/她的计划是空的" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:643 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:643 #, c-format msgid "probabilistic personFlow '%' must specify end time" -msgstr "" +msgstr "机率的人流量(personFlow) '%' 必须指定结束时间" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:716 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:716 msgid "Discarding container '%' because it's plan is empty" -msgstr "" +msgstr "丢弃货柜 '%', 因为它的计划是空的" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:733 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:733 msgid "Discarding containerFlow '%' because it's plan is empty" -msgstr "" +msgstr "丢弃货柜流量(containerFlow) '%', 因为它的计划是空的" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1036 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1041 msgid "Triggered departure for container '%' requires a unique lines value." msgstr "" +"货柜 '%' 的触发出发(triggered departure)需要一个唯一的列值(unique lines " +"value)。" -#: /home/micha/programming/sumo/src/router/RORouteHandler.cpp:1076 +#: D:\Repos\sumo/src\router\RORouteHandler.cpp:1081 msgid "Cannot convert geo-positions because the network has no geo-reference" -msgstr "" +msgstr "无法转换地理位置, 因为路网沒有地理参考系统(geo-reference)" -#: /home/micha/programming/sumo/src/sumo_main.cpp:49 +#: D:\Repos\sumo/src\sumo_main.cpp:49 msgid "Another interrupt signal received, hard exit." -msgstr "" +msgstr "收到另一个中断信号, 强行退出。" -#: /home/micha/programming/sumo/src/sumo_main.cpp:52 +#: D:\Repos\sumo/src\sumo_main.cpp:52 msgid "Interrupt signal received, trying to exit gracefully." -msgstr "" +msgstr "收到中断信号, 试图正常退出。" -#: /home/micha/programming/sumo/src/sumo_main.cpp:86 +#: D:\Repos\sumo/src\sumo_main.cpp:86 msgid "A microscopic, multi-modal traffic simulation." msgstr "微观多运具交通仿真软件。" -#: /home/micha/programming/sumo/src/sumo_main.cpp:114 -#: /home/micha/programming/sumo/src/sumo_main.cpp:123 +#: D:\Repos\sumo/src\sumo_main.cpp:114 D:\Repos\sumo/src\sumo_main.cpp:123 msgid "Quitting (on error)." msgstr "退出 (由于错误)。" -#: /home/micha/programming/sumo/src/sumo_main.cpp:126 +#: D:\Repos\sumo/src\sumo_main.cpp:126 msgid "Quitting (on unknown error)." -msgstr "" +msgstr "退出 (发生未知错误)。" -#: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:76 +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:76 msgid "Unknown actor configuration '%' for vehicle '%'!" -msgstr "" +msgstr "未知的行动者设定(actor configuration) '%'; 车辆为 '%'!" -#: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:94 +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:94 msgid "Motion state for unknown vehicle '%'!" -msgstr "" +msgstr "未知车辆'%' 的运转状态!" -#: /home/micha/programming/sumo/src/tools/TrajectoriesHandler.cpp:136 +#: D:\Repos\sumo/src\tools\TrajectoriesHandler.cpp:136 msgid "Acceleration information is missing; try running with --compute-a." -msgstr "" +msgstr "缺少加速度信息; 尝试使用 --compute-a运行。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:62 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:62 msgid "Computes emissions by driving a time line using SUMO's emission models." msgstr "" +"使用 SUMO 的排放模型并透过驱动时间线(driving a time line)来计算排放量。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:70 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:70 msgid "Defines the file to read the driving cycle from." -msgstr "" +msgstr "定义要从中读取驾驶循环(driving cycle)的文件。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:74 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:74 msgid "Skips the first NUM lines." -msgstr "" +msgstr "跳过前 NUM 行。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:78 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:78 msgid "Defines the entry separator." -msgstr "" +msgstr "定义输入项(entry)的分隔字元。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:83 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:83 msgid "" "Defines the netstate, route and trajectory files to read the driving cycles " "from." -msgstr "" +msgstr "定义路网状态, 路径和轨迹文件以从中读取驾驶循环(driving cycles)。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:86 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:86 msgid "Load emission parameters (vTypes) from FILE(s)" -msgstr "" +msgstr "从文件载入排放参数 (车辆类型(vTypes))" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:89 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:89 msgid "Defines for which emission class the emissions shall be generated. " -msgstr "" +msgstr "定义应针对哪个排放类型(class)产生排放物。 " -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:92 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:92 msgid "Defines the vehicle type to use for emission parameters." -msgstr "" +msgstr "定义用于排放参数的车辆类型。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:96 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:96 msgid "" "If set, the acceleration is computed instead of being read from the file. " -msgstr "" +msgstr "如果设定,则计算加速度而不是从文件中读取。 " -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:99 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:99 msgid "" "If set, the acceleration for time t is computed from v(t+1) - v(t) instead " "of v(t) - v(t-1). " msgstr "" +"如果设定,则时间 t 的加速度从 v(t+1) - v(t) 而不是从 v(t) - v(t-1) 计算。 " -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:102 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:102 msgid "If set, the acceleration for time t is set to 0 if the speed is 0. " -msgstr "" +msgstr "如果设定,则当前速度为 0 时,时间 t 的加速度设为 0。 " -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:105 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:105 msgid "If set, the first line of the read file is skipped." -msgstr "" +msgstr "如果设定,则跳过读取文件的第一列。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:108 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:108 msgid "If set, the given speed is interpreted as being given in km/h." -msgstr "" +msgstr "如果设定,则给定速度被视为以公里/小時(km/h)为单位。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:111 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:111 msgid "If set, the fourth column is read and used as slope (in deg)." -msgstr "" +msgstr "如果设定,则读取第四行(column)并将其用作坡度 (以度为单位)。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:114 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:114 msgid "" "Sets a global slope (in deg) that is used if the file does not contain slope " "information." -msgstr "" +msgstr "如果文件內不含坡度信息,设定一个整体的坡度(global slope) (以度为单位)。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:119 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:119 msgid "Defines the file to write the emission cycle results into." -msgstr "" +msgstr "定义文件,以将排放周期(emission cycle)结果写入其內。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:122 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:122 msgid "Defines the attributes to write." -msgstr "" +msgstr "定义要写出的属性。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:125 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:125 msgid "Save the emission values of each vehicle in XML" -msgstr "" +msgstr "以 XML 格式储存每辆车的排放值" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:129 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:129 msgid "Save the aggregated and normed emission values of each vehicle in CSV" -msgstr "" +msgstr "在 CSV 內储存每辆车的汇总量(aggregated)和规范的(normed)排放值" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:145 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:145 msgid "Defines the begin time in seconds;" -msgstr "" +msgstr "以秒为单位定义开始时间;" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:148 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:148 msgid "Defines the end time in seconds;" -msgstr "" +msgstr "以秒为单位定义结束时间;" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:152 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:152 msgid "Not writing anything." -msgstr "" +msgstr "不写任何东西。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:169 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:169 msgid "Either a timeline or a netstate / amitran file must be given." -msgstr "" +msgstr "必须给定一个时间线或路网状态 / amitran 格式文件。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:172 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:172 msgid "The output file must be given." -msgstr "" +msgstr "输出文件必须给定。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:185 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:185 #, c-format msgid "Unknown attribute '%' to write in output." -msgstr "" +msgstr "要写入输出文件的未知属性 '%'。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:213 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:213 msgid "" "Option --vtype requires option --additional-files for loading vehicle types" -msgstr "" +msgstr "选项 --vtype 需要选项 --additional-files 以载入车辆类型" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:225 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:225 #, c-format msgid "Vehicle type '%' is not defined" -msgstr "" +msgstr "车辆类型 '%' 为定义" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:245 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:245 msgid "Unreadable file '%'." -msgstr "" +msgstr "无法读取的文件 '%'。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:276 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:276 msgid "Missing an entry in line '%'." -msgstr "" +msgstr "在列 '%' 缺少输入项(entry)。" -#: /home/micha/programming/sumo/src/tools/emissionsDrivingCycle_main.cpp:278 +#: D:\Repos\sumo/src\tools\emissionsDrivingCycle_main.cpp:278 msgid "Not numeric entry in line '%'." -msgstr "" +msgstr "在列 '%' 沒有数值输入项(entry)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:58 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:58 msgid "Writing map of '%' into '%'." -msgstr "" +msgstr "将'%' 的映成表(map)写入 '%'。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:62 -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:291 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:62 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:291 #, c-format msgid "Could not open file '%' for writing." -msgstr "" +msgstr "无法开启文件 '%' 进行写入。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:86 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:86 msgid "Builds and writes an emissions map for SUMO's emission models." -msgstr "" +msgstr "为SUMO 的排放模型构建并编写排放物映成表(emissions map)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:92 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:92 msgid "If set, maps for all available emissions are written." -msgstr "" +msgstr "如果设定,则写入所有可得的排放物的映成表(maps)內。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:95 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:95 msgid "Defines the name of the emission class to generate the map for." -msgstr "" +msgstr "定义排放物类别的名称, 将为它产生映成表(map)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:98 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:98 msgid "Defines the minimum velocity boundary of the map to generate (in m/s)." -msgstr "" +msgstr "定义产生的映成表(map)的最小速度边界 (以米/秒为单位)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:100 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:100 msgid "Defines the maximum velocity boundary of the map to generate (in m/s)." -msgstr "" +msgstr "定义产生的映成表(map)的最大速度边界 (以米/秒为单位)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:102 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:102 msgid "Defines the velocity step size (in m/s)." -msgstr "" +msgstr "定义速度的步长大小(step size) (以米/秒为单位)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:104 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:104 msgid "" "Defines the minimum acceleration boundary of the map to generate (in m/s^2)." -msgstr "" +msgstr "定义产生的映成表(map)的最小加速度边界 (以米/平方秒为单位)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:106 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:106 msgid "" "Defines the maximum acceleration boundary of the map to generate (in m/s^2)." -msgstr "" +msgstr "定义产生的映成表(map)的最大加速度边界 (以米/平方秒为单位)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:108 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:108 msgid "Defines the acceleration step size (in m/s^2)." -msgstr "" +msgstr "定义加速度的步长大小(step size) (以米/平方秒为单位)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:110 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:110 msgid "Defines the minimum slope boundary of the map to generate (in deg)." -msgstr "" +msgstr "定义 产生的映成表(map)的最小坡度边界 (以度(deg)为单位)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:112 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:112 msgid "Defines the maximum slope boundary of the map to generate (in deg)." -msgstr "" +msgstr "定义产生的映成表(map)的最小坡度边界 (以度(deg)为单位)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:114 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:114 msgid "Defines the slope step size (in deg)." -msgstr "" +msgstr "定义坡度的步长大小(step size) (以度(deg)为单位)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:119 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:119 msgid "" "Defines the file (or the path if --iterate was set) to write the map(s) into." -msgstr "" +msgstr "定义将写入映成表(map)的文件 (或文件路径(path), 如果设置了 --iterate)。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:159 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:159 msgid "The emission class (-e) must be given." -msgstr "" +msgstr "排放物类别 (-e) 必须给定。" -#: /home/micha/programming/sumo/src/tools/emissionsMap_main.cpp:162 +#: D:\Repos\sumo/src\tools\emissionsMap_main.cpp:162 msgid "The output file (-o) must be given." -msgstr "" +msgstr "输出文件 (-o)必须给定。" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:314 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:314 msgid "Starting TraCI without using internal lanes!" -msgstr "" +msgstr "在不使用內部车道的情況下, 启动 TraCI!" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:320 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:320 msgid "***Starting server on port % ***" -msgstr "" +msgstr "***在端口(port) % 上启动服务器 % ***" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:323 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:323 #, c-format msgid " waiting for % clients..." -msgstr "" +msgstr " 等待 % 个用户端..." -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:347 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:347 msgid " client connected" -msgstr "" +msgstr " 已连接用户端" -#: /home/micha/programming/sumo/src/traci-server/TraCIServer.cpp:480 +#: D:\Repos\sumo/src\traci-server\TraCIServer.cpp:480 msgid "" "Execution order (libsumo::CMD_SETORDER) was not set for all TraCI clients in " "pre-execution phase." msgstr "" +"执行顺序 (libsumo::CMD_SETORDER) 未在预执行阶段为所有 TraCI 用户端设置。" -#: /home/micha/programming/sumo/src/utils/common/FileHelpers.cpp:73 +#: D:\Repos\sumo/src\utils\common\FileHelpers.cpp:73 msgid "Cannot get file attributes for file '%'!" -msgstr "" +msgstr "无法取得文件 '%' 的文件属性!" -#: /home/micha/programming/sumo/src/utils/common/FileHelpers.h:318 +#: D:\Repos\sumo/src\utils\common\FileHelpers.h:318 msgid "Invalid follower index in route '%'!" -msgstr "" +msgstr "路径 '%' 內有无效的随动者索引(follower index)!" -#: /home/micha/programming/sumo/src/utils/common/FileHelpers.h:328 +#: D:\Repos\sumo/src\utils\common\FileHelpers.h:328 #, c-format msgid "An edge within the route '%' is not known!" -msgstr "" +msgstr "在路径 '%' 內的一个路段是未知的!" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:153 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:178 #, c-format msgid "done (%ms)." -msgstr "" +msgstr "完成 (%毫秒)。" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:155 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:180 msgid "done." -msgstr "" +msgstr "完成。" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:253 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:278 msgid "Could not set locale to '%'." -msgstr "" +msgstr "无法将环境(locale)设置为 '%'。" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:258 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:283 msgid "" "Environment variable SUMO_HOME is not set, could not find localized messages." -msgstr "" +msgstr "未设置环境变量 SUMO_HOME,找不到定位(localized)信息。" -#: /home/micha/programming/sumo/src/utils/common/MsgHandler.cpp:264 +#: D:\Repos\sumo/src\utils\common\MsgHandler.cpp:289 msgid "Could not find localized messages." -msgstr "" +msgstr "找不到定位(localized)信息。" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:87 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:87 msgid "Invalid conversion from string to double (%)" -msgstr "" +msgstr "从字串(string)到双精度(doubles)的无效转换 (%)" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:90 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:90 msgid "Invalid conversion from string to double (empty value)" -msgstr "" +msgstr "从字串(string)到双精度(doubles)的无效转换(空值)" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:109 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:109 msgid "Invalid conversion from string to doubles (%)" -msgstr "" +msgstr "从字串(string)到双精度(doubles)的无效转换 (%)" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:112 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:112 msgid "Invalid conversion from string to doubles (empty value)" -msgstr "" +msgstr "从字串(string)到双精度(doubles)的无效转换 (空值)" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:205 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:205 msgid "Invalid format of parameter (%)" -msgstr "" +msgstr "参数的格式无效 (%)" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:230 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:230 msgid "Invalid format of attribute '%'. Attribute must start with a letter" -msgstr "" +msgstr "属性 (%) 的格式无效。 属于必须以字母开头" -#: /home/micha/programming/sumo/src/utils/common/Parameterised.cpp:237 +#: D:\Repos\sumo/src\utils\common\Parameterised.cpp:237 msgid "Invalid format of attribute (%)" -msgstr "" +msgstr "属性 (%) 的格式无效" -#: /home/micha/programming/sumo/src/utils/common/RandHelper.cpp:65 +#: D:\Repos\sumo/src\utils\common\RandHelper.cpp:65 msgid "Initialises the random number generator with the current system time" -msgstr "" +msgstr "使用目前系统时间进行随机数产生器的初始化" -#: /home/micha/programming/sumo/src/utils/common/RandHelper.cpp:69 +#: D:\Repos\sumo/src\utils\common\RandHelper.cpp:69 msgid "Initialises the random number generator with the given value" -msgstr "" +msgstr "使用给定的值进行随机数产生器的初始化" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:187 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:187 msgid "Simultaneous specification of vClasses and exceptions is not allowed" -msgstr "" +msgstr "不允许同时指定车辆类型(vClasses)和例外情況(exceptions)" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:191 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:191 msgid "StopOffset requires an offset value" -msgstr "" +msgstr "StopOffset 需要一个偏移(offset)值" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:341 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:341 #, c-format msgid "Unknown vehicle class '%' encountered." -msgstr "" +msgstr "遇到未知的车辆类别 '%'。" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:382 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:382 msgid "" "SVCPermissions must be specified either via 'allow' or 'disallow'. Ignoring " "'disallow'" -msgstr "" +msgstr "SVCPermissions 必须通过 'allow' 或 'disallow' 指定。 忽略 'disallow'" -#: /home/micha/programming/sumo/src/utils/common/SUMOVehicleClass.cpp:408 +#: D:\Repos\sumo/src\utils\common\SUMOVehicleClass.cpp:408 #, c-format msgid "The vehicle class '%' is deprecated, use '%' instead." -msgstr "" +msgstr "车辆类别 '%' 已不适用,请改用 '%'。" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:43 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:43 msgid "Loads the named config on startup" -msgstr "" +msgstr "在启动时,载入已命名的设定(config)" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:48 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:48 msgid "Saves current configuration into FILE" -msgstr "" +msgstr "将目前的设定(configuration)存储到文件" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:52 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:52 msgid "Enforce relative paths when saving the configuration" -msgstr "" +msgstr "存储设定(configuration)时, 强制使用相对路径" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:55 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:55 msgid "Saves a configuration template (empty) into FILE" -msgstr "" +msgstr "将设定模板(configuration template)存储于文件" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:58 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:58 msgid "Saves the configuration schema into FILE" -msgstr "" +msgstr "将配置模式(configuration schema)存入文件" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:62 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:62 msgid "Adds comments to saved template, configuration, or schema" -msgstr "" +msgstr "对已存储的模板(template)、设定(configuration)或模式(schema)添加注释" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:71 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:71 msgid "Switches to verbose output" -msgstr "" +msgstr "切换到详细输出(verbose output)" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:74 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:74 msgid "Prints option values before processing" -msgstr "" +msgstr "在处理之前, 打印出选项值" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:77 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:77 msgid "Prints this screen or selected topics" -msgstr "" +msgstr "印出此荧幕或选定的主题" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:80 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:80 msgid "Prints the current version" -msgstr "" +msgstr "打印出目前版本" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:97 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:97 msgid "Disables output of warnings" -msgstr "" +msgstr "禁用警告输出" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:100 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:100 msgid "Aggregate warnings of the same type whenever more than INT occur" -msgstr "" +msgstr "每当发生超过 INT 时,整合(aggregate)相同类型的警告" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:104 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:104 msgid "Writes all messages to FILE (implies verbose)" -msgstr "" +msgstr "将所有信息写入文件 (暗示详细的(verbose))" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:107 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:107 msgid "Writes all non-error messages to FILE (implies verbose)" -msgstr "" +msgstr "将所有非错误信息写入文件 (暗示详细的(verbose))" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:110 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:110 msgid "Writes all warnings and errors to FILE" -msgstr "" +msgstr "将所警告及错误写入文件" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:113 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:113 msgid "Language to use in messages" -msgstr "" +msgstr "在信息中使用的语言" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:116 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:116 msgid "Include license info into every output file" -msgstr "" +msgstr "每个输出文件中将包含许可证信息" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:119 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:119 msgid "" "Prefix which is applied to all output files. The special string 'TIME' is " "replaced by the current time." -msgstr "" +msgstr "应用于所有输出文件的字首(prefix)。 特殊字串 'TIME' 被目前时间替换。" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:122 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:122 msgid "Defines the number of digits after the comma for floating point output" -msgstr "" +msgstr "定义浮点数输出的逗号后的位数" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:125 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:125 msgid "Defines the number of digits after the comma for lon,lat output" -msgstr "" +msgstr "定义经纬度(lon,lat)输出的逗号后的位数" -#: /home/micha/programming/sumo/src/utils/common/SystemFrame.cpp:128 +#: D:\Repos\sumo/src\utils\common\SystemFrame.cpp:128 msgid "" "Write time values as hour:minute:second or day:hour:minute:second rather " "than seconds" -msgstr "" +msgstr "将时间值写为小时:分钟:秒 或 天:小时:分钟:秒, 而不是秒" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:43 -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:184 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:43 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:184 msgid "Process Error" -msgstr "" +msgstr "处理发生错误" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:72 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:72 msgid "Empty Data" -msgstr "" +msgstr "空的资料" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:99 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:99 msgid "Invalid Number Format %" -msgstr "" +msgstr "无效的数字格式 %" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:112 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:112 msgid "Invalid Time Format %" -msgstr "" +msgstr "无效的时间格式 %" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:125 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:125 msgid "Invalid Bool Format %" -msgstr "" +msgstr "无效的布林(Bool)格式 %" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:137 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:137 msgid "Out Of Bounds" -msgstr "" +msgstr "超出边界" -#: /home/micha/programming/sumo/src/utils/common/UtilExceptions.h:151 +#: D:\Repos\sumo/src\utils\common\UtilExceptions.h:151 msgid "Unknown Element" -msgstr "" +msgstr "未知的元素" -#: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:74 -#: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:76 -#: /home/micha/programming/sumo/src/utils/distribution/Distribution_Parameterized.cpp:93 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:74 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:76 +#: D:\Repos\sumo/src\utils\distribution\Distribution_Parameterized.cpp:93 msgid "Invalid format of distribution parameterized" -msgstr "" +msgstr "已参数化的分配的格式无效" -#: /home/micha/programming/sumo/src/utils/emissions/EnergyParams.cpp:153 +#: D:\Repos\sumo/src\utils\emissions\EnergyParams.cpp:153 msgid "Vehicle device '%' doesn't have a valid value for parameter % (%)." -msgstr "" +msgstr "车辆装置设备 '%' 的参数 % 没有有效的值 (%)。" -#: /home/micha/programming/sumo/src/utils/emissions/HelpersEnergy.cpp:225 +#: D:\Repos\sumo/src\utils\emissions\HelpersEnergy.cpp:225 msgid "An acceleration given by the power was not found." -msgstr "" +msgstr "未找到电力(power)给定的加速度。" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:71 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:74 msgid "Add decal" -msgstr "" +msgstr "增加贴印" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:71 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:74 msgid "Add decal." -msgstr "" +msgstr "增加贴印(decal)。" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:151 -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:162 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:160 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:171 msgid "Invalid row or column" msgstr "无效的行或列" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:186 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:195 msgid "Invalid row" msgstr "无效行" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:196 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:205 msgid "Invalid column" msgstr "无效列" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:332 -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:790 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:341 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:798 msgid "Open decal" -msgstr "" +msgstr "开启贴印(decal)" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:337 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:346 msgid "All files (*)" msgstr "所有档案 (*)" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:790 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:798 msgid "Open decal." -msgstr "" +msgstr "开启贴印(decal)。" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:798 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:806 msgid "Remove decal" -msgstr "" +msgstr "移除贴印(decal)" -#: /home/micha/programming/sumo/src/utils/foxtools/MFXDecalsTable.cpp:798 +#: D:\Repos\sumo/src\utils\foxtools\MFXDecalsTable.cpp:806 msgid "Remove decal." +msgstr "移除贴印(decal)。" + +#: D:\Repos\sumo/src\utils\foxtools\MFXTextFieldSearch.cpp:66 +msgid "Type to search..." msgstr "" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:87 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:87 msgid "Ignoring geoidgrids and vgridshift in projection" -msgstr "" +msgstr "忽略投影中的大地水准面网格(geoidgrids)和垂直网格偏移(vgridshift)" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:232 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:232 msgid "Inverse projection works only with explicit proj parameters." -msgstr "" +msgstr "反向投影仅适用于明确的投影(proj)参数。" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:237 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:237 msgid "The projection method needs to be uniquely defined." -msgstr "" +msgstr "投影方法需要是唯一的(unique)。" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:288 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:288 msgid "Uses a simple method for projection" -msgstr "" +msgstr "使用简单的方法进行投影" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:291 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:291 msgid "Scaling factor for input coordinates" -msgstr "" +msgstr "输入坐标的缩放系数(scaling factor)" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:294 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:294 msgid "Rotation (clockwise degrees) for input coordinates" -msgstr "" +msgstr "输入坐标的旋转度数 (顺时针度数)" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:298 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:298 msgid "" "Determine the UTM zone (for a universal transversal mercator projection " "based on the WGS84 ellipsoid)" -msgstr "" +msgstr "确定 UTM 区帶 (用于基于 WGS84 椭球体的通用橫向麦卡托(mercator)投影)" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:304 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:304 msgid "Uses STR as proj.4 definition for projection" -msgstr "" +msgstr "使用字串(STR) 作为投影时的 proj.4定义" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:307 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:307 msgid "Inverses projection" -msgstr "" +msgstr "反向投影" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:310 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:310 msgid "Convert from Gauss-Krueger to UTM" -msgstr "" +msgstr "从 Gauss-Krueger 转换为 UTM 投影方法" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:434 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:434 msgid "Could not transform (%,%)" -msgstr "" +msgstr "无法转换 (%,%)" -#: /home/micha/programming/sumo/src/utils/geom/GeoConvHelper.cpp:578 +#: D:\Repos\sumo/src\utils\geom\GeoConvHelper.cpp:578 #, c-format msgid "" "Ignoring loaded location attribute nr. % for tracking of original location" -msgstr "" +msgstr "忽略载入的位置属性数字(nr.) %, 其用于跟踪原始位置" -#: /home/micha/programming/sumo/src/utils/geom/GeomHelper.cpp:238 +#: D:\Repos\sumo/src\utils\geom\GeomHelper.cpp:238 msgid "GeomHelper::makeCircle() requires nPoints>=3" -msgstr "" +msgstr "GeomHelper::makeCircle() 要求 nPoints>=3" -#: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:607 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:607 msgid "Splitting vector close to end (pos: %, length: %)" -msgstr "" +msgstr "分割(splitting)的向量接近末端 (位置: %, 长度: %)" -#: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:1503 -#: /home/micha/programming/sumo/src/utils/geom/PositionVector.cpp:1517 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:1503 +#: D:\Repos\sumo/src\utils\geom\PositionVector.cpp:1517 msgid "Trying to subtract PositionVectors of different lengths." -msgstr "" +msgstr "尝试減去不同长度的 PositionVectors。" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:960 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:963 msgid "'lane' and 'length' must be defined together in a lane area detector." msgstr "" +"'lane' 和 'length' 必须在车道区域探测器(lane area detector)中一起定义。" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:965 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:968 msgid "'lanes' and 'endPos' must be defined together in a lane area detector." msgstr "" +"'lane' 和 'endPos' 必须在车道区域探测器(lane area detector)中一起定义。" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1242 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1245 msgid "Calibrators need either an edge or a lane" -msgstr "" +msgstr "校估器需要一个路段或一个车道" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1289 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1292 msgid "" "CalibratorFlows need either the attribute vehsPerHour or speed or type (or " "any combination of these)" msgstr "" +"校估流量(CalibratorFlows)需要属性 每小时车辆数(vehsPerHour) 或 速度(speed)或" +"类型(type) (或这些属性的任意組合)" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1428 -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1454 -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1479 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1431 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1457 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1482 #, c-format msgid "Probability of % must be equal or greater than 0" -msgstr "" +msgstr "机率 % 必须大于或等于 0" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1665 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1668 msgid "X and Y must be be defined together in POIs" -msgstr "" +msgstr "X 和 Y 必须一起定义于兴趣点(POIs)內" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1671 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1674 msgid "lane and position must be be defined together in POIs" -msgstr "" +msgstr "车道和位置必须一起定义于兴趣点(POIs)內" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1677 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1680 msgid "lon and lat must be be defined together in POIs" -msgstr "" +msgstr "经度(lon)和纬度(lat)必须一起定义于兴趣点(POIs)內" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1743 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1746 msgid "Parameters must be defined within an object." -msgstr "" +msgstr "参数必须定义于一个物件(object)內。" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1745 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:848 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1748 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:857 msgid "Parameters cannot be defined in the additional file's root." -msgstr "" +msgstr "参数无法定义于附加文件(additional file)的根(root)中內。" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1747 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:850 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1750 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:859 msgid "Parameters cannot be defined within another parameter." -msgstr "" +msgstr "参数无法定义于其它参数內。" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1755 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1758 #, c-format msgid "Error parsing key from % generic parameter. Key cannot be empty." -msgstr "" +msgstr "解析 % 通用参数的密键(key)发生错误。 密键(key)不可以是空的。" -#: /home/micha/programming/sumo/src/utils/handlers/AdditionalHandler.cpp:1757 +#: D:\Repos\sumo/src\utils\handlers\AdditionalHandler.cpp:1760 #, c-format msgid "" "Error parsing key from % generic parameter. Key contains invalid characters." -msgstr "" +msgstr "解析 % 通用参数的密键(key)发生错误。 密键(key)含有无效的字元。" -#: /home/micha/programming/sumo/src/utils/handlers/DataHandler.cpp:111 +#: D:\Repos\sumo/src\utils\handlers\DataHandler.cpp:111 msgid "Data elements cannot load attributes as params" -msgstr "" +msgstr "数据元素(data elements)无法载入属性作为参数(params)" -#: /home/micha/programming/sumo/src/utils/handlers/MeanDataHandler.cpp:54 +#: D:\Repos\sumo/src\utils\handlers\MeanDataHandler.cpp:54 msgid "MeanData elements cannot load attributes as params" -msgstr "" +msgstr "平均数据(MeanData)无法载入属性作为参数(params)" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:370 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:373 msgid "" "Could not build % with ID '%' in netedit; ID contains invalid characters." -msgstr "" +msgstr "无法在 netedit 中构建 % (其识别名(ID)为 '%'); ID 含有无效字元。" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:420 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:423 msgid "" "a route must be defined either within a vehicle/flow or with an ID attribute" -msgstr "" +msgstr "路径必须定义于一个车辆/流量內, 或是用一个识别名(ID)属性" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:437 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:440 #, c-format msgid "cycleTime of % must be equal or greater than 0" -msgstr "" +msgstr "周期时间(cycleTime) % 必须大于或等于 0" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:482 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:549 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:485 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:552 msgid "Attributes 'from' and 'fromJunction' cannot be defined together" -msgstr "" +msgstr "无法同时定义属性 'from' 和 'fromJunction'" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:484 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:551 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:487 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:554 msgid "Attributes 'to' and 'toJunction' cannot be defined together" -msgstr "" +msgstr "无法同时定义属性 'to' 和 'toJunction'" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:515 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:518 msgid "trip definition needs either 'from/to' or 'fromJunction/toJunction'" -msgstr "" +msgstr "行程定义需要 'from/to' 或 'fromJunction/toJunction'" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:846 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:855 msgid "Parameters must be defined within an object" -msgstr "" +msgstr "参数必须定义在一个物件(object)內" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:858 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:867 #, c-format msgid "Error parsing key from % generic parameter. Key cannot be empty" -msgstr "" +msgstr "解析 % 通用参数的密键(key)发生错误。 密键(key)不可以是空的" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:860 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:869 #, c-format msgid "" "Error parsing key from % generic parameter. Key contains invalid characters" -msgstr "" +msgstr "解析 % 通用参数的密键(key)发生错误。 密键(key)含有无效的字元" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:876 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:224 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:885 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:225 msgid "" "Defining car-following parameters in a nested element is deprecated in vType " "'%', use attributes instead!" msgstr "" +"在车辆类型(vType) '%' 的鸟巢状元素(nested element)內定义的跟车参数已不适用改" +"用属性(attributes)!" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:884 -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:886 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:227 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:229 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:893 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:895 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:228 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:230 msgid "Invalid parsing embedded VType" -msgstr "" +msgstr "解析嵌入的(embedded)车辆类型(vType)无效" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:970 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:979 msgid "A stop must be defined either with an edge or with an lane, not both" -msgstr "" +msgstr "停靠站必要须定义在一个路段或是一个车道, 而不是用两者来定义" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:984 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:995 msgid "A stop must be defined only in a StoppingPlace" -msgstr "" +msgstr "停靠站只能定义在一个可停下的地方(StoppingPlace)" -#: /home/micha/programming/sumo/src/utils/handlers/RouteHandler.cpp:987 +#: D:\Repos\sumo/src\utils\handlers\RouteHandler.cpp:998 msgid "A stop must be defined in an edge, a lane, or in a StoppingPlace" msgstr "" +"停靠站必须要定义在一个路段, 一个车道或是一个可停下的地方(StoppingPlace)" -#: /home/micha/programming/sumo/src/utils/handlers/TemplateHandler.cpp:67 +#: D:\Repos\sumo/src\utils\handlers\TemplateHandler.cpp:67 msgid "Could not load template '%'." -msgstr "" +msgstr "无法载入范本(template) '%'。" -#: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice.cpp:86 +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice.cpp:86 msgid "No port number given." -msgstr "" +msgstr "沒有给定端口号(port number)。" -#: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice.cpp:161 +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice.cpp:161 msgid "Error on closing output devices." -msgstr "" +msgstr "关闭输出装置时发生错误。" -#: /home/micha/programming/sumo/src/utils/iodevices/OutputDevice_File.cpp:46 +#: D:\Repos\sumo/src\utils\iodevices\OutputDevice_File.cpp:46 msgid "Could not redirect to NUL device (%)." -msgstr "" +msgstr "无法重定向到NUL装置 (%)。" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:315 +#: D:\Repos\sumo/src\utils\options\Option.cpp:352 #, c-format msgid "'%' is not a valid float." -msgstr "" +msgstr "'%' 不是有效的浮点数。" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:349 +#: D:\Repos\sumo/src\utils\options\Option.cpp:386 #, c-format msgid "'%' is not a valid bool." -msgstr "" +msgstr "'%' 不是有效的布林(bool)。" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:409 +#: D:\Repos\sumo/src\utils\options\Option.cpp:446 msgid "" "Please note that using ';' as list separator is deprecated and not accepted " "anymore." -msgstr "" +msgstr "请注意,使用';'作为清单分隔符号已不适用,并不再接受。" -#: /home/micha/programming/sumo/src/utils/options/Option.cpp:419 +#: D:\Repos\sumo/src\utils\options\Option.cpp:456 #, c-format msgid "'%' is not a valid integer vector." -msgstr "" +msgstr "'%' 不是有效的整数向量。" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:65 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:66 msgid "" "Copyright (C) 2001-2023 German Aerospace Center (DLR) and others; https://" "sumo.dlr.de" -msgstr "" +msgstr "版权(C)2001-2023德国宇航中心(DLR)等; https://sumo.dlr.de" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:151 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:152 msgid "Internal request for unknown option '%'!" -msgstr "" +msgstr "未知选项%'的內部要求!" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:174 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:175 #, c-format msgid "No option with the name '%' exists." -msgstr "" +msgstr "没有任何名称为 '%' 的选项。" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:191 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:192 #, c-format msgid "" "Please note that '%' is deprecated.\n" " Use '%' instead." msgstr "" +"请注意,'%' 已不适用。\n" +" 改用 '%'。" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:387 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:388 #, c-format msgid "The file list for '%' is empty." -msgstr "" +msgstr "'%' 的文件清单是空的。" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:393 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:394 msgid "File '%' is not accessible (%)." -msgstr "" +msgstr "文件 '%' 不可存取(%)。" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:396 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:397 msgid "Empty file name given; ignoring." -msgstr "" +msgstr "给出空白文件名称; 忽略。" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:417 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:418 msgid "Option '%' needs option '%'." -msgstr "" +msgstr "选项 '%' 需要选项 '%' 。" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:616 -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:638 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:621 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:643 msgid " Build features: " -msgstr "" +msgstr " 构建功能: " -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:620 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:625 msgid "" " License EPL-2.0: Eclipse Public License Version 2 " msgstr "" +" 许可证EPL-2.0: Eclipse公共许可证版本 2 " -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:621 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:626 msgid " Use --help to get the list of options." -msgstr "" +msgstr " 使用 --求助 获取选项清单。" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:669 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:674 msgid "Could not save configuration to '%'" -msgstr "" +msgstr "无法将设定(configuration)保存到 '%'" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:673 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:678 msgid "Written configuration to '%'" -msgstr "" +msgstr "将设定(configuration)写入 '%'" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:686 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:691 msgid "Could not save template to '%'" -msgstr "" +msgstr "无法将范本(template)存储到 '%'" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:690 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:695 msgid "Written template to '%'" -msgstr "" +msgstr "将范本(template)写入 '%'" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:702 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:707 msgid "Could not save schema to '%'" -msgstr "" +msgstr "无法将模式(schema)存储到 '%'" -#: /home/micha/programming/sumo/src/utils/options/OptionsCont.cpp:706 +#: D:\Repos\sumo/src\utils\options\OptionsCont.cpp:711 msgid "Written schema to '%'" -msgstr "" +msgstr "将模式(schema)写入 '%'" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:88 -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:135 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:88 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:135 msgid "Could not parse commandline options." -msgstr "" +msgstr "无法解析命令列的选项。" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:103 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:103 msgid "Could not access configuration '%'." -msgstr "" +msgstr "无法存取设定(configuration) '%'。" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:107 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:107 msgid "Loading configuration" -msgstr "" +msgstr "载入设定(configuration)" -#: /home/micha/programming/sumo/src/utils/options/OptionsIO.cpp:121 +#: D:\Repos\sumo/src\utils\options\OptionsIO.cpp:121 msgid "Could not load configuration '%'." -msgstr "" +msgstr "无法载入设定(configuration)'%'。" -#: /home/micha/programming/sumo/src/utils/options/OptionsLoader.cpp:77 +#: D:\Repos\sumo/src\utils\options\OptionsLoader.cpp:77 msgid "Could not set option '%' (probably defined twice)." -msgstr "" +msgstr "无法设定选项 '%' (可能定义了两次)。" -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:127 -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:134 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:127 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:134 msgid "Missing value for parameter '%'." -msgstr "" +msgstr "缺少参数 '%' 的值。" -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:146 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:146 #, c-format msgid "" "The parameter '%' is not allowed in this context.\n" " Switch or parameter name expected." msgstr "" +"此上下文中不允许使用参数 '%'。\n" +" 需要切换或是提供参数名称。" -#: /home/micha/programming/sumo/src/utils/options/OptionsParser.cpp:150 +#: D:\Repos\sumo/src\utils\options\OptionsParser.cpp:150 msgid "Mixed parameter syntax in '%'." -msgstr "" +msgstr "'%' 中有混合参数语法(syntax)。" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:124 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:124 msgid "Could not load landmark-lookup-table from '%'." -msgstr "" +msgstr "无法从 '%' 载入入地标对照表。" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:138 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:138 #, c-format msgid "Duplicate edge '%' in landmark file." -msgstr "" +msgstr "在地标文件內有重复的路段 '%'。" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:143 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:143 #, c-format msgid "Landmark edge '%' does not exist in the network." -msgstr "" +msgstr "地标路段 '%' 不存在于路网內。" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:154 -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:167 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:154 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:167 #, c-format msgid "Unknown or unordered edge '%' in landmark file." -msgstr "" +msgstr "地标文件內有未知或是未排序的路段 '%'。" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:164 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:164 msgid "Broken landmark file, unexpected number of entries (%) for edge '%'." -msgstr "" +msgstr "地标文件损坏, 路段 '%' 有超出预期的登录项目数量(%)。" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:187 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:187 msgid "Calculating new lookup table." -msgstr "" +msgstr "正在计算新的对照表。" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:194 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:194 msgid "No lookup table for landmark edge '%', recalculating." -msgstr "" +msgstr "地标路段 '%' 沒有对照表, 重新计算中。" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:196 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:196 msgid "" "Not all network edges were found in the lookup table '%' for landmark edge " "'%'." -msgstr "" +msgstr "并非所有路网路段都在对照表 '%' 內找到 (针对地标路段 '%')。" -#: /home/micha/programming/sumo/src/utils/router/AStarLookupTable.h:293 +#: D:\Repos\sumo/src\utils\router\AStarLookupTable.h:293 msgid "Saving new matrix to '%'." -msgstr "" +msgstr "将新的矩阵存入 '%'。" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:295 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:295 #, c-format msgid "Edge '%' not found in intermodal network.'" -msgstr "" +msgstr "路段 '%' 不在多运具(intermodal)网络內。" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:304 -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:338 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:304 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:338 #, c-format msgid "Depart edge '%' not found in intermodal network." -msgstr "" +msgstr "出发路段 '%' 不在多运具(intermodal)网络內。" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:350 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:350 #, c-format msgid "Arrival edge '%' not found in intermodal network." -msgstr "" +msgstr "抵达路段 '%' 不在多运具(intermodal)网络內。" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:620 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:620 msgid "Ignoring unordered stop at '%' until % for vehicle '%'." -msgstr "" +msgstr "忽略未排序的停靠站于'%' 处, 直到(until) %; 车辆为 '%'。" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:632 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:632 msgid "Ignoring stop at '%' until % for vehicle '%'." -msgstr "" +msgstr "忽略停靠站于 '%' 处, 直到(until) %; 车辆为 '%'。" -#: /home/micha/programming/sumo/src/utils/router/IntermodalNetwork.h:637 +#: D:\Repos\sumo/src\utils\router\IntermodalNetwork.h:637 #, c-format msgid "" "Not using public transport line '%' for routing persons. It has less than " "two usable stops." -msgstr "" +msgstr "不使用大众运输路线 '%' 来安排人员的路径。 它只有不到两个可用的停靠点。" -#: /home/micha/programming/sumo/src/utils/router/IntermodalRouter.h:214 -#: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:125 +#: D:\Repos\sumo/src\utils\router\IntermodalRouter.h:220 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:125 msgid "Do not use this method" -msgstr "" +msgstr "不要使用这种方法" -#: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:87 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:87 #, c-format msgid "Departure edge '%' does not allow pedestrians." -msgstr "" +msgstr "出发路段 '%' 不允许行人使用。" -#: /home/micha/programming/sumo/src/utils/router/PedestrianRouter.h:91 +#: D:\Repos\sumo/src\utils\router\PedestrianRouter.h:91 #, c-format msgid "Destination edge '%' does not allow pedestrians." -msgstr "" +msgstr "目的地路段 '%' 不允许行人使用。" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:84 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:84 msgid "Error parsing key from shape generic parameter. Key cannot be empty" -msgstr "" +msgstr "形状通用参数解析密键(key)时, 发生错误。 密键(key)不可以是空的" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:86 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:86 msgid "" "Error parsing key from shape generic parameter. Key contains invalid " "characters" -msgstr "" +msgstr "形状通用参数解析密键(key)时, 发生错误。 密键(key)含有无效字元" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:139 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:139 msgid "Invalid characters for PoI ID" -msgstr "" +msgstr "兴趣点(PoI) '%' 有无效的字元" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:170 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:170 msgid "Either (x, y), (lon, lat) or (lane, pos) must be specified for PoI '%'." msgstr "" +"(x, y), (lon, lat) 或是 (lane, pos)其中之一必须用以指定兴趣点(PoI) '%'。" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:173 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:173 msgid "" "(lon, lat) is specified for PoI '%' but no geo-conversion is specified for " "the network." msgstr "" +"(经度(lon), 纬度(lat)) 用于指定兴趣点(PoI) '%', 但没有为路网指定地理坐标转换" +"(geo-conversion)。" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:185 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:185 msgid "Unable to project coordinates for PoI '%'." -msgstr "" +msgstr "无法投影兴趣点(PoI) '%' 的坐标。" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:191 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:191 #, c-format msgid "PoI '%' already exists." -msgstr "" +msgstr "兴趣点(PoI) '%' 已经存在。" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:209 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:209 msgid "Invalid characters for Poly ID" -msgstr "" +msgstr "多边形识别名(Poly ID)有无效的字元" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:252 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:252 msgid "Polygon's shape cannot be empty." -msgstr "" +msgstr "多边形的形状不可以是空的。" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:257 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:257 msgid "Polygon's lineWidth must be greater than 0." -msgstr "" +msgstr "多边形的线宽(lineWidth) 必须大于 0。" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:262 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:262 #, c-format msgid "Polygon '%' already exists." -msgstr "" +msgstr "多边形 '%' 已经存在。" -#: /home/micha/programming/sumo/src/utils/shapes/ShapeHandler.cpp:279 +#: D:\Repos\sumo/src\utils\shapes\ShapeHandler.cpp:279 #, c-format msgid "Loading of shapes from % failed." -msgstr "" +msgstr "从 % 中载入形状(shapes)失败。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:44 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:44 #, c-format msgid "The node: '%' already exists." -msgstr "" +msgstr "节点: '%' 已经存在。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:239 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:239 msgid "Index of renumbered node exceeded the reduced number of equations." -msgstr "" +msgstr "重新编号的节点的索引(index)超出了已减少的方程式数量。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:250 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:250 msgid "Index of renumbered element exceeded the reduced number of equations." -msgstr "" +msgstr "重新编号的元素的索引(index)超出了已減少的方程式数量。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:257 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:257 msgid "Structural error in reduced circuit matrix." -msgstr "" +msgstr "简化电路矩阵中的结构错误。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:288 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:288 msgid "Initial solution x used during solving DC circuit is out of bounds.\n" -msgstr "" +msgstr "求解 DC 电路时,使用的初始解 x 超出边界限。\n" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:312 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:456 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:312 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:456 msgid "wrongly assigned row of matrix A during solving the circuit" -msgstr "" +msgstr "求解电路时,错误指派矩阵 A 的列(row)" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:354 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:479 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:354 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:479 msgid "The negative node of current source is not the groud." -msgstr "" +msgstr "电流源的负节点不与地面连接。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:508 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:518 -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:526 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:508 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:518 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:526 msgid "Results deployment during circuit evaluation was unsuccessful." -msgstr "" +msgstr "电路评估期间的结果部署不成功。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:576 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:576 msgid "" "Cannot assign unambigous electric current value to two voltage sources " "connected in parallel at the same node." -msgstr "" +msgstr "不能指派明确的电流值给与同一节点平行连结的两个电压源。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:798 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:798 msgid "" "Trying to add resistor element into the overhead wire circuit with " "resistance < 1e-6. " -msgstr "" +msgstr "尝试在电阻 < 1e-6 的架空线电路中增加电阻元素(element)。 " -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:800 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:800 msgid "" "Trying to add resistor element into the overhead wire circuit with " "resistance < 0. " -msgstr "" +msgstr "尝试在电阻 < 0 的架空线电路中增加电阻元素(element)。 " -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:919 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:919 msgid "" "Circuit Voltage Source '%' is connected to less than two nodes, please " "adjust the definition of the section (with substation '%')." -msgstr "" +msgstr "电路电压源 '%' 连接到少于两个节点, 请调整区段定义(具有分站 '%')。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:927 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:927 msgid "" "Circuit Element '%' is connected to less than two nodes, please adjust the " "definition of the section (with substation '%')." -msgstr "" +msgstr "电路元素 '%' 连接到少于两个节点, 请调整区段定义(具有分站 '%')。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:942 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:942 msgid "" "Circuit Node with id '-1' is not the grounded, please adjust the definition " "of the section (with substation '%')." msgstr "" +"带有识别名(id) '-1' 的电路节点未连接到地面, 请调整区段定义(具有分站 '%')。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:966 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:966 msgid "" "A Circuit Resistor Element connects the ground, please adjust the definition " "of the section (with substation '%')." msgstr "" +"电路电阻元素(Circuit Resistor Element)连接地面, 请调整区段定义(具有分站 " +"'%')。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Circuit.cpp:975 +#: D:\Repos\sumo/src\utils\traction_wire\Circuit.cpp:975 msgid "" "Circuit Node or Voltage Source with internal id '%' has been not visited " "during checking of the circuit. The circuit is disconnected, please adjust " "the definition of the section (with substation '%')." msgstr "" +"在电路检查期间,未访问到內部识别名(id)为 '%' 的电路节点或电压源。电路已切断," +"请调整区段(section)定义(具有分站 '%')。" -#: /home/micha/programming/sumo/src/utils/traction_wire/Element.cpp:53 +#: D:\Repos\sumo/src\utils\traction_wire\Element.cpp:53 msgid "Undefined element type for '%'." -msgstr "" +msgstr "'%' 有未定义的元素类型。" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMORouteHandler.cpp:63 +#: D:\Repos\sumo/src\utils\vehicle\SUMORouteHandler.cpp:64 msgid "Route file should be sorted by departure time, ignoring '%'!" -msgstr "" +msgstr "路径文件应按出发时间排序, 忽略 '%'!" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParameter.cpp:653 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParameter.cpp:658 msgid "Invalid % % given for %. Using edge end instead." -msgstr "" +msgstr "无效的 % %给定给 %。 改用路段末端。" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParameter.cpp:703 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParameter.cpp:708 msgid "" "Value of stop attribute 'trigger' must be 'person', 'container', 'join' or a " "boolean" msgstr "" +"停靠属性 'trigger' 的值必须是 '人员(person)', '货柜(container)', '合并" +"(join)'或一个布林值(boolean)" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:268 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:267 msgid "Undefined end for % '%', defaulting to 24hour duration." -msgstr "" +msgstr "% '%' 的结束未定义, 预设为 24 小時持续时间。" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:402 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:401 msgid "Invalid % id '%'." -msgstr "" +msgstr "无效的 % 的识别名(id) '%'。" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:404 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:403 msgid "Invalid % id '%'. Contains invalid characters." -msgstr "" +msgstr "无效的 % 的识别名(id) '%'。 含有无效字元。" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:947 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:946 msgid "Lane change model 'JE2013' is deprecated. Using default model instead." -msgstr "" +msgstr "车道变换模式 'JE2013'已经不适用。 改为使用预设模式。" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1139 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1138 msgid "maneuverAngleTimes format for vType '%' % contains an invalid triplet." msgstr "" +"车辆类型(vType) '%' % 的 maneuverAngleTimes 格式含有一个无效的三个二进制元素" +"位元组(Triplet)。" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1148 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1147 #, c-format msgid "" "Triplet '%' for vType '%' maneuverAngleTimes cannot be parsed as 'int double " "double'" msgstr "" +"maneuverAngleTimes 的三个二进制元素位元组(Triplet) '%' (车辆类型(vType)为%')" +"无法解析为 'int double double'" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1174 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1173 msgid "Unknown car-following model % when parsing vType '%'" -msgstr "" +msgstr "未知的跟车模式 % 出现于解析 vType '%' 的时候" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1176 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1175 msgid "Unknown car-following model when parsing vType '%'" -msgstr "" +msgstr "当解析 vType '%' 时, 未知的跟车模式" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1209 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1225 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1208 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1224 msgid "Invalid Car-Following-Model Attribute %. Cannot be parsed to float" -msgstr "" +msgstr "无效的跟 车模式属性 %。 无法解析为浮点数" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1213 -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1236 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1212 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1235 msgid "Invalid Car-Following-Model Attribute %. Must be greater than 0" -msgstr "" +msgstr "无效的跟车模式属性 %。必须大于 0" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1247 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1246 msgid "" "Invalid Car-Following-Model Attribute %. Only values between [0-1] are " "allowed" -msgstr "" +msgstr "无效的跟车模式属性 %。 只允许 [0-1] 之间的值" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1506 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1505 msgid "Invalid Lane-Change-Model Attribute %. Cannot be parsed to float" -msgstr "" +msgstr "无效的车道变换模式属性 %。 无法解析为浮点数" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1523 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1522 msgid "Invalid Lane-Change-Model Attribute %. Must be equal or greater than 0" -msgstr "" +msgstr "无效的车道变换模式属性 %。必须等于或是大于 0" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1534 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1533 msgid "Invalid Lane-Change-Model Attribute %. Must be greater than 0" -msgstr "" +msgstr "无效的车道变换模式属性 %。 必须大于 0" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1545 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1544 msgid "Invalid Lane-Change-Model Attribute %. Must be between -1 and 1" -msgstr "" +msgstr "无效的车道变换模式属性 %。 必须在 -1与 1 之间" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1591 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1576 msgid "Invalid Junction-Model Attribute %. Cannot be parsed to float" -msgstr "" +msgstr "无效的路口模式属性 %。 无法解析为浮点数" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1600 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1585 msgid "" "Invalid Junction-Model Attribute %. Only values between [0-1] are allowed" -msgstr "" +msgstr "无效的路口模式属性 %。 只允许 [0-1] 之间的值" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1606 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1591 msgid "Invalid Junction-Model Attribute %. Must be equal or greater than 0" -msgstr "" +msgstr "无效的路口模式属性 %。 必须等于或大于 0" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1636 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1621 msgid "The vehicle class '%' for % '%' is not known." -msgstr "" +msgstr "% '%' 的车辆类别(vehicle class)未知。" -#: /home/micha/programming/sumo/src/utils/vehicle/SUMOVehicleParserHelper.cpp:1654 +#: D:\Repos\sumo/src\utils\vehicle\SUMOVehicleParserHelper.cpp:1639 msgid "The shape '%' for % '%' is not known." -msgstr "" +msgstr "% '%' 的形状(shape)未知。" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:271 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:271 msgid "Undefined vehicleType parameter" -msgstr "" +msgstr "未定义的车辆类型(vehicleType)参数" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:281 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:281 msgid "Undefined vehicle parameter" -msgstr "" +msgstr "未定义的车辆参数" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:291 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:291 msgid "Undefined stop parameter" -msgstr "" +msgstr "未定义的停靠点参数(stop parameter)" -#: /home/micha/programming/sumo/src/utils/xml/CommonXMLStructure.cpp:513 +#: D:\Repos\sumo/src\utils\xml\CommonXMLStructure.cpp:513 msgid "Trying to get undefined % attribute '%' in SUMOBaseObject '%'" -msgstr "" +msgstr "尝试在 SUMOBaseObject '%' 中得到未定义的 % 属性 '%'" -#: /home/micha/programming/sumo/src/utils/xml/GenericHandler.cpp:83 -#: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:105 +#: D:\Repos\sumo/src\utils\xml\GenericHandler.cpp:83 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:105 msgid "Found root element '%' in file '%' (expected '%')." -msgstr "" +msgstr "在文件'%' (应为 '%')中找到根元件(root element) '%'。" -#: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:209 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:209 msgid " In file '" -msgstr "" +msgstr " 在文件 '" -#: /home/micha/programming/sumo/src/utils/xml/GenericSAXHandler.cpp:210 +#: D:\Repos\sumo/src\utils\xml\GenericSAXHandler.cpp:210 msgid " At line/column " -msgstr "" +msgstr " 在列/行(line/column) " -#: /home/micha/programming/sumo/src/utils/xml/SAXWeightsHandler.cpp:145 +#: D:\Repos\sumo/src\utils\xml\SAXWeightsHandler.cpp:145 msgid "Missing value '%' in edge '%'." -msgstr "" +msgstr "路段 '%' 中缺少值 '%' 。" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:110 -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:136 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:110 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:136 msgid "Cannot read file '%'!" -msgstr "" +msgstr "无法读取文件 '%'!" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:113 -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:139 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:113 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:139 #, c-format msgid "File '%' is a directory!" -msgstr "" +msgstr "文件 '%' 是一个资料夹!" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:156 -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:165 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:156 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:165 msgid "The XML-parser was not initialized." -msgstr "" +msgstr "XML解析器(parser)无法初始化。" -#: /home/micha/programming/sumo/src/utils/xml/SUMOSAXReader.cpp:191 +#: D:\Repos\sumo/src\utils\xml\SUMOSAXReader.cpp:191 msgid "The XML-parser could not be build." -msgstr "" +msgstr "无法建立XML解析器(parser)。" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:92 -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:98 -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:105 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:92 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:98 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:105 msgid "" "Environment variable SUMO_HOME is not set properly, disabling XML " "validation. Set 'auto' or 'always' for web lookups." msgstr "" +"环境参数 SUMO_HOME 设置不正确,禁用了 XML 验证。设定'自动(auto)'或'一直" +"(always)'进行在网路上查找(web lookups)。" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:111 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:111 msgid "" "Environment variable SUMO_HOME is not set properly, XML validation will fail " "or use slow website lookups." msgstr "" +"环境参数 SUMO_HOME 设置不正确,XML 验证将失败或是使用慢速网站查找(website " +"lookups)。" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:120 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:120 msgid "Cannot read local schema '%'." -msgstr "" +msgstr "无法读取局部纲目(local schema) '%'。" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:167 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:167 msgid "" "Disabling XML validation for external file '%'. Use 'auto' or 'always' to " "enable." msgstr "" +"对外部文件'%'禁用 XML 验证。使用'自动(auto)'或'一直(always)'启用 XML 验证。" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:189 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:189 msgid "Runtime error: % while parsing '%'" -msgstr "" +msgstr "执行期错误: % 发生于解析 '%' 时" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:191 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:191 msgid "Error occurred: % while parsing '%'" -msgstr "" +msgstr "发生错误: % 发生于解析 '%' 时" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:193 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:193 msgid "" "SAX error occured while parsing '%':\n" " %" msgstr "" +"SAX 错误发生于解析 '%' 时:\n" +" %" -#: /home/micha/programming/sumo/src/utils/xml/XMLSubSys.cpp:195 +#: D:\Repos\sumo/src\utils\xml\XMLSubSys.cpp:195 msgid "Unspecified error occurred wile parsing '%'" -msgstr "" +msgstr "当解析'%'时,发生未指定的错误" + +#~ msgid "Could not determine position on lane '% at lateral position %." +#~ msgstr "无法确定车道上的位置'%在横向位置%。" + +#~ msgid "parkingZoneReroute not implemented for meso" +#~ msgstr "停车区改道未在meso中实施" + +#~ msgid "Ignoring departEdge % for vehicle '% with % route edges" +#~ msgstr "忽略车辆的出发路段(departEdge )%,其路线路段为%" + +#~ msgid "" +#~ "Vehicle '%' collision with person '%', lane='%', gap=%, time=%, stage=%." +#~ msgstr "车辆'%'与人'%'相撞,车道='%',差距=%,时间=%,阶段=%。" + +#~ msgid "Vehicle '%' collision with person '%', lane='%', time=%, stage=%." +#~ msgstr "车辆'%'与人'%'发生碰撞,车道='%',时间=%,阶段=%。" + +#~ msgid "Invalid collision.action '%'." +#~ msgstr "无效的碰撞.动作'%'。" + +#~ msgid "" +#~ "Specifies which measures will be logged (as a space or comma-separated " +#~ "sequence of IDs in ('TTC', 'DRAC', 'PET'))" +#~ msgstr "" +#~ "指定将记录哪些指标值(在('TTC', 'DRAC', 'PET')中作为以空格或逗号分隔的识别" +#~ "名(ID)序列)" + +#, c-format +#~ msgid "Edge '% is not unique." +#~ msgstr "路段 '%' 不是唯一的。" #~ msgid "Driver State Device" #~ msgstr "驾驶者状态装置" diff -Nru sumo-1.17.0/data/typemap/osmNetconvertBicycle.typ.xml sumo-1.18.0/data/typemap/osmNetconvertBicycle.typ.xml --- sumo-1.17.0/data/typemap/osmNetconvertBicycle.typ.xml 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/typemap/osmNetconvertBicycle.typ.xml 2023-06-28 20:02:17.000000000 +0000 @@ -1,6 +1,6 @@ - - + + diff -Nru sumo-1.17.0/data/typemap/osmNetconvertRailUsage.typ.xml sumo-1.18.0/data/typemap/osmNetconvertRailUsage.typ.xml --- sumo-1.17.0/data/typemap/osmNetconvertRailUsage.typ.xml 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/typemap/osmNetconvertRailUsage.typ.xml 2023-06-28 20:02:17.000000000 +0000 @@ -7,5 +7,11 @@ + + + + + + diff -Nru sumo-1.17.0/data/typemap/osmNetconvert.typ.xml sumo-1.18.0/data/typemap/osmNetconvert.typ.xml --- sumo-1.17.0/data/typemap/osmNetconvert.typ.xml 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/typemap/osmNetconvert.typ.xml 2023-06-28 20:02:17.000000000 +0000 @@ -21,7 +21,7 @@ - + diff -Nru sumo-1.17.0/data/typemap/osmPolyconvertRail.typ.xml sumo-1.18.0/data/typemap/osmPolyconvertRail.typ.xml --- sumo-1.17.0/data/typemap/osmPolyconvertRail.typ.xml 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/typemap/osmPolyconvertRail.typ.xml 2023-06-28 20:02:17.000000000 +0000 @@ -16,6 +16,7 @@ + diff -Nru sumo-1.17.0/data/xsd/additional_file.xsd sumo-1.18.0/data/xsd/additional_file.xsd --- sumo-1.17.0/data/xsd/additional_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/additional_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -116,7 +116,7 @@ - + @@ -149,17 +149,17 @@ - - - + + + - - - + + + @@ -181,12 +181,13 @@ - + + @@ -196,7 +197,7 @@ - + @@ -285,7 +286,7 @@ - + @@ -374,7 +375,7 @@ - + @@ -392,8 +393,8 @@ - - + + @@ -408,8 +409,8 @@ - - + + @@ -423,14 +424,14 @@ - - + + - - + + - + @@ -440,8 +441,8 @@ - - + + @@ -450,8 +451,8 @@ - - + + @@ -480,7 +481,7 @@ - + @@ -494,29 +495,30 @@ - - + + - + - + + - - - + + + - - + + @@ -529,14 +531,14 @@ - + - + @@ -582,10 +584,10 @@ - + - - + + @@ -597,19 +599,19 @@ - - - - - + + + + + - + - - + + - - + + @@ -625,7 +627,7 @@ - + diff -Nru sumo-1.17.0/data/xsd/baseTypes.xsd sumo-1.18.0/data/xsd/baseTypes.xsd --- sumo-1.17.0/data/xsd/baseTypes.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/baseTypes.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -1,12 +1,17 @@ - + ]> + + + + + + @@ -119,7 +124,7 @@ + value="&FloatPattern;,&FloatPattern;(,&FloatPattern;)?"> @@ -127,7 +132,7 @@ + value="(&FloatPattern;,&FloatPattern;(,&FloatPattern;)?(\s&FloatPattern;,&FloatPattern;(,&FloatPattern;)?)*)?"> @@ -135,7 +140,7 @@ + value="&FloatPattern;,&FloatPattern;(,&FloatPattern;)?\s&FloatPattern;,&FloatPattern;(,&FloatPattern;)?(\s&FloatPattern;,&FloatPattern;(,&FloatPattern;)?)*"> @@ -176,7 +181,7 @@ - + @@ -242,8 +247,8 @@ - - + + @@ -258,8 +263,8 @@ - - + + @@ -273,15 +278,15 @@ - + - + - - + + @@ -295,7 +300,7 @@ - + @@ -303,7 +308,7 @@ - + @@ -337,7 +342,7 @@ - + @@ -403,7 +408,7 @@ - + diff -Nru sumo-1.17.0/data/xsd/battery_file.xsd sumo-1.18.0/data/xsd/battery_file.xsd --- sumo-1.17.0/data/xsd/battery_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/battery_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -21,11 +21,11 @@ - - - - - + + + + + @@ -33,13 +33,13 @@ - - - + + + - + diff -Nru sumo-1.17.0/data/xsd/collision_file.xsd sumo-1.18.0/data/xsd/collision_file.xsd --- sumo-1.17.0/data/xsd/collision_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/collision_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -16,7 +16,7 @@ - + diff -Nru sumo-1.17.0/data/xsd/connections_file.xsd sumo-1.18.0/data/xsd/connections_file.xsd --- sumo-1.17.0/data/xsd/connections_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/connections_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -34,12 +34,12 @@ - - + + - - + + diff -Nru sumo-1.17.0/data/xsd/datamode_file.xsd sumo-1.18.0/data/xsd/datamode_file.xsd --- sumo-1.17.0/data/xsd/datamode_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/datamode_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -24,22 +24,22 @@ - + - - + + - + diff -Nru sumo-1.17.0/data/xsd/det_e1meso_file.xsd sumo-1.18.0/data/xsd/det_e1meso_file.xsd --- sumo-1.17.0/data/xsd/det_e1meso_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/det_e1meso_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -26,7 +26,7 @@ - + @@ -47,7 +47,7 @@ - + diff -Nru sumo-1.17.0/data/xsd/detectors_file.xsd sumo-1.18.0/data/xsd/detectors_file.xsd --- sumo-1.17.0/data/xsd/detectors_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/detectors_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/data/xsd/edgediff_file.xsd sumo-1.18.0/data/xsd/edgediff_file.xsd --- sumo-1.17.0/data/xsd/edgediff_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/edgediff_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -48,7 +48,7 @@ - + diff -Nru sumo-1.17.0/data/xsd/edges_file.xsd sumo-1.18.0/data/xsd/edges_file.xsd --- sumo-1.17.0/data/xsd/edges_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/edges_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -52,7 +52,7 @@ - + diff -Nru sumo-1.17.0/data/xsd/emission_file.xsd sumo-1.18.0/data/xsd/emission_file.xsd --- sumo-1.17.0/data/xsd/emission_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/emission_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -28,7 +28,7 @@ - + @@ -39,10 +39,10 @@ - - - - + + + + diff -Nru sumo-1.17.0/data/xsd/fcd_file.xsd sumo-1.18.0/data/xsd/fcd_file.xsd --- sumo-1.17.0/data/xsd/fcd_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/fcd_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -22,21 +22,21 @@ - - - - + + + + - + - - - + + + diff -Nru sumo-1.17.0/data/xsd/full_file.xsd sumo-1.18.0/data/xsd/full_file.xsd --- sumo-1.17.0/data/xsd/full_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/full_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -57,7 +57,7 @@ - + @@ -76,7 +76,7 @@ - + @@ -85,10 +85,10 @@ - - - - + + + + diff -Nru sumo-1.17.0/data/xsd/meandataTypes.xsd sumo-1.18.0/data/xsd/meandataTypes.xsd --- sumo-1.17.0/data/xsd/meandataTypes.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/meandataTypes.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -33,7 +33,7 @@ - + @@ -52,7 +52,7 @@ - + @@ -60,7 +60,7 @@ - + @@ -68,7 +68,7 @@ - + diff -Nru sumo-1.17.0/data/xsd/netconvertConfiguration.xsd sumo-1.18.0/data/xsd/netconvertConfiguration.xsd --- sumo-1.17.0/data/xsd/netconvertConfiguration.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/netconvertConfiguration.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -1,6 +1,6 @@ - @@ -118,6 +118,7 @@ + @@ -188,6 +189,7 @@ + @@ -290,6 +292,7 @@ + @@ -328,10 +331,12 @@ + + @@ -400,6 +405,7 @@ + diff -Nru sumo-1.17.0/data/xsd/neteditConfiguration.xsd sumo-1.18.0/data/xsd/neteditConfiguration.xsd --- sumo-1.17.0/data/xsd/neteditConfiguration.xsd 1970-01-01 00:00:00.000000000 +0000 +++ sumo-1.18.0/data/xsd/neteditConfiguration.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -0,0 +1,511 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru sumo-1.17.0/data/xsd/net_file.xsd sumo-1.18.0/data/xsd/net_file.xsd --- sumo-1.17.0/data/xsd/net_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/net_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -42,14 +42,14 @@ - + - + @@ -78,7 +78,7 @@ - + @@ -121,9 +121,9 @@ - - - + + + @@ -212,12 +212,12 @@ - - + + - - + + diff -Nru sumo-1.17.0/data/xsd/netgenerateConfiguration.xsd sumo-1.18.0/data/xsd/netgenerateConfiguration.xsd --- sumo-1.17.0/data/xsd/netgenerateConfiguration.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/netgenerateConfiguration.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -1,6 +1,6 @@ - @@ -125,6 +125,7 @@ + @@ -177,6 +178,7 @@ + @@ -255,6 +257,7 @@ + diff -Nru sumo-1.17.0/data/xsd/netstate_file.xsd sumo-1.18.0/data/xsd/netstate_file.xsd --- sumo-1.17.0/data/xsd/netstate_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/netstate_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -46,8 +46,8 @@ - - + + @@ -56,7 +56,7 @@ - + @@ -64,7 +64,7 @@ - + diff -Nru sumo-1.17.0/data/xsd/nodes_file.xsd sumo-1.18.0/data/xsd/nodes_file.xsd --- sumo-1.17.0/data/xsd/nodes_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/nodes_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -33,9 +33,9 @@ - - - + + + diff -Nru sumo-1.17.0/data/xsd/person_summary_file.xsd sumo-1.18.0/data/xsd/person_summary_file.xsd --- sumo-1.17.0/data/xsd/person_summary_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/person_summary_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -23,7 +23,7 @@ - + diff -Nru sumo-1.17.0/data/xsd/ptlines_file.xsd sumo-1.18.0/data/xsd/ptlines_file.xsd --- sumo-1.17.0/data/xsd/ptlines_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/ptlines_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -31,7 +31,7 @@ - + diff -Nru sumo-1.17.0/data/xsd/routeTypes.xsd sumo-1.18.0/data/xsd/routeTypes.xsd --- sumo-1.17.0/data/xsd/routeTypes.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/routeTypes.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -51,13 +51,13 @@ - - - - - - - + + + + + + + @@ -70,13 +70,13 @@ - + - - + + @@ -121,32 +121,32 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + @@ -175,41 +175,41 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -233,16 +233,16 @@ - - - + + + - + @@ -250,8 +250,8 @@ - - + + @@ -259,7 +259,7 @@ - + @@ -313,11 +313,11 @@ - - - - - + + + + + @@ -332,8 +332,8 @@ - - + + @@ -348,85 +348,85 @@ - - + + - - + + - - - - - - - - - + + + + + + + + + - - - - - - - + + + + + + + - - + + - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -752,11 +752,11 @@ - - + + - + @@ -767,9 +767,9 @@ - - - + + + @@ -780,6 +780,9 @@ + + + @@ -787,9 +790,9 @@ - - - + + + @@ -819,7 +822,7 @@ - + @@ -921,11 +924,11 @@ - - + + - + @@ -954,8 +957,8 @@ - - + + @@ -1009,11 +1012,11 @@ - - + + - + @@ -1032,8 +1035,8 @@ - - + + diff -Nru sumo-1.17.0/data/xsd/state_file.xsd sumo-1.18.0/data/xsd/state_file.xsd --- sumo-1.17.0/data/xsd/state_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/state_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -57,7 +57,7 @@ - + @@ -114,9 +114,9 @@ - + - + @@ -190,14 +190,14 @@ - - + + - + - - + + diff -Nru sumo-1.17.0/data/xsd/statistic_file.xsd sumo-1.18.0/data/xsd/statistic_file.xsd --- sumo-1.17.0/data/xsd/statistic_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/statistic_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -32,6 +32,7 @@ + diff -Nru sumo-1.17.0/data/xsd/stopinfo_file.xsd sumo-1.18.0/data/xsd/stopinfo_file.xsd --- sumo-1.17.0/data/xsd/stopinfo_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/stopinfo_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -19,10 +19,10 @@ - + - - + + diff -Nru sumo-1.17.0/data/xsd/summary_file.xsd sumo-1.18.0/data/xsd/summary_file.xsd --- sumo-1.17.0/data/xsd/summary_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/summary_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -23,11 +23,11 @@ - - - - - + + + + + diff -Nru sumo-1.17.0/data/xsd/sumoConfiguration.xsd sumo-1.18.0/data/xsd/sumoConfiguration.xsd --- sumo-1.17.0/data/xsd/sumoConfiguration.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/sumoConfiguration.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -1,6 +1,6 @@ - @@ -159,7 +159,9 @@ + + @@ -318,6 +320,17 @@ + + + + + + + + + + + @@ -344,10 +357,12 @@ + + diff -Nru sumo-1.17.0/data/xsd/tazTypes.xsd sumo-1.18.0/data/xsd/tazTypes.xsd --- sumo-1.17.0/data/xsd/tazTypes.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/tazTypes.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -20,7 +20,7 @@ - + diff -Nru sumo-1.17.0/data/xsd/tripinfo_file.xsd sumo-1.18.0/data/xsd/tripinfo_file.xsd --- sumo-1.17.0/data/xsd/tripinfo_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/tripinfo_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -25,13 +25,13 @@ - + - + @@ -62,8 +62,8 @@ - - + + @@ -75,7 +75,7 @@ - + diff -Nru sumo-1.17.0/data/xsd/viewsettings_file.xsd sumo-1.18.0/data/xsd/viewsettings_file.xsd --- sumo-1.17.0/data/xsd/viewsettings_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/viewsettings_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -18,17 +18,17 @@ - + - - - - - - - + + + + + + + @@ -37,35 +37,35 @@ - + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + diff -Nru sumo-1.17.0/data/xsd/vtypeprobe_file.xsd sumo-1.18.0/data/xsd/vtypeprobe_file.xsd --- sumo-1.17.0/data/xsd/vtypeprobe_file.xsd 2023-04-24 20:20:44.000000000 +0000 +++ sumo-1.18.0/data/xsd/vtypeprobe_file.xsd 2023-06-28 20:02:17.000000000 +0000 @@ -23,11 +23,11 @@ - - - - - + + + + + diff -Nru sumo-1.17.0/debian/changelog sumo-1.18.0/debian/changelog --- sumo-1.17.0/debian/changelog 2023-04-25 12:06:22.000000000 +0000 +++ sumo-1.18.0/debian/changelog 2023-06-29 07:17:39.000000000 +0000 @@ -1,4 +1,10 @@ -sumo (1.17.0-1~kinetic) kinetic; urgency=medium +sumo (1.18.0-1~kinetic) kinetic; urgency=medium + + * new upstream version + + -- Michael Behrisch Thu, 29 Jun 2023 09:17:39 +0200 + +sumo (1.17.0-1) focal; urgency=medium * new upstream version diff -Nru sumo-1.17.0/docs/examples/dfrouter/test.dfrocfg sumo-1.18.0/docs/examples/dfrouter/test.dfrocfg --- sumo-1.17.0/docs/examples/dfrouter/test.dfrocfg 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/examples/dfrouter/test.dfrocfg 2023-06-28 22:08:06.000000000 +0000 @@ -1,6 +1,6 @@ - - + All Classes (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/allclasses-index.html sumo-1.18.0/docs/javadoc/traas/allclasses-index.html --- sumo-1.17.0/docs/javadoc/traas/allclasses-index.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/allclasses-index.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + All Classes (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/allpackages-index.html sumo-1.18.0/docs/javadoc/traas/allpackages-index.html --- sumo-1.17.0/docs/javadoc/traas/allpackages-index.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/allpackages-index.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + All Packages (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/constant-values.html sumo-1.18.0/docs/javadoc/traas/constant-values.html --- sumo-1.17.0/docs/javadoc/traas/constant-values.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/constant-values.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Constant Field Values (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + @@ -3157,860 +3157,867 @@ 147 + + +public static final int +VAR_IMPATIENCE +38 + + public static final int VAR_IMPERFECTION 93 - + public static final int VAR_INSERTED 21 - + public static final int VAR_INTERVAL_IDS 38 - + public static final int VAR_INTERVAL_MAX_JAM_LENGTH_METERS 50 - + public static final int VAR_INTERVAL_NUMBER 37 - + public static final int VAR_INTERVAL_OCCUPANCY 35 - + public static final int VAR_INTERVAL_SPEED 36 - + public static final int VAR_LANE_ID 81 - + public static final int VAR_LANE_INDEX 82 - + public static final int VAR_LANECHANGE_MODE 182 - + public static final int VAR_LANEPOSITION 86 - + public static final int VAR_LANEPOSITION_LAT 184 - + public static final int VAR_LANES 48 - + public static final int VAR_LAST_INTERVAL_IDS 42 - + public static final int VAR_LAST_INTERVAL_MAX_JAM_LENGTH_METERS 51 - + public static final int VAR_LAST_INTERVAL_MEAN_HALTING_NUMBER 32 - + public static final int VAR_LAST_INTERVAL_NUMBER 41 - + public static final int VAR_LAST_INTERVAL_OCCUPANCY 39 - + public static final int VAR_LAST_INTERVAL_SPEED 40 - + public static final int VAR_LAST_INTERVAL_TRAVELTIME 88 - + public static final int VAR_LAST_INTERVAL_VEHICLE_NUMBER 33 - + public static final int VAR_LASTACTIONTIME 127 - + public static final int VAR_LATALIGNMENT 185 - + public static final int VAR_LEADER 104 - + public static final int VAR_LENGTH 68 - + public static final int VAR_LINE 189 - + public static final int VAR_LOADED_LIST 36 - + public static final int VAR_LOADED_VEHICLES_IDS 114 - + public static final int VAR_LOADED_VEHICLES_NUMBER 113 - + public static final int VAR_MAXSPEED 65 - + public static final int VAR_MAXSPEED_LAT 186 - + public static final int VAR_MIN_EXPECTED_VEHICLES 125 - + public static final int VAR_MINGAP 76 - + public static final int VAR_MINGAP_LAT 187 - + public static final int VAR_MOVE_TO 92 - + public static final int VAR_NAME 27 - + public static final int VAR_NEIGHBORS 191 - + public static final int VAR_NET_BOUNDING_BOX 124 - + public static final int VAR_NEXT_EDGE 193 - + public static final int VAR_NEXT_LINKS 51 - + public static final int VAR_NEXT_STOPS 115 - + public static final int VAR_NEXT_STOPS2 116 - + public static final int VAR_NEXT_TLS 112 - + public static final int VAR_NOISEEMISSION 102 - + public static final int VAR_NOXEMISSION 100 - + public static final int VAR_OPTION 50 - + public static final int VAR_PARAMETER 126 - + public static final int VAR_PARAMETER_WITH_KEY 62 - + public static final int VAR_PARKING_ENDING_VEHICLES_IDS 111 - + public static final int VAR_PARKING_ENDING_VEHICLES_NUMBER 110 - + public static final int VAR_PARKING_MANEUVERING_VEHICLES_IDS 59 - + public static final int VAR_PARKING_MANEUVERING_VEHICLES_NUMBER 58 - + public static final int VAR_PARKING_STARTING_VEHICLES_IDS 109 - + public static final int VAR_PARKING_STARTING_VEHICLES_NUMBER 108 - + public static final int VAR_PASSED 20 - + public static final int VAR_PENDING_VEHICLES 148 - + public static final int VAR_PERSON_CAPACITY 56 - + public static final int VAR_PERSON_NUMBER 103 - + public static final int VAR_PMXEMISSION 99 - + public static final int VAR_POSITION 66 - + public static final int VAR_POSITION3D 57 - + public static final int VAR_PREV_SPEED 60 - + public static final int VAR_REMOVED 22 - + public static final int VAR_ROAD_ID 80 - + public static final int VAR_ROUTE 87 - + public static final int VAR_ROUTE_ID 83 - + public static final int VAR_ROUTE_INDEX 105 - + public static final int VAR_ROUTE_PROBE 23 - + public static final int VAR_ROUTE_VALID 146 - + public static final int VAR_ROUTING_MODE 137 - + public static final int VAR_SAMPLE_CURRENT 33 - + public static final int VAR_SAMPLE_LAST 32 - + public static final int VAR_SCALE 142 - + public static final int VAR_SCREENSHOT 165 - + public static final int VAR_SECURE_GAP 30 - + public static final int VAR_SELECT 164 - + public static final int VAR_SHAPE 78 - + public static final int VAR_SHAPECLASS 75 - + public static final int VAR_SIGNALS 91 - + public static final int VAR_SLOPE 54 - + public static final int VAR_SPEED 64 - + public static final int VAR_SPEED_DEVIATION 95 - + public static final int VAR_SPEED_FACTOR 94 - + public static final int VAR_SPEED_LAT 50 - + public static final int VAR_SPEED_WITHOUT_TRACI 177 - + public static final int VAR_SPEEDSETMODE 179 - + public static final int VAR_STAGE 192 - + public static final int VAR_STAGES_REMAINING 194 - + public static final int VAR_STOP_ARRIVALDELAY 34 - + public static final int VAR_STOP_DELAY 31 - + public static final int VAR_STOP_ENDING_VEHICLES_IDS 107 - + public static final int VAR_STOP_ENDING_VEHICLES_NUMBER 106 - + public static final int VAR_STOP_PARAMETER 85 - + public static final int VAR_STOP_SPEED 29 - + public static final int VAR_STOP_STARTING_VEHICLES_IDS 105 - + public static final int VAR_STOP_STARTING_VEHICLES_NUMBER 104 - + public static final int VAR_STOPSTATE 181 - + public static final int VAR_TAU 72 - + public static final int VAR_TAXI_FLEET 32 - + public static final int VAR_TAXI_RESERVATIONS 198 - + public static final int VAR_TELEPORT_ENDING_VEHICLES_IDS 120 - + public static final int VAR_TELEPORT_ENDING_VEHICLES_NUMBER 119 - + public static final int VAR_TELEPORT_STARTING_VEHICLES_IDS 118 - + public static final int VAR_TELEPORT_STARTING_VEHICLES_NUMBER 117 - + public static final int VAR_TELEPORTING_LIST 37 - + public static final int VAR_TIME 102 - + public static final int VAR_TIME_STEP 112 - + public static final int VAR_TIMELOSS 140 - + public static final int VAR_TRACK_VEHICLE 166 - + public static final int VAR_TYPE 79 - + public static final int VAR_UPDATE_BESTLANES 106 - + public static final int VAR_VEHICLE 195 - + public static final int VAR_VEHICLECLASS 73 - + public static final int VAR_VEHSPERHOUR 19 - + public static final int VAR_VIA 190 - + public static final int VAR_VIEW_BOUNDARY 163 - + public static final int VAR_VIEW_OFFSET 161 - + public static final int VAR_VIEW_SCHEMA 162 - + public static final int VAR_VIEW_ZOOM 160 - + public static final int VAR_VIRTUAL_DETECTION 34 - + public static final int VAR_VTYPES 30 - + public static final int VAR_WAITING_TIME 122 - + public static final int diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Edge.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Edge.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Edge.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Edge.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.cmd.Edge (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Gui.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Gui.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Gui.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Gui.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.cmd.Gui (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Inductionloop.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Inductionloop.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Inductionloop.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Inductionloop.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.cmd.Inductionloop (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Junction.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Junction.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Junction.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Junction.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.cmd.Junction (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Lanearea.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Lanearea.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Lanearea.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Lanearea.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.cmd.Lanearea (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Lane.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Lane.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Lane.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Lane.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.cmd.Lane (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Multientryexit.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Multientryexit.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Multientryexit.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Multientryexit.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.cmd.Multientryexit (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Person.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Person.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Person.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Person.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.cmd.Person (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Poi.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Poi.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Poi.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Poi.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.cmd.Poi (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Polygon.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Polygon.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Polygon.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Polygon.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.cmd.Polygon (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Route.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Route.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Route.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Route.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.cmd.Route (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Simulation.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Simulation.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Simulation.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Simulation.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.cmd.Simulation (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Trafficlight.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Trafficlight.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Trafficlight.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Trafficlight.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.cmd.Trafficlight (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Vehicle.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Vehicle.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Vehicle.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Vehicle.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.cmd.Vehicle (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Vehicletype.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Vehicletype.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Vehicletype.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/class-use/Vehicletype.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.cmd.Vehicletype (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Edge.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Edge.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Edge.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Edge.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Edge (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Gui.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Gui.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Gui.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Gui.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Gui (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Inductionloop.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Inductionloop.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Inductionloop.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Inductionloop.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Inductionloop (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Junction.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Junction.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Junction.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Junction.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Junction (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Lanearea.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Lanearea.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Lanearea.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Lanearea.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Lanearea (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Lane.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Lane.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Lane.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Lane.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Lane (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Multientryexit.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Multientryexit.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Multientryexit.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Multientryexit.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Multientryexit (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/package-summary.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/package-summary.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/package-summary.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/package-summary.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + de.tudresden.sumo.cmd (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/package-tree.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/package-tree.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/package-tree.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/package-tree.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + de.tudresden.sumo.cmd Class Hierarchy (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/package-use.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/package-use.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/package-use.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/package-use.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Package de.tudresden.sumo.cmd (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Person.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Person.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Person.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Person.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Person (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Poi.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Poi.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Poi.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Poi.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Poi (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Polygon.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Polygon.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Polygon.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Polygon.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Polygon (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Route.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Route.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Route.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Route.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Route (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Simulation.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Simulation.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Simulation.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Simulation.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Simulation (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Trafficlight.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Trafficlight.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Trafficlight.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Trafficlight.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Trafficlight (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Vehicle.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Vehicle.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Vehicle.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Vehicle.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Vehicle (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Vehicletype.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Vehicletype.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Vehicletype.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/cmd/Vehicletype.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Vehicletype (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/config/class-use/Constants.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/config/class-use/Constants.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/config/class-use/Constants.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/config/class-use/Constants.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.config.Constants (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/config/Constants.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/config/Constants.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/config/Constants.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/config/Constants.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Constants (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + @@ -2321,616 +2321,621 @@ static int -VAR_IMPERFECTION +VAR_IMPATIENCE   static int -VAR_INSERTED +VAR_IMPERFECTION   static int -VAR_INTERVAL_IDS +VAR_INSERTED   static int -VAR_INTERVAL_MAX_JAM_LENGTH_METERS +VAR_INTERVAL_IDS   static int -VAR_INTERVAL_NUMBER +VAR_INTERVAL_MAX_JAM_LENGTH_METERS   static int -VAR_INTERVAL_OCCUPANCY +VAR_INTERVAL_NUMBER   static int -VAR_INTERVAL_SPEED +VAR_INTERVAL_OCCUPANCY   static int -VAR_LANE_ID +VAR_INTERVAL_SPEED   static int -VAR_LANE_INDEX +VAR_LANE_ID   static int -VAR_LANECHANGE_MODE +VAR_LANE_INDEX   static int -VAR_LANEPOSITION +VAR_LANECHANGE_MODE   static int -VAR_LANEPOSITION_LAT +VAR_LANEPOSITION   static int -VAR_LANES +VAR_LANEPOSITION_LAT   static int -VAR_LAST_INTERVAL_IDS +VAR_LANES   static int -VAR_LAST_INTERVAL_MAX_JAM_LENGTH_METERS +VAR_LAST_INTERVAL_IDS   static int -VAR_LAST_INTERVAL_MEAN_HALTING_NUMBER +VAR_LAST_INTERVAL_MAX_JAM_LENGTH_METERS   static int -VAR_LAST_INTERVAL_NUMBER +VAR_LAST_INTERVAL_MEAN_HALTING_NUMBER   static int -VAR_LAST_INTERVAL_OCCUPANCY +VAR_LAST_INTERVAL_NUMBER   static int -VAR_LAST_INTERVAL_SPEED +VAR_LAST_INTERVAL_OCCUPANCY   static int -VAR_LAST_INTERVAL_TRAVELTIME +VAR_LAST_INTERVAL_SPEED   static int -VAR_LAST_INTERVAL_VEHICLE_NUMBER +VAR_LAST_INTERVAL_TRAVELTIME   static int -VAR_LASTACTIONTIME +VAR_LAST_INTERVAL_VEHICLE_NUMBER   static int -VAR_LATALIGNMENT +VAR_LASTACTIONTIME   static int -VAR_LEADER +VAR_LATALIGNMENT   static int -VAR_LENGTH +VAR_LEADER   static int -VAR_LINE +VAR_LENGTH   static int -VAR_LOADED_LIST +VAR_LINE   static int -VAR_LOADED_VEHICLES_IDS +VAR_LOADED_LIST   static int -VAR_LOADED_VEHICLES_NUMBER +VAR_LOADED_VEHICLES_IDS   static int -VAR_MAXSPEED +VAR_LOADED_VEHICLES_NUMBER   static int -VAR_MAXSPEED_LAT +VAR_MAXSPEED   static int -VAR_MIN_EXPECTED_VEHICLES +VAR_MAXSPEED_LAT   static int -VAR_MINGAP +VAR_MIN_EXPECTED_VEHICLES   static int -VAR_MINGAP_LAT +VAR_MINGAP   static int -VAR_MOVE_TO +VAR_MINGAP_LAT   static int -VAR_NAME +VAR_MOVE_TO   static int -VAR_NEIGHBORS +VAR_NAME   static int -VAR_NET_BOUNDING_BOX +VAR_NEIGHBORS   static int -VAR_NEXT_EDGE +VAR_NET_BOUNDING_BOX   static int -VAR_NEXT_LINKS +VAR_NEXT_EDGE   static int -VAR_NEXT_STOPS +VAR_NEXT_LINKS   static int -VAR_NEXT_STOPS2 +VAR_NEXT_STOPS   static int -VAR_NEXT_TLS +VAR_NEXT_STOPS2   static int -VAR_NOISEEMISSION +VAR_NEXT_TLS   static int -VAR_NOXEMISSION +VAR_NOISEEMISSION   static int -VAR_OPTION +VAR_NOXEMISSION   static int -VAR_PARAMETER +VAR_OPTION   static int -VAR_PARAMETER_WITH_KEY +VAR_PARAMETER   static int -VAR_PARKING_ENDING_VEHICLES_IDS +VAR_PARAMETER_WITH_KEY   static int -VAR_PARKING_ENDING_VEHICLES_NUMBER +VAR_PARKING_ENDING_VEHICLES_IDS   static int -VAR_PARKING_MANEUVERING_VEHICLES_IDS +VAR_PARKING_ENDING_VEHICLES_NUMBER   static int -VAR_PARKING_MANEUVERING_VEHICLES_NUMBER +VAR_PARKING_MANEUVERING_VEHICLES_IDS   static int -VAR_PARKING_STARTING_VEHICLES_IDS +VAR_PARKING_MANEUVERING_VEHICLES_NUMBER   static int -VAR_PARKING_STARTING_VEHICLES_NUMBER +VAR_PARKING_STARTING_VEHICLES_IDS   static int -VAR_PASSED +VAR_PARKING_STARTING_VEHICLES_NUMBER   static int -VAR_PENDING_VEHICLES +VAR_PASSED   static int -VAR_PERSON_CAPACITY +VAR_PENDING_VEHICLES   static int -VAR_PERSON_NUMBER +VAR_PERSON_CAPACITY   static int -VAR_PMXEMISSION +VAR_PERSON_NUMBER   static int -VAR_POSITION +VAR_PMXEMISSION   static int -VAR_POSITION3D +VAR_POSITION   static int -VAR_PREV_SPEED +VAR_POSITION3D   static int -VAR_REMOVED +VAR_PREV_SPEED   static int -VAR_ROAD_ID +VAR_REMOVED   static int -VAR_ROUTE +VAR_ROAD_ID   static int -VAR_ROUTE_ID +VAR_ROUTE   static int -VAR_ROUTE_INDEX +VAR_ROUTE_ID   static int -VAR_ROUTE_PROBE +VAR_ROUTE_INDEX   static int -VAR_ROUTE_VALID +VAR_ROUTE_PROBE   static int -VAR_ROUTING_MODE +VAR_ROUTE_VALID   static int -VAR_SAMPLE_CURRENT +VAR_ROUTING_MODE   static int -VAR_SAMPLE_LAST +VAR_SAMPLE_CURRENT   static int -VAR_SCALE +VAR_SAMPLE_LAST   static int -VAR_SCREENSHOT +VAR_SCALE   static int -VAR_SECURE_GAP +VAR_SCREENSHOT   static int -VAR_SELECT +VAR_SECURE_GAP   static int -VAR_SHAPE +VAR_SELECT   static int -VAR_SHAPECLASS +VAR_SHAPE   static int -VAR_SIGNALS +VAR_SHAPECLASS   static int -VAR_SLOPE +VAR_SIGNALS   static int -VAR_SPEED +VAR_SLOPE   static int -VAR_SPEED_DEVIATION +VAR_SPEED   static int -VAR_SPEED_FACTOR +VAR_SPEED_DEVIATION   static int -VAR_SPEED_LAT +VAR_SPEED_FACTOR   static int -VAR_SPEED_WITHOUT_TRACI +VAR_SPEED_LAT   static int -VAR_SPEEDSETMODE +VAR_SPEED_WITHOUT_TRACI   static int -VAR_STAGE +VAR_SPEEDSETMODE   static int -VAR_STAGES_REMAINING +VAR_STAGE   static int -VAR_STOP_ARRIVALDELAY +VAR_STAGES_REMAINING   static int -VAR_STOP_DELAY +VAR_STOP_ARRIVALDELAY   static int -VAR_STOP_ENDING_VEHICLES_IDS +VAR_STOP_DELAY   static int -VAR_STOP_ENDING_VEHICLES_NUMBER +VAR_STOP_ENDING_VEHICLES_IDS   static int -VAR_STOP_PARAMETER +VAR_STOP_ENDING_VEHICLES_NUMBER   static int -VAR_STOP_SPEED +VAR_STOP_PARAMETER   static int -VAR_STOP_STARTING_VEHICLES_IDS +VAR_STOP_SPEED   static int -VAR_STOP_STARTING_VEHICLES_NUMBER +VAR_STOP_STARTING_VEHICLES_IDS   static int -VAR_STOPSTATE +VAR_STOP_STARTING_VEHICLES_NUMBER   static int -VAR_TAU +VAR_STOPSTATE   static int -VAR_TAXI_FLEET +VAR_TAU   static int -VAR_TAXI_RESERVATIONS +VAR_TAXI_FLEET   static int -VAR_TELEPORT_ENDING_VEHICLES_IDS +VAR_TAXI_RESERVATIONS   static int -VAR_TELEPORT_ENDING_VEHICLES_NUMBER +VAR_TELEPORT_ENDING_VEHICLES_IDS   static int -VAR_TELEPORT_STARTING_VEHICLES_IDS +VAR_TELEPORT_ENDING_VEHICLES_NUMBER   static int -VAR_TELEPORT_STARTING_VEHICLES_NUMBER +VAR_TELEPORT_STARTING_VEHICLES_IDS   static int -VAR_TELEPORTING_LIST +VAR_TELEPORT_STARTING_VEHICLES_NUMBER   static int -VAR_TIME +VAR_TELEPORTING_LIST   static int -VAR_TIME_STEP +VAR_TIME   static int -VAR_TIMELOSS +VAR_TIME_STEP   static int -VAR_TRACK_VEHICLE +VAR_TIMELOSS   static int -VAR_TYPE +VAR_TRACK_VEHICLE   static int -VAR_UPDATE_BESTLANES +VAR_TYPE   static int -VAR_VEHICLE +VAR_UPDATE_BESTLANES   static int -VAR_VEHICLECLASS +VAR_VEHICLE   static int -VAR_VEHSPERHOUR +VAR_VEHICLECLASS   static int -VAR_VIA +VAR_VEHSPERHOUR   static int -VAR_VIEW_BOUNDARY +VAR_VIA   static int -VAR_VIEW_OFFSET +VAR_VIEW_BOUNDARY   static int -VAR_VIEW_SCHEMA +VAR_VIEW_OFFSET   static int -VAR_VIEW_ZOOM +VAR_VIEW_SCHEMA   static int -VAR_VIRTUAL_DETECTION +VAR_VIEW_ZOOM   static int -VAR_VTYPES +VAR_VIRTUAL_DETECTION   static int -VAR_WAITING_TIME +VAR_VTYPES   static int +VAR_WAITING_TIME +  + + +static int VAR_WIDTH   @@ -8566,6 +8571,19 @@ + + + + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/config/package-summary.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/config/package-summary.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/config/package-summary.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/config/package-summary.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + de.tudresden.sumo.config (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/config/package-tree.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/config/package-tree.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/config/package-tree.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/config/package-tree.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + de.tudresden.sumo.config Class Hierarchy (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/config/package-use.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/config/package-use.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/config/package-use.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/config/package-use.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Package de.tudresden.sumo.config (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoBestLanes.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoBestLanes.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoBestLanes.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoBestLanes.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoBestLanes (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoBestLanes.SumoBestLane.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoBestLanes.SumoBestLane.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoBestLanes.SumoBestLane.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoBestLanes.SumoBestLane.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoBestLanes.SumoBestLane (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoBoundingBox.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoBoundingBox.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoBoundingBox.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoBoundingBox.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoBoundingBox (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoColor.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoColor.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoColor.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoColor.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoColor (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoGeometry.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoGeometry.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoGeometry.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoGeometry.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoGeometry (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoLeader.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoLeader.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoLeader.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoLeader.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoLeader (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoLink.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoLink.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoLink.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoLink.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoLink (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoLinkList.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoLinkList.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoLinkList.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoLinkList.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoLinkList (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoNextTLS.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoNextTLS.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoNextTLS.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoNextTLS.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoNextTLS (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoNextTLS.NextTLS.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoNextTLS.NextTLS.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoNextTLS.NextTLS.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoNextTLS.NextTLS.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoNextTLS.NextTLS (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoObject.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoObject.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoObject.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoObject.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Interface de.tudresden.sumo.objects.SumoObject (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoPosition2D.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoPosition2D.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoPosition2D.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoPosition2D.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoPosition2D (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoPosition3D.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoPosition3D.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoPosition3D.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoPosition3D.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoPosition3D (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoPrimitive.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoPrimitive.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoPrimitive.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoPrimitive.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoPrimitive (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoRoadPosition.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoRoadPosition.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoRoadPosition.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoRoadPosition.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoRoadPosition (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoStage.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoStage.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoStage.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoStage.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoStage (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoStopFlags.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoStopFlags.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoStopFlags.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoStopFlags.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoStopFlags (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoStringList.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoStringList.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoStringList.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoStringList.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoStringList (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoTLSController.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoTLSController.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoTLSController.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoTLSController.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoTLSController (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoTLSPhase.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoTLSPhase.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoTLSPhase.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoTLSPhase.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoTLSPhase (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoTLSProgram.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoTLSProgram.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoTLSProgram.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoTLSProgram.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoTLSProgram (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoTrafficLightType.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoTrafficLightType.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoTrafficLightType.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoTrafficLightType.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoTrafficLightType (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoVehicleData.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoVehicleData.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoVehicleData.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoVehicleData.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoVehicleData (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoVehicleData.VehicleData.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoVehicleData.VehicleData.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoVehicleData.VehicleData.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoVehicleData.VehicleData.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoVehicleData.VehicleData (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoVehicleSignal.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoVehicleSignal.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoVehicleSignal.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoVehicleSignal.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoVehicleSignal (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoVehicleSignalState.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoVehicleSignalState.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoVehicleSignalState.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/class-use/SumoVehicleSignalState.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.objects.SumoVehicleSignalState (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/package-summary.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/package-summary.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/package-summary.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/package-summary.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + de.tudresden.sumo.objects (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/package-tree.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/package-tree.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/package-tree.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/package-tree.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + de.tudresden.sumo.objects Class Hierarchy (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/package-use.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/package-use.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/package-use.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/package-use.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Package de.tudresden.sumo.objects (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoBestLanes.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoBestLanes.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoBestLanes.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoBestLanes.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoBestLanes (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoBestLanes.SumoBestLane.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoBestLanes.SumoBestLane.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoBestLanes.SumoBestLane.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoBestLanes.SumoBestLane.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoBestLanes.SumoBestLane (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoBoundingBox.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoBoundingBox.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoBoundingBox.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoBoundingBox.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoBoundingBox (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoColor.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoColor.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoColor.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoColor.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoColor (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoGeometry.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoGeometry.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoGeometry.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoGeometry.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoGeometry (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoLeader.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoLeader.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoLeader.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoLeader.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoLeader (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoLink.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoLink.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoLink.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoLink.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoLink (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoLinkList.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoLinkList.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoLinkList.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoLinkList.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoLinkList (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoNextTLS.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoNextTLS.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoNextTLS.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoNextTLS.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoNextTLS (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoNextTLS.NextTLS.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoNextTLS.NextTLS.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoNextTLS.NextTLS.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoNextTLS.NextTLS.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoNextTLS.NextTLS (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoObject.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoObject.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoObject.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoObject.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoObject (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoPosition2D.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoPosition2D.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoPosition2D.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoPosition2D.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoPosition2D (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoPosition3D.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoPosition3D.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoPosition3D.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoPosition3D.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoPosition3D (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoPrimitive.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoPrimitive.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoPrimitive.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoPrimitive.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoPrimitive (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoRoadPosition.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoRoadPosition.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoRoadPosition.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoRoadPosition.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoRoadPosition (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoStage.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoStage.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoStage.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoStage.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoStage (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoStopFlags.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoStopFlags.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoStopFlags.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoStopFlags.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoStopFlags (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoStringList.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoStringList.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoStringList.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoStringList.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoStringList (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoTLSController.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoTLSController.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoTLSController.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoTLSController.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoTLSController (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoTLSPhase.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoTLSPhase.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoTLSPhase.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoTLSPhase.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoTLSPhase (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoTLSProgram.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoTLSProgram.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoTLSProgram.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoTLSProgram.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoTLSProgram (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoTrafficLightType.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoTrafficLightType.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoTrafficLightType.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoTrafficLightType.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoTrafficLightType (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoVehicleData.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoVehicleData.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoVehicleData.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoVehicleData.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoVehicleData (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoVehicleData.VehicleData.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoVehicleData.VehicleData.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoVehicleData.VehicleData.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoVehicleData.VehicleData.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoVehicleData.VehicleData (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoVehicleSignal.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoVehicleSignal.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoVehicleSignal.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoVehicleSignal.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoVehicleSignal (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoVehicleSignalState.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoVehicleSignalState.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoVehicleSignalState.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/objects/SumoVehicleSignalState.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoVehicleSignalState (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/ContextSubscription.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/ContextSubscription.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/ContextSubscription.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/ContextSubscription.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.subscription.ContextSubscription (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/ResponseType.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/ResponseType.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/ResponseType.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/ResponseType.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.subscription.ResponseType (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/SubscribtionVariable.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/SubscribtionVariable.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/SubscribtionVariable.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/SubscribtionVariable.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.subscription.SubscribtionVariable (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/SubscriptionContext.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/SubscriptionContext.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/SubscriptionContext.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/SubscriptionContext.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.subscription.SubscriptionContext (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/Subscription.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/Subscription.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/Subscription.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/Subscription.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Interface de.tudresden.sumo.subscription.Subscription (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/SubscriptionObject.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/SubscriptionObject.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/SubscriptionObject.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/SubscriptionObject.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.subscription.SubscriptionObject (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/SumoDomain.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/SumoDomain.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/SumoDomain.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/SumoDomain.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.subscription.SumoDomain (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/VariableSubscription.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/VariableSubscription.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/VariableSubscription.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/class-use/VariableSubscription.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.subscription.VariableSubscription (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/ContextSubscription.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/ContextSubscription.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/ContextSubscription.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/ContextSubscription.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + ContextSubscription (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/package-summary.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/package-summary.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/package-summary.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/package-summary.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + de.tudresden.sumo.subscription (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/package-tree.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/package-tree.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/package-tree.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/package-tree.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + de.tudresden.sumo.subscription Class Hierarchy (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/package-use.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/package-use.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/package-use.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/package-use.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Package de.tudresden.sumo.subscription (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/ResponseType.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/ResponseType.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/ResponseType.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/ResponseType.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + ResponseType (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/SubscribtionVariable.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/SubscribtionVariable.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/SubscribtionVariable.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/SubscribtionVariable.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SubscribtionVariable (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/SubscriptionContext.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/SubscriptionContext.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/SubscriptionContext.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/SubscriptionContext.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SubscriptionContext (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/Subscription.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/Subscription.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/Subscription.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/Subscription.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Subscription (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/SubscriptionObject.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/SubscriptionObject.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/SubscriptionObject.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/SubscriptionObject.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SubscriptionObject (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/SumoDomain.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/SumoDomain.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/SumoDomain.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/SumoDomain.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoDomain (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/VariableSubscription.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/VariableSubscription.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/subscription/VariableSubscription.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/subscription/VariableSubscription.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + VariableSubscription (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/class-use/CommandProcessor.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/class-use/CommandProcessor.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/class-use/CommandProcessor.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/class-use/CommandProcessor.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.util.CommandProcessor (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/class-use/Observable.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/class-use/Observable.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/class-use/Observable.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/class-use/Observable.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.util.Observable (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/class-use/Observer.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/class-use/Observer.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/class-use/Observer.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/class-use/Observer.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Interface de.tudresden.sumo.util.Observer (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/class-use/Query.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/class-use/Query.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/class-use/Query.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/class-use/Query.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.util.Query (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/class-use/SumoCommand.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/class-use/SumoCommand.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/class-use/SumoCommand.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/class-use/SumoCommand.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.sumo.util.SumoCommand (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/CommandProcessor.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/CommandProcessor.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/CommandProcessor.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/CommandProcessor.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + CommandProcessor (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/Observable.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/Observable.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/Observable.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/Observable.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Observable (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/Observer.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/Observer.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/Observer.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/Observer.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Observer (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/package-summary.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/package-summary.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/package-summary.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/package-summary.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + de.tudresden.sumo.util (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/package-tree.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/package-tree.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/package-tree.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/package-tree.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + de.tudresden.sumo.util Class Hierarchy (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/package-use.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/package-use.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/package-use.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/package-use.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Package de.tudresden.sumo.util (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/Query.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/Query.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/Query.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/Query.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Query (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/SumoCommand.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/SumoCommand.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/sumo/util/SumoCommand.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/sumo/util/SumoCommand.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoCommand (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoBestLanes.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoBestLanes.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoBestLanes.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoBestLanes.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.ws.container.SumoBestLanes (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoBoundingBox.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoBoundingBox.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoBoundingBox.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoBoundingBox.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.ws.container.SumoBoundingBox (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoColor.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoColor.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoColor.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoColor.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.ws.container.SumoColor (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoGeometry.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoGeometry.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoGeometry.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoGeometry.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.ws.container.SumoGeometry (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoLeader.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoLeader.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoLeader.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoLeader.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.ws.container.SumoLeader (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoLink.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoLink.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoLink.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoLink.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.ws.container.SumoLink (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoNextTLS.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoNextTLS.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoNextTLS.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoNextTLS.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.ws.container.SumoNextTLS (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoPosition2D.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoPosition2D.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoPosition2D.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoPosition2D.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.ws.container.SumoPosition2D (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoPosition3D.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoPosition3D.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoPosition3D.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoPosition3D.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.ws.container.SumoPosition3D (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoRoadPosition.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoRoadPosition.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoRoadPosition.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoRoadPosition.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.ws.container.SumoRoadPosition (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoStage.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoStage.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoStage.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoStage.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.ws.container.SumoStage (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoStopFlags.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoStopFlags.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoStopFlags.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoStopFlags.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.ws.container.SumoStopFlags (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoTLSController.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoTLSController.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoTLSController.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoTLSController.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.ws.container.SumoTLSController (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoTLSPhase.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoTLSPhase.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoTLSPhase.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoTLSPhase.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.ws.container.SumoTLSPhase (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoTLSProgram.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoTLSProgram.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoTLSProgram.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoTLSProgram.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.ws.container.SumoTLSProgram (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoTrafficLightType.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoTrafficLightType.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoTrafficLightType.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoTrafficLightType.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.ws.container.SumoTrafficLightType (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoVehicleData.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoVehicleData.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoVehicleData.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoVehicleData.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.ws.container.SumoVehicleData (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoVehicleSignal.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoVehicleSignal.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoVehicleSignal.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoVehicleSignal.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.ws.container.SumoVehicleSignal (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoVehicleSignalState.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoVehicleSignalState.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoVehicleSignalState.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/class-use/SumoVehicleSignalState.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.tudresden.ws.container.SumoVehicleSignalState (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/package-summary.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/package-summary.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/package-summary.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/package-summary.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + de.tudresden.ws.container (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/package-tree.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/package-tree.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/package-tree.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/package-tree.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + de.tudresden.ws.container Class Hierarchy (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/package-use.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/package-use.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/package-use.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/package-use.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Package de.tudresden.ws.container (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoBestLanes.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoBestLanes.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoBestLanes.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoBestLanes.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoBestLanes (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoBoundingBox.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoBoundingBox.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoBoundingBox.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoBoundingBox.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoBoundingBox (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoColor.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoColor.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoColor.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoColor.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoColor (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoGeometry.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoGeometry.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoGeometry.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoGeometry.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoGeometry (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoLeader.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoLeader.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoLeader.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoLeader.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoLeader (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoLink.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoLink.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoLink.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoLink.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoLink (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoNextTLS.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoNextTLS.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoNextTLS.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoNextTLS.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoNextTLS (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoPosition2D.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoPosition2D.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoPosition2D.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoPosition2D.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoPosition2D (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoPosition3D.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoPosition3D.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoPosition3D.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoPosition3D.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoPosition3D (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoRoadPosition.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoRoadPosition.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoRoadPosition.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoRoadPosition.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoRoadPosition (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoStage.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoStage.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoStage.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoStage.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoStage (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoStopFlags.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoStopFlags.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoStopFlags.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoStopFlags.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoStopFlags (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoTLSController.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoTLSController.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoTLSController.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoTLSController.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoTLSController (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoTLSPhase.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoTLSPhase.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoTLSPhase.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoTLSPhase.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoTLSPhase (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoTLSProgram.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoTLSProgram.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoTLSProgram.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoTLSProgram.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoTLSProgram (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoTrafficLightType.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoTrafficLightType.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoTrafficLightType.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoTrafficLightType.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoTrafficLightType (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoVehicleData.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoVehicleData.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoVehicleData.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoVehicleData.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoVehicleData (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoVehicleSignal.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoVehicleSignal.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoVehicleSignal.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoVehicleSignal.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoVehicleSignal (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoVehicleSignalState.html sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoVehicleSignalState.html --- sumo-1.17.0/docs/javadoc/traas/de/tudresden/ws/container/SumoVehicleSignalState.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/tudresden/ws/container/SumoVehicleSignalState.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoVehicleSignalState (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/uniluebeck/itm/tcpip/class-use/Storage.html sumo-1.18.0/docs/javadoc/traas/de/uniluebeck/itm/tcpip/class-use/Storage.html --- sumo-1.17.0/docs/javadoc/traas/de/uniluebeck/itm/tcpip/class-use/Storage.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/uniluebeck/itm/tcpip/class-use/Storage.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class de.uniluebeck.itm.tcpip.Storage (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/uniluebeck/itm/tcpip/package-summary.html sumo-1.18.0/docs/javadoc/traas/de/uniluebeck/itm/tcpip/package-summary.html --- sumo-1.17.0/docs/javadoc/traas/de/uniluebeck/itm/tcpip/package-summary.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/uniluebeck/itm/tcpip/package-summary.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + de.uniluebeck.itm.tcpip (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/uniluebeck/itm/tcpip/package-tree.html sumo-1.18.0/docs/javadoc/traas/de/uniluebeck/itm/tcpip/package-tree.html --- sumo-1.17.0/docs/javadoc/traas/de/uniluebeck/itm/tcpip/package-tree.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/uniluebeck/itm/tcpip/package-tree.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + de.uniluebeck.itm.tcpip Class Hierarchy (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/uniluebeck/itm/tcpip/package-use.html sumo-1.18.0/docs/javadoc/traas/de/uniluebeck/itm/tcpip/package-use.html --- sumo-1.17.0/docs/javadoc/traas/de/uniluebeck/itm/tcpip/package-use.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/uniluebeck/itm/tcpip/package-use.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Package de.uniluebeck.itm.tcpip (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/de/uniluebeck/itm/tcpip/Storage.html sumo-1.18.0/docs/javadoc/traas/de/uniluebeck/itm/tcpip/Storage.html --- sumo-1.17.0/docs/javadoc/traas/de/uniluebeck/itm/tcpip/Storage.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/de/uniluebeck/itm/tcpip/Storage.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Storage (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/deprecated-list.html sumo-1.18.0/docs/javadoc/traas/deprecated-list.html --- sumo-1.17.0/docs/javadoc/traas/deprecated-list.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/deprecated-list.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Deprecated List (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/help-doc.html sumo-1.18.0/docs/javadoc/traas/help-doc.html --- sumo-1.17.0/docs/javadoc/traas/help-doc.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/help-doc.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + API Help (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/index-all.html sumo-1.18.0/docs/javadoc/traas/index-all.html --- sumo-1.17.0/docs/javadoc/traas/index-all.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/index-all.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Index (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + @@ -4236,6 +4236,8 @@
 
VAR_IMAGEFILE - Static variable in class de.tudresden.sumo.config.Constants
 
+
VAR_IMPATIENCE - Static variable in class de.tudresden.sumo.config.Constants
+
 
VAR_IMPERFECTION - Static variable in class de.tudresden.sumo.config.Constants
 
VAR_INSERTED - Static variable in class de.tudresden.sumo.config.Constants
diff -Nru sumo-1.17.0/docs/javadoc/traas/index.html sumo-1.18.0/docs/javadoc/traas/index.html --- sumo-1.17.0/docs/javadoc/traas/index.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/index.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Overview (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/CloseQuery.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/CloseQuery.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/CloseQuery.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/CloseQuery.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class it.polito.appeal.traci.CloseQuery (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/SumoTraciConnection.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/SumoTraciConnection.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/SumoTraciConnection.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/SumoTraciConnection.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class it.polito.appeal.traci.SumoTraciConnection (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/TraCIException.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/TraCIException.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/TraCIException.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/TraCIException.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class it.polito.appeal.traci.TraCIException (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/TraCIException.UnexpectedData.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/TraCIException.UnexpectedData.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/TraCIException.UnexpectedData.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/TraCIException.UnexpectedData.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class it.polito.appeal.traci.TraCIException.UnexpectedData (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/TraCIException.UnexpectedDatatype.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/TraCIException.UnexpectedDatatype.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/TraCIException.UnexpectedDatatype.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/TraCIException.UnexpectedDatatype.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class it.polito.appeal.traci.TraCIException.UnexpectedDatatype (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/TraCIException.UnexpectedResponse.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/TraCIException.UnexpectedResponse.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/TraCIException.UnexpectedResponse.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/class-use/TraCIException.UnexpectedResponse.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class it.polito.appeal.traci.TraCIException.UnexpectedResponse (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/CloseQuery.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/CloseQuery.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/CloseQuery.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/CloseQuery.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + CloseQuery (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/package-summary.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/package-summary.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/package-summary.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/package-summary.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + it.polito.appeal.traci (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/package-tree.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/package-tree.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/package-tree.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/package-tree.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + it.polito.appeal.traci Class Hierarchy (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/package-use.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/package-use.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/package-use.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/package-use.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Package it.polito.appeal.traci (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/class-use/Command.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/class-use/Command.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/class-use/Command.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/class-use/Command.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class it.polito.appeal.traci.protocol.Command (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/class-use/RequestMessage.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/class-use/RequestMessage.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/class-use/RequestMessage.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/class-use/RequestMessage.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class it.polito.appeal.traci.protocol.RequestMessage (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/class-use/ResponseContainer.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/class-use/ResponseContainer.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/class-use/ResponseContainer.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/class-use/ResponseContainer.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class it.polito.appeal.traci.protocol.ResponseContainer (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/class-use/ResponseMessage.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/class-use/ResponseMessage.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/class-use/ResponseMessage.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/class-use/ResponseMessage.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class it.polito.appeal.traci.protocol.ResponseMessage (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/class-use/StatusResponse.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/class-use/StatusResponse.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/class-use/StatusResponse.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/class-use/StatusResponse.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Class it.polito.appeal.traci.protocol.StatusResponse (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/Command.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/Command.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/Command.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/Command.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + Command (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/package-summary.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/package-summary.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/package-summary.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/package-summary.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + it.polito.appeal.traci.protocol (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/package-tree.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/package-tree.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/package-tree.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/package-tree.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + it.polito.appeal.traci.protocol Class Hierarchy (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/package-use.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/package-use.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/package-use.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/package-use.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Uses of Package it.polito.appeal.traci.protocol (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/RequestMessage.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/RequestMessage.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/RequestMessage.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/RequestMessage.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + RequestMessage (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/ResponseContainer.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/ResponseContainer.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/ResponseContainer.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/ResponseContainer.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + ResponseContainer (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/ResponseMessage.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/ResponseMessage.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/ResponseMessage.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/ResponseMessage.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + ResponseMessage (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/StatusResponse.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/StatusResponse.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/StatusResponse.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/protocol/StatusResponse.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + StatusResponse (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/SumoTraciConnection.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/SumoTraciConnection.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/SumoTraciConnection.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/SumoTraciConnection.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + SumoTraciConnection (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/TraCIException.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/TraCIException.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/TraCIException.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/TraCIException.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + TraCIException (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/TraCIException.UnexpectedData.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/TraCIException.UnexpectedData.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/TraCIException.UnexpectedData.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/TraCIException.UnexpectedData.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + TraCIException.UnexpectedData (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/TraCIException.UnexpectedDatatype.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/TraCIException.UnexpectedDatatype.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/TraCIException.UnexpectedDatatype.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/TraCIException.UnexpectedDatatype.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + TraCIException.UnexpectedDatatype (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/TraCIException.UnexpectedResponse.html sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/TraCIException.UnexpectedResponse.html --- sumo-1.17.0/docs/javadoc/traas/it/polito/appeal/traci/TraCIException.UnexpectedResponse.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/it/polito/appeal/traci/TraCIException.UnexpectedResponse.html 2023-06-28 22:08:10.000000000 +0000 @@ -2,10 +2,10 @@ - + TraCIException.UnexpectedResponse (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + diff -Nru sumo-1.17.0/docs/javadoc/traas/jquery/jquery-3.6.0.min.js sumo-1.18.0/docs/javadoc/traas/jquery/jquery-3.6.0.min.js --- sumo-1.17.0/docs/javadoc/traas/jquery/jquery-3.6.0.min.js 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/jquery/jquery-3.6.0.min.js 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */ -!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="
",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&v(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!y||!y.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ve(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ye(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ve(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],y=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&y.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||y.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||y.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||y.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||y.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||y.push(".#.+[+~]"),e.querySelectorAll("\\\f"),y.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&y.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&y.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&y.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),y.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),y=y.length&&new RegExp(y.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),v=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&v(p,e)?-1:t==C||t.ownerDocument==p&&v(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!y||!y.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),v.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",v.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",v.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ye(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),v.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(v.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return B(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=_e(v.pixelPosition,function(e,t){if(t)return t=Be(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return B(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0)","url":"add(java.lang.String,double,double,int,int,java.util.LinkedList)"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"add(String, double, double, SumoColor, String, int, String, double, double, double)","url":"add(java.lang.String,double,double,de.tudresden.sumo.objects.SumoColor,java.lang.String,int,java.lang.String,double,double,double)"},{"p":"de.tudresden.sumo.objects","c":"SumoNextTLS","l":"add(String, int, double, String)","url":"add(java.lang.String,int,double,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"add(String, String, double, double, String)","url":"add(java.lang.String,java.lang.String,double,double,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"add(String, String, String, int, double, double, byte)","url":"add(java.lang.String,java.lang.String,java.lang.String,int,double,double,byte)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"add(String, SumoGeometry, SumoColor, boolean, String, int)","url":"add(java.lang.String,de.tudresden.sumo.objects.SumoGeometry,de.tudresden.sumo.objects.SumoColor,boolean,java.lang.String,int)"},{"p":"de.tudresden.sumo.cmd","c":"Route","l":"add(String, SumoStringList)","url":"add(java.lang.String,de.tudresden.sumo.objects.SumoStringList)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"add(String)","url":"add(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"add(SumoLink)","url":"add(de.tudresden.sumo.objects.SumoLink)"},{"p":"de.tudresden.sumo.objects","c":"SumoGeometry","l":"add(SumoPosition2D)","url":"add(de.tudresden.sumo.objects.SumoPosition2D)"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSProgram","l":"add(SumoTLSPhase)","url":"add(de.tudresden.sumo.objects.SumoTLSPhase)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"addAll(Collection)","url":"addAll(java.util.Collection)"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"addAll(Collection)","url":"addAll(java.util.Collection)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"addAll(int, Collection)","url":"addAll(int,java.util.Collection)"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"addAll(int, Collection)","url":"addAll(int,java.util.Collection)"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"addCommand(int)"},{"p":"de.tudresden.sumo.subscription","c":"VariableSubscription","l":"addCommand(int)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"addFull(String, String, String, String, String, String, String, String, String, String, String, String, String, int, int)","url":"addFull(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,int,int)"},{"p":"de.tudresden.sumo.util","c":"Observable","l":"addObserver(Observer)","url":"addObserver(de.tudresden.sumo.util.Observer)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"addObserver(Observer)","url":"addObserver(de.tudresden.sumo.util.Observer)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"addOption(String, String)","url":"addOption(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSProgram","l":"addParam(String, String)","url":"addParam(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSController","l":"addProgram(SumoTLSProgram)","url":"addProgram(de.tudresden.sumo.objects.SumoTLSProgram)"},{"p":"de.tudresden.sumo.objects","c":"SumoBestLanes.SumoBestLane","l":"allowsContinuation"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"APPEND_STAGE"},{"p":"it.polito.appeal.traci.protocol","c":"RequestMessage","l":"append(Command)","url":"append(it.polito.appeal.traci.protocol.Command)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"appendDrivingStage(String, String, String, String)","url":"appendDrivingStage(java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"appendWaitingStage(String, double, String, String)","url":"appendWaitingStage(java.lang.String,double,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"appendWalkingStage(String, SumoStringList, double, double, double, String)","url":"appendWalkingStage(java.lang.String,de.tudresden.sumo.objects.SumoStringList,double,double,double,java.lang.String)"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"areal_detector"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"areal_detector"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"AREAL_DETECTOR_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"AREAL_DETECTOR_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ARRIVALFLAG_LANE_CURRENT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ARRIVALFLAG_POS_MAX"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ARRIVALFLAG_POS_RANDOM"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ARRIVALFLAG_SPEED_CURRENT"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"arrivalPos"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"AUTOMATIC_CONTEXT_SUBSCRIPTION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"AUTOMATIC_VARIABLES_SUBSCRIPTION"},{"p":"de.tudresden.sumo.objects","c":"SumoColor","l":"b"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"changeLane(String, byte, double)","url":"changeLane(java.lang.String,byte,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"changeSublane(String, double)","url":"changeSublane(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"changeTarget(String, String)","url":"changeTarget(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"clear()"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"clear()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"clearPending(String)","url":"clearPending(java.lang.String)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"close()"},{"p":"it.polito.appeal.traci","c":"CloseQuery","l":"CloseQuery(Socket)","url":"%3Cinit%3E(java.net.Socket)"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_ADD_SUBSCRIPTION_FILTER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_CHANGELANE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_CHANGESUBLANE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_CHANGETARGET"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_CLEAR_PENDING_VEHICLES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_CLOSE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_EXECUTEMOVE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_BUSSTOP_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_CALIBRATOR_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_CHARGINGSTATION_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_EDGE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_GUI_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_INDUCTIONLOOP_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_JUNCTION_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_LANE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_LANEAREA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_MEANDATA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_MULTIENTRYEXIT_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_OVERHEADWIRE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_PARKINGAREA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_PERSON_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_POI_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_POLYGON_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_REROUTER_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_ROUTE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_ROUTEPROBE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_SIM_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_TL_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_VARIABLESPEEDSIGN_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_VEHICLE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_VEHICLETYPE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GETVERSION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_INSERT_STOP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_LOAD"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_LOAD_SIMSTATE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_MESSAGE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_OPENGAP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_REPLACE_STOP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_REROUTE_EFFORT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_REROUTE_TO_PARKING"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_REROUTE_TRAVELTIME"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_RESUME"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SAVE_SIMSTATE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_BUSSTOP_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_CALIBRATOR_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_CHARGINGSTATION_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_EDGE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_FLOW"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_GUI_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_INDUCTIONLOOP_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_JUNCTION_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_LANE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_LANEAREA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_MEANDATA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_MULTIENTRYEXIT_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_OVERHEADWIRE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_PARKINGAREA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_PERSON_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_POI_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_POLYGON_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_REROUTER_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_ROUTE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_ROUTEPROBE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_SIM_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_TL_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_VARIABLESPEEDSIGN_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_VEHICLE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_VEHICLETYPE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SETORDER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SIMSTEP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SLOWDOWN"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_STOP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_BUSSTOP_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_BUSSTOP_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_CALIBRATOR_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_CALIBRATOR_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_CHARGINGSTATION_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_CHARGINGSTATION_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_EDGE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_EDGE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_GUI_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_GUI_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_INDUCTIONLOOP_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_INDUCTIONLOOP_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_JUNCTION_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_JUNCTION_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_LANE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_LANE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_LANEAREA_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_LANEAREA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_MEANDATA_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_MEANDATA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_MULTIENTRYEXIT_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_MULTIENTRYEXIT_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_OVERHEADWIRE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_OVERHEADWIRE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_PARKINGAREA_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_PARKINGAREA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_PERSON_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_PERSON_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_POI_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_POI_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_POLYGON_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_POLYGON_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_REROUTER_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_REROUTER_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_ROUTE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_ROUTE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_ROUTEPROBE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_ROUTEPROBE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_SIM_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_SIM_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_TL_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_TL_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_VARIABLESPEEDSIGN_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_VARIABLESPEEDSIGN_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_VEHICLE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_VEHICLE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_VEHICLETYPE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_VEHICLETYPE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_TAXI_DISPATCH"},{"p":"it.polito.appeal.traci.protocol","c":"Command","l":"Command(int)","url":"%3Cinit%3E(int)"},{"p":"it.polito.appeal.traci.protocol","c":"Command","l":"Command(Storage)","url":"%3Cinit%3E(de.uniluebeck.itm.tcpip.Storage)"},{"p":"de.tudresden.sumo.util","c":"CommandProcessor","l":"CommandProcessor(Socket)","url":"%3Cinit%3E(java.net.Socket)"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"commands"},{"p":"de.tudresden.sumo.subscription","c":"VariableSubscription","l":"commands"},{"p":"it.polito.appeal.traci.protocol","c":"RequestMessage","l":"commands()"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"Constants()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"containerTriggered"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"contains(Object)","url":"contains(java.lang.Object)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"contains(Object)","url":"contains(java.lang.Object)"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"containsAll(Collection)","url":"containsAll(java.util.Collection)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"containsAll(Collection)","url":"containsAll(java.util.Collection)"},{"p":"it.polito.appeal.traci.protocol","c":"Command","l":"content()"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"context"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"contextDomain"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"contextRange"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"ContextSubscription()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"ContextSubscription(SubscriptionContext, double, double, String, SumoDomain, double)","url":"%3Cinit%3E(de.tudresden.sumo.subscription.SubscriptionContext,double,double,java.lang.String,de.tudresden.sumo.subscription.SumoDomain,double)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"convert2D(String, double, byte, String)","url":"convert2D(java.lang.String,double,byte,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"convert3D(String, double, byte, String)","url":"convert3D(java.lang.String,double,byte,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"convertGeo(double, double, boolean)","url":"convertGeo(double,double,boolean)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"convertRoad(double, double, boolean, String)","url":"convertRoad(double,double,boolean,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoGeometry","l":"coords"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"COPY"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"cost"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSProgram","l":"currentPhaseIndex"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"debug()"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEFAULT_NUM_RETRIES"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"DELAYBASED"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"DELAYBASED"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"depart"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_BEGIN"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_CONTAINER_TRIGGERED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_LANE_ALLOWED_FREE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_LANE_BEST_FREE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_LANE_FIRST_ALLOWED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_LANE_FREE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_LANE_RANDOM"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_NOW"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_POS_BASE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_POS_FREE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_POS_LAST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_POS_RANDOM"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_POS_RANDOM_FREE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_SPEED_MAX"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_SPEED_RANDOM"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_SPLIT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_TRIGGERED"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"departPos"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"description"},{"p":"it.polito.appeal.traci.protocol","c":"StatusResponse","l":"description()"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"destStop"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"direction"},{"p":"de.tudresden.sumo.objects","c":"SumoLeader","l":"dist"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DISTANCE_REQUEST"},{"p":"de.tudresden.sumo.util","c":"CommandProcessor","l":"do_close()"},{"p":"de.tudresden.sumo.util","c":"CommandProcessor","l":"do_job_get(SumoCommand)","url":"do_job_get(de.tudresden.sumo.util.SumoCommand)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"do_job_get(SumoCommand)","url":"do_job_get(de.tudresden.sumo.util.SumoCommand)"},{"p":"de.tudresden.sumo.util","c":"CommandProcessor","l":"do_job_set(SumoCommand)","url":"do_job_set(de.tudresden.sumo.util.SumoCommand)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"do_job_set(SumoCommand)","url":"do_job_set(de.tudresden.sumo.util.SumoCommand)"},{"p":"de.tudresden.sumo.util","c":"CommandProcessor","l":"do_setOrder(int)"},{"p":"de.tudresden.sumo.util","c":"CommandProcessor","l":"do_SimulationStep(double)"},{"p":"de.tudresden.sumo.util","c":"CommandProcessor","l":"do_subscription(Subscription)","url":"do_subscription(de.tudresden.sumo.subscription.Subscription)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"do_subscription(Subscription)","url":"do_subscription(de.tudresden.sumo.subscription.Subscription)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"do_timestep()"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"do_timestep(double)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"doClose()"},{"p":"it.polito.appeal.traci","c":"CloseQuery","l":"doCommand()"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionObject","l":"domain"},{"p":"de.tudresden.sumo.util","c":"Query","l":"doQuery(RequestMessage)","url":"doQuery(it.polito.appeal.traci.protocol.RequestMessage)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"doQuerySingle(Command)","url":"doQuerySingle(it.polito.appeal.traci.protocol.Command)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"doSetOrder(int)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"doSimulationStep(double)"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"duration"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"edge"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"edge"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"EDGE_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"EDGE_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"Edge()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoRoadPosition","l":"edgeID"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"edges"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"edges"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleData.VehicleData","l":"entry_time"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_DOWNSTREAM_DIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_FIELD_OF_VISION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_LANES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_LATERAL_DIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_LEAD_FOLLOW"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_NONE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_NOOPPOSITE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_TURN"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_UPSTREAM_DIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_VCLASS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_VTYPE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FIND_INTERMODAL_ROUTE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FIND_ROUTE"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"findIntermodalRoute(String, String, String, double, int, double, double, double, double, double, String, String, String)","url":"findIntermodalRoute(java.lang.String,java.lang.String,java.lang.String,double,int,double,double,double,double,double,java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"findRoute(String, String, String, double, int)","url":"findRoute(java.lang.String,java.lang.String,java.lang.String,double,int)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"fireAndForget(Command)","url":"fireAndForget(it.polito.appeal.traci.protocol.Command)"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"from"},{"p":"de.tudresden.sumo.objects","c":"SumoGeometry","l":"fromString(String)","url":"fromString(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoColor","l":"g"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"GENERIC_ATTRIBUTE"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"get_command()"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"get_raw()"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"get(int)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"get(int)"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSController","l":"get(String)","url":"get(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getAccel(String)","url":"getAccel(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getAccel(String)","url":"getAccel(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getAccumulatedWaitingTime(String)","url":"getAccumulatedWaitingTime(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getActionStepLength(String)","url":"getActionStepLength(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getAdaptedTraveltime(String, double, String)","url":"getAdaptedTraveltime(java.lang.String,double,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getAdaptedTraveltime(String, double)","url":"getAdaptedTraveltime(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getAllowed(String)","url":"getAllowed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getAllowedSpeed(String)","url":"getAllowedSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getAngle(String)","url":"getAngle(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getAngle(String)","url":"getAngle(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getApparentDecel(String)","url":"getApparentDecel(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getApparentDecel(String)","url":"getApparentDecel(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getArrivedIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getArrivedNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getBestLanes(String)","url":"getBestLanes(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"getBoundary(String)","url":"getBoundary(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getBusStopWaiting()"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getCO2Emission(String)","url":"getCO2Emission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getCO2Emission(String)","url":"getCO2Emission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getCO2Emission(String)","url":"getCO2Emission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getCOEmission(String)","url":"getCOEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getCOEmission(String)","url":"getCOEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getCOEmission(String)","url":"getCOEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getCollidingVehiclesIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getCollidingVehiclesNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getColor(String)","url":"getColor(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"getColor(String)","url":"getColor(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"getColor(String)","url":"getColor(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getColor(String)","url":"getColor(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getColor(String)","url":"getColor(java.lang.String)"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"getCommand()"},{"p":"de.tudresden.sumo.subscription","c":"Subscription","l":"getCommand()"},{"p":"de.tudresden.sumo.subscription","c":"VariableSubscription","l":"getCommand()"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getCompleteRedYellowGreenDefinition(String)","url":"getCompleteRedYellowGreenDefinition(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getControlledJunctions(String)","url":"getControlledJunctions(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getControlledLanes(String)","url":"getControlledLanes(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getControlledLinks(String)","url":"getControlledLinks(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getCurrentTime()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getDecel(String)","url":"getDecel(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getDecel(String)","url":"getDecel(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getDeltaT()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getDepartedIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getDepartedNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getDisallowed(String)","url":"getDisallowed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getDistance(String)","url":"getDistance(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getDistance2D(double, double, double, double, boolean, boolean)","url":"getDistance2D(double,double,double,double,boolean,boolean)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getDistanceRoad(String, double, String, double, boolean)","url":"getDistanceRoad(java.lang.String,double,java.lang.String,double,boolean)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getDrivingDistance(String, String, double, byte)","url":"getDrivingDistance(java.lang.String,java.lang.String,double,byte)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getDrivingDistance2D(String, double, double)","url":"getDrivingDistance2D(java.lang.String,double,double)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getEdgeID(String)","url":"getEdgeID(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getEdges(String, int)","url":"getEdges(java.lang.String,int)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getEdges(String)","url":"getEdges(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Route","l":"getEdges(String)","url":"getEdges(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getEffort(String, double, String)","url":"getEffort(java.lang.String,double,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getEffort(String, double)","url":"getEffort(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getElectricityConsumption(String)","url":"getElectricityConsumption(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getElectricityConsumption(String)","url":"getElectricityConsumption(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getElectricityConsumption(String)","url":"getElectricityConsumption(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getEmergencyDecel(String)","url":"getEmergencyDecel(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getEmergencyDecel(String)","url":"getEmergencyDecel(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getEmergencyStoppingVehiclesIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getEmergencyStoppingVehiclesNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getEmissionClass(String)","url":"getEmissionClass(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getEmissionClass(String)","url":"getEmissionClass(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getEndingTeleportIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getEndingTeleportNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getExternalState(String)","url":"getExternalState(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"getFilled(String)","url":"getFilled(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getFoes(String, String)","url":"getFoes(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getFuelConsumption(String)","url":"getFuelConsumption(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getFuelConsumption(String)","url":"getFuelConsumption(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getFuelConsumption(String)","url":"getFuelConsumption(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getHCEmission(String)","url":"getHCEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getHCEmission(String)","url":"getHCEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getHCEmission(String)","url":"getHCEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getHeight(String)","url":"getHeight(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getHeight(String)","url":"getHeight(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"getID()"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"getID()"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"getID()"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"getID()"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Junction","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Multientryexit","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Route","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Junction","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Multientryexit","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Route","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getImperfection(String)","url":"getImperfection(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getImperfection(String)","url":"getImperfection(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"getIndex()"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"getIndex()"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getInternalFoes(String)","url":"getInternalFoes(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getJamLengthMeters(String)","url":"getJamLengthMeters(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getJamLengthVehicle(String)","url":"getJamLengthVehicle(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLaneChangeMode(String)","url":"getLaneChangeMode(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLaneChangeState(String, int)","url":"getLaneChangeState(java.lang.String,int)"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getLaneID(String)","url":"getLaneID(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getLaneID(String)","url":"getLaneID(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLaneID(String)","url":"getLaneID(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLaneIndex(String)","url":"getLaneIndex(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getLaneNumber(String)","url":"getLaneNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getLanePosition(String)","url":"getLanePosition(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLanePosition(String)","url":"getLanePosition(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLastActionTime(String)","url":"getLastActionTime(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getLastStepHaltingNumber(String)","url":"getLastStepHaltingNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getLastStepHaltingNumber(String)","url":"getLastStepHaltingNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getLastStepHaltingNumber(String)","url":"getLastStepHaltingNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Multientryexit","l":"getLastStepHaltingNumber(String)","url":"getLastStepHaltingNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getLastStepLength(String)","url":"getLastStepLength(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getLastStepLength(String)","url":"getLastStepLength(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getLastStepMeanLength(String)","url":"getLastStepMeanLength(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getLastStepMeanSpeed(String)","url":"getLastStepMeanSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getLastStepMeanSpeed(String)","url":"getLastStepMeanSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getLastStepMeanSpeed(String)","url":"getLastStepMeanSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getLastStepMeanSpeed(String)","url":"getLastStepMeanSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Multientryexit","l":"getLastStepMeanSpeed(String)","url":"getLastStepMeanSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getLastStepOccupancy(String)","url":"getLastStepOccupancy(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getLastStepOccupancy(String)","url":"getLastStepOccupancy(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getLastStepOccupancy(String)","url":"getLastStepOccupancy(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getLastStepOccupancy(String)","url":"getLastStepOccupancy(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getLastStepPersonIDs(String)","url":"getLastStepPersonIDs(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getLastStepVehicleIDs(String)","url":"getLastStepVehicleIDs(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getLastStepVehicleIDs(String)","url":"getLastStepVehicleIDs(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getLastStepVehicleIDs(String)","url":"getLastStepVehicleIDs(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getLastStepVehicleIDs(String)","url":"getLastStepVehicleIDs(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Multientryexit","l":"getLastStepVehicleIDs(String)","url":"getLastStepVehicleIDs(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getLastStepVehicleNumber(String)","url":"getLastStepVehicleNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getLastStepVehicleNumber(String)","url":"getLastStepVehicleNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getLastStepVehicleNumber(String)","url":"getLastStepVehicleNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getLastStepVehicleNumber(String)","url":"getLastStepVehicleNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Multientryexit","l":"getLastStepVehicleNumber(String)","url":"getLastStepVehicleNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLateralAlignment(String)","url":"getLateralAlignment(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getLateralAlignment(String)","url":"getLateralAlignment(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLateralLanePosition(String)","url":"getLateralLanePosition(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLeader(String, double)","url":"getLeader(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getLength(String)","url":"getLength(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getLength(String)","url":"getLength(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getLength(String)","url":"getLength(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLength(String)","url":"getLength(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getLength(String)","url":"getLength(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLine(String)","url":"getLine(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getLinkNumber(String)","url":"getLinkNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getLinks(String)","url":"getLinks(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getLoadedIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getLoadedNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getMaxSpeed(String)","url":"getMaxSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getMaxSpeed(String)","url":"getMaxSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getMaxSpeed(String)","url":"getMaxSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getMaxSpeedLat(String)","url":"getMaxSpeedLat(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getMaxSpeedLat(String)","url":"getMaxSpeedLat(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getMinExpectedNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getMinGap(String)","url":"getMinGap(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getMinGap(String)","url":"getMinGap(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getMinGap(String)","url":"getMinGap(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getMinGapLat(String)","url":"getMinGapLat(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getMinGapLat(String)","url":"getMinGapLat(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getNetBoundary()"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getNextEdge(String)","url":"getNextEdge(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getNextStops(String)","url":"getNextStops(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getNextSwitch(String)","url":"getNextSwitch(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getNextTLS(String)","url":"getNextTLS(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getNoiseEmission(String)","url":"getNoiseEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getNoiseEmission(String)","url":"getNoiseEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getNoiseEmission(String)","url":"getNoiseEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getNOxEmission(String)","url":"getNOxEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getNOxEmission(String)","url":"getNOxEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getNOxEmission(String)","url":"getNOxEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"getOffset(String)","url":"getOffset(java.lang.String)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"getOutStream()"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getParameter(String, String)","url":"getParameter(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getParameter(String, String)","url":"getParameter(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getParameter(String, String)","url":"getParameter(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getParameter(String, String)","url":"getParameter(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"getParameter(String, String)","url":"getParameter(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"getParameter(String, String)","url":"getParameter(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Route","l":"getParameter(String, String)","url":"getParameter(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getParameter(String, String)","url":"getParameter(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getParameter(String, String)","url":"getParameter(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getParameter(String, String)","url":"getParameter(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getParkingEndingVehiclesIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getParkingEndingVehiclesNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getParkingStartingVehiclesIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getParkingStartingVehiclesNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getPersonIDList(String)","url":"getPersonIDList(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getPersonNumber(String)","url":"getPersonNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getPersonNumber(String)","url":"getPersonNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getPhase(String)","url":"getPhase(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getPhaseDuration(String)","url":"getPhaseDuration(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getPhaseName(String)","url":"getPhaseName(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getPMxEmission(String)","url":"getPMxEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getPMxEmission(String)","url":"getPMxEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getPMxEmission(String)","url":"getPMxEmission(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"getPos()"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"getPos()"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getPosition(String)","url":"getPosition(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Junction","l":"getPosition(String)","url":"getPosition(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getPosition(String)","url":"getPosition(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getPosition(String)","url":"getPosition(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"getPosition(String)","url":"getPosition(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getPosition(String)","url":"getPosition(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getPosition3D(String)","url":"getPosition3D(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getPosition3D(String)","url":"getPosition3D(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getProgram(String)","url":"getProgram(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getRedYellowGreenState(String)","url":"getRedYellowGreenState(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getRemainingStages(String)","url":"getRemainingStages(java.lang.String)"},{"p":"it.polito.appeal.traci.protocol","c":"ResponseContainer","l":"getResponse()"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getRoadID(String)","url":"getRoadID(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getRoadID(String)","url":"getRoadID(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getRoute(String)","url":"getRoute(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getRouteID(String)","url":"getRouteID(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getRouteIndex(String)","url":"getRouteIndex(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getRoutingMode(String)","url":"getRoutingMode(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"getSchema(String)","url":"getSchema(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Junction","l":"getShape(String)","url":"getShape(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getShape(String)","url":"getShape(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"getShape(String)","url":"getShape(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getShapeClass(String)","url":"getShapeClass(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getShapeClass(String)","url":"getShapeClass(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getSignals(String)","url":"getSignals(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getSlope(String)","url":"getSlope(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getSpeed(String)","url":"getSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getSpeed(String)","url":"getSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getSpeedDeviation(String)","url":"getSpeedDeviation(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getSpeedDeviation(String)","url":"getSpeedDeviation(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getSpeedFactor(String)","url":"getSpeedFactor(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getSpeedFactor(String)","url":"getSpeedFactor(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getSpeedMode(String)","url":"getSpeedMode(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getSpeedWithoutTraCI(String)","url":"getSpeedWithoutTraCI(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getStage(String, int)","url":"getStage(java.lang.String,int)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getStartingTeleportIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getStartingTeleportNumber()"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignal","l":"getState(SumoVehicleSignalState)","url":"getState(de.tudresden.sumo.objects.SumoVehicleSignalState)"},{"p":"it.polito.appeal.traci.protocol","c":"ResponseContainer","l":"getStatus()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getStopEndingVehiclesIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getStopEndingVehiclesNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getStopStartingVehiclesIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getStopStartingVehiclesNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getStopState(String)","url":"getStopState(java.lang.String)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"getStorageList()"},{"p":"it.polito.appeal.traci.protocol","c":"ResponseContainer","l":"getSubResponses()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getTau(String)","url":"getTau(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getTau(String)","url":"getTau(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getTime()"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getTimeSinceDetection(String)","url":"getTimeSinceDetection(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getTraveltime(String)","url":"getTraveltime(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getTraveltime(String)","url":"getTraveltime(java.lang.String)"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"getType(int)"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"getType(String)","url":"getType(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"getType(String)","url":"getType(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getTypeID(String)","url":"getTypeID(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getTypeID(String)","url":"getTypeID(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getVehicle(String)","url":"getVehicle(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getVehicleClass(String)","url":"getVehicleClass(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getVehicleClass(String)","url":"getVehicleClass(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getVehicleData(String)","url":"getVehicleData(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getVia(String)","url":"getVia(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getWaitingTime(String)","url":"getWaitingTime(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getWaitingTime(String)","url":"getWaitingTime(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getWaitingTime(String)","url":"getWaitingTime(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getWaitingTime(String)","url":"getWaitingTime(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getWidth(String)","url":"getWidth(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getWidth(String)","url":"getWidth(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getWidth(String)","url":"getWidth(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getWidth(String)","url":"getWidth(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"getZoom(String)","url":"getZoom(java.lang.String)"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"gui"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"gui"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"GUI_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"GUI_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"Gui()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"hasApproachingFoe"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"hasPriority"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"HILVL_DETERMINISTIC"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"HILVL_DETERMINISTIC"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionObject","l":"id"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ID_COUNT"},{"p":"it.polito.appeal.traci.protocol","c":"Command","l":"id()"},{"p":"it.polito.appeal.traci.protocol","c":"StatusResponse","l":"id()"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"indexOf(Object)","url":"indexOf(java.lang.Object)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"indexOf(Object)","url":"indexOf(java.lang.Object)"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"INDUCTIONLOOP_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"INDUCTIONLOOP_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"Inductionloop()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"inductive_loop"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"inductive_loop"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"inductive_loops"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"input1"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"input2"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"intended"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"internalLane"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"INVALID"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"INVALID"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"INVALID_DOUBLE_VALUE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"INVALID_INT_VALUE"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"isAtBusStop(String)","url":"isAtBusStop(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"isAtContainerStop(String)","url":"isAtContainerStop(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"isBusStop"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"isChargingStationStop"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"isClosed()"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"isContainerStop"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"isContext()"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"isEmpty()"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"isEmpty()"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"isOpen"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"isParkingAreaStop"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"isRouteValid(String)","url":"isRouteValid(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"isStopped(String)","url":"isStopped(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"isStoppedParking(String)","url":"isStoppedParking(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"isStoppedTriggered(String)","url":"isStoppedTriggered(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoLeader","l":"isValid()"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"isVariable()"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"iterator()"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"iterator()"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"JAM_LENGTH_METERS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"JAM_LENGTH_VEHICLE"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"junction"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"junction"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"junction"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"JUNCTION_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"JUNCTION_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Junction","l":"Junction()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"lane"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"lane"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LANE_ALLOWED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LANE_CHANGES"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"LANE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LANE_DISALLOWED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LANE_EDGE_ID"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LANE_LINK_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LANE_LINKS"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"LANE_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"Lane()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"Lanearea()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LANECHANGE_LEFT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LANECHANGE_RIGHT"},{"p":"de.tudresden.sumo.objects","c":"SumoBestLanes.SumoBestLane","l":"laneID"},{"p":"de.tudresden.sumo.objects","c":"SumoRoadPosition","l":"laneIndex"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"lanes"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LAST_STEP_LENGTH"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LAST_STEP_MEAN_SPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LAST_STEP_OCCUPANCY"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LAST_STEP_PERSON_ID_LIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LAST_STEP_TIME_SINCE_DETECTION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LAST_STEP_VEHICLE_DATA"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LAST_STEP_VEHICLE_HALTING_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LAST_STEP_VEHICLE_ID_LIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LAST_STEP_VEHICLE_NUMBER"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"lastIndexOf(Object)","url":"lastIndexOf(java.lang.Object)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"lastIndexOf(Object)","url":"lastIndexOf(java.lang.Object)"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_AMBACKBLOCKER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_AMBACKBLOCKER_STANDING"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_AMBLOCKINGFOLLOWER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_AMBLOCKINGFOLLOWER_DONTBRAKE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_AMBLOCKINGLEADER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_BLOCKED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_BLOCKED_BY_FOLLOWER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_BLOCKED_BY_LEADER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_BLOCKED_BY_LEFT_FOLLOWER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_BLOCKED_BY_LEFT_LEADER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_BLOCKED_BY_RIGHT_FOLLOWER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_BLOCKED_BY_RIGHT_LEADER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_BLOCKED_LEFT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_BLOCKED_RIGHT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_CHANGE_REASONS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_CHANGE_TO_HELP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_COOPERATIVE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_INSUFFICIENT_SPACE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_INSUFFICIENT_SPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_KEEPRIGHT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_LEFT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_MLEFT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_MRIGHT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_NONE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_OVERLAPPING"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_RIGHT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_SPEEDGAIN"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_STAY"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_STRATEGIC"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_SUBLANE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_TRACI"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_UNKNOWN"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_URGENT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_WANTS_LANECHANGE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_WANTS_LANECHANGE_OR_STAY"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleData.VehicleData","l":"leave_time"},{"p":"de.tudresden.sumo.objects","c":"SumoBestLanes.SumoBestLane","l":"length"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"length"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"length"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleData.VehicleData","l":"length"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"line"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"listIterator()"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"listIterator()"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"listIterator(int)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"listIterator(int)"},{"p":"de.tudresden.sumo.objects","c":"SumoBestLanes","l":"ll"},{"p":"de.tudresden.sumo.objects","c":"SumoBestLanes.SumoBestLane","l":"ll"},{"p":"de.tudresden.sumo.objects","c":"SumoNextTLS","l":"ll"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleData","l":"ll"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"MAX_ORDER"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"maxDur"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"me_detector"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"me_detector"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"minDur"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"MOVE_AUTOMATIC"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"MOVE_NORMAL"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"MOVE_TELEPORT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"MOVE_TO_XY"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"moveTo(String, String, double)","url":"moveTo(java.lang.String,java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"moveToXY(String, String, double, double, double, byte)","url":"moveToXY(java.lang.String,java.lang.String,double,double,double,byte)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"moveToXY(String, String, int, double, double, double, byte)","url":"moveToXY(java.lang.String,java.lang.String,int,double,double,double,byte)"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"MULTI_ENTRY_EXIT_DETECTOR_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"MULTI_ENTRY_EXIT_DETECTOR_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Multientryexit","l":"Multientryexit()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"name"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionObject","l":"name"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"next"},{"p":"de.tudresden.sumo.objects","c":"SumoNextTLS.NextTLS","l":"NextTLS(String, int, double, String)","url":"%3Cinit%3E(java.lang.String,int,double,java.lang.String)"},{"p":"de.tudresden.sumo.util","c":"Observable","l":"notifyObservers(SubscriptionObject)","url":"notifyObservers(de.tudresden.sumo.subscription.SubscriptionObject)"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"notInternalLane"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionObject","l":"object"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"objectID"},{"p":"de.tudresden.sumo.subscription","c":"VariableSubscription","l":"objectID"},{"p":"de.tudresden.sumo.util","c":"Observable","l":"Observable()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoBestLanes.SumoBestLane","l":"occupation"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"OFF"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"OFF"},{"p":"de.tudresden.sumo.objects","c":"SumoBestLanes.SumoBestLane","l":"offset"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"over"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSProgram","l":"params"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"parking"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"person"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"person"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"PERSON_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"PERSON_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"Person()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"persons"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"phasedef"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSProgram","l":"phases"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"poi"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"poi"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"poi"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"POI_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"POI_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"Poi()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"polygon"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"polygon"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"POLYGON_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"POLYGON_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"Polygon()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"polygons"},{"p":"de.tudresden.sumo.objects","c":"SumoRoadPosition","l":"pos"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"POSITION_2D"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"POSITION_3D"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"POSITION_CONVERSION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"POSITION_LON_LAT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"POSITION_LON_LAT_ALT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"POSITION_ROADMAP"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"position()"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"printSumoError(boolean)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"printSumoOutput(boolean)"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSController","l":"programs"},{"p":"de.tudresden.sumo.util","c":"Query","l":"Query(Socket)","url":"%3Cinit%3E(java.net.Socket)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"queryAndVerify(RequestMessage)","url":"queryAndVerify(it.polito.appeal.traci.protocol.RequestMessage)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"queryAndVerifySingle(Command)","url":"queryAndVerifySingle(it.polito.appeal.traci.protocol.Command)"},{"p":"de.tudresden.sumo.objects","c":"SumoColor","l":"r"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"RAIL_CROSSING"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"RAIL_CROSSING"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"RAIL_SIGNAL"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"RAIL_SIGNAL"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"raw"},{"p":"it.polito.appeal.traci.protocol","c":"Command","l":"rawSize()"},{"p":"de.tudresden.sumo.util","c":"CommandProcessor","l":"read(int, Storage)","url":"read(int,de.uniluebeck.itm.tcpip.Storage)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readByte()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readDouble()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readFloat()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readInt()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readShort()"},{"p":"de.tudresden.sumo.util","c":"CommandProcessor","l":"readStage(Storage)","url":"readStage(de.uniluebeck.itm.tcpip.Storage)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readStringASCII()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readStringISOLATIN1()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readStringUTF16BE()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readStringUTF16LE()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readStringUTF8()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readUnsignedByte()"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"REMOVE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"REMOVE_ARRIVED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"REMOVE_PARKING"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"REMOVE_STAGE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"REMOVE_TELEPORT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"REMOVE_TELEPORT_ARRIVED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"REMOVE_VAPORIZED"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"remove(int)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"remove(int)"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"remove(Object)","url":"remove(java.lang.Object)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"remove(Object)","url":"remove(java.lang.Object)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"remove(String, byte)","url":"remove(java.lang.String,byte)"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"remove(String, int)","url":"remove(java.lang.String,int)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"remove(String, int)","url":"remove(java.lang.String,int)"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"removeAll(Collection)","url":"removeAll(java.util.Collection)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"removeAll(Collection)","url":"removeAll(java.util.Collection)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"removeStage(String, int)","url":"removeStage(java.lang.String,int)"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"REPLACE_STAGE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"REQUEST_AIRDIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"REQUEST_DRIVINGDIST"},{"p":"it.polito.appeal.traci.protocol","c":"RequestMessage","l":"RequestMessage()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"rerouteEffort(String)","url":"rerouteEffort(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"rerouteParkingArea(String, String)","url":"rerouteParkingArea(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"rerouteTraveltime(String)","url":"rerouteTraveltime(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"rerouteTraveltime(String)","url":"rerouteTraveltime(java.lang.String)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"reset()"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionObject","l":"response"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_BUSSTOP_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_CALIBRATOR_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_CHARGINGSTATION_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_EDGE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_GUI_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_INDUCTIONLOOP_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_JUNCTION_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_LANE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_LANEAREA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_MEANDATA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_MULTIENTRYEXIT_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_OVERHEADWIRE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_PARKINGAREA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_PERSON_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_POI_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_POLYGON_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_REROUTER_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_ROUTE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_ROUTEPROBE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_SIM_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_TL_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_VARIABLESPEEDSIGN_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_VEHICLE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_VEHICLETYPE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_BUSSTOP_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_BUSSTOP_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_CALIBRATOR_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_CALIBRATOR_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_CHARGINGSTATION_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_CHARGINGSTATION_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_EDGE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_EDGE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_GUI_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_GUI_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_INDUCTIONLOOP_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_INDUCTIONLOOP_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_JUNCTION_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_JUNCTION_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_LANE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_LANE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_LANEAREA_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_LANEAREA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_MEANDATA_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_MEANDATA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_MULTIENTRYEXIT_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_MULTIENTRYEXIT_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_OVERHEADWIRE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_OVERHEADWIRE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_PARKINGAREA_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_PARKINGAREA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_PERSON_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_PERSON_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_POI_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_POI_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_POLYGON_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_POLYGON_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_REROUTER_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_REROUTER_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_ROUTE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_ROUTE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_ROUTEPROBE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_ROUTEPROBE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_SIM_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_SIM_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_TL_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_TL_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_VARIABLESPEEDSIGN_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_VARIABLESPEEDSIGN_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_VEHICLE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_VEHICLE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_VEHICLETYPE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_VEHICLETYPE_VARIABLE"},{"p":"it.polito.appeal.traci.protocol","c":"ResponseContainer","l":"ResponseContainer(StatusResponse, Command, List)","url":"%3Cinit%3E(it.polito.appeal.traci.protocol.StatusResponse,it.polito.appeal.traci.protocol.Command,java.util.List)"},{"p":"it.polito.appeal.traci.protocol","c":"ResponseContainer","l":"ResponseContainer(StatusResponse, Command)","url":"%3Cinit%3E(it.polito.appeal.traci.protocol.StatusResponse,it.polito.appeal.traci.protocol.Command)"},{"p":"it.polito.appeal.traci.protocol","c":"ResponseMessage","l":"ResponseMessage(DataInputStream)","url":"%3Cinit%3E(java.io.DataInputStream)"},{"p":"it.polito.appeal.traci.protocol","c":"ResponseMessage","l":"responses()"},{"p":"it.polito.appeal.traci.protocol","c":"StatusResponse","l":"result()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"resume(String)","url":"resume(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"retainAll(Collection)","url":"retainAll(java.util.Collection)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"retainAll(Collection)","url":"retainAll(java.util.Collection)"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionObject","l":"return_type"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"route"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"route"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"ROUTE_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"ROUTE_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Route","l":"Route()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ROUTING_MODE_AGGREGATED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ROUTING_MODE_AGGREGATED_CUSTOM"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ROUTING_MODE_COMBINED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ROUTING_MODE_DEFAULT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ROUTING_MODE_EFFORT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RTYPE_ERR"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RTYPE_NOTIMPLEMENTED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RTYPE_OK"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"runServer()"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"runServer(int)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"saveState(String)","url":"saveState(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"screenshot(String, String)","url":"screenshot(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"set(int, String)","url":"set(int,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"set(int, SumoLink)","url":"set(int,de.tudresden.sumo.objects.SumoLink)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setAccel(String, double)","url":"setAccel(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setAccel(String, double)","url":"setAccel(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setActionStepLength(String, double, boolean)","url":"setActionStepLength(java.lang.String,double,boolean)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setAdaptedTraveltime(String, double, double, String, double)","url":"setAdaptedTraveltime(java.lang.String,double,double,java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"setAllowed(String, SumoStringList)","url":"setAllowed(java.lang.String,de.tudresden.sumo.objects.SumoStringList)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setApparentDecel(String, double)","url":"setApparentDecel(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setApparentDecel(String, double)","url":"setApparentDecel(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"setBoundary(String, double, double, double, double)","url":"setBoundary(java.lang.String,double,double,double,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setBusStop(String, String, double, double)","url":"setBusStop(java.lang.String,java.lang.String,double,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setChargingStationStop(String, String, double, double)","url":"setChargingStationStop(java.lang.String,java.lang.String,double,double)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"setColor(String, SumoColor)","url":"setColor(java.lang.String,de.tudresden.sumo.objects.SumoColor)"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"setColor(String, SumoColor)","url":"setColor(java.lang.String,de.tudresden.sumo.objects.SumoColor)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"setColor(String, SumoColor)","url":"setColor(java.lang.String,de.tudresden.sumo.objects.SumoColor)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setColor(String, SumoColor)","url":"setColor(java.lang.String,de.tudresden.sumo.objects.SumoColor)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setColor(String, SumoColor)","url":"setColor(java.lang.String,de.tudresden.sumo.objects.SumoColor)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"setCompleteRedYellowGreenDefinition(String, SumoTLSProgram)","url":"setCompleteRedYellowGreenDefinition(java.lang.String,de.tudresden.sumo.objects.SumoTLSProgram)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setContainerStop(String, String, double, double)","url":"setContainerStop(java.lang.String,java.lang.String,double,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setDecel(String, double)","url":"setDecel(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setDecel(String, double)","url":"setDecel(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"setDisallowed(String, SumoStringList)","url":"setDisallowed(java.lang.String,de.tudresden.sumo.objects.SumoStringList)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"setEffort(String, double, double, double)","url":"setEffort(java.lang.String,double,double,double)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"setEffort(String, double)","url":"setEffort(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setEffort(String, int, int, String, double)","url":"setEffort(java.lang.String,int,int,java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setEmergencyDecel(String, double)","url":"setEmergencyDecel(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setEmergencyDecel(String, double)","url":"setEmergencyDecel(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setEmissionClass(String, String)","url":"setEmissionClass(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setEmissionClass(String, String)","url":"setEmissionClass(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"setFilled(String, boolean)","url":"setFilled(java.lang.String,boolean)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"setHeight(String, double)","url":"setHeight(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setHeight(String, double)","url":"setHeight(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setHeight(String, double)","url":"setHeight(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setImperfection(String, double)","url":"setImperfection(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setImperfection(String, double)","url":"setImperfection(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setLaneChangeMode(String, int)","url":"setLaneChangeMode(java.lang.String,int)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setLateralAlignment(String, String)","url":"setLateralAlignment(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setLateralAlignment(String, String)","url":"setLateralAlignment(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"setLength(String, double)","url":"setLength(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"setLength(String, double)","url":"setLength(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setLength(String, double)","url":"setLength(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setLength(String, double)","url":"setLength(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setLine(String, String)","url":"setLine(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"setMaxSpeed(String, double)","url":"setMaxSpeed(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"setMaxSpeed(String, double)","url":"setMaxSpeed(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setMaxSpeed(String, double)","url":"setMaxSpeed(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setMaxSpeed(String, double)","url":"setMaxSpeed(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setMaxSpeedLat(String, double)","url":"setMaxSpeedLat(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setMaxSpeedLat(String, double)","url":"setMaxSpeedLat(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"setMinGap(String, double)","url":"setMinGap(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setMinGap(String, double)","url":"setMinGap(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setMinGap(String, double)","url":"setMinGap(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setMinGapLat(String, double)","url":"setMinGapLat(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setMinGapLat(String, double)","url":"setMinGapLat(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"setOffset(String, double, double)","url":"setOffset(java.lang.String,double,double)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"setOrder(int)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"setParameter(String, String, String)","url":"setParameter(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"setParameter(String, String, String)","url":"setParameter(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"setParameter(String, String, String)","url":"setParameter(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"setParameter(String, String, String)","url":"setParameter(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"setParameter(String, String, String)","url":"setParameter(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Route","l":"setParameter(String, String, String)","url":"setParameter(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"setParameter(String, String, String)","url":"setParameter(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setParameter(String, String, String)","url":"setParameter(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setParameter(String, String, String)","url":"setParameter(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setParkingAreaStop(String, String, double, double)","url":"setParkingAreaStop(java.lang.String,java.lang.String,double,double)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"setPhase(String, int)","url":"setPhase(java.lang.String,int)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"setPhaseDuration(String, double)","url":"setPhaseDuration(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"setPhaseName(String, String)","url":"setPhaseName(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"setPosition(String, double, double)","url":"setPosition(java.lang.String,double,double)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"setProgram(String, String)","url":"setProgram(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"setRedYellowGreenState(String, String)","url":"setRedYellowGreenState(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setRoute(String, SumoStringList)","url":"setRoute(java.lang.String,de.tudresden.sumo.objects.SumoStringList)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setRouteID(String, String)","url":"setRouteID(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setRoutingMode(String, int)","url":"setRoutingMode(java.lang.String,int)"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"setSchema(String, String)","url":"setSchema(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"setShape(String, SumoStringList)","url":"setShape(java.lang.String,de.tudresden.sumo.objects.SumoStringList)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setShapeClass(String, String)","url":"setShapeClass(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setShapeClass(String, String)","url":"setShapeClass(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setSignals(String, int)","url":"setSignals(java.lang.String,int)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"setSpeed(String, double)","url":"setSpeed(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setSpeed(String, double)","url":"setSpeed(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setSpeedDeviation(String, double)","url":"setSpeedDeviation(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setSpeedDeviation(String, double)","url":"setSpeedDeviation(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setSpeedFactor(String, double)","url":"setSpeedFactor(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setSpeedFactor(String, double)","url":"setSpeedFactor(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setSpeedMode(String, int)","url":"setSpeedMode(java.lang.String,int)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setStop(String, String, double, byte, double, SumoStopFlags, double, double)","url":"setStop(java.lang.String,java.lang.String,double,byte,double,de.tudresden.sumo.objects.SumoStopFlags,double,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setTau(String, double)","url":"setTau(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setTau(String, double)","url":"setTau(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"setType(String, String)","url":"setType(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"setType(String, String)","url":"setType(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"setType(String, String)","url":"setType(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setType(String, String)","url":"setType(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setVehicleClass(String, String)","url":"setVehicleClass(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setVehicleClass(String, String)","url":"setVehicleClass(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setVia(String, SumoStringList)","url":"setVia(java.lang.String,de.tudresden.sumo.objects.SumoStringList)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"setWidth(String, double)","url":"setWidth(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setWidth(String, double)","url":"setWidth(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setWidth(String, double)","url":"setWidth(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setWidth(String, String)","url":"setWidth(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"setZoom(String, double)","url":"setZoom(java.lang.String,double)"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"SIM_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"SIM_VARIABLE"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"simulation"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"simulation"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"Simulation()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"size()"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"size()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"size()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"slowDown(String, double, double)","url":"slowDown(java.lang.String,double,double)"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"SOTL_MARCHING"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"SOTL_MARCHING"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"SOTL_PHASE"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"SOTL_PHASE"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"SOTL_PLATOON"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"SOTL_PLATOON"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"SOTL_REQUEST"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"SOTL_REQUEST"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"SOTL_WAVE"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"SOTL_WAVE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"SPLIT_TAXI_RESERVATIONS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STAGE_ACCESS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STAGE_DRIVING"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STAGE_TRANSHIP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STAGE_TRIP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STAGE_WAITING"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STAGE_WAITING_FOR_DEPART"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STAGE_WALKING"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"start"},{"p":"de.tudresden.sumo.subscription","c":"VariableSubscription","l":"start"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"state"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"STATIC"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"STATIC"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionObject","l":"status"},{"p":"it.polito.appeal.traci.protocol","c":"ResponseMessage","l":"STATUS_ONLY_RESPONSES"},{"p":"it.polito.appeal.traci.protocol","c":"StatusResponse","l":"StatusResponse(int, int, String)","url":"%3Cinit%3E(int,int,java.lang.String)"},{"p":"it.polito.appeal.traci.protocol","c":"StatusResponse","l":"StatusResponse(int)","url":"%3Cinit%3E(int)"},{"p":"it.polito.appeal.traci.protocol","c":"StatusResponse","l":"StatusResponse(Storage)","url":"%3Cinit%3E(de.uniluebeck.itm.tcpip.Storage)"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"stop"},{"p":"de.tudresden.sumo.subscription","c":"VariableSubscription","l":"stop"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STOP_BUS_STOP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STOP_CHARGING_STATION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STOP_CONTAINER_STOP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STOP_CONTAINER_TRIGGERED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STOP_DEFAULT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STOP_OVERHEAD_WIRE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STOP_PARKING"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STOP_PARKING_AREA"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STOP_TRIGGERED"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"stopped"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"Storage()","url":"%3Cinit%3E()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"Storage(byte[], int, int)","url":"%3Cinit%3E(byte[],int,int)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"Storage(byte[])","url":"%3Cinit%3E(byte[])"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"Storage(short[], int, int)","url":"%3Cinit%3E(short[],int,int)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"Storage(short[])","url":"%3Cinit%3E(short[])"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSProgram","l":"subID"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"subList(int, int)","url":"subList(int,int)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"subList(int, int)","url":"subList(int,int)"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionObject","l":"SubscriptionObject(String, ResponseType, int, int, int, SumoObject)","url":"%3Cinit%3E(java.lang.String,de.tudresden.sumo.subscription.ResponseType,int,int,int,de.tudresden.sumo.objects.SumoObject)"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionObject","l":"SubscriptionObject(String, ResponseType, int, String, int, int, int, SumoObject)","url":"%3Cinit%3E(java.lang.String,de.tudresden.sumo.subscription.ResponseType,int,java.lang.String,int,int,int,de.tudresden.sumo.objects.SumoObject)"},{"p":"de.tudresden.sumo.objects","c":"SumoBestLanes.SumoBestLane","l":"SumoBestLane(String, double, double, int, int, LinkedList)","url":"%3Cinit%3E(java.lang.String,double,double,int,int,java.util.LinkedList)"},{"p":"de.tudresden.sumo.objects","c":"SumoBestLanes","l":"SumoBestLanes()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoBestLanes","l":"SumoBestLanes()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoBoundingBox","l":"SumoBoundingBox()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoBoundingBox","l":"SumoBoundingBox()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoBoundingBox","l":"SumoBoundingBox(double, double, double, double)","url":"%3Cinit%3E(double,double,double,double)"},{"p":"de.tudresden.sumo.objects","c":"SumoColor","l":"SumoColor()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoColor","l":"SumoColor(int, int, int, int)","url":"%3Cinit%3E(int,int,int,int)"},{"p":"de.tudresden.ws.container","c":"SumoColor","l":"SumoColor(int, int, int, int)","url":"%3Cinit%3E(int,int,int,int)"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"SumoCommand(int, int, Object, int, int, String)","url":"%3Cinit%3E(int,int,java.lang.Object,int,int,java.lang.String)"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"SumoCommand(int, int, Object, int, int)","url":"%3Cinit%3E(int,int,java.lang.Object,int,int)"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"SumoCommand(int, int, Object, Object)","url":"%3Cinit%3E(int,int,java.lang.Object,java.lang.Object)"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"SumoCommand(int, int, Object, Object[], int, int)","url":"%3Cinit%3E(int,int,java.lang.Object,java.lang.Object[],int,int)"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"SumoCommand(int, int, Object, Object[])","url":"%3Cinit%3E(int,int,java.lang.Object,java.lang.Object[])"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"SumoCommand(int, int, Object[], int, int)","url":"%3Cinit%3E(int,int,java.lang.Object[],int,int)"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"SumoCommand(int, int)","url":"%3Cinit%3E(int,int)"},{"p":"de.tudresden.sumo.objects","c":"SumoGeometry","l":"SumoGeometry()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoGeometry","l":"SumoGeometry()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoLeader","l":"SumoLeader(String, double)","url":"%3Cinit%3E(java.lang.String,double)"},{"p":"de.tudresden.ws.container","c":"SumoLeader","l":"SumoLeader(String, double)","url":"%3Cinit%3E(java.lang.String,double)"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"SumoLink(String, String, byte, byte, byte, double, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,byte,byte,byte,double,java.lang.String,java.lang.String)"},{"p":"de.tudresden.ws.container","c":"SumoLink","l":"SumoLink(String, String, byte, byte, byte, double, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,byte,byte,byte,double,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"SumoLink(String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.ws.container","c":"SumoLink","l":"SumoLink(String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"SumoLinkList()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"SumoLinkList(List)","url":"%3Cinit%3E(java.util.List)"},{"p":"de.tudresden.sumo.objects","c":"SumoNextTLS","l":"SumoNextTLS()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoNextTLS","l":"SumoNextTLS()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition2D","l":"SumoPosition2D()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoPosition2D","l":"SumoPosition2D()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition2D","l":"SumoPosition2D(double, double)","url":"%3Cinit%3E(double,double)"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition3D","l":"SumoPosition3D()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoPosition3D","l":"SumoPosition3D()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition3D","l":"SumoPosition3D(double, double, double)","url":"%3Cinit%3E(double,double,double)"},{"p":"de.tudresden.sumo.objects","c":"SumoPrimitive","l":"SumoPrimitive(Object)","url":"%3Cinit%3E(java.lang.Object)"},{"p":"de.tudresden.sumo.objects","c":"SumoRoadPosition","l":"SumoRoadPosition()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoRoadPosition","l":"SumoRoadPosition()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"SumoStage()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoStage","l":"SumoStage()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"SumoStopFlags(boolean, boolean, boolean, boolean, boolean, boolean, boolean)","url":"%3Cinit%3E(boolean,boolean,boolean,boolean,boolean,boolean,boolean)"},{"p":"de.tudresden.ws.container","c":"SumoStopFlags","l":"SumoStopFlags(boolean, boolean, boolean, boolean, boolean, boolean, boolean)","url":"%3Cinit%3E(boolean,boolean,boolean,boolean,boolean,boolean,boolean)"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"SumoStopFlags(byte)","url":"%3Cinit%3E(byte)"},{"p":"de.tudresden.ws.container","c":"SumoStopFlags","l":"SumoStopFlags(byte)","url":"%3Cinit%3E(byte)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"SumoStringList()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"SumoStringList(List)","url":"%3Cinit%3E(java.util.List)"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSController","l":"SumoTLSController()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoTLSController","l":"SumoTLSController()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"SumoTLSPhase()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoTLSPhase","l":"SumoTLSPhase()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"SumoTLSPhase(double, double, double, String, ArrayList, String)","url":"%3Cinit%3E(double,double,double,java.lang.String,java.util.ArrayList,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"SumoTLSPhase(int, String, String)","url":"%3Cinit%3E(int,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"SumoTLSPhase(int, String)","url":"%3Cinit%3E(int,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSProgram","l":"SumoTLSProgram()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSProgram","l":"SumoTLSProgram(String, int, int)","url":"%3Cinit%3E(java.lang.String,int,int)"},{"p":"de.tudresden.ws.container","c":"SumoTLSProgram","l":"SumoTLSProgram(String, int, int)","url":"%3Cinit%3E(java.lang.String,int,int)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"SumoTraciConnection(int)","url":"%3Cinit%3E(int)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"SumoTraciConnection(SocketAddress)","url":"%3Cinit%3E(java.net.SocketAddress)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"SumoTraciConnection(String, int, boolean)","url":"%3Cinit%3E(java.lang.String,int,boolean)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"SumoTraciConnection(String, String, String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"SumoTraciConnection(String, String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"SumoTraciConnection(String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"SumoTraciConnection(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"SumoTraciConnection(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleData","l":"SumoVehicleData()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoVehicleData","l":"SumoVehicleData()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignal","l":"SumoVehicleSignal(int)","url":"%3Cinit%3E(int)"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignal","l":"SumoVehicleSignal(int)","url":"%3Cinit%3E(int)"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"SWARM_BASED"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"SWARM_BASED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_BLOCKING_VEHICLES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_COMPLETE_DEFINITION_RYG"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_COMPLETE_PROGRAM_RYG"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_CONSTRAINT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_CONSTRAINT_BYFOE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_CONSTRAINT_REMOVE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_CONSTRAINT_SWAP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_CONSTRAINT_UPDATE"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"TL_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_CONTROLLED_JUNCTIONS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_CONTROLLED_LANES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_CONTROLLED_LINKS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_CURRENT_PHASE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_CURRENT_PROGRAM"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_EXTERNAL_STATE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_NEXT_SWITCH"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_PHASE_DURATION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_PHASE_INDEX"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_PRIORITY_VEHICLES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_PROGRAM"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_RED_YELLOW_GREEN_STATE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_RIVAL_VEHICLES"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"TL_VARIABLE"},{"p":"de.tudresden.sumo.objects","c":"SumoNextTLS.NextTLS","l":"tlsID"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"to"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"toArray()"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"toArray()"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"toArray(T[])"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"toArray(T[])"},{"p":"de.tudresden.sumo.objects","c":"SumoBestLanes","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoBoundingBox","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoColor","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoGeometry","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoLeader","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoNextTLS","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition2D","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition3D","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSController","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSProgram","l":"toString()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"toString()"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TRACI_ID_LIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TRACI_VERSION"},{"p":"it.polito.appeal.traci","c":"TraCIException","l":"TraCIException()","url":"%3Cinit%3E()"},{"p":"it.polito.appeal.traci","c":"TraCIException","l":"TraCIException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"trackVehicle(String, String)","url":"trackVehicle(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"trafficlight"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"trafficlight"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TRAFFICLIGHT_TYPE_ACTUATED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TRAFFICLIGHT_TYPE_DELAYBASED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TRAFFICLIGHT_TYPE_STATIC"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"Trafficlight()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"travelTime"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"triggered"},{"p":"de.tudresden.sumo.objects","c":"SumoPrimitive","l":"type"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"type"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSProgram","l":"type"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TYPE_BYTE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TYPE_COLOR"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TYPE_COMPOUND"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TYPE_DOUBLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TYPE_DOUBLELIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TYPE_INTEGER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TYPE_POLYGON"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TYPE_STRING"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TYPE_STRINGLIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TYPE_UBYTE"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleData.VehicleData","l":"typeID"},{"p":"it.polito.appeal.traci","c":"TraCIException.UnexpectedData","l":"UnexpectedData(String, Object, Object)","url":"%3Cinit%3E(java.lang.String,java.lang.Object,java.lang.Object)"},{"p":"it.polito.appeal.traci","c":"TraCIException.UnexpectedDatatype","l":"UnexpectedDatatype(int, int)","url":"%3Cinit%3E(int,int)"},{"p":"it.polito.appeal.traci","c":"TraCIException.UnexpectedResponse","l":"UnexpectedResponse(int, int)","url":"%3Cinit%3E(int,int)"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"UNKNOWN"},{"p":"de.tudresden.sumo.util","c":"Observer","l":"update(Observable, SubscriptionObject)","url":"update(de.tudresden.sumo.util.Observable,de.tudresden.sumo.subscription.SubscriptionObject)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"updateBestLanes(String)","url":"updateBestLanes(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoPrimitive","l":"val"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"validPos()"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"values()"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"values()"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"values()"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"values()"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"values()"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"values()"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"values()"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"values()"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ACCEL"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ACCELERATION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ACCUMULATED_WAITING_TIME"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ACTIONSTEPLENGTH"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ADD_DYNAMICS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ALLOWED_SPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ANGLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_APPARENT_DECEL"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ARRIVALLANE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ARRIVALPOS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ARRIVALSPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ARRIVED_PERSONS_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ARRIVED_PERSONS_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ARRIVED_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ARRIVED_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_BEGIN"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_BEST_LANES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_BOARDING_DURATION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_BUS_STOP_ID_LIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_BUS_STOP_WAITING"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_BUS_STOP_WAITING_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_CO2EMISSION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_COEMISSION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_COLLIDING_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_COLLIDING_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_COLLISIONS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_COLOR"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_CURRENT_TRAVELTIME"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_DECEL"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_DELTA_T"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_DEPART_DELAY"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_DEPARTED_PERSONS_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_DEPARTED_PERSONS_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_DEPARTED_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_DEPARTED_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_DEPARTURE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_DISTANCE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_EDGE_EFFORT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_EDGE_TRAVELTIME"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_EDGES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ELECTRICITYCONSUMPTION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_EMERGENCY_DECEL"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_EMERGENCYSTOPPING_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_EMERGENCYSTOPPING_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_EMISSIONCLASS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_END"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_EXIT_LANES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_EXIT_POSITIONS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_FILL"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_FOES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_FOLLOW_SPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_FOLLOWER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_FRICTION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_FUELCONSUMPTION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_HAS_VIEW"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_HCEMISSION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_HEIGHT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_HIGHLIGHT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_IMAGEFILE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_IMPERFECTION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_INSERTED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_INTERVAL_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_INTERVAL_MAX_JAM_LENGTH_METERS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_INTERVAL_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_INTERVAL_OCCUPANCY"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_INTERVAL_SPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LANE_ID"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LANE_INDEX"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LANECHANGE_MODE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LANEPOSITION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LANEPOSITION_LAT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LANES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LAST_INTERVAL_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LAST_INTERVAL_MAX_JAM_LENGTH_METERS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LAST_INTERVAL_MEAN_HALTING_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LAST_INTERVAL_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LAST_INTERVAL_OCCUPANCY"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LAST_INTERVAL_SPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LAST_INTERVAL_TRAVELTIME"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LAST_INTERVAL_VEHICLE_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LASTACTIONTIME"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LATALIGNMENT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LEADER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LENGTH"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LINE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LOADED_LIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LOADED_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LOADED_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_MAXSPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_MAXSPEED_LAT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_MIN_EXPECTED_VEHICLES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_MINGAP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_MINGAP_LAT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_MOVE_TO"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_NAME"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_NEIGHBORS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_NET_BOUNDING_BOX"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_NEXT_EDGE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_NEXT_LINKS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_NEXT_STOPS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_NEXT_STOPS2"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_NEXT_TLS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_NOISEEMISSION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_NOXEMISSION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_OPTION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PARAMETER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PARAMETER_WITH_KEY"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PARKING_ENDING_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PARKING_ENDING_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PARKING_MANEUVERING_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PARKING_MANEUVERING_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PARKING_STARTING_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PARKING_STARTING_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PASSED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PENDING_VEHICLES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PERSON_CAPACITY"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PERSON_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PMXEMISSION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_POSITION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_POSITION3D"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PREV_SPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_REMOVED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ROAD_ID"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ROUTE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ROUTE_ID"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ROUTE_INDEX"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ROUTE_PROBE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ROUTE_VALID"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ROUTING_MODE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SAMPLE_CURRENT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SAMPLE_LAST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SCALE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SCREENSHOT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SECURE_GAP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SELECT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SHAPE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SHAPECLASS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SIGNALS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SLOPE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SPEED_DEVIATION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SPEED_FACTOR"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SPEED_LAT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SPEED_WITHOUT_TRACI"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SPEEDSETMODE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STAGE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STAGES_REMAINING"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STOP_ARRIVALDELAY"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STOP_DELAY"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STOP_ENDING_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STOP_ENDING_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STOP_PARAMETER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STOP_SPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STOP_STARTING_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STOP_STARTING_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STOPSTATE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TAU"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TAXI_FLEET"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TAXI_RESERVATIONS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TELEPORT_ENDING_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TELEPORT_ENDING_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TELEPORT_STARTING_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TELEPORT_STARTING_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TELEPORTING_LIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TIME"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TIME_STEP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TIMELOSS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TRACK_VEHICLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TYPE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_UPDATE_BESTLANES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_VEHICLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_VEHICLECLASS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_VEHSPERHOUR"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_VIA"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_VIEW_BOUNDARY"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_VIEW_OFFSET"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_VIEW_SCHEMA"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_VIEW_ZOOM"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_VIRTUAL_DETECTION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_VTYPES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_WAITING_TIME"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_WIDTH"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionObject","l":"variable"},{"p":"de.tudresden.sumo.subscription","c":"VariableSubscription","l":"VariableSubscription()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.subscription","c":"VariableSubscription","l":"VariableSubscription(SubscribtionVariable, double, double, String)","url":"%3Cinit%3E(de.tudresden.sumo.subscription.SubscribtionVariable,double,double,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_BACKDRIVE"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_BACKDRIVE"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_BLINKER_EMERGENCY"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_BLINKER_EMERGENCY"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_BLINKER_LEFT"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_BLINKER_LEFT"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_BLINKER_RIGHT"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_BLINKER_RIGHT"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_BRAKELIGHT"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_BRAKELIGHT"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_DOOR_OPEN_LEFT"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_DOOR_OPEN_LEFT"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_DOOR_OPEN_RIGHT"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_DOOR_OPEN_RIGHT"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_EMERGENCY_BLUE"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_EMERGENCY_BLUE"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_EMERGENCY_RED"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_EMERGENCY_RED"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_EMERGENCY_YELLOW"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_EMERGENCY_YELLOW"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_FOGLIGHT"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_FOGLIGHT"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_FRONTLIGHT"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_FRONTLIGHT"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_HIGHBEAM"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_HIGHBEAM"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_WIPER"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_WIPER"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"vehicle"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"vehicle"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"VEHICLE_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"VEHICLE_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"Vehicle()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleData.VehicleData","l":"VehicleData(String, double, double, double, String)","url":"%3Cinit%3E(java.lang.String,double,double,double,java.lang.String)"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"vehicles"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"vehicleType"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"vehicleType"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"VEHICLETYPE_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"VEHICLETYPE_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"Vehicletype()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoLeader","l":"vehID"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleData.VehicleData","l":"vehID"},{"p":"de.tudresden.sumo.util","c":"Query","l":"verify(String, int, byte)","url":"verify(java.lang.String,int,byte)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"verify(String, int, short)","url":"verify(java.lang.String,int,short)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"verify(String, Object, Object)","url":"verify(java.lang.String,java.lang.Object,java.lang.Object)"},{"p":"de.tudresden.sumo.util","c":"CommandProcessor","l":"verifyGetVarResponse(Command, int, int, String)","url":"verifyGetVarResponse(it.polito.appeal.traci.protocol.Command,int,int,java.lang.String)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"verifyGetVarResponse(Command, int, int, String)","url":"verifyGetVarResponse(it.polito.appeal.traci.protocol.Command,int,int,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"vType"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeByte(int)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeByte(short)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeDouble(double)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeFloat(float)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeInt(int)"},{"p":"it.polito.appeal.traci.protocol","c":"Command","l":"writeRawTo(Storage)","url":"writeRawTo(de.uniluebeck.itm.tcpip.Storage)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeShort(int)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeStringASCII(String)","url":"writeStringASCII(java.lang.String)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeStringISOLATIN1(String)","url":"writeStringISOLATIN1(java.lang.String)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeStringUTF16BE(String)","url":"writeStringUTF16BE(java.lang.String)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeStringUTF16LE(String)","url":"writeStringUTF16LE(java.lang.String)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeStringUTF8(String)","url":"writeStringUTF8(java.lang.String)"},{"p":"it.polito.appeal.traci.protocol","c":"RequestMessage","l":"writeTo(DataOutputStream)","url":"writeTo(java.io.DataOutputStream)"},{"p":"it.polito.appeal.traci.protocol","c":"StatusResponse","l":"writeTo(Storage)","url":"writeTo(de.uniluebeck.itm.tcpip.Storage)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeUnsignedByte(int)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeUnsignedByte(short)"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition2D","l":"x"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition3D","l":"x"},{"p":"de.tudresden.sumo.objects","c":"SumoBoundingBox","l":"x_max"},{"p":"de.tudresden.sumo.objects","c":"SumoBoundingBox","l":"x_min"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition2D","l":"y"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition3D","l":"y"},{"p":"de.tudresden.sumo.objects","c":"SumoBoundingBox","l":"y_max"},{"p":"de.tudresden.sumo.objects","c":"SumoBoundingBox","l":"y_min"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition3D","l":"z"}] \ No newline at end of file +memberSearchIndex = [{"p":"de.tudresden.sumo.objects","c":"SumoColor","l":"a"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"ACTUATED"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"ACTUATED"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"adaptTraveltime(String, double, double, double)","url":"adaptTraveltime(java.lang.String,double,double,double)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"adaptTraveltime(String, double)","url":"adaptTraveltime(java.lang.String,double)"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ADD"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ADD_FULL"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"add(int, String)","url":"add(int,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"add(int, SumoLink)","url":"add(int,de.tudresden.sumo.objects.SumoLink)"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleData","l":"add(String, double, double, double, String)","url":"add(java.lang.String,double,double,double,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoBestLanes","l":"add(String, double, double, int, int, LinkedList)","url":"add(java.lang.String,double,double,int,int,java.util.LinkedList)"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"add(String, double, double, SumoColor, String, int, String, double, double, double)","url":"add(java.lang.String,double,double,de.tudresden.sumo.objects.SumoColor,java.lang.String,int,java.lang.String,double,double,double)"},{"p":"de.tudresden.sumo.objects","c":"SumoNextTLS","l":"add(String, int, double, String)","url":"add(java.lang.String,int,double,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"add(String, String, double, double, String)","url":"add(java.lang.String,java.lang.String,double,double,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"add(String, String, String, int, double, double, byte)","url":"add(java.lang.String,java.lang.String,java.lang.String,int,double,double,byte)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"add(String, SumoGeometry, SumoColor, boolean, String, int)","url":"add(java.lang.String,de.tudresden.sumo.objects.SumoGeometry,de.tudresden.sumo.objects.SumoColor,boolean,java.lang.String,int)"},{"p":"de.tudresden.sumo.cmd","c":"Route","l":"add(String, SumoStringList)","url":"add(java.lang.String,de.tudresden.sumo.objects.SumoStringList)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"add(String)","url":"add(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"add(SumoLink)","url":"add(de.tudresden.sumo.objects.SumoLink)"},{"p":"de.tudresden.sumo.objects","c":"SumoGeometry","l":"add(SumoPosition2D)","url":"add(de.tudresden.sumo.objects.SumoPosition2D)"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSProgram","l":"add(SumoTLSPhase)","url":"add(de.tudresden.sumo.objects.SumoTLSPhase)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"addAll(Collection)","url":"addAll(java.util.Collection)"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"addAll(Collection)","url":"addAll(java.util.Collection)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"addAll(int, Collection)","url":"addAll(int,java.util.Collection)"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"addAll(int, Collection)","url":"addAll(int,java.util.Collection)"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"addCommand(int)"},{"p":"de.tudresden.sumo.subscription","c":"VariableSubscription","l":"addCommand(int)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"addFull(String, String, String, String, String, String, String, String, String, String, String, String, String, int, int)","url":"addFull(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,int,int)"},{"p":"de.tudresden.sumo.util","c":"Observable","l":"addObserver(Observer)","url":"addObserver(de.tudresden.sumo.util.Observer)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"addObserver(Observer)","url":"addObserver(de.tudresden.sumo.util.Observer)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"addOption(String, String)","url":"addOption(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSProgram","l":"addParam(String, String)","url":"addParam(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSController","l":"addProgram(SumoTLSProgram)","url":"addProgram(de.tudresden.sumo.objects.SumoTLSProgram)"},{"p":"de.tudresden.sumo.objects","c":"SumoBestLanes.SumoBestLane","l":"allowsContinuation"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"APPEND_STAGE"},{"p":"it.polito.appeal.traci.protocol","c":"RequestMessage","l":"append(Command)","url":"append(it.polito.appeal.traci.protocol.Command)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"appendDrivingStage(String, String, String, String)","url":"appendDrivingStage(java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"appendWaitingStage(String, double, String, String)","url":"appendWaitingStage(java.lang.String,double,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"appendWalkingStage(String, SumoStringList, double, double, double, String)","url":"appendWalkingStage(java.lang.String,de.tudresden.sumo.objects.SumoStringList,double,double,double,java.lang.String)"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"areal_detector"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"areal_detector"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"AREAL_DETECTOR_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"AREAL_DETECTOR_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ARRIVALFLAG_LANE_CURRENT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ARRIVALFLAG_POS_MAX"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ARRIVALFLAG_POS_RANDOM"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ARRIVALFLAG_SPEED_CURRENT"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"arrivalPos"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"AUTOMATIC_CONTEXT_SUBSCRIPTION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"AUTOMATIC_VARIABLES_SUBSCRIPTION"},{"p":"de.tudresden.sumo.objects","c":"SumoColor","l":"b"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"changeLane(String, byte, double)","url":"changeLane(java.lang.String,byte,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"changeSublane(String, double)","url":"changeSublane(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"changeTarget(String, String)","url":"changeTarget(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"clear()"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"clear()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"clearPending(String)","url":"clearPending(java.lang.String)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"close()"},{"p":"it.polito.appeal.traci","c":"CloseQuery","l":"CloseQuery(Socket)","url":"%3Cinit%3E(java.net.Socket)"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_ADD_SUBSCRIPTION_FILTER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_CHANGELANE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_CHANGESUBLANE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_CHANGETARGET"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_CLEAR_PENDING_VEHICLES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_CLOSE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_EXECUTEMOVE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_BUSSTOP_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_CALIBRATOR_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_CHARGINGSTATION_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_EDGE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_GUI_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_INDUCTIONLOOP_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_JUNCTION_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_LANE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_LANEAREA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_MEANDATA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_MULTIENTRYEXIT_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_OVERHEADWIRE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_PARKINGAREA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_PERSON_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_POI_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_POLYGON_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_REROUTER_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_ROUTE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_ROUTEPROBE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_SIM_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_TL_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_VARIABLESPEEDSIGN_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_VEHICLE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GET_VEHICLETYPE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_GETVERSION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_INSERT_STOP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_LOAD"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_LOAD_SIMSTATE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_MESSAGE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_OPENGAP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_REPLACE_STOP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_REROUTE_EFFORT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_REROUTE_TO_PARKING"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_REROUTE_TRAVELTIME"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_RESUME"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SAVE_SIMSTATE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_BUSSTOP_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_CALIBRATOR_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_CHARGINGSTATION_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_EDGE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_FLOW"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_GUI_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_INDUCTIONLOOP_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_JUNCTION_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_LANE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_LANEAREA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_MEANDATA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_MULTIENTRYEXIT_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_OVERHEADWIRE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_PARKINGAREA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_PERSON_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_POI_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_POLYGON_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_REROUTER_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_ROUTE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_ROUTEPROBE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_SIM_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_TL_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_VARIABLESPEEDSIGN_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_VEHICLE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SET_VEHICLETYPE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SETORDER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SIMSTEP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SLOWDOWN"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_STOP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_BUSSTOP_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_BUSSTOP_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_CALIBRATOR_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_CALIBRATOR_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_CHARGINGSTATION_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_CHARGINGSTATION_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_EDGE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_EDGE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_GUI_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_GUI_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_INDUCTIONLOOP_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_INDUCTIONLOOP_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_JUNCTION_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_JUNCTION_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_LANE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_LANE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_LANEAREA_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_LANEAREA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_MEANDATA_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_MEANDATA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_MULTIENTRYEXIT_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_MULTIENTRYEXIT_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_OVERHEADWIRE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_OVERHEADWIRE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_PARKINGAREA_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_PARKINGAREA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_PERSON_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_PERSON_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_POI_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_POI_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_POLYGON_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_POLYGON_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_REROUTER_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_REROUTER_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_ROUTE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_ROUTE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_ROUTEPROBE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_ROUTEPROBE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_SIM_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_SIM_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_TL_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_TL_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_VARIABLESPEEDSIGN_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_VARIABLESPEEDSIGN_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_VEHICLE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_VEHICLE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_VEHICLETYPE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_SUBSCRIBE_VEHICLETYPE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"CMD_TAXI_DISPATCH"},{"p":"it.polito.appeal.traci.protocol","c":"Command","l":"Command(int)","url":"%3Cinit%3E(int)"},{"p":"it.polito.appeal.traci.protocol","c":"Command","l":"Command(Storage)","url":"%3Cinit%3E(de.uniluebeck.itm.tcpip.Storage)"},{"p":"de.tudresden.sumo.util","c":"CommandProcessor","l":"CommandProcessor(Socket)","url":"%3Cinit%3E(java.net.Socket)"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"commands"},{"p":"de.tudresden.sumo.subscription","c":"VariableSubscription","l":"commands"},{"p":"it.polito.appeal.traci.protocol","c":"RequestMessage","l":"commands()"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"Constants()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"containerTriggered"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"contains(Object)","url":"contains(java.lang.Object)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"contains(Object)","url":"contains(java.lang.Object)"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"containsAll(Collection)","url":"containsAll(java.util.Collection)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"containsAll(Collection)","url":"containsAll(java.util.Collection)"},{"p":"it.polito.appeal.traci.protocol","c":"Command","l":"content()"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"context"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"contextDomain"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"contextRange"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"ContextSubscription()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"ContextSubscription(SubscriptionContext, double, double, String, SumoDomain, double)","url":"%3Cinit%3E(de.tudresden.sumo.subscription.SubscriptionContext,double,double,java.lang.String,de.tudresden.sumo.subscription.SumoDomain,double)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"convert2D(String, double, byte, String)","url":"convert2D(java.lang.String,double,byte,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"convert3D(String, double, byte, String)","url":"convert3D(java.lang.String,double,byte,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"convertGeo(double, double, boolean)","url":"convertGeo(double,double,boolean)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"convertRoad(double, double, boolean, String)","url":"convertRoad(double,double,boolean,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoGeometry","l":"coords"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"COPY"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"cost"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSProgram","l":"currentPhaseIndex"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"debug()"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEFAULT_NUM_RETRIES"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"DELAYBASED"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"DELAYBASED"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"depart"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_BEGIN"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_CONTAINER_TRIGGERED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_LANE_ALLOWED_FREE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_LANE_BEST_FREE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_LANE_FIRST_ALLOWED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_LANE_FREE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_LANE_RANDOM"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_NOW"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_POS_BASE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_POS_FREE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_POS_LAST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_POS_RANDOM"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_POS_RANDOM_FREE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_SPEED_MAX"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_SPEED_RANDOM"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_SPLIT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DEPARTFLAG_TRIGGERED"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"departPos"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"description"},{"p":"it.polito.appeal.traci.protocol","c":"StatusResponse","l":"description()"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"destStop"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"direction"},{"p":"de.tudresden.sumo.objects","c":"SumoLeader","l":"dist"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"DISTANCE_REQUEST"},{"p":"de.tudresden.sumo.util","c":"CommandProcessor","l":"do_close()"},{"p":"de.tudresden.sumo.util","c":"CommandProcessor","l":"do_job_get(SumoCommand)","url":"do_job_get(de.tudresden.sumo.util.SumoCommand)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"do_job_get(SumoCommand)","url":"do_job_get(de.tudresden.sumo.util.SumoCommand)"},{"p":"de.tudresden.sumo.util","c":"CommandProcessor","l":"do_job_set(SumoCommand)","url":"do_job_set(de.tudresden.sumo.util.SumoCommand)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"do_job_set(SumoCommand)","url":"do_job_set(de.tudresden.sumo.util.SumoCommand)"},{"p":"de.tudresden.sumo.util","c":"CommandProcessor","l":"do_setOrder(int)"},{"p":"de.tudresden.sumo.util","c":"CommandProcessor","l":"do_SimulationStep(double)"},{"p":"de.tudresden.sumo.util","c":"CommandProcessor","l":"do_subscription(Subscription)","url":"do_subscription(de.tudresden.sumo.subscription.Subscription)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"do_subscription(Subscription)","url":"do_subscription(de.tudresden.sumo.subscription.Subscription)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"do_timestep()"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"do_timestep(double)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"doClose()"},{"p":"it.polito.appeal.traci","c":"CloseQuery","l":"doCommand()"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionObject","l":"domain"},{"p":"de.tudresden.sumo.util","c":"Query","l":"doQuery(RequestMessage)","url":"doQuery(it.polito.appeal.traci.protocol.RequestMessage)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"doQuerySingle(Command)","url":"doQuerySingle(it.polito.appeal.traci.protocol.Command)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"doSetOrder(int)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"doSimulationStep(double)"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"duration"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"edge"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"edge"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"EDGE_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"EDGE_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"Edge()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoRoadPosition","l":"edgeID"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"edges"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"edges"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleData.VehicleData","l":"entry_time"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_DOWNSTREAM_DIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_FIELD_OF_VISION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_LANES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_LATERAL_DIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_LEAD_FOLLOW"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_NONE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_NOOPPOSITE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_TURN"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_UPSTREAM_DIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_VCLASS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FILTER_TYPE_VTYPE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FIND_INTERMODAL_ROUTE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"FIND_ROUTE"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"findIntermodalRoute(String, String, String, double, int, double, double, double, double, double, String, String, String)","url":"findIntermodalRoute(java.lang.String,java.lang.String,java.lang.String,double,int,double,double,double,double,double,java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"findRoute(String, String, String, double, int)","url":"findRoute(java.lang.String,java.lang.String,java.lang.String,double,int)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"fireAndForget(Command)","url":"fireAndForget(it.polito.appeal.traci.protocol.Command)"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"from"},{"p":"de.tudresden.sumo.objects","c":"SumoGeometry","l":"fromString(String)","url":"fromString(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoColor","l":"g"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"GENERIC_ATTRIBUTE"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"get_command()"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"get_raw()"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"get(int)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"get(int)"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSController","l":"get(String)","url":"get(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getAccel(String)","url":"getAccel(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getAccel(String)","url":"getAccel(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getAccumulatedWaitingTime(String)","url":"getAccumulatedWaitingTime(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getActionStepLength(String)","url":"getActionStepLength(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getAdaptedTraveltime(String, double, String)","url":"getAdaptedTraveltime(java.lang.String,double,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getAdaptedTraveltime(String, double)","url":"getAdaptedTraveltime(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getAllowed(String)","url":"getAllowed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getAllowedSpeed(String)","url":"getAllowedSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getAngle(String)","url":"getAngle(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getAngle(String)","url":"getAngle(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getApparentDecel(String)","url":"getApparentDecel(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getApparentDecel(String)","url":"getApparentDecel(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getArrivedIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getArrivedNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getBestLanes(String)","url":"getBestLanes(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"getBoundary(String)","url":"getBoundary(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getBusStopWaiting()"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getCO2Emission(String)","url":"getCO2Emission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getCO2Emission(String)","url":"getCO2Emission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getCO2Emission(String)","url":"getCO2Emission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getCOEmission(String)","url":"getCOEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getCOEmission(String)","url":"getCOEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getCOEmission(String)","url":"getCOEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getCollidingVehiclesIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getCollidingVehiclesNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getColor(String)","url":"getColor(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"getColor(String)","url":"getColor(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"getColor(String)","url":"getColor(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getColor(String)","url":"getColor(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getColor(String)","url":"getColor(java.lang.String)"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"getCommand()"},{"p":"de.tudresden.sumo.subscription","c":"Subscription","l":"getCommand()"},{"p":"de.tudresden.sumo.subscription","c":"VariableSubscription","l":"getCommand()"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getCompleteRedYellowGreenDefinition(String)","url":"getCompleteRedYellowGreenDefinition(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getControlledJunctions(String)","url":"getControlledJunctions(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getControlledLanes(String)","url":"getControlledLanes(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getControlledLinks(String)","url":"getControlledLinks(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getCurrentTime()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getDecel(String)","url":"getDecel(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getDecel(String)","url":"getDecel(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getDeltaT()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getDepartedIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getDepartedNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getDisallowed(String)","url":"getDisallowed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getDistance(String)","url":"getDistance(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getDistance2D(double, double, double, double, boolean, boolean)","url":"getDistance2D(double,double,double,double,boolean,boolean)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getDistanceRoad(String, double, String, double, boolean)","url":"getDistanceRoad(java.lang.String,double,java.lang.String,double,boolean)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getDrivingDistance(String, String, double, byte)","url":"getDrivingDistance(java.lang.String,java.lang.String,double,byte)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getDrivingDistance2D(String, double, double)","url":"getDrivingDistance2D(java.lang.String,double,double)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getEdgeID(String)","url":"getEdgeID(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getEdges(String, int)","url":"getEdges(java.lang.String,int)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getEdges(String)","url":"getEdges(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Route","l":"getEdges(String)","url":"getEdges(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getEffort(String, double, String)","url":"getEffort(java.lang.String,double,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getEffort(String, double)","url":"getEffort(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getElectricityConsumption(String)","url":"getElectricityConsumption(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getElectricityConsumption(String)","url":"getElectricityConsumption(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getElectricityConsumption(String)","url":"getElectricityConsumption(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getEmergencyDecel(String)","url":"getEmergencyDecel(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getEmergencyDecel(String)","url":"getEmergencyDecel(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getEmergencyStoppingVehiclesIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getEmergencyStoppingVehiclesNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getEmissionClass(String)","url":"getEmissionClass(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getEmissionClass(String)","url":"getEmissionClass(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getEndingTeleportIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getEndingTeleportNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getExternalState(String)","url":"getExternalState(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"getFilled(String)","url":"getFilled(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getFoes(String, String)","url":"getFoes(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getFuelConsumption(String)","url":"getFuelConsumption(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getFuelConsumption(String)","url":"getFuelConsumption(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getFuelConsumption(String)","url":"getFuelConsumption(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getHCEmission(String)","url":"getHCEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getHCEmission(String)","url":"getHCEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getHCEmission(String)","url":"getHCEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getHeight(String)","url":"getHeight(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getHeight(String)","url":"getHeight(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"getID()"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"getID()"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"getID()"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"getID()"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Junction","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Multientryexit","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Route","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getIDCount()"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Junction","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Multientryexit","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Route","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getImperfection(String)","url":"getImperfection(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getImperfection(String)","url":"getImperfection(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"getIndex()"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"getIndex()"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getInternalFoes(String)","url":"getInternalFoes(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getJamLengthMeters(String)","url":"getJamLengthMeters(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getJamLengthVehicle(String)","url":"getJamLengthVehicle(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLaneChangeMode(String)","url":"getLaneChangeMode(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLaneChangeState(String, int)","url":"getLaneChangeState(java.lang.String,int)"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getLaneID(String)","url":"getLaneID(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getLaneID(String)","url":"getLaneID(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLaneID(String)","url":"getLaneID(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLaneIndex(String)","url":"getLaneIndex(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getLaneNumber(String)","url":"getLaneNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getLanePosition(String)","url":"getLanePosition(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLanePosition(String)","url":"getLanePosition(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLastActionTime(String)","url":"getLastActionTime(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getLastStepHaltingNumber(String)","url":"getLastStepHaltingNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getLastStepHaltingNumber(String)","url":"getLastStepHaltingNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getLastStepHaltingNumber(String)","url":"getLastStepHaltingNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Multientryexit","l":"getLastStepHaltingNumber(String)","url":"getLastStepHaltingNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getLastStepLength(String)","url":"getLastStepLength(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getLastStepLength(String)","url":"getLastStepLength(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getLastStepMeanLength(String)","url":"getLastStepMeanLength(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getLastStepMeanSpeed(String)","url":"getLastStepMeanSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getLastStepMeanSpeed(String)","url":"getLastStepMeanSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getLastStepMeanSpeed(String)","url":"getLastStepMeanSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getLastStepMeanSpeed(String)","url":"getLastStepMeanSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Multientryexit","l":"getLastStepMeanSpeed(String)","url":"getLastStepMeanSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getLastStepOccupancy(String)","url":"getLastStepOccupancy(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getLastStepOccupancy(String)","url":"getLastStepOccupancy(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getLastStepOccupancy(String)","url":"getLastStepOccupancy(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getLastStepOccupancy(String)","url":"getLastStepOccupancy(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getLastStepPersonIDs(String)","url":"getLastStepPersonIDs(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getLastStepVehicleIDs(String)","url":"getLastStepVehicleIDs(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getLastStepVehicleIDs(String)","url":"getLastStepVehicleIDs(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getLastStepVehicleIDs(String)","url":"getLastStepVehicleIDs(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getLastStepVehicleIDs(String)","url":"getLastStepVehicleIDs(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Multientryexit","l":"getLastStepVehicleIDs(String)","url":"getLastStepVehicleIDs(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getLastStepVehicleNumber(String)","url":"getLastStepVehicleNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getLastStepVehicleNumber(String)","url":"getLastStepVehicleNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getLastStepVehicleNumber(String)","url":"getLastStepVehicleNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getLastStepVehicleNumber(String)","url":"getLastStepVehicleNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Multientryexit","l":"getLastStepVehicleNumber(String)","url":"getLastStepVehicleNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLateralAlignment(String)","url":"getLateralAlignment(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getLateralAlignment(String)","url":"getLateralAlignment(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLateralLanePosition(String)","url":"getLateralLanePosition(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLeader(String, double)","url":"getLeader(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getLength(String)","url":"getLength(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getLength(String)","url":"getLength(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getLength(String)","url":"getLength(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLength(String)","url":"getLength(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getLength(String)","url":"getLength(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getLine(String)","url":"getLine(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getLinkNumber(String)","url":"getLinkNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getLinks(String)","url":"getLinks(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getLoadedIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getLoadedNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getMaxSpeed(String)","url":"getMaxSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getMaxSpeed(String)","url":"getMaxSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getMaxSpeed(String)","url":"getMaxSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getMaxSpeedLat(String)","url":"getMaxSpeedLat(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getMaxSpeedLat(String)","url":"getMaxSpeedLat(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getMinExpectedNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getMinGap(String)","url":"getMinGap(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getMinGap(String)","url":"getMinGap(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getMinGap(String)","url":"getMinGap(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getMinGapLat(String)","url":"getMinGapLat(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getMinGapLat(String)","url":"getMinGapLat(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getNetBoundary()"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getNextEdge(String)","url":"getNextEdge(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getNextStops(String)","url":"getNextStops(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getNextSwitch(String)","url":"getNextSwitch(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getNextTLS(String)","url":"getNextTLS(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getNoiseEmission(String)","url":"getNoiseEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getNoiseEmission(String)","url":"getNoiseEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getNoiseEmission(String)","url":"getNoiseEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getNOxEmission(String)","url":"getNOxEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getNOxEmission(String)","url":"getNOxEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getNOxEmission(String)","url":"getNOxEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"getOffset(String)","url":"getOffset(java.lang.String)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"getOutStream()"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getParameter(String, String)","url":"getParameter(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getParameter(String, String)","url":"getParameter(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getParameter(String, String)","url":"getParameter(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getParameter(String, String)","url":"getParameter(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"getParameter(String, String)","url":"getParameter(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"getParameter(String, String)","url":"getParameter(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Route","l":"getParameter(String, String)","url":"getParameter(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getParameter(String, String)","url":"getParameter(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getParameter(String, String)","url":"getParameter(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getParameter(String, String)","url":"getParameter(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getParkingEndingVehiclesIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getParkingEndingVehiclesNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getParkingStartingVehiclesIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getParkingStartingVehiclesNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getPersonIDList(String)","url":"getPersonIDList(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getPersonNumber(String)","url":"getPersonNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getPersonNumber(String)","url":"getPersonNumber(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getPhase(String)","url":"getPhase(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getPhaseDuration(String)","url":"getPhaseDuration(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getPhaseName(String)","url":"getPhaseName(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getPMxEmission(String)","url":"getPMxEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getPMxEmission(String)","url":"getPMxEmission(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getPMxEmission(String)","url":"getPMxEmission(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"getPos()"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"getPos()"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getPosition(String)","url":"getPosition(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Junction","l":"getPosition(String)","url":"getPosition(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"getPosition(String)","url":"getPosition(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getPosition(String)","url":"getPosition(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"getPosition(String)","url":"getPosition(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getPosition(String)","url":"getPosition(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getPosition3D(String)","url":"getPosition3D(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getPosition3D(String)","url":"getPosition3D(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getProgram(String)","url":"getProgram(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"getRedYellowGreenState(String)","url":"getRedYellowGreenState(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getRemainingStages(String)","url":"getRemainingStages(java.lang.String)"},{"p":"it.polito.appeal.traci.protocol","c":"ResponseContainer","l":"getResponse()"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getRoadID(String)","url":"getRoadID(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getRoadID(String)","url":"getRoadID(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getRoute(String)","url":"getRoute(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getRouteID(String)","url":"getRouteID(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getRouteIndex(String)","url":"getRouteIndex(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getRoutingMode(String)","url":"getRoutingMode(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"getSchema(String)","url":"getSchema(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Junction","l":"getShape(String)","url":"getShape(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getShape(String)","url":"getShape(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"getShape(String)","url":"getShape(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getShapeClass(String)","url":"getShapeClass(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getShapeClass(String)","url":"getShapeClass(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getSignals(String)","url":"getSignals(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getSlope(String)","url":"getSlope(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getSpeed(String)","url":"getSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getSpeed(String)","url":"getSpeed(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getSpeedDeviation(String)","url":"getSpeedDeviation(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getSpeedDeviation(String)","url":"getSpeedDeviation(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getSpeedFactor(String)","url":"getSpeedFactor(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getSpeedFactor(String)","url":"getSpeedFactor(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getSpeedMode(String)","url":"getSpeedMode(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getSpeedWithoutTraCI(String)","url":"getSpeedWithoutTraCI(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getStage(String, int)","url":"getStage(java.lang.String,int)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getStartingTeleportIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getStartingTeleportNumber()"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignal","l":"getState(SumoVehicleSignalState)","url":"getState(de.tudresden.sumo.objects.SumoVehicleSignalState)"},{"p":"it.polito.appeal.traci.protocol","c":"ResponseContainer","l":"getStatus()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getStopEndingVehiclesIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getStopEndingVehiclesNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getStopStartingVehiclesIDList()"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getStopStartingVehiclesNumber()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getStopState(String)","url":"getStopState(java.lang.String)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"getStorageList()"},{"p":"it.polito.appeal.traci.protocol","c":"ResponseContainer","l":"getSubResponses()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getTau(String)","url":"getTau(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getTau(String)","url":"getTau(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"getTime()"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getTimeSinceDetection(String)","url":"getTimeSinceDetection(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getTraveltime(String)","url":"getTraveltime(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getTraveltime(String)","url":"getTraveltime(java.lang.String)"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"getType(int)"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"getType(String)","url":"getType(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"getType(String)","url":"getType(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getTypeID(String)","url":"getTypeID(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getTypeID(String)","url":"getTypeID(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getVehicle(String)","url":"getVehicle(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getVehicleClass(String)","url":"getVehicleClass(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getVehicleClass(String)","url":"getVehicleClass(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"getVehicleData(String)","url":"getVehicleData(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getVia(String)","url":"getVia(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"getWaitingTime(String)","url":"getWaitingTime(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getWaitingTime(String)","url":"getWaitingTime(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getWaitingTime(String)","url":"getWaitingTime(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getWaitingTime(String)","url":"getWaitingTime(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"getWidth(String)","url":"getWidth(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"getWidth(String)","url":"getWidth(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"getWidth(String)","url":"getWidth(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"getWidth(String)","url":"getWidth(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"getZoom(String)","url":"getZoom(java.lang.String)"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"gui"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"gui"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"GUI_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"GUI_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"Gui()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"hasApproachingFoe"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"hasPriority"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"HILVL_DETERMINISTIC"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"HILVL_DETERMINISTIC"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionObject","l":"id"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ID_COUNT"},{"p":"it.polito.appeal.traci.protocol","c":"Command","l":"id()"},{"p":"it.polito.appeal.traci.protocol","c":"StatusResponse","l":"id()"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"indexOf(Object)","url":"indexOf(java.lang.Object)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"indexOf(Object)","url":"indexOf(java.lang.Object)"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"INDUCTIONLOOP_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"INDUCTIONLOOP_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Inductionloop","l":"Inductionloop()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"inductive_loop"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"inductive_loop"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"inductive_loops"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"input1"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"input2"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"intended"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"internalLane"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"INVALID"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"INVALID"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"INVALID_DOUBLE_VALUE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"INVALID_INT_VALUE"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"isAtBusStop(String)","url":"isAtBusStop(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"isAtContainerStop(String)","url":"isAtContainerStop(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"isBusStop"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"isChargingStationStop"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"isClosed()"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"isContainerStop"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"isContext()"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"isEmpty()"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"isEmpty()"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"isOpen"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"isParkingAreaStop"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"isRouteValid(String)","url":"isRouteValid(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"isStopped(String)","url":"isStopped(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"isStoppedParking(String)","url":"isStoppedParking(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"isStoppedTriggered(String)","url":"isStoppedTriggered(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoLeader","l":"isValid()"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"isVariable()"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"iterator()"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"iterator()"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"JAM_LENGTH_METERS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"JAM_LENGTH_VEHICLE"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"junction"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"junction"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"junction"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"JUNCTION_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"JUNCTION_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Junction","l":"Junction()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"lane"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"lane"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LANE_ALLOWED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LANE_CHANGES"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"LANE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LANE_DISALLOWED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LANE_EDGE_ID"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LANE_LINK_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LANE_LINKS"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"LANE_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"Lane()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.cmd","c":"Lanearea","l":"Lanearea()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LANECHANGE_LEFT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LANECHANGE_RIGHT"},{"p":"de.tudresden.sumo.objects","c":"SumoBestLanes.SumoBestLane","l":"laneID"},{"p":"de.tudresden.sumo.objects","c":"SumoRoadPosition","l":"laneIndex"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"lanes"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LAST_STEP_LENGTH"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LAST_STEP_MEAN_SPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LAST_STEP_OCCUPANCY"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LAST_STEP_PERSON_ID_LIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LAST_STEP_TIME_SINCE_DETECTION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LAST_STEP_VEHICLE_DATA"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LAST_STEP_VEHICLE_HALTING_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LAST_STEP_VEHICLE_ID_LIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LAST_STEP_VEHICLE_NUMBER"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"lastIndexOf(Object)","url":"lastIndexOf(java.lang.Object)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"lastIndexOf(Object)","url":"lastIndexOf(java.lang.Object)"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_AMBACKBLOCKER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_AMBACKBLOCKER_STANDING"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_AMBLOCKINGFOLLOWER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_AMBLOCKINGFOLLOWER_DONTBRAKE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_AMBLOCKINGLEADER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_BLOCKED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_BLOCKED_BY_FOLLOWER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_BLOCKED_BY_LEADER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_BLOCKED_BY_LEFT_FOLLOWER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_BLOCKED_BY_LEFT_LEADER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_BLOCKED_BY_RIGHT_FOLLOWER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_BLOCKED_BY_RIGHT_LEADER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_BLOCKED_LEFT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_BLOCKED_RIGHT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_CHANGE_REASONS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_CHANGE_TO_HELP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_COOPERATIVE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_INSUFFICIENT_SPACE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_INSUFFICIENT_SPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_KEEPRIGHT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_LEFT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_MLEFT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_MRIGHT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_NONE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_OVERLAPPING"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_RIGHT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_SPEEDGAIN"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_STAY"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_STRATEGIC"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_SUBLANE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_TRACI"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_UNKNOWN"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_URGENT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_WANTS_LANECHANGE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"LCA_WANTS_LANECHANGE_OR_STAY"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleData.VehicleData","l":"leave_time"},{"p":"de.tudresden.sumo.objects","c":"SumoBestLanes.SumoBestLane","l":"length"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"length"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"length"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleData.VehicleData","l":"length"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"line"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"listIterator()"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"listIterator()"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"listIterator(int)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"listIterator(int)"},{"p":"de.tudresden.sumo.objects","c":"SumoBestLanes","l":"ll"},{"p":"de.tudresden.sumo.objects","c":"SumoBestLanes.SumoBestLane","l":"ll"},{"p":"de.tudresden.sumo.objects","c":"SumoNextTLS","l":"ll"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleData","l":"ll"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"MAX_ORDER"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"maxDur"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"me_detector"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"me_detector"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"minDur"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"MOVE_AUTOMATIC"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"MOVE_NORMAL"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"MOVE_TELEPORT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"MOVE_TO_XY"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"moveTo(String, String, double)","url":"moveTo(java.lang.String,java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"moveToXY(String, String, double, double, double, byte)","url":"moveToXY(java.lang.String,java.lang.String,double,double,double,byte)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"moveToXY(String, String, int, double, double, double, byte)","url":"moveToXY(java.lang.String,java.lang.String,int,double,double,double,byte)"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"MULTI_ENTRY_EXIT_DETECTOR_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"MULTI_ENTRY_EXIT_DETECTOR_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Multientryexit","l":"Multientryexit()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"name"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionObject","l":"name"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"next"},{"p":"de.tudresden.sumo.objects","c":"SumoNextTLS.NextTLS","l":"NextTLS(String, int, double, String)","url":"%3Cinit%3E(java.lang.String,int,double,java.lang.String)"},{"p":"de.tudresden.sumo.util","c":"Observable","l":"notifyObservers(SubscriptionObject)","url":"notifyObservers(de.tudresden.sumo.subscription.SubscriptionObject)"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"notInternalLane"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionObject","l":"object"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"objectID"},{"p":"de.tudresden.sumo.subscription","c":"VariableSubscription","l":"objectID"},{"p":"de.tudresden.sumo.util","c":"Observable","l":"Observable()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoBestLanes.SumoBestLane","l":"occupation"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"OFF"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"OFF"},{"p":"de.tudresden.sumo.objects","c":"SumoBestLanes.SumoBestLane","l":"offset"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"over"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSProgram","l":"params"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"parking"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"person"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"person"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"PERSON_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"PERSON_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"Person()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"persons"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"phasedef"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSProgram","l":"phases"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"poi"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"poi"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"poi"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"POI_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"POI_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"Poi()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"polygon"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"polygon"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"POLYGON_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"POLYGON_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"Polygon()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"polygons"},{"p":"de.tudresden.sumo.objects","c":"SumoRoadPosition","l":"pos"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"POSITION_2D"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"POSITION_3D"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"POSITION_CONVERSION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"POSITION_LON_LAT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"POSITION_LON_LAT_ALT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"POSITION_ROADMAP"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"position()"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"printSumoError(boolean)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"printSumoOutput(boolean)"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSController","l":"programs"},{"p":"de.tudresden.sumo.util","c":"Query","l":"Query(Socket)","url":"%3Cinit%3E(java.net.Socket)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"queryAndVerify(RequestMessage)","url":"queryAndVerify(it.polito.appeal.traci.protocol.RequestMessage)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"queryAndVerifySingle(Command)","url":"queryAndVerifySingle(it.polito.appeal.traci.protocol.Command)"},{"p":"de.tudresden.sumo.objects","c":"SumoColor","l":"r"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"RAIL_CROSSING"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"RAIL_CROSSING"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"RAIL_SIGNAL"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"RAIL_SIGNAL"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"raw"},{"p":"it.polito.appeal.traci.protocol","c":"Command","l":"rawSize()"},{"p":"de.tudresden.sumo.util","c":"CommandProcessor","l":"read(int, Storage)","url":"read(int,de.uniluebeck.itm.tcpip.Storage)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readByte()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readDouble()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readFloat()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readInt()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readShort()"},{"p":"de.tudresden.sumo.util","c":"CommandProcessor","l":"readStage(Storage)","url":"readStage(de.uniluebeck.itm.tcpip.Storage)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readStringASCII()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readStringISOLATIN1()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readStringUTF16BE()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readStringUTF16LE()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readStringUTF8()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"readUnsignedByte()"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"REMOVE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"REMOVE_ARRIVED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"REMOVE_PARKING"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"REMOVE_STAGE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"REMOVE_TELEPORT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"REMOVE_TELEPORT_ARRIVED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"REMOVE_VAPORIZED"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"remove(int)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"remove(int)"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"remove(Object)","url":"remove(java.lang.Object)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"remove(Object)","url":"remove(java.lang.Object)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"remove(String, byte)","url":"remove(java.lang.String,byte)"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"remove(String, int)","url":"remove(java.lang.String,int)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"remove(String, int)","url":"remove(java.lang.String,int)"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"removeAll(Collection)","url":"removeAll(java.util.Collection)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"removeAll(Collection)","url":"removeAll(java.util.Collection)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"removeStage(String, int)","url":"removeStage(java.lang.String,int)"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"REPLACE_STAGE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"REQUEST_AIRDIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"REQUEST_DRIVINGDIST"},{"p":"it.polito.appeal.traci.protocol","c":"RequestMessage","l":"RequestMessage()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"rerouteEffort(String)","url":"rerouteEffort(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"rerouteParkingArea(String, String)","url":"rerouteParkingArea(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"rerouteTraveltime(String)","url":"rerouteTraveltime(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"rerouteTraveltime(String)","url":"rerouteTraveltime(java.lang.String)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"reset()"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionObject","l":"response"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_BUSSTOP_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_CALIBRATOR_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_CHARGINGSTATION_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_EDGE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_GUI_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_INDUCTIONLOOP_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_JUNCTION_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_LANE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_LANEAREA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_MEANDATA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_MULTIENTRYEXIT_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_OVERHEADWIRE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_PARKINGAREA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_PERSON_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_POI_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_POLYGON_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_REROUTER_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_ROUTE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_ROUTEPROBE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_SIM_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_TL_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_VARIABLESPEEDSIGN_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_VEHICLE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_GET_VEHICLETYPE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_BUSSTOP_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_BUSSTOP_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_CALIBRATOR_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_CALIBRATOR_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_CHARGINGSTATION_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_CHARGINGSTATION_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_EDGE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_EDGE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_GUI_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_GUI_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_INDUCTIONLOOP_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_INDUCTIONLOOP_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_JUNCTION_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_JUNCTION_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_LANE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_LANE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_LANEAREA_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_LANEAREA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_MEANDATA_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_MEANDATA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_MULTIENTRYEXIT_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_MULTIENTRYEXIT_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_OVERHEADWIRE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_OVERHEADWIRE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_PARKINGAREA_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_PARKINGAREA_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_PERSON_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_PERSON_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_POI_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_POI_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_POLYGON_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_POLYGON_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_REROUTER_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_REROUTER_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_ROUTE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_ROUTE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_ROUTEPROBE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_ROUTEPROBE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_SIM_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_SIM_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_TL_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_TL_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_VARIABLESPEEDSIGN_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_VARIABLESPEEDSIGN_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_VEHICLE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_VEHICLE_VARIABLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_VEHICLETYPE_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RESPONSE_SUBSCRIBE_VEHICLETYPE_VARIABLE"},{"p":"it.polito.appeal.traci.protocol","c":"ResponseContainer","l":"ResponseContainer(StatusResponse, Command, List)","url":"%3Cinit%3E(it.polito.appeal.traci.protocol.StatusResponse,it.polito.appeal.traci.protocol.Command,java.util.List)"},{"p":"it.polito.appeal.traci.protocol","c":"ResponseContainer","l":"ResponseContainer(StatusResponse, Command)","url":"%3Cinit%3E(it.polito.appeal.traci.protocol.StatusResponse,it.polito.appeal.traci.protocol.Command)"},{"p":"it.polito.appeal.traci.protocol","c":"ResponseMessage","l":"ResponseMessage(DataInputStream)","url":"%3Cinit%3E(java.io.DataInputStream)"},{"p":"it.polito.appeal.traci.protocol","c":"ResponseMessage","l":"responses()"},{"p":"it.polito.appeal.traci.protocol","c":"StatusResponse","l":"result()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"resume(String)","url":"resume(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"retainAll(Collection)","url":"retainAll(java.util.Collection)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"retainAll(Collection)","url":"retainAll(java.util.Collection)"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionObject","l":"return_type"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"route"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"route"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"ROUTE_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"ROUTE_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Route","l":"Route()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ROUTING_MODE_AGGREGATED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ROUTING_MODE_AGGREGATED_CUSTOM"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ROUTING_MODE_COMBINED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ROUTING_MODE_DEFAULT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"ROUTING_MODE_EFFORT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RTYPE_ERR"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RTYPE_NOTIMPLEMENTED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"RTYPE_OK"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"runServer()"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"runServer(int)"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"saveState(String)","url":"saveState(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"screenshot(String, String)","url":"screenshot(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"set(int, String)","url":"set(int,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"set(int, SumoLink)","url":"set(int,de.tudresden.sumo.objects.SumoLink)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setAccel(String, double)","url":"setAccel(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setAccel(String, double)","url":"setAccel(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setActionStepLength(String, double, boolean)","url":"setActionStepLength(java.lang.String,double,boolean)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setAdaptedTraveltime(String, double, double, String, double)","url":"setAdaptedTraveltime(java.lang.String,double,double,java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"setAllowed(String, SumoStringList)","url":"setAllowed(java.lang.String,de.tudresden.sumo.objects.SumoStringList)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setApparentDecel(String, double)","url":"setApparentDecel(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setApparentDecel(String, double)","url":"setApparentDecel(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"setBoundary(String, double, double, double, double)","url":"setBoundary(java.lang.String,double,double,double,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setBusStop(String, String, double, double)","url":"setBusStop(java.lang.String,java.lang.String,double,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setChargingStationStop(String, String, double, double)","url":"setChargingStationStop(java.lang.String,java.lang.String,double,double)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"setColor(String, SumoColor)","url":"setColor(java.lang.String,de.tudresden.sumo.objects.SumoColor)"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"setColor(String, SumoColor)","url":"setColor(java.lang.String,de.tudresden.sumo.objects.SumoColor)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"setColor(String, SumoColor)","url":"setColor(java.lang.String,de.tudresden.sumo.objects.SumoColor)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setColor(String, SumoColor)","url":"setColor(java.lang.String,de.tudresden.sumo.objects.SumoColor)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setColor(String, SumoColor)","url":"setColor(java.lang.String,de.tudresden.sumo.objects.SumoColor)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"setCompleteRedYellowGreenDefinition(String, SumoTLSProgram)","url":"setCompleteRedYellowGreenDefinition(java.lang.String,de.tudresden.sumo.objects.SumoTLSProgram)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setContainerStop(String, String, double, double)","url":"setContainerStop(java.lang.String,java.lang.String,double,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setDecel(String, double)","url":"setDecel(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setDecel(String, double)","url":"setDecel(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"setDisallowed(String, SumoStringList)","url":"setDisallowed(java.lang.String,de.tudresden.sumo.objects.SumoStringList)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"setEffort(String, double, double, double)","url":"setEffort(java.lang.String,double,double,double)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"setEffort(String, double)","url":"setEffort(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setEffort(String, int, int, String, double)","url":"setEffort(java.lang.String,int,int,java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setEmergencyDecel(String, double)","url":"setEmergencyDecel(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setEmergencyDecel(String, double)","url":"setEmergencyDecel(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setEmissionClass(String, String)","url":"setEmissionClass(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setEmissionClass(String, String)","url":"setEmissionClass(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"setFilled(String, boolean)","url":"setFilled(java.lang.String,boolean)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"setHeight(String, double)","url":"setHeight(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setHeight(String, double)","url":"setHeight(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setHeight(String, double)","url":"setHeight(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setImperfection(String, double)","url":"setImperfection(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setImperfection(String, double)","url":"setImperfection(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setLaneChangeMode(String, int)","url":"setLaneChangeMode(java.lang.String,int)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setLateralAlignment(String, String)","url":"setLateralAlignment(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setLateralAlignment(String, String)","url":"setLateralAlignment(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"setLength(String, double)","url":"setLength(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"setLength(String, double)","url":"setLength(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setLength(String, double)","url":"setLength(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setLength(String, double)","url":"setLength(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setLine(String, String)","url":"setLine(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"setMaxSpeed(String, double)","url":"setMaxSpeed(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"setMaxSpeed(String, double)","url":"setMaxSpeed(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setMaxSpeed(String, double)","url":"setMaxSpeed(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setMaxSpeed(String, double)","url":"setMaxSpeed(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setMaxSpeedLat(String, double)","url":"setMaxSpeedLat(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setMaxSpeedLat(String, double)","url":"setMaxSpeedLat(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"setMinGap(String, double)","url":"setMinGap(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setMinGap(String, double)","url":"setMinGap(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setMinGap(String, double)","url":"setMinGap(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setMinGapLat(String, double)","url":"setMinGapLat(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setMinGapLat(String, double)","url":"setMinGapLat(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"setOffset(String, double, double)","url":"setOffset(java.lang.String,double,double)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"setOrder(int)"},{"p":"de.tudresden.sumo.cmd","c":"Edge","l":"setParameter(String, String, String)","url":"setParameter(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Lane","l":"setParameter(String, String, String)","url":"setParameter(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"setParameter(String, String, String)","url":"setParameter(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"setParameter(String, String, String)","url":"setParameter(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"setParameter(String, String, String)","url":"setParameter(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Route","l":"setParameter(String, String, String)","url":"setParameter(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"setParameter(String, String, String)","url":"setParameter(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setParameter(String, String, String)","url":"setParameter(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setParameter(String, String, String)","url":"setParameter(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setParkingAreaStop(String, String, double, double)","url":"setParkingAreaStop(java.lang.String,java.lang.String,double,double)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"setPhase(String, int)","url":"setPhase(java.lang.String,int)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"setPhaseDuration(String, double)","url":"setPhaseDuration(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"setPhaseName(String, String)","url":"setPhaseName(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"setPosition(String, double, double)","url":"setPosition(java.lang.String,double,double)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"setProgram(String, String)","url":"setProgram(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"setRedYellowGreenState(String, String)","url":"setRedYellowGreenState(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setRoute(String, SumoStringList)","url":"setRoute(java.lang.String,de.tudresden.sumo.objects.SumoStringList)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setRouteID(String, String)","url":"setRouteID(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setRoutingMode(String, int)","url":"setRoutingMode(java.lang.String,int)"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"setSchema(String, String)","url":"setSchema(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"setShape(String, SumoStringList)","url":"setShape(java.lang.String,de.tudresden.sumo.objects.SumoStringList)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setShapeClass(String, String)","url":"setShapeClass(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setShapeClass(String, String)","url":"setShapeClass(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setSignals(String, int)","url":"setSignals(java.lang.String,int)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"setSpeed(String, double)","url":"setSpeed(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setSpeed(String, double)","url":"setSpeed(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setSpeedDeviation(String, double)","url":"setSpeedDeviation(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setSpeedDeviation(String, double)","url":"setSpeedDeviation(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setSpeedFactor(String, double)","url":"setSpeedFactor(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setSpeedFactor(String, double)","url":"setSpeedFactor(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setSpeedMode(String, int)","url":"setSpeedMode(java.lang.String,int)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setStop(String, String, double, byte, double, SumoStopFlags, double, double)","url":"setStop(java.lang.String,java.lang.String,double,byte,double,de.tudresden.sumo.objects.SumoStopFlags,double,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setTau(String, double)","url":"setTau(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setTau(String, double)","url":"setTau(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"setType(String, String)","url":"setType(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Poi","l":"setType(String, String)","url":"setType(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Polygon","l":"setType(String, String)","url":"setType(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setType(String, String)","url":"setType(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setVehicleClass(String, String)","url":"setVehicleClass(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setVehicleClass(String, String)","url":"setVehicleClass(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setVia(String, SumoStringList)","url":"setVia(java.lang.String,de.tudresden.sumo.objects.SumoStringList)"},{"p":"de.tudresden.sumo.cmd","c":"Person","l":"setWidth(String, double)","url":"setWidth(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"setWidth(String, double)","url":"setWidth(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setWidth(String, double)","url":"setWidth(java.lang.String,double)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"setWidth(String, String)","url":"setWidth(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"setZoom(String, double)","url":"setZoom(java.lang.String,double)"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"SIM_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"SIM_VARIABLE"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"simulation"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"simulation"},{"p":"de.tudresden.sumo.cmd","c":"Simulation","l":"Simulation()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"size()"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"size()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"size()"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"slowDown(String, double, double)","url":"slowDown(java.lang.String,double,double)"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"SOTL_MARCHING"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"SOTL_MARCHING"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"SOTL_PHASE"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"SOTL_PHASE"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"SOTL_PLATOON"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"SOTL_PLATOON"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"SOTL_REQUEST"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"SOTL_REQUEST"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"SOTL_WAVE"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"SOTL_WAVE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"SPLIT_TAXI_RESERVATIONS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STAGE_ACCESS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STAGE_DRIVING"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STAGE_TRANSHIP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STAGE_TRIP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STAGE_WAITING"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STAGE_WAITING_FOR_DEPART"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STAGE_WALKING"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"start"},{"p":"de.tudresden.sumo.subscription","c":"VariableSubscription","l":"start"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"state"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"STATIC"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"STATIC"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionObject","l":"status"},{"p":"it.polito.appeal.traci.protocol","c":"ResponseMessage","l":"STATUS_ONLY_RESPONSES"},{"p":"it.polito.appeal.traci.protocol","c":"StatusResponse","l":"StatusResponse(int, int, String)","url":"%3Cinit%3E(int,int,java.lang.String)"},{"p":"it.polito.appeal.traci.protocol","c":"StatusResponse","l":"StatusResponse(int)","url":"%3Cinit%3E(int)"},{"p":"it.polito.appeal.traci.protocol","c":"StatusResponse","l":"StatusResponse(Storage)","url":"%3Cinit%3E(de.uniluebeck.itm.tcpip.Storage)"},{"p":"de.tudresden.sumo.subscription","c":"ContextSubscription","l":"stop"},{"p":"de.tudresden.sumo.subscription","c":"VariableSubscription","l":"stop"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STOP_BUS_STOP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STOP_CHARGING_STATION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STOP_CONTAINER_STOP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STOP_CONTAINER_TRIGGERED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STOP_DEFAULT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STOP_OVERHEAD_WIRE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STOP_PARKING"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STOP_PARKING_AREA"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"STOP_TRIGGERED"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"stopped"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"Storage()","url":"%3Cinit%3E()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"Storage(byte[], int, int)","url":"%3Cinit%3E(byte[],int,int)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"Storage(byte[])","url":"%3Cinit%3E(byte[])"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"Storage(short[], int, int)","url":"%3Cinit%3E(short[],int,int)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"Storage(short[])","url":"%3Cinit%3E(short[])"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSProgram","l":"subID"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"subList(int, int)","url":"subList(int,int)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"subList(int, int)","url":"subList(int,int)"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionObject","l":"SubscriptionObject(String, ResponseType, int, int, int, SumoObject)","url":"%3Cinit%3E(java.lang.String,de.tudresden.sumo.subscription.ResponseType,int,int,int,de.tudresden.sumo.objects.SumoObject)"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionObject","l":"SubscriptionObject(String, ResponseType, int, String, int, int, int, SumoObject)","url":"%3Cinit%3E(java.lang.String,de.tudresden.sumo.subscription.ResponseType,int,java.lang.String,int,int,int,de.tudresden.sumo.objects.SumoObject)"},{"p":"de.tudresden.sumo.objects","c":"SumoBestLanes.SumoBestLane","l":"SumoBestLane(String, double, double, int, int, LinkedList)","url":"%3Cinit%3E(java.lang.String,double,double,int,int,java.util.LinkedList)"},{"p":"de.tudresden.sumo.objects","c":"SumoBestLanes","l":"SumoBestLanes()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoBestLanes","l":"SumoBestLanes()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoBoundingBox","l":"SumoBoundingBox()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoBoundingBox","l":"SumoBoundingBox()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoBoundingBox","l":"SumoBoundingBox(double, double, double, double)","url":"%3Cinit%3E(double,double,double,double)"},{"p":"de.tudresden.sumo.objects","c":"SumoColor","l":"SumoColor()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoColor","l":"SumoColor(int, int, int, int)","url":"%3Cinit%3E(int,int,int,int)"},{"p":"de.tudresden.ws.container","c":"SumoColor","l":"SumoColor(int, int, int, int)","url":"%3Cinit%3E(int,int,int,int)"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"SumoCommand(int, int, Object, int, int, String)","url":"%3Cinit%3E(int,int,java.lang.Object,int,int,java.lang.String)"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"SumoCommand(int, int, Object, int, int)","url":"%3Cinit%3E(int,int,java.lang.Object,int,int)"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"SumoCommand(int, int, Object, Object)","url":"%3Cinit%3E(int,int,java.lang.Object,java.lang.Object)"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"SumoCommand(int, int, Object, Object[], int, int)","url":"%3Cinit%3E(int,int,java.lang.Object,java.lang.Object[],int,int)"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"SumoCommand(int, int, Object, Object[])","url":"%3Cinit%3E(int,int,java.lang.Object,java.lang.Object[])"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"SumoCommand(int, int, Object[], int, int)","url":"%3Cinit%3E(int,int,java.lang.Object[],int,int)"},{"p":"de.tudresden.sumo.util","c":"SumoCommand","l":"SumoCommand(int, int)","url":"%3Cinit%3E(int,int)"},{"p":"de.tudresden.sumo.objects","c":"SumoGeometry","l":"SumoGeometry()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoGeometry","l":"SumoGeometry()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoLeader","l":"SumoLeader(String, double)","url":"%3Cinit%3E(java.lang.String,double)"},{"p":"de.tudresden.ws.container","c":"SumoLeader","l":"SumoLeader(String, double)","url":"%3Cinit%3E(java.lang.String,double)"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"SumoLink(String, String, byte, byte, byte, double, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,byte,byte,byte,double,java.lang.String,java.lang.String)"},{"p":"de.tudresden.ws.container","c":"SumoLink","l":"SumoLink(String, String, byte, byte, byte, double, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,byte,byte,byte,double,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"SumoLink(String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.ws.container","c":"SumoLink","l":"SumoLink(String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"SumoLinkList()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"SumoLinkList(List)","url":"%3Cinit%3E(java.util.List)"},{"p":"de.tudresden.sumo.objects","c":"SumoNextTLS","l":"SumoNextTLS()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoNextTLS","l":"SumoNextTLS()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition2D","l":"SumoPosition2D()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoPosition2D","l":"SumoPosition2D()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition2D","l":"SumoPosition2D(double, double)","url":"%3Cinit%3E(double,double)"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition3D","l":"SumoPosition3D()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoPosition3D","l":"SumoPosition3D()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition3D","l":"SumoPosition3D(double, double, double)","url":"%3Cinit%3E(double,double,double)"},{"p":"de.tudresden.sumo.objects","c":"SumoPrimitive","l":"SumoPrimitive(Object)","url":"%3Cinit%3E(java.lang.Object)"},{"p":"de.tudresden.sumo.objects","c":"SumoRoadPosition","l":"SumoRoadPosition()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoRoadPosition","l":"SumoRoadPosition()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"SumoStage()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoStage","l":"SumoStage()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"SumoStopFlags(boolean, boolean, boolean, boolean, boolean, boolean, boolean)","url":"%3Cinit%3E(boolean,boolean,boolean,boolean,boolean,boolean,boolean)"},{"p":"de.tudresden.ws.container","c":"SumoStopFlags","l":"SumoStopFlags(boolean, boolean, boolean, boolean, boolean, boolean, boolean)","url":"%3Cinit%3E(boolean,boolean,boolean,boolean,boolean,boolean,boolean)"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"SumoStopFlags(byte)","url":"%3Cinit%3E(byte)"},{"p":"de.tudresden.ws.container","c":"SumoStopFlags","l":"SumoStopFlags(byte)","url":"%3Cinit%3E(byte)"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"SumoStringList()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"SumoStringList(List)","url":"%3Cinit%3E(java.util.List)"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSController","l":"SumoTLSController()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoTLSController","l":"SumoTLSController()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"SumoTLSPhase()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoTLSPhase","l":"SumoTLSPhase()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"SumoTLSPhase(double, double, double, String, ArrayList, String)","url":"%3Cinit%3E(double,double,double,java.lang.String,java.util.ArrayList,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"SumoTLSPhase(int, String, String)","url":"%3Cinit%3E(int,java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"SumoTLSPhase(int, String)","url":"%3Cinit%3E(int,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSProgram","l":"SumoTLSProgram()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSProgram","l":"SumoTLSProgram(String, int, int)","url":"%3Cinit%3E(java.lang.String,int,int)"},{"p":"de.tudresden.ws.container","c":"SumoTLSProgram","l":"SumoTLSProgram(String, int, int)","url":"%3Cinit%3E(java.lang.String,int,int)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"SumoTraciConnection(int)","url":"%3Cinit%3E(int)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"SumoTraciConnection(SocketAddress)","url":"%3Cinit%3E(java.net.SocketAddress)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"SumoTraciConnection(String, int, boolean)","url":"%3Cinit%3E(java.lang.String,int,boolean)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"SumoTraciConnection(String, String, String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"SumoTraciConnection(String, String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"SumoTraciConnection(String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"SumoTraciConnection(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"it.polito.appeal.traci","c":"SumoTraciConnection","l":"SumoTraciConnection(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleData","l":"SumoVehicleData()","url":"%3Cinit%3E()"},{"p":"de.tudresden.ws.container","c":"SumoVehicleData","l":"SumoVehicleData()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignal","l":"SumoVehicleSignal(int)","url":"%3Cinit%3E(int)"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignal","l":"SumoVehicleSignal(int)","url":"%3Cinit%3E(int)"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"SWARM_BASED"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"SWARM_BASED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_BLOCKING_VEHICLES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_COMPLETE_DEFINITION_RYG"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_COMPLETE_PROGRAM_RYG"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_CONSTRAINT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_CONSTRAINT_BYFOE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_CONSTRAINT_REMOVE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_CONSTRAINT_SWAP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_CONSTRAINT_UPDATE"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"TL_CONTEXT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_CONTROLLED_JUNCTIONS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_CONTROLLED_LANES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_CONTROLLED_LINKS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_CURRENT_PHASE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_CURRENT_PROGRAM"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_EXTERNAL_STATE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_NEXT_SWITCH"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_PHASE_DURATION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_PHASE_INDEX"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_PRIORITY_VEHICLES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_PROGRAM"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_RED_YELLOW_GREEN_STATE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TL_RIVAL_VEHICLES"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"TL_VARIABLE"},{"p":"de.tudresden.sumo.objects","c":"SumoNextTLS.NextTLS","l":"tlsID"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"to"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"toArray()"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"toArray()"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"toArray(T[])"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"toArray(T[])"},{"p":"de.tudresden.sumo.objects","c":"SumoBestLanes","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoBoundingBox","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoColor","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoGeometry","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoLeader","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoLink","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoLinkList","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoNextTLS","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition2D","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition3D","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoStringList","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSController","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSPhase","l":"toString()"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSProgram","l":"toString()"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"toString()"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TRACI_ID_LIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TRACI_VERSION"},{"p":"it.polito.appeal.traci","c":"TraCIException","l":"TraCIException()","url":"%3Cinit%3E()"},{"p":"it.polito.appeal.traci","c":"TraCIException","l":"TraCIException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"de.tudresden.sumo.cmd","c":"Gui","l":"trackVehicle(String, String)","url":"trackVehicle(java.lang.String,java.lang.String)"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"trafficlight"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"trafficlight"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TRAFFICLIGHT_TYPE_ACTUATED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TRAFFICLIGHT_TYPE_DELAYBASED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TRAFFICLIGHT_TYPE_STATIC"},{"p":"de.tudresden.sumo.cmd","c":"Trafficlight","l":"Trafficlight()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"travelTime"},{"p":"de.tudresden.sumo.objects","c":"SumoStopFlags","l":"triggered"},{"p":"de.tudresden.sumo.objects","c":"SumoPrimitive","l":"type"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"type"},{"p":"de.tudresden.sumo.objects","c":"SumoTLSProgram","l":"type"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TYPE_BYTE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TYPE_COLOR"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TYPE_COMPOUND"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TYPE_DOUBLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TYPE_DOUBLELIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TYPE_INTEGER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TYPE_POLYGON"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TYPE_STRING"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TYPE_STRINGLIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"TYPE_UBYTE"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleData.VehicleData","l":"typeID"},{"p":"it.polito.appeal.traci","c":"TraCIException.UnexpectedData","l":"UnexpectedData(String, Object, Object)","url":"%3Cinit%3E(java.lang.String,java.lang.Object,java.lang.Object)"},{"p":"it.polito.appeal.traci","c":"TraCIException.UnexpectedDatatype","l":"UnexpectedDatatype(int, int)","url":"%3Cinit%3E(int,int)"},{"p":"it.polito.appeal.traci","c":"TraCIException.UnexpectedResponse","l":"UnexpectedResponse(int, int)","url":"%3Cinit%3E(int,int)"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"UNKNOWN"},{"p":"de.tudresden.sumo.util","c":"Observer","l":"update(Observable, SubscriptionObject)","url":"update(de.tudresden.sumo.util.Observable,de.tudresden.sumo.subscription.SubscriptionObject)"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"updateBestLanes(String)","url":"updateBestLanes(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoPrimitive","l":"val"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"validPos()"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoTrafficLightType","l":"values()"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"values()"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"values()"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"values()"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"values()"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"values()"},{"p":"de.tudresden.ws.container","c":"SumoTrafficLightType","l":"values()"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"values()"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ACCEL"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ACCELERATION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ACCUMULATED_WAITING_TIME"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ACTIONSTEPLENGTH"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ADD_DYNAMICS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ALLOWED_SPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ANGLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_APPARENT_DECEL"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ARRIVALLANE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ARRIVALPOS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ARRIVALSPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ARRIVED_PERSONS_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ARRIVED_PERSONS_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ARRIVED_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ARRIVED_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_BEGIN"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_BEST_LANES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_BOARDING_DURATION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_BUS_STOP_ID_LIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_BUS_STOP_WAITING"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_BUS_STOP_WAITING_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_CO2EMISSION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_COEMISSION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_COLLIDING_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_COLLIDING_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_COLLISIONS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_COLOR"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_CURRENT_TRAVELTIME"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_DECEL"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_DELTA_T"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_DEPART_DELAY"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_DEPARTED_PERSONS_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_DEPARTED_PERSONS_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_DEPARTED_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_DEPARTED_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_DEPARTURE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_DISTANCE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_EDGE_EFFORT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_EDGE_TRAVELTIME"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_EDGES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ELECTRICITYCONSUMPTION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_EMERGENCY_DECEL"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_EMERGENCYSTOPPING_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_EMERGENCYSTOPPING_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_EMISSIONCLASS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_END"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_EXIT_LANES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_EXIT_POSITIONS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_FILL"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_FOES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_FOLLOW_SPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_FOLLOWER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_FRICTION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_FUELCONSUMPTION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_HAS_VIEW"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_HCEMISSION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_HEIGHT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_HIGHLIGHT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_IMAGEFILE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_IMPATIENCE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_IMPERFECTION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_INSERTED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_INTERVAL_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_INTERVAL_MAX_JAM_LENGTH_METERS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_INTERVAL_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_INTERVAL_OCCUPANCY"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_INTERVAL_SPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LANE_ID"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LANE_INDEX"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LANECHANGE_MODE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LANEPOSITION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LANEPOSITION_LAT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LANES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LAST_INTERVAL_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LAST_INTERVAL_MAX_JAM_LENGTH_METERS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LAST_INTERVAL_MEAN_HALTING_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LAST_INTERVAL_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LAST_INTERVAL_OCCUPANCY"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LAST_INTERVAL_SPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LAST_INTERVAL_TRAVELTIME"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LAST_INTERVAL_VEHICLE_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LASTACTIONTIME"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LATALIGNMENT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LEADER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LENGTH"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LINE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LOADED_LIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LOADED_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_LOADED_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_MAXSPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_MAXSPEED_LAT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_MIN_EXPECTED_VEHICLES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_MINGAP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_MINGAP_LAT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_MOVE_TO"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_NAME"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_NEIGHBORS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_NET_BOUNDING_BOX"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_NEXT_EDGE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_NEXT_LINKS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_NEXT_STOPS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_NEXT_STOPS2"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_NEXT_TLS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_NOISEEMISSION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_NOXEMISSION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_OPTION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PARAMETER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PARAMETER_WITH_KEY"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PARKING_ENDING_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PARKING_ENDING_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PARKING_MANEUVERING_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PARKING_MANEUVERING_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PARKING_STARTING_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PARKING_STARTING_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PASSED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PENDING_VEHICLES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PERSON_CAPACITY"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PERSON_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PMXEMISSION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_POSITION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_POSITION3D"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_PREV_SPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_REMOVED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ROAD_ID"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ROUTE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ROUTE_ID"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ROUTE_INDEX"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ROUTE_PROBE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ROUTE_VALID"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_ROUTING_MODE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SAMPLE_CURRENT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SAMPLE_LAST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SCALE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SCREENSHOT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SECURE_GAP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SELECT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SHAPE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SHAPECLASS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SIGNALS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SLOPE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SPEED_DEVIATION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SPEED_FACTOR"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SPEED_LAT"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SPEED_WITHOUT_TRACI"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_SPEEDSETMODE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STAGE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STAGES_REMAINING"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STOP_ARRIVALDELAY"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STOP_DELAY"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STOP_ENDING_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STOP_ENDING_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STOP_PARAMETER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STOP_SPEED"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STOP_STARTING_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STOP_STARTING_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_STOPSTATE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TAU"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TAXI_FLEET"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TAXI_RESERVATIONS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TELEPORT_ENDING_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TELEPORT_ENDING_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TELEPORT_STARTING_VEHICLES_IDS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TELEPORT_STARTING_VEHICLES_NUMBER"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TELEPORTING_LIST"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TIME"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TIME_STEP"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TIMELOSS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TRACK_VEHICLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_TYPE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_UPDATE_BESTLANES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_VEHICLE"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_VEHICLECLASS"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_VEHSPERHOUR"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_VIA"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_VIEW_BOUNDARY"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_VIEW_OFFSET"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_VIEW_SCHEMA"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_VIEW_ZOOM"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_VIRTUAL_DETECTION"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_VTYPES"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_WAITING_TIME"},{"p":"de.tudresden.sumo.config","c":"Constants","l":"VAR_WIDTH"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionObject","l":"variable"},{"p":"de.tudresden.sumo.subscription","c":"VariableSubscription","l":"VariableSubscription()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.subscription","c":"VariableSubscription","l":"VariableSubscription(SubscribtionVariable, double, double, String)","url":"%3Cinit%3E(de.tudresden.sumo.subscription.SubscribtionVariable,double,double,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_BACKDRIVE"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_BACKDRIVE"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_BLINKER_EMERGENCY"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_BLINKER_EMERGENCY"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_BLINKER_LEFT"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_BLINKER_LEFT"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_BLINKER_RIGHT"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_BLINKER_RIGHT"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_BRAKELIGHT"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_BRAKELIGHT"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_DOOR_OPEN_LEFT"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_DOOR_OPEN_LEFT"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_DOOR_OPEN_RIGHT"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_DOOR_OPEN_RIGHT"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_EMERGENCY_BLUE"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_EMERGENCY_BLUE"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_EMERGENCY_RED"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_EMERGENCY_RED"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_EMERGENCY_YELLOW"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_EMERGENCY_YELLOW"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_FOGLIGHT"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_FOGLIGHT"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_FRONTLIGHT"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_FRONTLIGHT"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_HIGHBEAM"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_HIGHBEAM"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_WIPER"},{"p":"de.tudresden.ws.container","c":"SumoVehicleSignalState","l":"VEH_SIGNAL_WIPER"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"vehicle"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"vehicle"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"VEHICLE_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"VEHICLE_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Vehicle","l":"Vehicle()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleData.VehicleData","l":"VehicleData(String, double, double, double, String)","url":"%3Cinit%3E(java.lang.String,double,double,double,java.lang.String)"},{"p":"de.tudresden.sumo.subscription","c":"SumoDomain","l":"vehicles"},{"p":"de.tudresden.sumo.subscription","c":"SubscribtionVariable","l":"vehicleType"},{"p":"de.tudresden.sumo.subscription","c":"SubscriptionContext","l":"vehicleType"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"VEHICLETYPE_CONTEXT"},{"p":"de.tudresden.sumo.subscription","c":"ResponseType","l":"VEHICLETYPE_VARIABLE"},{"p":"de.tudresden.sumo.cmd","c":"Vehicletype","l":"Vehicletype()","url":"%3Cinit%3E()"},{"p":"de.tudresden.sumo.objects","c":"SumoLeader","l":"vehID"},{"p":"de.tudresden.sumo.objects","c":"SumoVehicleData.VehicleData","l":"vehID"},{"p":"de.tudresden.sumo.util","c":"Query","l":"verify(String, int, byte)","url":"verify(java.lang.String,int,byte)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"verify(String, int, short)","url":"verify(java.lang.String,int,short)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"verify(String, Object, Object)","url":"verify(java.lang.String,java.lang.Object,java.lang.Object)"},{"p":"de.tudresden.sumo.util","c":"CommandProcessor","l":"verifyGetVarResponse(Command, int, int, String)","url":"verifyGetVarResponse(it.polito.appeal.traci.protocol.Command,int,int,java.lang.String)"},{"p":"de.tudresden.sumo.util","c":"Query","l":"verifyGetVarResponse(Command, int, int, String)","url":"verifyGetVarResponse(it.polito.appeal.traci.protocol.Command,int,int,java.lang.String)"},{"p":"de.tudresden.sumo.objects","c":"SumoStage","l":"vType"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeByte(int)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeByte(short)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeDouble(double)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeFloat(float)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeInt(int)"},{"p":"it.polito.appeal.traci.protocol","c":"Command","l":"writeRawTo(Storage)","url":"writeRawTo(de.uniluebeck.itm.tcpip.Storage)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeShort(int)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeStringASCII(String)","url":"writeStringASCII(java.lang.String)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeStringISOLATIN1(String)","url":"writeStringISOLATIN1(java.lang.String)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeStringUTF16BE(String)","url":"writeStringUTF16BE(java.lang.String)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeStringUTF16LE(String)","url":"writeStringUTF16LE(java.lang.String)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeStringUTF8(String)","url":"writeStringUTF8(java.lang.String)"},{"p":"it.polito.appeal.traci.protocol","c":"RequestMessage","l":"writeTo(DataOutputStream)","url":"writeTo(java.io.DataOutputStream)"},{"p":"it.polito.appeal.traci.protocol","c":"StatusResponse","l":"writeTo(Storage)","url":"writeTo(de.uniluebeck.itm.tcpip.Storage)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeUnsignedByte(int)"},{"p":"de.uniluebeck.itm.tcpip","c":"Storage","l":"writeUnsignedByte(short)"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition2D","l":"x"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition3D","l":"x"},{"p":"de.tudresden.sumo.objects","c":"SumoBoundingBox","l":"x_max"},{"p":"de.tudresden.sumo.objects","c":"SumoBoundingBox","l":"x_min"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition2D","l":"y"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition3D","l":"y"},{"p":"de.tudresden.sumo.objects","c":"SumoBoundingBox","l":"y_max"},{"p":"de.tudresden.sumo.objects","c":"SumoBoundingBox","l":"y_min"},{"p":"de.tudresden.sumo.objects","c":"SumoPosition3D","l":"z"}] \ No newline at end of file Binary files /tmp/tmp7yk4jeko/wfG00_uEeX/sumo-1.17.0/docs/javadoc/traas/member-search-index.zip and /tmp/tmp7yk4jeko/Palhb2urmR/sumo-1.18.0/docs/javadoc/traas/member-search-index.zip differ diff -Nru sumo-1.17.0/docs/javadoc/traas/overview-summary.html sumo-1.18.0/docs/javadoc/traas/overview-summary.html --- sumo-1.17.0/docs/javadoc/traas/overview-summary.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/overview-summary.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,7 +2,7 @@ - + traas 1.1 API diff -Nru sumo-1.17.0/docs/javadoc/traas/overview-tree.html sumo-1.18.0/docs/javadoc/traas/overview-tree.html --- sumo-1.17.0/docs/javadoc/traas/overview-tree.html 2023-04-24 22:07:54.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/overview-tree.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Class Hierarchy (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + Binary files /tmp/tmp7yk4jeko/wfG00_uEeX/sumo-1.17.0/docs/javadoc/traas/package-search-index.zip and /tmp/tmp7yk4jeko/Palhb2urmR/sumo-1.18.0/docs/javadoc/traas/package-search-index.zip differ diff -Nru sumo-1.17.0/docs/javadoc/traas/serialized-form.html sumo-1.18.0/docs/javadoc/traas/serialized-form.html --- sumo-1.17.0/docs/javadoc/traas/serialized-form.html 2023-04-24 22:07:53.000000000 +0000 +++ sumo-1.18.0/docs/javadoc/traas/serialized-form.html 2023-06-28 22:08:11.000000000 +0000 @@ -2,10 +2,10 @@ - + Serialized Form (traas 1.1 API) - + @@ -15,7 +15,7 @@ - + Binary files /tmp/tmp7yk4jeko/wfG00_uEeX/sumo-1.17.0/docs/javadoc/traas/type-search-index.zip and /tmp/tmp7yk4jeko/Palhb2urmR/sumo-1.18.0/docs/javadoc/traas/type-search-index.zip differ diff -Nru sumo-1.17.0/docs/man/activitygen.1 sumo-1.18.0/docs/man/activitygen.1 --- sumo-1.17.0/docs/man/activitygen.1 2023-04-24 22:07:50.000000000 +0000 +++ sumo-1.18.0/docs/man/activitygen.1 2023-06-28 22:08:07.000000000 +0000 @@ -1,12 +1,12 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. -.TH ECLIPSE "1" "April 2023" "Eclipse SUMO activitygen Version 1.17.0" "User Commands" +.TH ECLIPSE "1" "June 2023" "Eclipse SUMO activitygen Version 1.18.0" "User Commands" .SH NAME Eclipse \- Generates routes of persons throughout a day for the microscopic traffic simulation SUMO .SH SYNOPSIS .B activitygen [\fI\,OPTION\/\fR]\fI\,*\/\fR .SH DESCRIPTION -Eclipse SUMO activitygen Version 1.17.0 +Eclipse SUMO activitygen Version 1.18.0 .IP Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de Copyright (C) 2010\-2012 Technische Universitaet Muenchen @@ -151,14 +151,14 @@ Get in contact via . .IP .br -Build features: Linux\-5.15.0\-70\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG +Build features: Linux\-5.15.0\-75\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG .br Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .br Copyright (C) 2010\-2012 Technische Universitaet Muenchen .PP .br -Eclipse SUMO activitygen Version 1.17.0 is part of SUMO. +Eclipse SUMO activitygen Version 1.18.0 is part of SUMO. .br This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 diff -Nru sumo-1.17.0/docs/man/dfrouter.1 sumo-1.18.0/docs/man/dfrouter.1 --- sumo-1.17.0/docs/man/dfrouter.1 2023-04-24 22:07:50.000000000 +0000 +++ sumo-1.18.0/docs/man/dfrouter.1 2023-06-28 22:08:07.000000000 +0000 @@ -1,12 +1,12 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. -.TH ECLIPSE "1" "April 2023" "Eclipse SUMO dfrouter Version 1.17.0" "User Commands" +.TH ECLIPSE "1" "June 2023" "Eclipse SUMO dfrouter Version 1.18.0" "User Commands" .SH NAME Eclipse \- Builds vehicle routes for SUMO using detector values .SH SYNOPSIS .B dfrouter [\fI\,OPTION\/\fR]\fI\,*\/\fR .SH DESCRIPTION -Eclipse SUMO dfrouter Version 1.17.0 +Eclipse SUMO dfrouter Version 1.18.0 .IP Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP @@ -305,12 +305,12 @@ Get in contact via . .IP .br -Build features: Linux\-5.15.0\-70\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG +Build features: Linux\-5.15.0\-75\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG .br Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP .br -Eclipse SUMO dfrouter Version 1.17.0 is part of SUMO. +Eclipse SUMO dfrouter Version 1.18.0 is part of SUMO. .br This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 diff -Nru sumo-1.17.0/docs/man/duarouter.1 sumo-1.18.0/docs/man/duarouter.1 --- sumo-1.17.0/docs/man/duarouter.1 2023-04-24 22:07:50.000000000 +0000 +++ sumo-1.18.0/docs/man/duarouter.1 2023-06-28 22:08:07.000000000 +0000 @@ -1,12 +1,12 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. -.TH ECLIPSE "1" "April 2023" "Eclipse SUMO duarouter Version 1.17.0" "User Commands" +.TH ECLIPSE "1" "June 2023" "Eclipse SUMO duarouter Version 1.18.0" "User Commands" .SH NAME Eclipse \- Shortest path router and DUE computer for the microscopic traffic simulation SUMO .SH SYNOPSIS .B duarouter [\fI\,OPTION\/\fR]\fI\,*\/\fR .SH DESCRIPTION -Eclipse SUMO duarouter Version 1.17.0 +Eclipse SUMO duarouter Version 1.18.0 .IP Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP @@ -434,12 +434,12 @@ Get in contact via . .IP .br -Build features: Linux\-5.15.0\-70\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG +Build features: Linux\-5.15.0\-75\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG .br Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP .br -Eclipse SUMO duarouter Version 1.17.0 is part of SUMO. +Eclipse SUMO duarouter Version 1.18.0 is part of SUMO. .br This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 diff -Nru sumo-1.17.0/docs/man/emissionsDrivingCycle.1 sumo-1.18.0/docs/man/emissionsDrivingCycle.1 --- sumo-1.17.0/docs/man/emissionsDrivingCycle.1 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/man/emissionsDrivingCycle.1 2023-06-28 22:08:09.000000000 +0000 @@ -1,12 +1,12 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. -.TH ECLIPSE "1" "April 2023" "Eclipse SUMO emissionsDrivingCycle Version 1.17.0" "User Commands" +.TH ECLIPSE "1" "June 2023" "Eclipse SUMO emissionsDrivingCycle Version 1.18.0" "User Commands" .SH NAME Eclipse \- Computes emissions by driving a time line using SUMO's emission models .SH SYNOPSIS .B emissionsDrivingCycle [\fI\,OPTION\/\fR]\fI\,*\/\fR .SH DESCRIPTION -Eclipse SUMO emissionsDrivingCycle Version 1.17.0 +Eclipse SUMO emissionsDrivingCycle Version 1.18.0 .IP Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP @@ -196,12 +196,12 @@ Get in contact via . .IP .br -Build features: Linux\-5.15.0\-70\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG +Build features: Linux\-5.15.0\-75\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG .br Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP .br -Eclipse SUMO emissionsDrivingCycle Version 1.17.0 is part of SUMO. +Eclipse SUMO emissionsDrivingCycle Version 1.18.0 is part of SUMO. .br This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 diff -Nru sumo-1.17.0/docs/man/emissionsMap.1 sumo-1.18.0/docs/man/emissionsMap.1 --- sumo-1.17.0/docs/man/emissionsMap.1 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/man/emissionsMap.1 2023-06-28 22:08:09.000000000 +0000 @@ -1,12 +1,12 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. -.TH ECLIPSE "1" "April 2023" "Eclipse SUMO emissionsMap Version 1.17.0" "User Commands" +.TH ECLIPSE "1" "June 2023" "Eclipse SUMO emissionsMap Version 1.18.0" "User Commands" .SH NAME Eclipse \- Builds and writes an emissions map for SUMO's emission models .SH SYNOPSIS .B emissionsMap [\fI\,OPTION\/\fR]\fI\,*\/\fR .SH DESCRIPTION -Eclipse SUMO emissionsMap Version 1.17.0 +Eclipse SUMO emissionsMap Version 1.18.0 .IP Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP @@ -162,12 +162,12 @@ Get in contact via . .IP .br -Build features: Linux\-5.15.0\-70\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG +Build features: Linux\-5.15.0\-75\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG .br Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP .br -Eclipse SUMO emissionsMap Version 1.17.0 is part of SUMO. +Eclipse SUMO emissionsMap Version 1.18.0 is part of SUMO. .br This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 diff -Nru sumo-1.17.0/docs/man/jtrrouter.1 sumo-1.18.0/docs/man/jtrrouter.1 --- sumo-1.17.0/docs/man/jtrrouter.1 2023-04-24 22:07:50.000000000 +0000 +++ sumo-1.18.0/docs/man/jtrrouter.1 2023-06-28 22:08:07.000000000 +0000 @@ -1,12 +1,12 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. -.TH ECLIPSE "1" "April 2023" "Eclipse SUMO jtrrouter Version 1.17.0" "User Commands" +.TH ECLIPSE "1" "June 2023" "Eclipse SUMO jtrrouter Version 1.18.0" "User Commands" .SH NAME Eclipse \- Router for the microscopic traffic simulation SUMO based on junction turning ratios .SH SYNOPSIS .B jtrrouter [\fI\,OPTION\/\fR]\fI\,*\/\fR .SH DESCRIPTION -Eclipse SUMO jtrrouter Version 1.17.0 +Eclipse SUMO jtrrouter Version 1.18.0 .IP Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP @@ -312,12 +312,12 @@ Get in contact via . .IP .br -Build features: Linux\-5.15.0\-70\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG +Build features: Linux\-5.15.0\-75\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG .br Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP .br -Eclipse SUMO jtrrouter Version 1.17.0 is part of SUMO. +Eclipse SUMO jtrrouter Version 1.18.0 is part of SUMO. .br This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 diff -Nru sumo-1.17.0/docs/man/marouter.1 sumo-1.18.0/docs/man/marouter.1 --- sumo-1.17.0/docs/man/marouter.1 2023-04-24 22:07:50.000000000 +0000 +++ sumo-1.18.0/docs/man/marouter.1 2023-06-28 22:08:07.000000000 +0000 @@ -1,12 +1,12 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. -.TH ECLIPSE "1" "April 2023" "Eclipse SUMO marouter Version 1.17.0" "User Commands" +.TH ECLIPSE "1" "June 2023" "Eclipse SUMO marouter Version 1.18.0" "User Commands" .SH NAME Eclipse \- Import O/D-matrices and trips using macroscopic traffic assignment for SUMO .SH SYNOPSIS .B marouter [\fI\,OPTION\/\fR]\fI\,*\/\fR .SH DESCRIPTION -Eclipse SUMO marouter Version 1.17.0 +Eclipse SUMO marouter Version 1.18.0 .IP Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP @@ -403,12 +403,12 @@ Get in contact via . .IP .br -Build features: Linux\-5.15.0\-70\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG +Build features: Linux\-5.15.0\-75\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG .br Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP .br -Eclipse SUMO marouter Version 1.17.0 is part of SUMO. +Eclipse SUMO marouter Version 1.18.0 is part of SUMO. .br This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 diff -Nru sumo-1.17.0/docs/man/netconvert.1 sumo-1.18.0/docs/man/netconvert.1 --- sumo-1.17.0/docs/man/netconvert.1 2023-04-24 22:07:50.000000000 +0000 +++ sumo-1.18.0/docs/man/netconvert.1 2023-06-28 22:08:08.000000000 +0000 @@ -1,12 +1,12 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. -.TH ECLIPSE "1" "April 2023" "Eclipse SUMO netconvert Version 1.17.0" "User Commands" +.TH ECLIPSE "1" "June 2023" "Eclipse SUMO netconvert Version 1.18.0" "User Commands" .SH NAME Eclipse \- Road network importer / builder for the traffic simulation SUMO .SH SYNOPSIS .B netconvert [\fI\,OPTION\/\fR]\fI\,*\/\fR .SH DESCRIPTION -Eclipse SUMO netconvert Version 1.17.0 +Eclipse SUMO netconvert Version 1.18.0 .IP Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP @@ -314,6 +314,11 @@ lane widths if the difference is below FLOAT .TP +\fB\-\-geometry\fR.remove.max\-junction\-size FLOAT +Prevent removal of junctions with +a size above FLOAT as defined by custom +edge endpoints +.TP \fB\-\-geometry\fR.max\-segment\-length FLOAT splits geometry to restrict segment length @@ -544,6 +549,10 @@ Determines the maximal distance for joining traffic lights (defaults to 20) .TP +\fB\-\-tls\fR.join\-exclude STR[] +Interprets STR[] as list of tls ids to +exclude from joining +.TP \fB\-\-tls\fR.uncontrolled\-within Do not control edges that lie fully within a joined traffic light. This may @@ -903,6 +912,10 @@ outgoing edge speed on junction instead of average .TP +\fB\-\-junctions\fR.minimal\-shape +Build junctions with minimal shapes +(igoring edge overlap) +.TP \fB\-\-internal\-junctions\fR.vehicle\-width FLOAT Assumed vehicle width for computing internal junction positions @@ -1004,6 +1017,11 @@ Add turn\-around connections at all loaded stops. .TP +\fB\-\-railway\fR.topology.repair.bidi\-penalty FLOAT +Penalty factor for adding new +bidi edges to connect public transport +stops +.TP \fB\-\-railway\fR.topology.all\-bidi Make all rails usable in both direction .TP @@ -1019,6 +1037,10 @@ Extend loaded edge priority values based on estimated main direction .TP +\fB\-\-railway\fR.signal.guess.by\-stops +Guess signals that guard public +transport stops +.TP \fB\-\-railway\fR.access\-distance FLOAT The search radius for finding suitable road accesses for rail stops @@ -1250,6 +1272,10 @@ \fB\-\-opendrive\fR.lane\-shapes Use custom lane shapes to compensate discarded lane types +.TP +\fB\-\-opendrive\fR.signal\-groups +Use the OpenDRIVE controller information +for the generated signal program .SS "Report Options:" .TP \fB\-v\fR, \fB\-\-verbose\fR @@ -1330,12 +1356,12 @@ Get in contact via . .IP .br -Build features: Linux\-5.15.0\-70\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG +Build features: Linux\-5.15.0\-75\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG .br Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP .br -Eclipse SUMO netconvert Version 1.17.0 is part of SUMO. +Eclipse SUMO netconvert Version 1.18.0 is part of SUMO. .br This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 diff -Nru sumo-1.17.0/docs/man/netedit.1 sumo-1.18.0/docs/man/netedit.1 --- sumo-1.17.0/docs/man/netedit.1 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/man/netedit.1 2023-06-28 22:08:08.000000000 +0000 @@ -1,12 +1,12 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. -.TH ECLIPSE "1" "April 2023" "Eclipse SUMO netedit Version 1.17.0" "User Commands" +.TH ECLIPSE "1" "June 2023" "Eclipse SUMO netedit Version 1.18.0" "User Commands" .SH NAME Eclipse \- Road network editor for the traffic simulation SUMO .SH SYNOPSIS .B netedit [\fI\,OPTION\/\fR]\fI\,*\/\fR .SH DESCRIPTION -Eclipse SUMO netedit Version 1.17.0 +Eclipse SUMO netedit Version 1.18.0 .IP Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP @@ -342,6 +342,11 @@ lane widths if the difference is below FLOAT .TP +\fB\-\-geometry\fR.remove.max\-junction\-size FLOAT +Prevent removal of junctions with +a size above FLOAT as defined by custom +edge endpoints +.TP \fB\-\-geometry\fR.max\-segment\-length FLOAT splits geometry to restrict segment length @@ -572,6 +577,10 @@ Determines the maximal distance for joining traffic lights (defaults to 20) .TP +\fB\-\-tls\fR.join\-exclude STR[] +Interprets STR[] as list of tls ids to +exclude from joining +.TP \fB\-\-tls\fR.uncontrolled\-within Do not control edges that lie fully within a joined traffic light. This may @@ -931,6 +940,10 @@ outgoing edge speed on junction instead of average .TP +\fB\-\-junctions\fR.minimal\-shape +Build junctions with minimal shapes +(igoring edge overlap) +.TP \fB\-\-internal\-junctions\fR.vehicle\-width FLOAT Assumed vehicle width for computing internal junction positions @@ -1032,6 +1045,11 @@ Add turn\-around connections at all loaded stops. .TP +\fB\-\-railway\fR.topology.repair.bidi\-penalty FLOAT +Penalty factor for adding new +bidi edges to connect public transport +stops +.TP \fB\-\-railway\fR.topology.all\-bidi Make all rails usable in both direction .TP @@ -1047,6 +1065,10 @@ Extend loaded edge priority values based on estimated main direction .TP +\fB\-\-railway\fR.signal.guess.by\-stops +Guess signals that guard public +transport stops +.TP \fB\-\-railway\fR.access\-distance FLOAT The search radius for finding suitable road accesses for rail stops @@ -1278,6 +1300,10 @@ \fB\-\-opendrive\fR.lane\-shapes Use custom lane shapes to compensate discarded lane types +.TP +\fB\-\-opendrive\fR.signal\-groups +Use the OpenDRIVE controller information +for the generated signal program .SS "Netedit Options:" .TP \fB\-\-new\-network\fR @@ -1351,7 +1377,10 @@ Prefix for route naming .TP \fB\-\-vType\-prefix\fR STR -Prefix for vType naming +Prefix for type naming +.TP +\fB\-\-vTypeDistribution\-prefix\fR STR +Prefix for type distribution naming .TP \fB\-\-vehicle\-prefix\fR STR Prefix for vehicle naming @@ -1517,12 +1546,12 @@ Get in contact via . .IP .br -Build features: Linux\-5.15.0\-70\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG +Build features: Linux\-5.15.0\-75\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG .br Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP .br -Eclipse SUMO netedit Version 1.17.0 is part of SUMO. +Eclipse SUMO netedit Version 1.18.0 is part of SUMO. .br This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 diff -Nru sumo-1.17.0/docs/man/netgenerate.1 sumo-1.18.0/docs/man/netgenerate.1 --- sumo-1.17.0/docs/man/netgenerate.1 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/man/netgenerate.1 2023-06-28 22:08:08.000000000 +0000 @@ -1,12 +1,12 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. -.TH ECLIPSE "1" "April 2023" "Eclipse SUMO netgenerate Version 1.17.0" "User Commands" +.TH ECLIPSE "1" "June 2023" "Eclipse SUMO netgenerate Version 1.18.0" "User Commands" .SH NAME Eclipse \- Road network generator for the microscopic traffic simulation SUMO .SH SYNOPSIS .B netgenerate [\fI\,OPTION\/\fR]\fI\,*\/\fR .SH DESCRIPTION -Eclipse SUMO netgenerate Version 1.17.0 +Eclipse SUMO netgenerate Version 1.18.0 .IP Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP @@ -332,6 +332,11 @@ lane widths if the difference is below FLOAT .TP +\fB\-\-geometry\fR.remove.max\-junction\-size FLOAT +Prevent removal of junctions with +a size above FLOAT as defined by custom +edge endpoints +.TP \fB\-\-geometry\fR.max\-segment\-length FLOAT splits geometry to restrict segment length @@ -483,6 +488,10 @@ Determines the maximal distance for joining traffic lights (defaults to 20) .TP +\fB\-\-tls\fR.join\-exclude STR[] +Interprets STR[] as list of tls ids to +exclude from joining +.TP \fB\-\-tls\fR.uncontrolled\-within Do not control edges that lie fully within a joined traffic light. This may @@ -771,6 +780,10 @@ outgoing edge speed on junction instead of average .TP +\fB\-\-junctions\fR.minimal\-shape +Build junctions with minimal shapes +(igoring edge overlap) +.TP \fB\-\-internal\-junctions\fR.vehicle\-width FLOAT Assumed vehicle width for computing internal junction positions @@ -920,12 +933,12 @@ Get in contact via . .IP .br -Build features: Linux\-5.15.0\-70\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG +Build features: Linux\-5.15.0\-75\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG .br Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP .br -Eclipse SUMO netgenerate Version 1.17.0 is part of SUMO. +Eclipse SUMO netgenerate Version 1.18.0 is part of SUMO. .br This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 diff -Nru sumo-1.17.0/docs/man/od2trips.1 sumo-1.18.0/docs/man/od2trips.1 --- sumo-1.17.0/docs/man/od2trips.1 2023-04-24 22:07:50.000000000 +0000 +++ sumo-1.18.0/docs/man/od2trips.1 2023-06-28 22:08:07.000000000 +0000 @@ -1,12 +1,12 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. -.TH ECLIPSE "1" "April 2023" "Eclipse SUMO od2trips Version 1.17.0" "User Commands" +.TH ECLIPSE "1" "June 2023" "Eclipse SUMO od2trips Version 1.18.0" "User Commands" .SH NAME Eclipse \- Importer of O/D-matrices for the traffic simulation SUMO .SH SYNOPSIS .B od2trips [\fI\,OPTION\/\fR]\fI\,*\/\fR .SH DESCRIPTION -Eclipse SUMO od2trips Version 1.17.0 +Eclipse SUMO od2trips Version 1.18.0 .IP Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP @@ -219,12 +219,12 @@ Get in contact via . .IP .br -Build features: Linux\-5.15.0\-70\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG +Build features: Linux\-5.15.0\-75\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG .br Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP .br -Eclipse SUMO od2trips Version 1.17.0 is part of SUMO. +Eclipse SUMO od2trips Version 1.18.0 is part of SUMO. .br This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 diff -Nru sumo-1.17.0/docs/man/polyconvert.1 sumo-1.18.0/docs/man/polyconvert.1 --- sumo-1.17.0/docs/man/polyconvert.1 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/man/polyconvert.1 2023-06-28 22:08:08.000000000 +0000 @@ -1,12 +1,12 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. -.TH ECLIPSE "1" "April 2023" "Eclipse SUMO polyconvert Version 1.17.0" "User Commands" +.TH ECLIPSE "1" "June 2023" "Eclipse SUMO polyconvert Version 1.18.0" "User Commands" .SH NAME Eclipse \- Importer of polygons and POIs for the traffic simulation SUMO .SH SYNOPSIS .B polyconvert [\fI\,OPTION\/\fR]\fI\,*\/\fR .SH DESCRIPTION -Eclipse SUMO polyconvert Version 1.17.0 +Eclipse SUMO polyconvert Version 1.18.0 .IP Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP @@ -281,12 +281,12 @@ Get in contact via . .IP .br -Build features: Linux\-5.15.0\-70\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG +Build features: Linux\-5.15.0\-75\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG .br Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP .br -Eclipse SUMO polyconvert Version 1.17.0 is part of SUMO. +Eclipse SUMO polyconvert Version 1.18.0 is part of SUMO. .br This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 diff -Nru sumo-1.17.0/docs/man/sumo.1 sumo-1.18.0/docs/man/sumo.1 --- sumo-1.17.0/docs/man/sumo.1 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/man/sumo.1 2023-06-28 22:08:06.000000000 +0000 @@ -1,12 +1,12 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. -.TH ECLIPSE "1" "April 2023" "Eclipse SUMO sumo Version 1.17.0" "User Commands" +.TH ECLIPSE "1" "June 2023" "Eclipse SUMO sumo Version 1.18.0" "User Commands" .SH NAME Eclipse \- A microscopic, multi-modal traffic simulation .SH SYNOPSIS .B sumo [\fI\,OPTION\/\fR]\fI\,*\/\fR .SH DESCRIPTION -Eclipse SUMO sumo Version 1.17.0 +Eclipse SUMO sumo Version 1.18.0 .IP Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP @@ -433,11 +433,21 @@ How to deal with collisions: [none,warn,teleport,remove] .TP +\fB\-\-intermodal\-collision\fR.action STR +How to deal with collisions between +vehicle and pedestrian: +[none,warn,teleport,remove] +.TP \fB\-\-collision\fR.stoptime TIME Let vehicle stop for TIME before performing collision.action (except for action 'none') .TP +\fB\-\-intermodal\-collision\fR.stoptime TIME +Let vehicle stop for TIME before +performing intermodal\-collision.action +(except for action 'none') +.TP \fB\-\-collision\fR.check\-junctions Enables collisions checks on junctions .TP @@ -1017,6 +1027,50 @@ deterministic using a fraction of 1000 .SS "Battery Options:" .TP +\fB\-\-device\fR.stationfinder.probability FLOAT +The probability for a vehicle to +have a 'stationfinder' device +.TP +\fB\-\-device\fR.stationfinder.explicit STR[] +Assign a 'stationfinder' device to +named vehicles +.TP +\fB\-\-device\fR.stationfinder.deterministic +The 'stationfinder' devices are set +deterministic using a fraction of 1000 +.TP +\fB\-\-device\fR.stationfinder.rescueTime TIME +Time to wait for a rescue vehicle on +the road side when the battery is empty +.TP +\fB\-\-device\fR.stationfinder.reserveFactor FLOAT +Additional battery buffer for +unexpected traffic situation when +estimating the battery need +.TP +\fB\-\-device\fR.stationfinder.emptyThreshold FLOAT +Battery percentage to go into +rescue mode +.TP +\fB\-\-device\fR.stationfinder.radius TIME +Search radius in travel time seconds +.TP +\fB\-\-device\fR.stationfinder.repeat TIME +When to trigger a new search if no +station has been found +.TP +\fB\-\-device\fR.stationfinder.maxChargePower FLOAT +The maximum charging speed of +the vehicle battery +.TP +\fB\-\-device\fR.stationfinder.chargeType STR +Type of energy transfer +.TP +\fB\-\-device\fR.stationfinder.waitForCharge TIME +After this waiting time vehicle +searches for a new station when the +initial one is blocked +.TP \fB\-\-device\fR.battery.probability FLOAT The probability for a vehicle to have a \&'battery' device @@ -1065,7 +1119,8 @@ \fB\-\-device\fR.ssm.measures STR Specifies which measures will be logged (as a space or comma\-separated sequence -of IDs in ('TTC', 'DRAC', 'PET')) +of IDs in ('TTC', 'DRAC', 'PET', +\&'PPET','MDRAC')) .TP \fB\-\-device\fR.ssm.thresholds STR Specifies space or comma\-separated @@ -1091,6 +1146,10 @@ Required >0 if PET is to be calculated for crossing conflicts. .TP +\fB\-\-device\fR.ssm.mdrac.prt FLOAT +Specifies the perception reaction time +for MDRAC computation. +.TP \fB\-\-device\fR.ssm.file STR Give a global default filename for the SSM output @@ -1106,6 +1165,16 @@ \fB\-\-device\fR.ssm.write\-lane\-positions Whether to write lanes and their positions for each timestep +.TP +\fB\-\-device\fR.ssm.exclude\-conflict\-types STR +Which conflicts will be excluded +from the log according to the conflict +type they have been classified +(combination of values in 'ego', 'foe' , +\&'', any numerical valid conflict type +code). An empty value will log all and +\&'ego'/'foe' refer to a certain conflict +type subset. .SS "ToC Device Options:" .TP \fB\-\-device\fR.toc.probability FLOAT @@ -1627,12 +1696,12 @@ Get in contact via . .IP .br -Build features: Linux\-5.15.0\-70\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG +Build features: Linux\-5.15.0\-75\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG .br Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP .br -Eclipse SUMO sumo Version 1.17.0 is part of SUMO. +Eclipse SUMO sumo Version 1.18.0 is part of SUMO. .br This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 diff -Nru sumo-1.17.0/docs/man/sumo-gui.1 sumo-1.18.0/docs/man/sumo-gui.1 --- sumo-1.17.0/docs/man/sumo-gui.1 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/man/sumo-gui.1 2023-06-28 22:08:07.000000000 +0000 @@ -1,12 +1,12 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. -.TH ECLIPSE "1" "April 2023" "Eclipse SUMO GUI Version 1.17.0" "User Commands" +.TH ECLIPSE "1" "June 2023" "Eclipse SUMO GUI Version 1.18.0" "User Commands" .SH NAME Eclipse \- GUI version of the simulation SUMO .SH SYNOPSIS .B sumo-gui [\fI\,OPTION\/\fR]\fI\,*\/\fR .SH DESCRIPTION -Eclipse SUMO GUI Version 1.17.0 +Eclipse SUMO GUI Version 1.18.0 .IP Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP @@ -433,11 +433,21 @@ How to deal with collisions: [none,warn,teleport,remove] .TP +\fB\-\-intermodal\-collision\fR.action STR +How to deal with collisions between +vehicle and pedestrian: +[none,warn,teleport,remove] +.TP \fB\-\-collision\fR.stoptime TIME Let vehicle stop for TIME before performing collision.action (except for action 'none') .TP +\fB\-\-intermodal\-collision\fR.stoptime TIME +Let vehicle stop for TIME before +performing intermodal\-collision.action +(except for action 'none') +.TP \fB\-\-collision\fR.check\-junctions Enables collisions checks on junctions .TP @@ -1017,6 +1027,50 @@ deterministic using a fraction of 1000 .SS "Battery Options:" .TP +\fB\-\-device\fR.stationfinder.probability FLOAT +The probability for a vehicle to +have a 'stationfinder' device +.TP +\fB\-\-device\fR.stationfinder.explicit STR[] +Assign a 'stationfinder' device to +named vehicles +.TP +\fB\-\-device\fR.stationfinder.deterministic +The 'stationfinder' devices are set +deterministic using a fraction of 1000 +.TP +\fB\-\-device\fR.stationfinder.rescueTime TIME +Time to wait for a rescue vehicle on +the road side when the battery is empty +.TP +\fB\-\-device\fR.stationfinder.reserveFactor FLOAT +Additional battery buffer for +unexpected traffic situation when +estimating the battery need +.TP +\fB\-\-device\fR.stationfinder.emptyThreshold FLOAT +Battery percentage to go into +rescue mode +.TP +\fB\-\-device\fR.stationfinder.radius TIME +Search radius in travel time seconds +.TP +\fB\-\-device\fR.stationfinder.repeat TIME +When to trigger a new search if no +station has been found +.TP +\fB\-\-device\fR.stationfinder.maxChargePower FLOAT +The maximum charging speed of +the vehicle battery +.TP +\fB\-\-device\fR.stationfinder.chargeType STR +Type of energy transfer +.TP +\fB\-\-device\fR.stationfinder.waitForCharge TIME +After this waiting time vehicle +searches for a new station when the +initial one is blocked +.TP \fB\-\-device\fR.battery.probability FLOAT The probability for a vehicle to have a \&'battery' device @@ -1065,7 +1119,8 @@ \fB\-\-device\fR.ssm.measures STR Specifies which measures will be logged (as a space or comma\-separated sequence -of IDs in ('TTC', 'DRAC', 'PET')) +of IDs in ('TTC', 'DRAC', 'PET', +\&'PPET','MDRAC')) .TP \fB\-\-device\fR.ssm.thresholds STR Specifies space or comma\-separated @@ -1091,6 +1146,10 @@ Required >0 if PET is to be calculated for crossing conflicts. .TP +\fB\-\-device\fR.ssm.mdrac.prt FLOAT +Specifies the perception reaction time +for MDRAC computation. +.TP \fB\-\-device\fR.ssm.file STR Give a global default filename for the SSM output @@ -1106,6 +1165,16 @@ \fB\-\-device\fR.ssm.write\-lane\-positions Whether to write lanes and their positions for each timestep +.TP +\fB\-\-device\fR.ssm.exclude\-conflict\-types STR +Which conflicts will be excluded +from the log according to the conflict +type they have been classified +(combination of values in 'ego', 'foe' , +\&'', any numerical valid conflict type +code). An empty value will log all and +\&'ego'/'foe' refer to a certain conflict +type subset. .SS "ToC Device Options:" .TP \fB\-\-device\fR.toc.probability FLOAT @@ -1627,12 +1696,12 @@ Get in contact via . .IP .br -Build features: Linux\-5.15.0\-70\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG +Build features: Linux\-5.15.0\-75\-generic x86_64 GNU 11.3.0 Release FMI Proj GUI Intl SWIG .br Copyright (C) 2001\-2023 German Aerospace Center (DLR) and others; https://sumo.dlr.de .PP .br -Eclipse SUMO GUI Version 1.17.0 is part of SUMO. +Eclipse SUMO GUI Version 1.18.0 is part of SUMO. .br This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 diff -Nru sumo-1.17.0/docs/man/TraCITestClient.1 sumo-1.18.0/docs/man/TraCITestClient.1 --- sumo-1.17.0/docs/man/TraCITestClient.1 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/man/TraCITestClient.1 2023-06-28 22:08:08.000000000 +0000 @@ -1,5 +1,5 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. -.TH USAGE: "1" "April 2023" "Usage: TraCITestClient -def -p [-h ] [-o ]" "User Commands" +.TH USAGE: "1" "June 2023" "Usage: TraCITestClient -def -p [-h ] [-o ]" "User Commands" .SH NAME Usage: \- TraCITestClient for the traffic simulation SUMO .SH SYNOPSIS diff -Nru sumo-1.17.0/docs/pydoc/sumolib.color.html sumo-1.18.0/docs/pydoc/sumolib.color.html --- sumo-1.17.0/docs/pydoc/sumolib.color.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.color.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.color
index
/home/delphi/gcc/sumo/tools/sumolib/color.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2012-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.files.additional.html sumo-1.18.0/docs/pydoc/sumolib.files.additional.html --- sumo-1.17.0/docs/pydoc/sumolib.files.additional.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.files.additional.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.files.additional
index
/home/delphi/gcc/sumo/tools/sumolib/files/additional.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.files.html sumo-1.18.0/docs/pydoc/sumolib.files.html --- sumo-1.17.0/docs/pydoc/sumolib.files.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.files.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.files
index
/home/delphi/gcc/sumo/tools/sumolib/files/__init__.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2012-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.files.selection.html sumo-1.18.0/docs/pydoc/sumolib.files.selection.html --- sumo-1.17.0/docs/pydoc/sumolib.files.selection.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.files.selection.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.files.selection
index
/home/delphi/gcc/sumo/tools/sumolib/files/selection.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.fpdiff.html sumo-1.18.0/docs/pydoc/sumolib.fpdiff.html --- sumo-1.17.0/docs/pydoc/sumolib.fpdiff.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.fpdiff.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/sumolib/fpdiff.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2011-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.geomhelper.html sumo-1.18.0/docs/pydoc/sumolib.geomhelper.html --- sumo-1.17.0/docs/pydoc/sumolib.geomhelper.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.geomhelper.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.geomhelper
index
/home/delphi/gcc/sumo/tools/sumolib/geomhelper.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2013-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.html sumo-1.18.0/docs/pydoc/sumolib.html --- sumo-1.17.0/docs/pydoc/sumolib.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/sumolib/__init__.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2011-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
@@ -42,8 +42,9 @@ sensors (package)
shapes (package)
statistics
-vehicletype
-version
+translation
+vehicletype
+version
visualization (package)
xml

diff -Nru sumo-1.17.0/docs/pydoc/sumolib.miscutils.html sumo-1.18.0/docs/pydoc/sumolib.miscutils.html --- sumo-1.17.0/docs/pydoc/sumolib.miscutils.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.miscutils.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.miscutils
index
/home/delphi/gcc/sumo/tools/sumolib/miscutils.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2012-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
@@ -260,7 +260,8 @@ Data         -absolute_import = _Feature((2, 5, 0, 'alpha', 1), (3, 0, 0, 'alpha', 0), 262144)
+SPECIAL_TIME_STRINGS = ['triggered', 'containerTriggered', 'split', 'begin']
+absolute_import = _Feature((2, 5, 0, 'alpha', 1), (3, 0, 0, 'alpha', 0), 262144)
division = _Feature((2, 2, 0, 'alpha', 2), (3, 0, 0, 'alpha', 0), 131072)
print_function = _Feature((2, 6, 0, 'alpha', 2), (3, 0, 0, 'alpha', 0), 1048576)
uMax = uMax
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.net.connection.html sumo-1.18.0/docs/pydoc/sumolib.net.connection.html --- sumo-1.17.0/docs/pydoc/sumolib.net.connection.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.net.connection.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.net.connection
index
/home/delphi/gcc/sumo/tools/sumolib/net/connection.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2011-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.net.edge.html sumo-1.18.0/docs/pydoc/sumolib.net.edge.html --- sumo-1.17.0/docs/pydoc/sumolib.net.edge.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.net.edge.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.net.edge
index
/home/delphi/gcc/sumo/tools/sumolib/net/edge.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2011-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.net.lane.html sumo-1.18.0/docs/pydoc/sumolib.net.lane.html --- sumo-1.17.0/docs/pydoc/sumolib.net.lane.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.net.lane.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.net.lane
index
/home/delphi/gcc/sumo/tools/sumolib/net/lane.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2011-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.net.node.html sumo-1.18.0/docs/pydoc/sumolib.net.node.html --- sumo-1.17.0/docs/pydoc/sumolib.net.node.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.net.node.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.net.node
index
/home/delphi/gcc/sumo/tools/sumolib/net/node.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2011-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.net.roundabout.html sumo-1.18.0/docs/pydoc/sumolib.net.roundabout.html --- sumo-1.17.0/docs/pydoc/sumolib.net.roundabout.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.net.roundabout.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.net.roundabout
index
/home/delphi/gcc/sumo/tools/sumolib/net/roundabout.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.options.html sumo-1.18.0/docs/pydoc/sumolib.options.html --- sumo-1.17.0/docs/pydoc/sumolib.options.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.options.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.options
index
/home/delphi/gcc/sumo/tools/sumolib/options.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2012-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
@@ -105,9 +105,7 @@

parse_args(self, args=None, namespace=None)
-
parse_known_args(self, args=None, namespace=None)
- -
write_config_file(self, namespace, exit=True, toString=False)
+
parse_known_args(self, args=None, namespace=None, check_unknown=False)
write_config_to_file(self, out, namespace, print_template)
@@ -117,6 +115,10 @@
data_file(s)
+
edge(s)
+ +
edge_list(s)
+
edgedata_file(s)
file(s)
@@ -129,6 +131,10 @@
route_file_list(s)
+
sumoconfig_file(s)
+ +
sumoconfig_file_list(s)
+
time(s)

diff -Nru sumo-1.17.0/docs/pydoc/sumolib.output.convert.fcdfilter.html sumo-1.18.0/docs/pydoc/sumolib.output.convert.fcdfilter.html --- sumo-1.17.0/docs/pydoc/sumolib.output.convert.fcdfilter.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.output.convert.fcdfilter.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.output.convert.fcdfilter
index
/home/delphi/gcc/sumo/tools/sumolib/output/convert/fcdfilter.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2017-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.output.convert.html sumo-1.18.0/docs/pydoc/sumolib.output.convert.html --- sumo-1.17.0/docs/pydoc/sumolib.output.convert.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.output.convert.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.output.convert
index
/home/delphi/gcc/sumo/tools/sumolib/output/convert/__init__.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2012-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.output.dump.html sumo-1.18.0/docs/pydoc/sumolib.output.dump.html --- sumo-1.17.0/docs/pydoc/sumolib.output.dump.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.output.dump.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.output.dump
index
/home/delphi/gcc/sumo/tools/sumolib/output/dump.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.output.html sumo-1.18.0/docs/pydoc/sumolib.output.html --- sumo-1.17.0/docs/pydoc/sumolib.output.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.output.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/sumolib/output/__init__.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2011-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.output.inductionloop.html sumo-1.18.0/docs/pydoc/sumolib.output.inductionloop.html --- sumo-1.17.0/docs/pydoc/sumolib.output.inductionloop.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.output.inductionloop.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.output.inductionloop
index
/home/delphi/gcc/sumo/tools/sumolib/output/inductionloop.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.route.html sumo-1.18.0/docs/pydoc/sumolib.route.html --- sumo-1.17.0/docs/pydoc/sumolib.route.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.route.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.route
index
/home/delphi/gcc/sumo/tools/sumolib/route.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2009-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
@@ -38,7 +38,7 @@ The list of edges can either contain edge objects or edge ids as strings.
If there is no connection between two consecutive edges, length 0 is assumed (no error is thrown).
If there are multiple connections of different length, the shortest is used.
-

mapTrace(trace, net, delta, verbose=False, airDistFactor=2, fillGaps=0, gapPenalty=-1, debug=False, direction=False, vClass=None)
matching a list of 2D positions to consecutive edges in a network.
+
mapTrace(trace, net, delta, verbose=False, airDistFactor=2, fillGaps=0, gapPenalty=-1, debug=False, direction=False, vClass=None, vias=None)
matching a list of 2D positions to consecutive edges in a network.
The positions are assumed to be dense (i.e. covering each edge of the route) and in the correct order.

diff -Nru sumo-1.17.0/docs/pydoc/sumolib.sensors.html sumo-1.18.0/docs/pydoc/sumolib.sensors.html --- sumo-1.17.0/docs/pydoc/sumolib.sensors.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.sensors.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.sensors
index
/home/delphi/gcc/sumo/tools/sumolib/sensors/__init__.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2012-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.shapes.html sumo-1.18.0/docs/pydoc/sumolib.shapes.html --- sumo-1.17.0/docs/pydoc/sumolib.shapes.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.shapes.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.shapes
index
/home/delphi/gcc/sumo/tools/sumolib/shapes/__init__.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2012-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.shapes.poi.html sumo-1.18.0/docs/pydoc/sumolib.shapes.poi.html --- sumo-1.17.0/docs/pydoc/sumolib.shapes.poi.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.shapes.poi.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.shapes.poi
index
/home/delphi/gcc/sumo/tools/sumolib/shapes/poi.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2010-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.shapes.polygon.html sumo-1.18.0/docs/pydoc/sumolib.shapes.polygon.html --- sumo-1.17.0/docs/pydoc/sumolib.shapes.polygon.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.shapes.polygon.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.shapes.polygon
index
/home/delphi/gcc/sumo/tools/sumolib/shapes/polygon.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2012-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.statistics.html sumo-1.18.0/docs/pydoc/sumolib.statistics.html --- sumo-1.17.0/docs/pydoc/sumolib.statistics.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.statistics.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.statistics
index
/home/delphi/gcc/sumo/tools/sumolib/statistics.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2012-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
@@ -92,12 +92,12 @@

relStdDev(self, limit=None)
return the relative standard deviation optionally limited to the last limit values
-
toString(self, precision=2, histStyle=1, fmt=<function identity at 0x7f36da679d80>)
histStyle
+
toString(self, precision=2, histStyle=1, fmt=<function identity at 0x7fb85bb09d80>)
histStyle
0 : not shown
1 : one line
2 : fancy
-
toXML(self, precision=2, tag='statistic', indent=4, label=None, fmt=<function identity at 0x7f36da679d80>)
+
toXML(self, precision=2, tag='statistic', indent=4, label=None, fmt=<function identity at 0x7fb85bb09d80>)
update(self, other)
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.vehicletype.html sumo-1.18.0/docs/pydoc/sumolib.vehicletype.html --- sumo-1.17.0/docs/pydoc/sumolib.vehicletype.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.vehicletype.html 2023-06-28 22:08:06.000000000 +0000 @@ -9,7 +9,7 @@  
sumolib.vehicletype
index
/home/delphi/gcc/sumo/tools/sumolib/vehicletype.py
-

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+

# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/sumolib.xml.html sumo-1.18.0/docs/pydoc/sumolib.xml.html --- sumo-1.17.0/docs/pydoc/sumolib.xml.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/sumolib.xml.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/sumolib/xml.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2011-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci._busstop.html sumo-1.18.0/docs/pydoc/traci._busstop.html --- sumo-1.17.0/docs/pydoc/traci._busstop.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._busstop.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_busstop.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci._calibrator.html sumo-1.18.0/docs/pydoc/traci._calibrator.html --- sumo-1.17.0/docs/pydoc/traci._calibrator.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._calibrator.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_calibrator.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci._chargingstation.html sumo-1.18.0/docs/pydoc/traci._chargingstation.html --- sumo-1.17.0/docs/pydoc/traci._chargingstation.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._chargingstation.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_chargingstation.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci.connection.html sumo-1.18.0/docs/pydoc/traci.connection.html --- sumo-1.17.0/docs/pydoc/traci.connection.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci.connection.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/connection.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci.constants.html sumo-1.18.0/docs/pydoc/traci.constants.html --- sumo-1.17.0/docs/pydoc/traci.constants.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci.constants.html 2023-06-28 22:08:06.000000000 +0000 @@ -451,6 +451,7 @@ VAR_HEIGHT = 188
VAR_HIGHLIGHT = 108
VAR_IMAGEFILE = 147
+VAR_IMPATIENCE = 38
VAR_IMPERFECTION = 93
VAR_INSERTED = 21
VAR_INTERVAL_IDS = 38
diff -Nru sumo-1.17.0/docs/pydoc/traci.domain.html sumo-1.18.0/docs/pydoc/traci.domain.html --- sumo-1.17.0/docs/pydoc/traci.domain.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci.domain.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/domain.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
@@ -144,7 +144,7 @@

add(self, refID, varID, data)
-
addContext(self, refID, domain, objID, varID=None, data=None)
+
addContext(self, refID, objID=None, varID=None, data=None)
get(self, refID=None)
diff -Nru sumo-1.17.0/docs/pydoc/traci._edge.html sumo-1.18.0/docs/pydoc/traci._edge.html --- sumo-1.17.0/docs/pydoc/traci._edge.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._edge.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_edge.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2011-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
@@ -72,6 +72,12 @@ Returns the travel time value (in s) used for (re-)routing
which is valid on the edge at the given time.

+
getAngle(self, edgeID, relativePosition=-1073741824.0)
getAngle(string, double) -> double
+Returns the heading of the straight line segment formed by the first lane of the edge at the given position.
+If the given position equals TraCI constant INVALID_DOUBLE_VALUE, it returns the total angle
+formed by the edge, from its start point to its end point. If the edge doesn't have any lanes,
+then INVALID_DOUBLE_VALUE is returned.
+
getCO2Emission(self, edgeID)
getCO2Emission(string) -> double
 
Returns the CO2 emission in mg for the last time step on the given edge.
diff -Nru sumo-1.17.0/docs/pydoc/traci.exceptions.html sumo-1.18.0/docs/pydoc/traci.exceptions.html --- sumo-1.17.0/docs/pydoc/traci.exceptions.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci.exceptions.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/exceptions.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci._gui.html sumo-1.18.0/docs/pydoc/traci._gui.html --- sumo-1.17.0/docs/pydoc/traci._gui.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._gui.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_gui.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2011-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci.html sumo-1.18.0/docs/pydoc/traci.html --- sumo-1.17.0/docs/pydoc/traci.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci.html 2023-06-28 22:08:05.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/__init__.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci._inductionloop.html sumo-1.18.0/docs/pydoc/traci._inductionloop.html --- sumo-1.17.0/docs/pydoc/traci._inductionloop.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._inductionloop.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_inductionloop.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2011-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci._junction.html sumo-1.18.0/docs/pydoc/traci._junction.html --- sumo-1.17.0/docs/pydoc/traci._junction.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._junction.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_junction.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2011-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci._lanearea.html sumo-1.18.0/docs/pydoc/traci._lanearea.html --- sumo-1.17.0/docs/pydoc/traci._lanearea.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._lanearea.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_lanearea.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2011-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci._lane.html sumo-1.18.0/docs/pydoc/traci._lane.html --- sumo-1.17.0/docs/pydoc/traci._lane.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._lane.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_lane.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2011-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
@@ -64,6 +64,11 @@  
Returns a list of allowed vehicle classes. An empty list means all vehicles are allowed.

+
getAngle(self, laneID, relativePosition=-1073741824.0)
getAngle(string, double) -> double
+Returns the heading of the straight line segment formed by the lane at the given position.
+If the given position equals TraCI constant INVALID_DOUBLE_VALUE, it returns the total angle
+formed by the lane, from its start point to its end point.
+
getCO2Emission(self, laneID)
getCO2Emission(string) -> double
 
Returns the CO2 emission in mg/s for the last time step on the given lane.
@@ -93,7 +98,7 @@ Multiply by the step length to get the value for one step.
getFoes(self, laneID, toLaneID)
getFoes(string, string) -> list(string)
-Returns the ids of incoming lanes that have right of way over the connection from laneID to toLaneID
+Returns the ids of incoming lanes that have right of way over the connection from laneID to toLaneID.
getFriction(self, laneID)
getFriction(string) -> double
 
@@ -110,7 +115,7 @@ Multiply by the step length to get the value for one step.
getInternalFoes(self, laneID)
getFoes(string) -> list(string)
-Returns the ids of internal lanes that are in conflict with the given internal lane id
+Returns the ids of internal lanes that are in conflict with the given internal lane id.
getLastStepHaltingNumber(self, laneID)
getLastStepHaltingNumber(string) -> integer
 
@@ -181,7 +186,7 @@ Multiply by the step length to get the value for one step.
getPendingVehicles(self, laneID)
getPendingVehicles(string) -> list(string)
-Returns a list of all vehicle ids waiting for insertion on this lane (with depart delay)
+Returns a list of all vehicle ids waiting for insertion on this lane (with depart delay).
getShape(self, laneID)
getShape(string) -> list((double, double))
 
diff -Nru sumo-1.17.0/docs/pydoc/traci.main.html sumo-1.18.0/docs/pydoc/traci.main.html --- sumo-1.17.0/docs/pydoc/traci.main.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci.main.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/main.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
@@ -111,11 +111,16 @@ connecting to the TraCI server when using multiple clients. Each client
must be assigned a unique integer but there are not further restrictions
on numbering.

-
simulationStep(step=0)
simulationStep(float) -> list
+
simulationStep(step=0)
simulationStep(float) -> None
+Make a simulation step and simulate up to the given second in sim time.
+If the given value is 0 or absent, exactly one step is performed.
+Values smaller than or equal to the current sim time result in no action.
+
simulationStepLegacy(step=0)
simulationStep(float) -> list
Make a simulation step and simulate up to the given second in sim time.
If the given value is 0 or absent, exactly one step is performed.
Values smaller than or equal to the current sim time result in no action.
-It returns the subscription results for the current step in a list.
+This is a legacy function which returns the subscription results for the
+current step in a list.
start(cmd, port=None, numRetries=60, label='default', verbose=False, traceFile=None, traceGetters=True, stdout=None, doSwitch=True)
Start a sumo server using cmd, establish a connection to it and
store it under the given label. This method is not thread-safe.
 
diff -Nru sumo-1.17.0/docs/pydoc/traci._meandata.html sumo-1.18.0/docs/pydoc/traci._meandata.html --- sumo-1.17.0/docs/pydoc/traci._meandata.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._meandata.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_meandata.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci._multientryexit.html sumo-1.18.0/docs/pydoc/traci._multientryexit.html --- sumo-1.17.0/docs/pydoc/traci._multientryexit.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._multientryexit.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_multientryexit.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2011-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci._overheadwire.html sumo-1.18.0/docs/pydoc/traci._overheadwire.html --- sumo-1.17.0/docs/pydoc/traci._overheadwire.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._overheadwire.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_overheadwire.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci._parkingarea.html sumo-1.18.0/docs/pydoc/traci._parkingarea.html --- sumo-1.17.0/docs/pydoc/traci._parkingarea.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._parkingarea.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_parkingarea.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci._person.html sumo-1.18.0/docs/pydoc/traci._person.html --- sumo-1.17.0/docs/pydoc/traci._person.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._person.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_person.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2011-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
@@ -268,6 +268,10 @@ Returns the height in m of this type.
If called in the context of a person or vehicle, it will return the value for their current type.

+
getImpatience(self, typeID)
getImpatience(string) -> double

+Returns the Impatience of this type
+
getImperfection(self, typeID)
getImperfection(string) -> double
 
Returns the driver's imperfection for this type.
@@ -352,6 +356,11 @@ Sets the apparent deceleration in m/s^2 of this type.
If called in the context of a person or vehicle, it will change the value just for the single instance.
+
setBoardingDuration(self, typeID, boardingDuration)
setBoardingDuration(string, double) -> None

+Sets the boarding duration of the this type.
+If called in the context of a person or vehicle, it will change the value just for the single instance.
+
setColor(self, typeID, color)
setColor(string, (integer, integer, integer, integer)) -> None
 
Sets the color of this type.
@@ -377,6 +386,11 @@ Sets the height in m of this type.
If called in the context of a person or vehicle, it will change the value just for the single instance.
+
setImpatience(self, typeID, impatience)
setImpatience(string, double) -> None

+Sets the impatience of the this type.
+If called in the context of a person or vehicle, it will change the value just for the single instance.
+
setImperfection(self, typeID, imperfection)
setImperfection(string, double) -> None
 
Sets the driver imperfection of this type.
diff -Nru sumo-1.17.0/docs/pydoc/traci._poi.html sumo-1.18.0/docs/pydoc/traci._poi.html --- sumo-1.17.0/docs/pydoc/traci._poi.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._poi.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_poi.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci._polygon.html sumo-1.18.0/docs/pydoc/traci._polygon.html --- sumo-1.17.0/docs/pydoc/traci._polygon.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._polygon.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_polygon.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2011-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci._rerouter.html sumo-1.18.0/docs/pydoc/traci._rerouter.html --- sumo-1.17.0/docs/pydoc/traci._rerouter.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._rerouter.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_rerouter.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci._route.html sumo-1.18.0/docs/pydoc/traci._route.html --- sumo-1.17.0/docs/pydoc/traci._route.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._route.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_route.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci._routeprobe.html sumo-1.18.0/docs/pydoc/traci._routeprobe.html --- sumo-1.17.0/docs/pydoc/traci._routeprobe.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._routeprobe.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_routeprobe.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci._simulation.html sumo-1.18.0/docs/pydoc/traci._simulation.html --- sumo-1.17.0/docs/pydoc/traci._simulation.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._simulation.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_simulation.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2011-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci.step.html sumo-1.18.0/docs/pydoc/traci.step.html --- sumo-1.17.0/docs/pydoc/traci.step.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci.step.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/step.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci.storage.html sumo-1.18.0/docs/pydoc/traci.storage.html --- sumo-1.17.0/docs/pydoc/traci.storage.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci.storage.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/storage.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci._trafficlight.html sumo-1.18.0/docs/pydoc/traci._trafficlight.html --- sumo-1.17.0/docs/pydoc/traci._trafficlight.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._trafficlight.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_trafficlight.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2011-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci._variablespeedsign.html sumo-1.18.0/docs/pydoc/traci._variablespeedsign.html --- sumo-1.17.0/docs/pydoc/traci._variablespeedsign.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._variablespeedsign.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_variablespeedsign.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
diff -Nru sumo-1.17.0/docs/pydoc/traci._vehicle.html sumo-1.18.0/docs/pydoc/traci._vehicle.html --- sumo-1.17.0/docs/pydoc/traci._vehicle.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._vehicle.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_vehicle.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2011-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
@@ -310,6 +310,11 @@ Returns the HC emission in mg/s for the last time step.
Multiply by the step length to get the value for one step.

+
getJunctionFoes(self, vehID, distance)
getJunctionFoes(string, double) -> complex

+Return list of junction foes [(foeId, egoDist, foeDist, egoExitDist, foeExitDist,
+egoLane, foeLane, egoResponse, foeResponse), ...] within the given distance to the given vehicle.
+
getLaneChangeMode(self, vehID)
getLaneChangeMode(string) -> integer
 
Gets the vehicle's lane change mode as a bitset.
@@ -505,10 +510,12 @@ Returns the expected depart delay at the next stop (if that stop defines the
until-attribute) in seconds. Returns -1 if the next stop is not applicable
-
getStopParameter(self, vehID, nextStopIndex, param)
getStopParameter(string, int, string) -> string
+
getStopParameter(self, vehID, nextStopIndex, param, customParam=False)
getStopParameter(string, int, string) -> string
Gets the value of the given parameter for the stop at the given index
Negative indices permit access to past stops.
-Supported params correspond to all legal stop xml-attributes
+Supported params correspond to all legal stop xml-attributes
+If customParam is set to True, the user defined stop parameter with the
+specified param name will be returned instead (or "" if undefined)
getStopSpeed(self, vehID, speed, gap)
getStopSpeed(string, double, double) -> double
Return the speed for stopping at gap computed by the carFollowModel of vehID
@@ -780,11 +787,13 @@ Adds or modifies a stop with the given parameters. The duration and the until attribute are
in seconds.
-
setStopParameter(self, vehID, nextStopIndex, param, value)
setStopParameter(string, int, string, string) -> None
+
setStopParameter(self, vehID, nextStopIndex, param, value, customParam=False)
setStopParameter(string, int, string, string) -> None
Sets the value of the given parameter for the (upcoming) stop at the
given index (within the list of all stops).
Supported params correspond to (almost) all legal stop xml-attributes
-and their value semantics
+and their value semantics
+If customParam is set to True, the user defined stop parameter with the
+specified param name will be set instead
setType(self, vehID, typeID)
setType(string, string) -> None
 
@@ -900,6 +909,10 @@ Returns the height in m of this type.
If called in the context of a person or vehicle, it will return the value for their current type.
+
getImpatience(self, typeID)
getImpatience(string) -> double

+Returns the Impatience of this type
+
getImperfection(self, typeID)
getImperfection(string) -> double
 
Returns the driver's imperfection for this type.
@@ -989,6 +1002,11 @@ Sets the apparent deceleration in m/s^2 of this type.
If called in the context of a person or vehicle, it will change the value just for the single instance.
+
setBoardingDuration(self, typeID, boardingDuration)
setBoardingDuration(string, double) -> None

+Sets the boarding duration of the this type.
+If called in the context of a person or vehicle, it will change the value just for the single instance.
+
setColor(self, typeID, color)
setColor(string, (integer, integer, integer, integer)) -> None
 
Sets the color of this type.
@@ -1014,6 +1032,11 @@ Sets the height in m of this type.
If called in the context of a person or vehicle, it will change the value just for the single instance.
+
setImpatience(self, typeID, impatience)
setImpatience(string, double) -> None

+Sets the impatience of the this type.
+If called in the context of a person or vehicle, it will change the value just for the single instance.
+
setImperfection(self, typeID, imperfection)
setImperfection(string, double) -> None
 
Sets the driver imperfection of this type.
diff -Nru sumo-1.17.0/docs/pydoc/traci._vehicletype.html sumo-1.18.0/docs/pydoc/traci._vehicletype.html --- sumo-1.17.0/docs/pydoc/traci._vehicletype.html 2023-04-24 22:07:49.000000000 +0000 +++ sumo-1.18.0/docs/pydoc/traci._vehicletype.html 2023-06-28 22:08:06.000000000 +0000 @@ -10,7 +10,7 @@ >index
/home/delphi/gcc/sumo/tools/traci/_vehicletype.py

# -*- coding: utf-8 -*-
-# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
+# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2008-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
@@ -114,6 +114,10 @@ Returns the height in m of this type.
If called in the context of a person or vehicle, it will return the value for their current type.

+
getImpatience(self, typeID)
getImpatience(string) -> double

+Returns the Impatience of this type
+
getImperfection(self, typeID)
getImperfection(string) -> double
 
Returns the driver's imperfection for this type.
@@ -203,6 +207,11 @@ Sets the apparent deceleration in m/s^2 of this type.
If called in the context of a person or vehicle, it will change the value just for the single instance.
+
setBoardingDuration(self, typeID, boardingDuration)
setBoardingDuration(string, double) -> None

+Sets the boarding duration of the this type.
+If called in the context of a person or vehicle, it will change the value just for the single instance.
+
setColor(self, typeID, color)
setColor(string, (integer, integer, integer, integer)) -> None
 
Sets the color of this type.
@@ -228,6 +237,11 @@ Sets the height in m of this type.
If called in the context of a person or vehicle, it will change the value just for the single instance.
+
setImpatience(self, typeID, impatience)
setImpatience(string, double) -> None

+Sets the impatience of the this type.
+If called in the context of a person or vehicle, it will change the value just for the single instance.
+
setImperfection(self, typeID, imperfection)
setImperfection(string, double) -> None
 
Sets the driver imperfection of this type.
@@ -435,6 +449,10 @@ Returns the height in m of this type.
If called in the context of a person or vehicle, it will return the value for their current type.
+
getImpatience(self, typeID)
getImpatience(string) -> double

+Returns the Impatience of this type
+
getImperfection(self, typeID)
getImperfection(string) -> double
 
Returns the driver's imperfection for this type.
@@ -524,6 +542,11 @@ Sets the apparent deceleration in m/s^2 of this type.
If called in the context of a person or vehicle, it will change the value just for the single instance.
+
setBoardingDuration(self, typeID, boardingDuration)
setBoardingDuration(string, double) -> None

+Sets the boarding duration of the this type.
+If called in the context of a person or vehicle, it will change the value just for the single instance.
+
setColor(self, typeID, color)
setColor(string, (integer, integer, integer, integer)) -> None
 
Sets the color of this type.
@@ -549,6 +572,11 @@ Sets the height in m of this type.
If called in the context of a person or vehicle, it will change the value just for the single instance.
+
setImpatience(self, typeID, impatience)
setImpatience(string, double) -> None

+Sets the impatience of the this type.
+If called in the context of a person or vehicle, it will change the value just for the single instance.
+
setImperfection(self, typeID, imperfection)
setImperfection(string, double) -> None
 
Sets the driver imperfection of this type.
diff -Nru sumo-1.17.0/docs/tutorial/circles/runner.py sumo-1.18.0/docs/tutorial/circles/runner.py --- sumo-1.17.0/docs/tutorial/circles/runner.py 2023-01-05 23:00:11.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/circles/runner.py 2023-06-23 06:11:10.000000000 +0000 @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo +# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo # Copyright (C) 2008-2023 German Aerospace Center (DLR) and others. # This program and the accompanying materials are made available under the # terms of the Eclipse Public License 2.0 which is available at diff -Nru sumo-1.17.0/docs/tutorial/circles/test.sh sumo-1.18.0/docs/tutorial/circles/test.sh --- sumo-1.17.0/docs/tutorial/circles/test.sh 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/circles/test.sh 2023-06-28 22:08:08.000000000 +0000 @@ -1 +1,2 @@ +#!/bin/bash python runner.py \ No newline at end of file diff -Nru sumo-1.17.0/docs/tutorial/city_mobil/data/agentManager.py sumo-1.18.0/docs/tutorial/city_mobil/data/agentManager.py --- sumo-1.17.0/docs/tutorial/city_mobil/data/agentManager.py 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/city_mobil/data/agentManager.py 2023-06-28 22:08:08.000000000 +0000 @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo +# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo # Copyright (C) 2008-2023 German Aerospace Center (DLR) and others. # This program and the accompanying materials are made available under the # terms of the Eclipse Public License 2.0 which is available at diff -Nru sumo-1.17.0/docs/tutorial/city_mobil/data/constants.py sumo-1.18.0/docs/tutorial/city_mobil/data/constants.py --- sumo-1.17.0/docs/tutorial/city_mobil/data/constants.py 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/city_mobil/data/constants.py 2023-06-28 22:08:08.000000000 +0000 @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo +# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo # Copyright (C) 2008-2023 German Aerospace Center (DLR) and others. # This program and the accompanying materials are made available under the # terms of the Eclipse Public License 2.0 which is available at diff -Nru sumo-1.17.0/docs/tutorial/city_mobil/data/createNet.py sumo-1.18.0/docs/tutorial/city_mobil/data/createNet.py --- sumo-1.17.0/docs/tutorial/city_mobil/data/createNet.py 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/city_mobil/data/createNet.py 2023-06-28 22:08:08.000000000 +0000 @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo +# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo # Copyright (C) 2008-2023 German Aerospace Center (DLR) and others. # This program and the accompanying materials are made available under the # terms of the Eclipse Public License 2.0 which is available at diff -Nru sumo-1.17.0/docs/tutorial/city_mobil/data/createNetTaxi.py sumo-1.18.0/docs/tutorial/city_mobil/data/createNetTaxi.py --- sumo-1.17.0/docs/tutorial/city_mobil/data/createNetTaxi.py 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/city_mobil/data/createNetTaxi.py 2023-06-28 22:08:08.000000000 +0000 @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo +# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo # Copyright (C) 2008-2023 German Aerospace Center (DLR) and others. # This program and the accompanying materials are made available under the # terms of the Eclipse Public License 2.0 which is available at diff -Nru sumo-1.17.0/docs/tutorial/city_mobil/data/simpleManager.py sumo-1.18.0/docs/tutorial/city_mobil/data/simpleManager.py --- sumo-1.17.0/docs/tutorial/city_mobil/data/simpleManager.py 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/city_mobil/data/simpleManager.py 2023-06-28 22:08:08.000000000 +0000 @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo +# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo # Copyright (C) 2008-2023 German Aerospace Center (DLR) and others. # This program and the accompanying materials are made available under the # terms of the Eclipse Public License 2.0 which is available at diff -Nru sumo-1.17.0/docs/tutorial/city_mobil/data/statistics.py sumo-1.18.0/docs/tutorial/city_mobil/data/statistics.py --- sumo-1.17.0/docs/tutorial/city_mobil/data/statistics.py 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/city_mobil/data/statistics.py 2023-06-28 22:08:08.000000000 +0000 @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo +# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo # Copyright (C) 2008-2023 German Aerospace Center (DLR) and others. # This program and the accompanying materials are made available under the # terms of the Eclipse Public License 2.0 which is available at diff -Nru sumo-1.17.0/docs/tutorial/city_mobil/data/vehicleControl.py sumo-1.18.0/docs/tutorial/city_mobil/data/vehicleControl.py --- sumo-1.17.0/docs/tutorial/city_mobil/data/vehicleControl.py 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/city_mobil/data/vehicleControl.py 2023-06-28 22:08:08.000000000 +0000 @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo +# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo # Copyright (C) 2008-2023 German Aerospace Center (DLR) and others. # This program and the accompanying materials are made available under the # terms of the Eclipse Public License 2.0 which is available at diff -Nru sumo-1.17.0/docs/tutorial/city_mobil/runner.py sumo-1.18.0/docs/tutorial/city_mobil/runner.py --- sumo-1.17.0/docs/tutorial/city_mobil/runner.py 2023-01-05 23:00:11.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/city_mobil/runner.py 2023-06-23 06:11:10.000000000 +0000 @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo +# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo # Copyright (C) 2011-2023 German Aerospace Center (DLR) and others. # This program and the accompanying materials are made available under the # terms of the Eclipse Public License 2.0 which is available at diff -Nru sumo-1.17.0/docs/tutorial/city_mobil/test.sh sumo-1.18.0/docs/tutorial/city_mobil/test.sh --- sumo-1.17.0/docs/tutorial/city_mobil/test.sh 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/city_mobil/test.sh 2023-06-28 22:08:08.000000000 +0000 @@ -1 +1,2 @@ +#!/bin/bash python runner.py \ No newline at end of file diff -Nru sumo-1.17.0/docs/tutorial/hello/runner.py sumo-1.18.0/docs/tutorial/hello/runner.py --- sumo-1.17.0/docs/tutorial/hello/runner.py 2023-01-05 23:00:11.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/hello/runner.py 2023-06-23 06:11:10.000000000 +0000 @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo +# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo # Copyright (C) 2008-2023 German Aerospace Center (DLR) and others. # This program and the accompanying materials are made available under the # terms of the Eclipse Public License 2.0 which is available at diff -Nru sumo-1.17.0/docs/tutorial/hello/test.sh sumo-1.18.0/docs/tutorial/hello/test.sh --- sumo-1.17.0/docs/tutorial/hello/test.sh 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/hello/test.sh 2023-06-28 22:08:08.000000000 +0000 @@ -1 +1,2 @@ +#!/bin/bash python runner.py \ No newline at end of file diff -Nru sumo-1.17.0/docs/tutorial/manhattan/runner.py sumo-1.18.0/docs/tutorial/manhattan/runner.py --- sumo-1.17.0/docs/tutorial/manhattan/runner.py 2023-01-05 23:00:11.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/manhattan/runner.py 2023-06-23 06:11:10.000000000 +0000 @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo +# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo # Copyright (C) 2008-2023 German Aerospace Center (DLR) and others. # This program and the accompanying materials are made available under the # terms of the Eclipse Public License 2.0 which is available at diff -Nru sumo-1.17.0/docs/tutorial/manhattan/test.sh sumo-1.18.0/docs/tutorial/manhattan/test.sh --- sumo-1.17.0/docs/tutorial/manhattan/test.sh 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/manhattan/test.sh 2023-06-28 22:08:08.000000000 +0000 @@ -1 +1,2 @@ +#!/bin/bash python runner.py \ No newline at end of file diff -Nru sumo-1.17.0/docs/tutorial/output_parsing/runner.py sumo-1.18.0/docs/tutorial/output_parsing/runner.py --- sumo-1.17.0/docs/tutorial/output_parsing/runner.py 2023-01-05 23:00:11.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/output_parsing/runner.py 2023-06-23 06:11:10.000000000 +0000 @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo +# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo # Copyright (C) 2008-2023 German Aerospace Center (DLR) and others. # This program and the accompanying materials are made available under the # terms of the Eclipse Public License 2.0 which is available at diff -Nru sumo-1.17.0/docs/tutorial/output_parsing/test.sh sumo-1.18.0/docs/tutorial/output_parsing/test.sh --- sumo-1.17.0/docs/tutorial/output_parsing/test.sh 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/output_parsing/test.sh 2023-06-28 22:08:08.000000000 +0000 @@ -1 +1,2 @@ +#!/bin/bash python runner.py \ No newline at end of file diff -Nru sumo-1.17.0/docs/tutorial/public_transport/runner.py sumo-1.18.0/docs/tutorial/public_transport/runner.py --- sumo-1.17.0/docs/tutorial/public_transport/runner.py 2023-01-05 23:00:11.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/public_transport/runner.py 2023-06-23 06:11:10.000000000 +0000 @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo +# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo # Copyright (C) 2008-2023 German Aerospace Center (DLR) and others. # This program and the accompanying materials are made available under the # terms of the Eclipse Public License 2.0 which is available at diff -Nru sumo-1.17.0/docs/tutorial/public_transport/test.sh sumo-1.18.0/docs/tutorial/public_transport/test.sh --- sumo-1.17.0/docs/tutorial/public_transport/test.sh 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/public_transport/test.sh 2023-06-28 22:08:08.000000000 +0000 @@ -1 +1,2 @@ +#!/bin/bash python runner.py \ No newline at end of file diff -Nru sumo-1.17.0/docs/tutorial/quickstart/runner.py sumo-1.18.0/docs/tutorial/quickstart/runner.py --- sumo-1.17.0/docs/tutorial/quickstart/runner.py 2023-01-05 23:00:11.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/quickstart/runner.py 2023-06-23 06:11:10.000000000 +0000 @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo +# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo # Copyright (C) 2008-2023 German Aerospace Center (DLR) and others. # This program and the accompanying materials are made available under the # terms of the Eclipse Public License 2.0 which is available at diff -Nru sumo-1.17.0/docs/tutorial/quickstart/test.sh sumo-1.18.0/docs/tutorial/quickstart/test.sh --- sumo-1.17.0/docs/tutorial/quickstart/test.sh 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/quickstart/test.sh 2023-06-28 22:08:08.000000000 +0000 @@ -1 +1,2 @@ +#!/bin/bash python runner.py \ No newline at end of file diff -Nru sumo-1.17.0/docs/tutorial/sumolympics/data/makeSumolympicWalkers.py sumo-1.18.0/docs/tutorial/sumolympics/data/makeSumolympicWalkers.py --- sumo-1.17.0/docs/tutorial/sumolympics/data/makeSumolympicWalkers.py 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/sumolympics/data/makeSumolympicWalkers.py 2023-06-28 22:08:08.000000000 +0000 @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo +# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo # Copyright (C) 2009-2023 German Aerospace Center (DLR) and others. # This program and the accompanying materials are made available under the # terms of the Eclipse Public License 2.0 which is available at diff -Nru sumo-1.17.0/docs/tutorial/sumolympics/runner.py sumo-1.18.0/docs/tutorial/sumolympics/runner.py --- sumo-1.17.0/docs/tutorial/sumolympics/runner.py 2023-01-05 23:00:11.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/sumolympics/runner.py 2023-06-23 06:11:10.000000000 +0000 @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo +# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo # Copyright (C) 2008-2023 German Aerospace Center (DLR) and others. # This program and the accompanying materials are made available under the # terms of the Eclipse Public License 2.0 which is available at diff -Nru sumo-1.17.0/docs/tutorial/sumolympics/test.sh sumo-1.18.0/docs/tutorial/sumolympics/test.sh --- sumo-1.17.0/docs/tutorial/sumolympics/test.sh 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/sumolympics/test.sh 2023-06-28 22:08:08.000000000 +0000 @@ -1 +1,2 @@ +#!/bin/bash python runner.py \ No newline at end of file diff -Nru sumo-1.17.0/docs/tutorial/traci_pedestrian_crossing/runner.py sumo-1.18.0/docs/tutorial/traci_pedestrian_crossing/runner.py --- sumo-1.17.0/docs/tutorial/traci_pedestrian_crossing/runner.py 2023-01-05 23:00:11.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/traci_pedestrian_crossing/runner.py 2023-06-23 06:11:10.000000000 +0000 @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo +# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo # Copyright (C) 2009-2023 German Aerospace Center (DLR) and others. # This program and the accompanying materials are made available under the # terms of the Eclipse Public License 2.0 which is available at diff -Nru sumo-1.17.0/docs/tutorial/traci_pedestrian_crossing/test.sh sumo-1.18.0/docs/tutorial/traci_pedestrian_crossing/test.sh --- sumo-1.17.0/docs/tutorial/traci_pedestrian_crossing/test.sh 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/traci_pedestrian_crossing/test.sh 2023-06-28 22:08:08.000000000 +0000 @@ -1 +1,2 @@ +#!/bin/bash python runner.py --nogui \ No newline at end of file diff -Nru sumo-1.17.0/docs/tutorial/traci_taxi/runner.py sumo-1.18.0/docs/tutorial/traci_taxi/runner.py --- sumo-1.17.0/docs/tutorial/traci_taxi/runner.py 2023-01-05 23:00:11.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/traci_taxi/runner.py 2023-06-23 06:11:10.000000000 +0000 @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo +# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo # Copyright (C) 2008-2023 German Aerospace Center (DLR) and others. # This program and the accompanying materials are made available under the # terms of the Eclipse Public License 2.0 which is available at diff -Nru sumo-1.17.0/docs/tutorial/traci_taxi/test.sh sumo-1.18.0/docs/tutorial/traci_taxi/test.sh --- sumo-1.17.0/docs/tutorial/traci_taxi/test.sh 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/traci_taxi/test.sh 2023-06-28 22:08:08.000000000 +0000 @@ -1 +1,2 @@ +#!/bin/bash python runner.py \ No newline at end of file diff -Nru sumo-1.17.0/docs/tutorial/traci_tls/runner.py sumo-1.18.0/docs/tutorial/traci_tls/runner.py --- sumo-1.17.0/docs/tutorial/traci_tls/runner.py 2023-01-05 23:00:11.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/traci_tls/runner.py 2023-06-23 06:11:10.000000000 +0000 @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo +# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo # Copyright (C) 2009-2023 German Aerospace Center (DLR) and others. # This program and the accompanying materials are made available under the # terms of the Eclipse Public License 2.0 which is available at diff -Nru sumo-1.17.0/docs/tutorial/traci_tls/test.sh sumo-1.18.0/docs/tutorial/traci_tls/test.sh --- sumo-1.17.0/docs/tutorial/traci_tls/test.sh 2023-04-24 22:07:51.000000000 +0000 +++ sumo-1.18.0/docs/tutorial/traci_tls/test.sh 2023-06-28 22:08:08.000000000 +0000 @@ -1 +1,2 @@ +#!/bin/bash python runner.py --nogui \ No newline at end of file diff -Nru sumo-1.17.0/docs/userdoc/404.html sumo-1.18.0/docs/userdoc/404.html --- sumo-1.17.0/docs/userdoc/404.html 2023-04-24 22:08:42.000000000 +0000 +++ sumo-1.18.0/docs/userdoc/404.html 2023-06-28 22:08:56.000000000 +0000 @@ -1,6 +1,6 @@ @@ -98,7 +98,7 @@ ChangeLog diff -Nru sumo-1.17.0/docs/userdoc/activitygen.html sumo-1.18.0/docs/userdoc/activitygen.html --- sumo-1.17.0/docs/userdoc/activitygen.html 2023-04-24 22:08:42.000000000 +0000 +++ sumo-1.18.0/docs/userdoc/activitygen.html 2023-06-28 22:08:56.000000000 +0000 @@ -1,7 +1,7 @@ @@ -98,7 +98,7 @@ ChangeLog @@ -187,7 +187,7 @@ @@ -246,7 +246,7 @@

Options#

You may use a XML schema definition file for setting up a activitygen configuration: -activitygenConfiguration.xsd.

+activitygenConfiguration.xsd.

Configuration#

All applications of the SUMO-suite handle configuration options the same way. These options are discussed at Basics/Using the Command Line @@ -457,7 +457,7 @@